ETH Price: $2,534.52 (+3.99%)

Token

Manifest (MANI)
 

Overview

Max Total Supply

112 MANI

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MANI
0x5422c23c3e98e2e8f240712e8e8c04f74382c491
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:
Manifest

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : manifest.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

/*

..................................................
..................................................
..................................................
..................................................
..................................................
...............                    ...............
...............                    ...............
...............                    ...............
...............      MANIFEST      ...............
...............                    ...............
...............                    ...............
...............                    ...............
...................................
...................................
...................................
...................................
...................................

*/

contract Manifest is ERC721Enumerable, Ownable, ReentrancyGuard {
    uint256 public constant MAX_MANIFESTS = 1_000;

    // Public sale params
    uint256 public maxPerTransaction = 20;
    uint256 public manifestPrice = 0.07 ether;
    bool public publicSaleActive;

    // Provenance + Fairness
    string public baseURI;
    string public provenanceHash;
    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    uint256 public revealTimestamp;

    event ProvenanceSubmitted(
        string provenanceHash,
        uint256 timestamp
    );
    event BaseURISubmitted(
        string baseURI,
        uint256 timestamp
    );

    modifier whenPublicSaleActive {
        require(publicSaleActive, "Public sale not active");
        _;
    }

    constructor() ERC721("Manifest", "MANI") {
        // Mint 30 for airdrops and giveaways.
        for(uint i = 0; i < 30; i++) {
            _safeMint(0x9221966c2575F5EE2C4c0510F8c14A185e01D494, totalSupply() + 1);
        }
    }

    function mintManifest(uint256 purchaseAmount)
        external
        payable
        whenPublicSaleActive
        nonReentrant
    {
        require(purchasableSupply() > 0, "Sold out");

        if (purchaseAmount > purchasableSupply()) {
            purchaseAmount = purchasableSupply();
        }

        if (purchaseAmount > maxPerTransaction) {
            purchaseAmount = maxPerTransaction;
        }

        uint256 totalCost = purchaseAmount*manifestPrice;
        require(msg.value >= totalCost, "Not enough ETH sent");

        for(uint i = 0; i < purchaseAmount; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }

        // Refund any extra ETH sent.
        if (msg.value > totalCost) {
            Address.sendValue(payable(msg.sender), msg.value - totalCost);
        }

        _setStartingIndexBlock();
    }

    function togglePublicSaleActive() external onlyOwner {
        if (revealTimestamp == 0) {
            revealTimestamp = block.timestamp + (86400 * 7);
        }

        publicSaleActive = !publicSaleActive;
    }

    // In case we need to bring the reveal forward.
    function setReveal(uint256 timestamp) external onlyOwner {
        revealTimestamp = block.timestamp + timestamp;
    }

    function setStartingIndex() external {
        require(startingIndex == 0, "Starting index already set");
        require(startingIndexBlock != 0, "Starting index block must be set");

        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_MANIFESTS;

        if ((block.number - startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_MANIFESTS;
        }

        if (startingIndex == 0) {
            startingIndex += 1;
        }
    }

    function setProvenance(string memory provenance)
        external
        onlyOwner
    {
        provenanceHash = provenance;
        emit ProvenanceSubmitted(provenance, block.timestamp);
    }

    function setBaseURI(string memory uri)
        external
        onlyOwner
    {
        baseURI = uri;
        emit BaseURISubmitted(uri, block.timestamp);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(msg.sender), balance);
    }

    function purchasableSupply() public view returns(uint256) {
        return (MAX_MANIFESTS - totalSupply());
    }

    // Set the starting index block once all public supply has been minted or
    // 1 week after public sale begins.
    function _setStartingIndexBlock() internal {
        bool timeToReveal = block.timestamp > revealTimestamp;
        bool soldOut = totalSupply() == MAX_MANIFESTS;

        if (startingIndexBlock == 0 && soldOut || timeToReveal) {
            startingIndexBlock = block.number;
        }
    }

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

File 2 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

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

    /**
     * @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 {
                    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 {}
}

File 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 14 : Context.sol
// SPDX-License-Identifier: MIT

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 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }
}

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"BaseURISubmitted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"provenanceHash","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ProvenanceSubmitted","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_MANIFESTS","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manifestPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseAmount","type":"uint256"}],"name":"mintManifest","outputs":[],"stateMutability":"payable","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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchasableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTimestamp","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":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600c5566f8b0a10e470000600d553480156200002157600080fd5b506040518060400160405280600881526020017f4d616e69666573740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d414e49000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a692919062000c86565b508060019080519060200190620000bf92919062000c86565b505050620000e2620000d66200015760201b60201c565b6200015f60201b60201c565b6001600b8190555060005b601e81101562000150576200013a739221966c2575f5ee2c4c0510f8c14a185e01d4946001620001226200022560201b60201c565b6200012e919062000f81565b6200023260201b60201c565b80806200014790620010ef565b915050620000ed565b50620012b6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b620002548282604051806020016040528060008152506200025860201b60201c565b5050565b6200026a8383620002c660201b60201c565b6200027f6000848484620004ac60201b60201c565b620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b89062000ecc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003309062000f32565b60405180910390fd5b6200034a816200066660201b60201c565b156200038d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003849062000eee565b60405180910390fd5b620003a160008383620006d260201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f3919062000f81565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620004da8473ffffffffffffffffffffffffffffffffffffffff166200081960201b62001b461760201c565b1562000659578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200050c6200015760201b60201c565b8786866040518563ffffffff1660e01b815260040162000530949392919062000e78565b602060405180830381600087803b1580156200054b57600080fd5b505af19250505080156200057f57506040513d601f19601f820116820180604052508101906200057c919062000d4d565b60015b62000608573d8060008114620005b2576040519150601f19603f3d011682016040523d82523d6000602084013e620005b7565b606091505b5060008151141562000600576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f79062000ecc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200065e565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620006ea8383836200082c60201b62001b591760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620007375762000731816200083160201b60201c565b6200077f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200077e576200077d83826200087a60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007cc57620007c681620009f760201b60201c565b62000814565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620008135762000812828262000b3f60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620008948462000bcb60201b620011f71760201c565b620008a0919062000fde565b905060006007600084815260200190815260200160002054905081811462000986576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000a0d919062000fde565b905060006009600084815260200190815260200160002054905060006008838154811062000a64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000aad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000b23577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000b578362000bcb60201b620011f71760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c369062000f10565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000c9490620010b9565b90600052602060002090601f01602090048101928262000cb8576000855562000d04565b82601f1062000cd357805160ff191683800117855562000d04565b8280016001018555821562000d04579182015b8281111562000d0357825182559160200191906001019062000ce6565b5b50905062000d13919062000d17565b5090565b5b8082111562000d3257600081600090555060010162000d18565b5090565b60008151905062000d47816200129c565b92915050565b60006020828403121562000d6057600080fd5b600062000d708482850162000d36565b91505092915050565b62000d848162001019565b82525050565b600062000d978262000f54565b62000da3818562000f5f565b935062000db581856020860162001083565b62000dc0816200119b565b840191505092915050565b600062000dda60328362000f70565b915062000de782620011ac565b604082019050919050565b600062000e01601c8362000f70565b915062000e0e82620011fb565b602082019050919050565b600062000e28602a8362000f70565b915062000e358262001224565b604082019050919050565b600062000e4f60208362000f70565b915062000e5c8262001273565b602082019050919050565b62000e728162001079565b82525050565b600060808201905062000e8f600083018762000d79565b62000e9e602083018662000d79565b62000ead604083018562000e67565b818103606083015262000ec1818462000d8a565b905095945050505050565b6000602082019050818103600083015262000ee78162000dcb565b9050919050565b6000602082019050818103600083015262000f098162000df2565b9050919050565b6000602082019050818103600083015262000f2b8162000e19565b9050919050565b6000602082019050818103600083015262000f4d8162000e40565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000f8e8262001079565b915062000f9b8362001079565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fd35762000fd26200113d565b5b828201905092915050565b600062000feb8262001079565b915062000ff88362001079565b9250828210156200100e576200100d6200113d565b5b828203905092915050565b6000620010268262001059565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620010a357808201518184015260208101905062001086565b83811115620010b3576000848401525b50505050565b60006002820490506001821680620010d257607f821691505b60208210811415620010e957620010e86200116c565b5b50919050565b6000620010fc8262001079565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200113257620011316200113d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620012a7816200102d565b8114620012b357600080fd5b50565b61467c80620012c66000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c51461076e578063e9866550146107ab578063f2fde38b146107c2578063f62f3c11146107eb578063ffe630b5146108165761020f565b8063c87b56dd146106b0578063cb774d47146106ed578063d816020314610718578063e36d6498146107435761020f565b8063a22cb465116100e7578063a22cb465146105df578063b88d4fde14610608578063bc8893b414610631578063c50c81861461065c578063c6ab67a3146106855761020f565b8063715018a614610547578063894644ce1461055e5780638da5cb5b1461058957806395d89b41146105b45761020f565b806330e23f9d1161019b5780634f6ccce71161016a5780634f6ccce71461043c57806355f804b3146104795780636352211e146104a25780636c0360eb146104df57806370a082311461050a5761020f565b806330e23f9d146103a65780633ccfd60b146103d157806342842e0e146103e85780634b980d67146104115761020f565b80630c894cfe116101e25780630c894cfe146102e25780630d870c97146102f957806318160ddd1461031557806323b872dd146103405780632f745c59146103695761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613194565b61083f565b6040516102489190613771565b60405180910390f35b34801561025d57600080fd5b506102666108b9565b604051610273919061378c565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613227565b61094b565b6040516102b0919061370a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613158565b6109d0565b005b3480156102ee57600080fd5b506102f7610ae8565b005b610313600480360381019061030e9190613227565b610bb1565b005b34801561032157600080fd5b5061032a610d85565b6040516103379190613b1e565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613052565b610d92565b005b34801561037557600080fd5b50610390600480360381019061038b9190613158565b610df2565b60405161039d9190613b1e565b60405180910390f35b3480156103b257600080fd5b506103bb610e97565b6040516103c89190613b1e565b60405180910390f35b3480156103dd57600080fd5b506103e6610e9d565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613052565b610f2b565b005b34801561041d57600080fd5b50610426610f4b565b6040516104339190613b1e565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613227565b610f51565b6040516104709190613b1e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906131e6565b610fe8565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613227565b6110b7565b6040516104d6919061370a565b60405180910390f35b3480156104eb57600080fd5b506104f4611169565b604051610501919061378c565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612fed565b6111f7565b60405161053e9190613b1e565b60405180910390f35b34801561055357600080fd5b5061055c6112af565b005b34801561056a57600080fd5b50610573611337565b6040516105809190613b1e565b60405180910390f35b34801561059557600080fd5b5061059e611353565b6040516105ab919061370a565b60405180910390f35b3480156105c057600080fd5b506105c961137d565b6040516105d6919061378c565b60405180910390f35b3480156105eb57600080fd5b506106066004803603810190610601919061311c565b61140f565b005b34801561061457600080fd5b5061062f600480360381019061062a91906130a1565b611590565b005b34801561063d57600080fd5b506106466115f2565b6040516106539190613771565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613227565b611605565b005b34801561069157600080fd5b5061069a611696565b6040516106a7919061378c565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613227565b611724565b6040516106e4919061378c565b60405180910390f35b3480156106f957600080fd5b506107026117cb565b60405161070f9190613b1e565b60405180910390f35b34801561072457600080fd5b5061072d6117d1565b60405161073a9190613b1e565b60405180910390f35b34801561074f57600080fd5b506107586117d7565b6040516107659190613b1e565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613016565b6117dd565b6040516107a29190613771565b60405180910390f35b3480156107b757600080fd5b506107c0611871565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612fed565b611979565b005b3480156107f757600080fd5b50610800611a71565b60405161080d9190613b1e565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906131e6565b611a77565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506108b182611b5e565b5b9050919050565b6060600080546108c890613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490613dd9565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611c40565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061399e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109db826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613a5e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6b611cac565b73ffffffffffffffffffffffffffffffffffffffff161480610a9a5750610a9981610a94611cac565b6117dd565b5b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906138fe565b60405180910390fd5b610ae38383611cb4565b505050565b610af0611cac565b73ffffffffffffffffffffffffffffffffffffffff16610b0e611353565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906139de565b60405180910390fd5b60006013541415610b855762093a8042610b7e9190613c0e565b6013819055505b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff16610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf7906139be565b60405180910390fd5b6002600b541415610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613afe565b60405180910390fd5b6002600b819055506000610c58611337565b11610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613abe565b60405180910390fd5b610ca0611337565b811115610cb257610caf611337565b90505b600c54811115610cc257600c5490505b6000600d5482610cd29190613c95565b905080341015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613a3e565b60405180910390fd5b60005b82811015610d5257610d3f336001610d30610d85565b610d3a9190613c0e565b611d6d565b8080610d4a90613e3c565b915050610d1a565b5080341115610d7157610d70338234610d6b9190613cef565b611d8b565b5b610d79611e7f565b506001600b8190555050565b6000600880549050905090565b610da3610d9d611cac565b82611ec0565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990613a9e565b60405180910390fd5b610ded838383611f9e565b505050565b6000610dfd836111f7565b8210610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906137de565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610ea5611cac565b73ffffffffffffffffffffffffffffffffffffffff16610ec3611353565b73ffffffffffffffffffffffffffffffffffffffff1614610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906139de565b60405180910390fd5b6000479050610f283382611d8b565b50565b610f4683838360405180602001604052806000815250611590565b505050565b600c5481565b6000610f5b610d85565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613ade565b60405180910390fd5b60088281548110610fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ff0611cac565b73ffffffffffffffffffffffffffffffffffffffff1661100e611353565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906139de565b60405180910390fd5b80600f908051906020019061107a929190612e11565b507fcf1d7a8b7fa3062b50b50e680ae6e61655e95edb71c6518e0dcf41ec9162993481426040516110ac9291906137ae565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111579061393e565b60405180910390fd5b80915050919050565b600f805461117690613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290613dd9565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f9061391e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112b7611cac565b73ffffffffffffffffffffffffffffffffffffffff166112d5611353565b73ffffffffffffffffffffffffffffffffffffffff161461132b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611322906139de565b60405180910390fd5b61133560006121fa565b565b6000611341610d85565b6103e861134e9190613cef565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138c90613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890613dd9565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b611417611cac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061387e565b60405180910390fd5b8060056000611492611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153f611cac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115849190613771565b60405180910390a35050565b6115a161159b611cac565b83611ec0565b6115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613a9e565b60405180910390fd5b6115ec848484846122c0565b50505050565b600e60009054906101000a900460ff1681565b61160d611cac565b73ffffffffffffffffffffffffffffffffffffffff1661162b611353565b73ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906139de565b60405180910390fd5b804261168d9190613c0e565b60138190555050565b601080546116a390613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116cf90613dd9565b801561171c5780601f106116f15761010080835404028352916020019161171c565b820191906000526020600020905b8154815290600101906020018083116116ff57829003601f168201915b505050505081565b606061172f82611c40565b61176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613a1e565b60405180910390fd5b600061177861231c565b9050600081511161179857604051806020016040528060008152506117c3565b806117a2846123ae565b6040516020016117b39291906136d1565b6040516020818303038152906040525b915050919050565b60125481565b600d5481565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601254146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061397e565b60405180910390fd5b600060115414156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613a7e565b60405180910390fd5b6103e86011544060001c6119109190613e85565b60128190555060ff601154436119269190613cef565b1115611951576103e860014361193c9190613cef565b4060001c61194a9190613e85565b6012819055505b600060125414156119775760016012600082825461196f9190613c0e565b925050819055505b565b611981611cac565b73ffffffffffffffffffffffffffffffffffffffff1661199f611353565b73ffffffffffffffffffffffffffffffffffffffff16146119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906139de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c9061381e565b60405180910390fd5b611a6e816121fa565b50565b60135481565b611a7f611cac565b73ffffffffffffffffffffffffffffffffffffffff16611a9d611353565b73ffffffffffffffffffffffffffffffffffffffff1614611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea906139de565b60405180910390fd5b8060109080519060200190611b09929190612e11565b507f7ea1bdc68c2c183890f808b5068e8c91c111ebe9c86be9377590bf3d5de91f4d8142604051611b3b9291906137ae565b60405180910390a150565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c2957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c395750611c388261255b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d27836110b7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d878282604051806020016040528060008152506125c5565b5050565b80471015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906138be565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611df4906136f5565b60006040518083038185875af1925050503d8060008114611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b5050905080611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061389e565b60405180910390fd5b505050565b60006013544211905060006103e8611e95610d85565b1490506000601154148015611ea75750805b80611eaf5750815b15611ebc57436011819055505b5050565b6000611ecb82611c40565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906138de565b60405180910390fd5b6000611f15836110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8457508373ffffffffffffffffffffffffffffffffffffffff16611f6c8461094b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f955750611f9481856117dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fbe826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b906139fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b9061385e565b60405180910390fd5b61208f838383612620565b61209a600082611cb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190613cef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121419190613c0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122cb848484611f9e565b6122d784848484612734565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906137fe565b60405180910390fd5b50505050565b6060600f805461232b90613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461235790613dd9565b80156123a45780601f10612379576101008083540402835291602001916123a4565b820191906000526020600020905b81548152906001019060200180831161238757829003601f168201915b5050505050905090565b606060008214156123f6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612556565b600082905060005b6000821461242857808061241190613e3c565b915050600a826124219190613c64565b91506123fe565b60008167ffffffffffffffff81111561246a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561249c5781602001600182028036833780820191505090505b5090505b6000851461254f576001826124b59190613cef565b9150600a856124c49190613e85565b60306124d09190613c0e565b60f81b81838151811061250c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125489190613c64565b94506124a0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125cf83836128cb565b6125dc6000848484612734565b61261b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612612906137fe565b60405180910390fd5b505050565b61262b838383611b59565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266e5761266981612a99565b6126ad565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126ac576126ab8382612ae2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f0576126eb81612c4f565b61272f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461272e5761272d8282612d92565b5b5b505050565b60006127558473ffffffffffffffffffffffffffffffffffffffff16611b46565b156128be578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277e611cac565b8786866040518563ffffffff1660e01b81526004016127a09493929190613725565b602060405180830381600087803b1580156127ba57600080fd5b505af19250505080156127eb57506040513d601f19601f820116820180604052508101906127e891906131bd565b60015b61286e573d806000811461281b576040519150601f19603f3d011682016040523d82523d6000602084013e612820565b606091505b50600081511415612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d906137fe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129329061395e565b60405180910390fd5b61294481611c40565b15612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b9061383e565b60405180910390fd5b61299060008383612620565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e09190613c0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aef846111f7565b612af99190613cef565b9050600060076000848152602001908152602001600020549050818114612bde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c639190613cef565b9050600060096000848152602001908152602001600020549050600060088381548110612cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d9d836111f7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e1d90613dd9565b90600052602060002090601f016020900481019282612e3f5760008555612e86565b82601f10612e5857805160ff1916838001178555612e86565b82800160010185558215612e86579182015b82811115612e85578251825591602001919060010190612e6a565b5b509050612e939190612e97565b5090565b5b80821115612eb0576000816000905550600101612e98565b5090565b6000612ec7612ec284613b5e565b613b39565b905082815260208101848484011115612edf57600080fd5b612eea848285613d97565b509392505050565b6000612f05612f0084613b8f565b613b39565b905082815260208101848484011115612f1d57600080fd5b612f28848285613d97565b509392505050565b600081359050612f3f816145ea565b92915050565b600081359050612f5481614601565b92915050565b600081359050612f6981614618565b92915050565b600081519050612f7e81614618565b92915050565b600082601f830112612f9557600080fd5b8135612fa5848260208601612eb4565b91505092915050565b600082601f830112612fbf57600080fd5b8135612fcf848260208601612ef2565b91505092915050565b600081359050612fe78161462f565b92915050565b600060208284031215612fff57600080fd5b600061300d84828501612f30565b91505092915050565b6000806040838503121561302957600080fd5b600061303785828601612f30565b925050602061304885828601612f30565b9150509250929050565b60008060006060848603121561306757600080fd5b600061307586828701612f30565b935050602061308686828701612f30565b925050604061309786828701612fd8565b9150509250925092565b600080600080608085870312156130b757600080fd5b60006130c587828801612f30565b94505060206130d687828801612f30565b93505060406130e787828801612fd8565b925050606085013567ffffffffffffffff81111561310457600080fd5b61311087828801612f84565b91505092959194509250565b6000806040838503121561312f57600080fd5b600061313d85828601612f30565b925050602061314e85828601612f45565b9150509250929050565b6000806040838503121561316b57600080fd5b600061317985828601612f30565b925050602061318a85828601612fd8565b9150509250929050565b6000602082840312156131a657600080fd5b60006131b484828501612f5a565b91505092915050565b6000602082840312156131cf57600080fd5b60006131dd84828501612f6f565b91505092915050565b6000602082840312156131f857600080fd5b600082013567ffffffffffffffff81111561321257600080fd5b61321e84828501612fae565b91505092915050565b60006020828403121561323957600080fd5b600061324784828501612fd8565b91505092915050565b61325981613d23565b82525050565b61326881613d35565b82525050565b600061327982613bc0565b6132838185613bd6565b9350613293818560208601613da6565b61329c81613f72565b840191505092915050565b60006132b282613bcb565b6132bc8185613bf2565b93506132cc818560208601613da6565b6132d581613f72565b840191505092915050565b60006132eb82613bcb565b6132f58185613c03565b9350613305818560208601613da6565b80840191505092915050565b600061331e602b83613bf2565b915061332982613f83565b604082019050919050565b6000613341603283613bf2565b915061334c82613fd2565b604082019050919050565b6000613364602683613bf2565b915061336f82614021565b604082019050919050565b6000613387601c83613bf2565b915061339282614070565b602082019050919050565b60006133aa602483613bf2565b91506133b582614099565b604082019050919050565b60006133cd601983613bf2565b91506133d8826140e8565b602082019050919050565b60006133f0603a83613bf2565b91506133fb82614111565b604082019050919050565b6000613413601d83613bf2565b915061341e82614160565b602082019050919050565b6000613436602c83613bf2565b915061344182614189565b604082019050919050565b6000613459603883613bf2565b9150613464826141d8565b604082019050919050565b600061347c602a83613bf2565b915061348782614227565b604082019050919050565b600061349f602983613bf2565b91506134aa82614276565b604082019050919050565b60006134c2602083613bf2565b91506134cd826142c5565b602082019050919050565b60006134e5601a83613bf2565b91506134f0826142ee565b602082019050919050565b6000613508602c83613bf2565b915061351382614317565b604082019050919050565b600061352b601683613bf2565b915061353682614366565b602082019050919050565b600061354e602083613bf2565b91506135598261438f565b602082019050919050565b6000613571602983613bf2565b915061357c826143b8565b604082019050919050565b6000613594602f83613bf2565b915061359f82614407565b604082019050919050565b60006135b7601383613bf2565b91506135c282614456565b602082019050919050565b60006135da602183613bf2565b91506135e58261447f565b604082019050919050565b60006135fd602083613bf2565b9150613608826144ce565b602082019050919050565b6000613620600083613be7565b915061362b826144f7565b600082019050919050565b6000613643603183613bf2565b915061364e826144fa565b604082019050919050565b6000613666600883613bf2565b915061367182614549565b602082019050919050565b6000613689602c83613bf2565b915061369482614572565b604082019050919050565b60006136ac601f83613bf2565b91506136b7826145c1565b602082019050919050565b6136cb81613d8d565b82525050565b60006136dd82856132e0565b91506136e982846132e0565b91508190509392505050565b600061370082613613565b9150819050919050565b600060208201905061371f6000830184613250565b92915050565b600060808201905061373a6000830187613250565b6137476020830186613250565b61375460408301856136c2565b8181036060830152613766818461326e565b905095945050505050565b6000602082019050613786600083018461325f565b92915050565b600060208201905081810360008301526137a681846132a7565b905092915050565b600060408201905081810360008301526137c881856132a7565b90506137d760208301846136c2565b9392505050565b600060208201905081810360008301526137f781613311565b9050919050565b6000602082019050818103600083015261381781613334565b9050919050565b6000602082019050818103600083015261383781613357565b9050919050565b600060208201905081810360008301526138578161337a565b9050919050565b600060208201905081810360008301526138778161339d565b9050919050565b60006020820190508181036000830152613897816133c0565b9050919050565b600060208201905081810360008301526138b7816133e3565b9050919050565b600060208201905081810360008301526138d781613406565b9050919050565b600060208201905081810360008301526138f781613429565b9050919050565b600060208201905081810360008301526139178161344c565b9050919050565b600060208201905081810360008301526139378161346f565b9050919050565b6000602082019050818103600083015261395781613492565b9050919050565b60006020820190508181036000830152613977816134b5565b9050919050565b60006020820190508181036000830152613997816134d8565b9050919050565b600060208201905081810360008301526139b7816134fb565b9050919050565b600060208201905081810360008301526139d78161351e565b9050919050565b600060208201905081810360008301526139f781613541565b9050919050565b60006020820190508181036000830152613a1781613564565b9050919050565b60006020820190508181036000830152613a3781613587565b9050919050565b60006020820190508181036000830152613a57816135aa565b9050919050565b60006020820190508181036000830152613a77816135cd565b9050919050565b60006020820190508181036000830152613a97816135f0565b9050919050565b60006020820190508181036000830152613ab781613636565b9050919050565b60006020820190508181036000830152613ad781613659565b9050919050565b60006020820190508181036000830152613af78161367c565b9050919050565b60006020820190508181036000830152613b178161369f565b9050919050565b6000602082019050613b3360008301846136c2565b92915050565b6000613b43613b54565b9050613b4f8282613e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7957613b78613f43565b5b613b8282613f72565b9050602081019050919050565b600067ffffffffffffffff821115613baa57613ba9613f43565b5b613bb382613f72565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613d8d565b9150613c2483613d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5957613c58613eb6565b5b828201905092915050565b6000613c6f82613d8d565b9150613c7a83613d8d565b925082613c8a57613c89613ee5565b5b828204905092915050565b6000613ca082613d8d565b9150613cab83613d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce457613ce3613eb6565b5b828202905092915050565b6000613cfa82613d8d565b9150613d0583613d8d565b925082821015613d1857613d17613eb6565b5b828203905092915050565b6000613d2e82613d6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b60006002820490506001821680613df157607f821691505b60208210811415613e0557613e04613f14565b5b50919050565b613e1482613f72565b810181811067ffffffffffffffff82111715613e3357613e32613f43565b5b80604052505050565b6000613e4782613d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7a57613e79613eb6565b5b600182019050919050565b6000613e9082613d8d565b9150613e9b83613d8d565b925082613eab57613eaa613ee5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5374617274696e6720696e64657820616c726561647920736574000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145f381613d23565b81146145fe57600080fd5b50565b61460a81613d35565b811461461557600080fd5b50565b61462181613d41565b811461462c57600080fd5b50565b61463881613d8d565b811461464357600080fd5b5056fea2646970667358221220212969945741e8b1064bf9b035eae957446ec1dfff3bd1a29e517ad3a0fbf16164736f6c63430008040033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c51461076e578063e9866550146107ab578063f2fde38b146107c2578063f62f3c11146107eb578063ffe630b5146108165761020f565b8063c87b56dd146106b0578063cb774d47146106ed578063d816020314610718578063e36d6498146107435761020f565b8063a22cb465116100e7578063a22cb465146105df578063b88d4fde14610608578063bc8893b414610631578063c50c81861461065c578063c6ab67a3146106855761020f565b8063715018a614610547578063894644ce1461055e5780638da5cb5b1461058957806395d89b41146105b45761020f565b806330e23f9d1161019b5780634f6ccce71161016a5780634f6ccce71461043c57806355f804b3146104795780636352211e146104a25780636c0360eb146104df57806370a082311461050a5761020f565b806330e23f9d146103a65780633ccfd60b146103d157806342842e0e146103e85780634b980d67146104115761020f565b80630c894cfe116101e25780630c894cfe146102e25780630d870c97146102f957806318160ddd1461031557806323b872dd146103405780632f745c59146103695761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613194565b61083f565b6040516102489190613771565b60405180910390f35b34801561025d57600080fd5b506102666108b9565b604051610273919061378c565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613227565b61094b565b6040516102b0919061370a565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613158565b6109d0565b005b3480156102ee57600080fd5b506102f7610ae8565b005b610313600480360381019061030e9190613227565b610bb1565b005b34801561032157600080fd5b5061032a610d85565b6040516103379190613b1e565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190613052565b610d92565b005b34801561037557600080fd5b50610390600480360381019061038b9190613158565b610df2565b60405161039d9190613b1e565b60405180910390f35b3480156103b257600080fd5b506103bb610e97565b6040516103c89190613b1e565b60405180910390f35b3480156103dd57600080fd5b506103e6610e9d565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613052565b610f2b565b005b34801561041d57600080fd5b50610426610f4b565b6040516104339190613b1e565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613227565b610f51565b6040516104709190613b1e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906131e6565b610fe8565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613227565b6110b7565b6040516104d6919061370a565b60405180910390f35b3480156104eb57600080fd5b506104f4611169565b604051610501919061378c565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612fed565b6111f7565b60405161053e9190613b1e565b60405180910390f35b34801561055357600080fd5b5061055c6112af565b005b34801561056a57600080fd5b50610573611337565b6040516105809190613b1e565b60405180910390f35b34801561059557600080fd5b5061059e611353565b6040516105ab919061370a565b60405180910390f35b3480156105c057600080fd5b506105c961137d565b6040516105d6919061378c565b60405180910390f35b3480156105eb57600080fd5b506106066004803603810190610601919061311c565b61140f565b005b34801561061457600080fd5b5061062f600480360381019061062a91906130a1565b611590565b005b34801561063d57600080fd5b506106466115f2565b6040516106539190613771565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190613227565b611605565b005b34801561069157600080fd5b5061069a611696565b6040516106a7919061378c565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190613227565b611724565b6040516106e4919061378c565b60405180910390f35b3480156106f957600080fd5b506107026117cb565b60405161070f9190613b1e565b60405180910390f35b34801561072457600080fd5b5061072d6117d1565b60405161073a9190613b1e565b60405180910390f35b34801561074f57600080fd5b506107586117d7565b6040516107659190613b1e565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613016565b6117dd565b6040516107a29190613771565b60405180910390f35b3480156107b757600080fd5b506107c0611871565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190612fed565b611979565b005b3480156107f757600080fd5b50610800611a71565b60405161080d9190613b1e565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906131e6565b611a77565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108b257506108b182611b5e565b5b9050919050565b6060600080546108c890613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490613dd9565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b600061095682611c40565b610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c9061399e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109db826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390613a5e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6b611cac565b73ffffffffffffffffffffffffffffffffffffffff161480610a9a5750610a9981610a94611cac565b6117dd565b5b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906138fe565b60405180910390fd5b610ae38383611cb4565b505050565b610af0611cac565b73ffffffffffffffffffffffffffffffffffffffff16610b0e611353565b73ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906139de565b60405180910390fd5b60006013541415610b855762093a8042610b7e9190613c0e565b6013819055505b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff16610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf7906139be565b60405180910390fd5b6002600b541415610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90613afe565b60405180910390fd5b6002600b819055506000610c58611337565b11610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613abe565b60405180910390fd5b610ca0611337565b811115610cb257610caf611337565b90505b600c54811115610cc257600c5490505b6000600d5482610cd29190613c95565b905080341015610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613a3e565b60405180910390fd5b60005b82811015610d5257610d3f336001610d30610d85565b610d3a9190613c0e565b611d6d565b8080610d4a90613e3c565b915050610d1a565b5080341115610d7157610d70338234610d6b9190613cef565b611d8b565b5b610d79611e7f565b506001600b8190555050565b6000600880549050905090565b610da3610d9d611cac565b82611ec0565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990613a9e565b60405180910390fd5b610ded838383611f9e565b505050565b6000610dfd836111f7565b8210610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906137de565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6103e881565b610ea5611cac565b73ffffffffffffffffffffffffffffffffffffffff16610ec3611353565b73ffffffffffffffffffffffffffffffffffffffff1614610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906139de565b60405180910390fd5b6000479050610f283382611d8b565b50565b610f4683838360405180602001604052806000815250611590565b505050565b600c5481565b6000610f5b610d85565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613ade565b60405180910390fd5b60088281548110610fd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ff0611cac565b73ffffffffffffffffffffffffffffffffffffffff1661100e611353565b73ffffffffffffffffffffffffffffffffffffffff1614611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906139de565b60405180910390fd5b80600f908051906020019061107a929190612e11565b507fcf1d7a8b7fa3062b50b50e680ae6e61655e95edb71c6518e0dcf41ec9162993481426040516110ac9291906137ae565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111579061393e565b60405180910390fd5b80915050919050565b600f805461117690613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290613dd9565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f9061391e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112b7611cac565b73ffffffffffffffffffffffffffffffffffffffff166112d5611353565b73ffffffffffffffffffffffffffffffffffffffff161461132b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611322906139de565b60405180910390fd5b61133560006121fa565b565b6000611341610d85565b6103e861134e9190613cef565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461138c90613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890613dd9565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b5050505050905090565b611417611cac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c9061387e565b60405180910390fd5b8060056000611492611cac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153f611cac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115849190613771565b60405180910390a35050565b6115a161159b611cac565b83611ec0565b6115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613a9e565b60405180910390fd5b6115ec848484846122c0565b50505050565b600e60009054906101000a900460ff1681565b61160d611cac565b73ffffffffffffffffffffffffffffffffffffffff1661162b611353565b73ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906139de565b60405180910390fd5b804261168d9190613c0e565b60138190555050565b601080546116a390613dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546116cf90613dd9565b801561171c5780601f106116f15761010080835404028352916020019161171c565b820191906000526020600020905b8154815290600101906020018083116116ff57829003601f168201915b505050505081565b606061172f82611c40565b61176e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176590613a1e565b60405180910390fd5b600061177861231c565b9050600081511161179857604051806020016040528060008152506117c3565b806117a2846123ae565b6040516020016117b39291906136d1565b6040516020818303038152906040525b915050919050565b60125481565b600d5481565b60115481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601254146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061397e565b60405180910390fd5b600060115414156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613a7e565b60405180910390fd5b6103e86011544060001c6119109190613e85565b60128190555060ff601154436119269190613cef565b1115611951576103e860014361193c9190613cef565b4060001c61194a9190613e85565b6012819055505b600060125414156119775760016012600082825461196f9190613c0e565b925050819055505b565b611981611cac565b73ffffffffffffffffffffffffffffffffffffffff1661199f611353565b73ffffffffffffffffffffffffffffffffffffffff16146119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906139de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c9061381e565b60405180910390fd5b611a6e816121fa565b50565b60135481565b611a7f611cac565b73ffffffffffffffffffffffffffffffffffffffff16611a9d611353565b73ffffffffffffffffffffffffffffffffffffffff1614611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea906139de565b60405180910390fd5b8060109080519060200190611b09929190612e11565b507f7ea1bdc68c2c183890f808b5068e8c91c111ebe9c86be9377590bf3d5de91f4d8142604051611b3b9291906137ae565b60405180910390a150565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c2957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c395750611c388261255b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d27836110b7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d878282604051806020016040528060008152506125c5565b5050565b80471015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906138be565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611df4906136f5565b60006040518083038185875af1925050503d8060008114611e31576040519150601f19603f3d011682016040523d82523d6000602084013e611e36565b606091505b5050905080611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061389e565b60405180910390fd5b505050565b60006013544211905060006103e8611e95610d85565b1490506000601154148015611ea75750805b80611eaf5750815b15611ebc57436011819055505b5050565b6000611ecb82611c40565b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906138de565b60405180910390fd5b6000611f15836110b7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8457508373ffffffffffffffffffffffffffffffffffffffff16611f6c8461094b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f955750611f9481856117dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fbe826110b7565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b906139fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b9061385e565b60405180910390fd5b61208f838383612620565b61209a600082611cb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190613cef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121419190613c0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122cb848484611f9e565b6122d784848484612734565b612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d906137fe565b60405180910390fd5b50505050565b6060600f805461232b90613dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461235790613dd9565b80156123a45780601f10612379576101008083540402835291602001916123a4565b820191906000526020600020905b81548152906001019060200180831161238757829003601f168201915b5050505050905090565b606060008214156123f6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612556565b600082905060005b6000821461242857808061241190613e3c565b915050600a826124219190613c64565b91506123fe565b60008167ffffffffffffffff81111561246a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561249c5781602001600182028036833780820191505090505b5090505b6000851461254f576001826124b59190613cef565b9150600a856124c49190613e85565b60306124d09190613c0e565b60f81b81838151811061250c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125489190613c64565b94506124a0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125cf83836128cb565b6125dc6000848484612734565b61261b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612612906137fe565b60405180910390fd5b505050565b61262b838383611b59565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561266e5761266981612a99565b6126ad565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126ac576126ab8382612ae2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f0576126eb81612c4f565b61272f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461272e5761272d8282612d92565b5b5b505050565b60006127558473ffffffffffffffffffffffffffffffffffffffff16611b46565b156128be578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261277e611cac565b8786866040518563ffffffff1660e01b81526004016127a09493929190613725565b602060405180830381600087803b1580156127ba57600080fd5b505af19250505080156127eb57506040513d601f19601f820116820180604052508101906127e891906131bd565b60015b61286e573d806000811461281b576040519150601f19603f3d011682016040523d82523d6000602084013e612820565b606091505b50600081511415612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d906137fe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129329061395e565b60405180910390fd5b61294481611c40565b15612984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297b9061383e565b60405180910390fd5b61299060008383612620565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129e09190613c0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aef846111f7565b612af99190613cef565b9050600060076000848152602001908152602001600020549050818114612bde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c639190613cef565b9050600060096000848152602001908152602001600020549050600060088381548110612cb9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612d01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d76577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d9d836111f7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e1d90613dd9565b90600052602060002090601f016020900481019282612e3f5760008555612e86565b82601f10612e5857805160ff1916838001178555612e86565b82800160010185558215612e86579182015b82811115612e85578251825591602001919060010190612e6a565b5b509050612e939190612e97565b5090565b5b80821115612eb0576000816000905550600101612e98565b5090565b6000612ec7612ec284613b5e565b613b39565b905082815260208101848484011115612edf57600080fd5b612eea848285613d97565b509392505050565b6000612f05612f0084613b8f565b613b39565b905082815260208101848484011115612f1d57600080fd5b612f28848285613d97565b509392505050565b600081359050612f3f816145ea565b92915050565b600081359050612f5481614601565b92915050565b600081359050612f6981614618565b92915050565b600081519050612f7e81614618565b92915050565b600082601f830112612f9557600080fd5b8135612fa5848260208601612eb4565b91505092915050565b600082601f830112612fbf57600080fd5b8135612fcf848260208601612ef2565b91505092915050565b600081359050612fe78161462f565b92915050565b600060208284031215612fff57600080fd5b600061300d84828501612f30565b91505092915050565b6000806040838503121561302957600080fd5b600061303785828601612f30565b925050602061304885828601612f30565b9150509250929050565b60008060006060848603121561306757600080fd5b600061307586828701612f30565b935050602061308686828701612f30565b925050604061309786828701612fd8565b9150509250925092565b600080600080608085870312156130b757600080fd5b60006130c587828801612f30565b94505060206130d687828801612f30565b93505060406130e787828801612fd8565b925050606085013567ffffffffffffffff81111561310457600080fd5b61311087828801612f84565b91505092959194509250565b6000806040838503121561312f57600080fd5b600061313d85828601612f30565b925050602061314e85828601612f45565b9150509250929050565b6000806040838503121561316b57600080fd5b600061317985828601612f30565b925050602061318a85828601612fd8565b9150509250929050565b6000602082840312156131a657600080fd5b60006131b484828501612f5a565b91505092915050565b6000602082840312156131cf57600080fd5b60006131dd84828501612f6f565b91505092915050565b6000602082840312156131f857600080fd5b600082013567ffffffffffffffff81111561321257600080fd5b61321e84828501612fae565b91505092915050565b60006020828403121561323957600080fd5b600061324784828501612fd8565b91505092915050565b61325981613d23565b82525050565b61326881613d35565b82525050565b600061327982613bc0565b6132838185613bd6565b9350613293818560208601613da6565b61329c81613f72565b840191505092915050565b60006132b282613bcb565b6132bc8185613bf2565b93506132cc818560208601613da6565b6132d581613f72565b840191505092915050565b60006132eb82613bcb565b6132f58185613c03565b9350613305818560208601613da6565b80840191505092915050565b600061331e602b83613bf2565b915061332982613f83565b604082019050919050565b6000613341603283613bf2565b915061334c82613fd2565b604082019050919050565b6000613364602683613bf2565b915061336f82614021565b604082019050919050565b6000613387601c83613bf2565b915061339282614070565b602082019050919050565b60006133aa602483613bf2565b91506133b582614099565b604082019050919050565b60006133cd601983613bf2565b91506133d8826140e8565b602082019050919050565b60006133f0603a83613bf2565b91506133fb82614111565b604082019050919050565b6000613413601d83613bf2565b915061341e82614160565b602082019050919050565b6000613436602c83613bf2565b915061344182614189565b604082019050919050565b6000613459603883613bf2565b9150613464826141d8565b604082019050919050565b600061347c602a83613bf2565b915061348782614227565b604082019050919050565b600061349f602983613bf2565b91506134aa82614276565b604082019050919050565b60006134c2602083613bf2565b91506134cd826142c5565b602082019050919050565b60006134e5601a83613bf2565b91506134f0826142ee565b602082019050919050565b6000613508602c83613bf2565b915061351382614317565b604082019050919050565b600061352b601683613bf2565b915061353682614366565b602082019050919050565b600061354e602083613bf2565b91506135598261438f565b602082019050919050565b6000613571602983613bf2565b915061357c826143b8565b604082019050919050565b6000613594602f83613bf2565b915061359f82614407565b604082019050919050565b60006135b7601383613bf2565b91506135c282614456565b602082019050919050565b60006135da602183613bf2565b91506135e58261447f565b604082019050919050565b60006135fd602083613bf2565b9150613608826144ce565b602082019050919050565b6000613620600083613be7565b915061362b826144f7565b600082019050919050565b6000613643603183613bf2565b915061364e826144fa565b604082019050919050565b6000613666600883613bf2565b915061367182614549565b602082019050919050565b6000613689602c83613bf2565b915061369482614572565b604082019050919050565b60006136ac601f83613bf2565b91506136b7826145c1565b602082019050919050565b6136cb81613d8d565b82525050565b60006136dd82856132e0565b91506136e982846132e0565b91508190509392505050565b600061370082613613565b9150819050919050565b600060208201905061371f6000830184613250565b92915050565b600060808201905061373a6000830187613250565b6137476020830186613250565b61375460408301856136c2565b8181036060830152613766818461326e565b905095945050505050565b6000602082019050613786600083018461325f565b92915050565b600060208201905081810360008301526137a681846132a7565b905092915050565b600060408201905081810360008301526137c881856132a7565b90506137d760208301846136c2565b9392505050565b600060208201905081810360008301526137f781613311565b9050919050565b6000602082019050818103600083015261381781613334565b9050919050565b6000602082019050818103600083015261383781613357565b9050919050565b600060208201905081810360008301526138578161337a565b9050919050565b600060208201905081810360008301526138778161339d565b9050919050565b60006020820190508181036000830152613897816133c0565b9050919050565b600060208201905081810360008301526138b7816133e3565b9050919050565b600060208201905081810360008301526138d781613406565b9050919050565b600060208201905081810360008301526138f781613429565b9050919050565b600060208201905081810360008301526139178161344c565b9050919050565b600060208201905081810360008301526139378161346f565b9050919050565b6000602082019050818103600083015261395781613492565b9050919050565b60006020820190508181036000830152613977816134b5565b9050919050565b60006020820190508181036000830152613997816134d8565b9050919050565b600060208201905081810360008301526139b7816134fb565b9050919050565b600060208201905081810360008301526139d78161351e565b9050919050565b600060208201905081810360008301526139f781613541565b9050919050565b60006020820190508181036000830152613a1781613564565b9050919050565b60006020820190508181036000830152613a3781613587565b9050919050565b60006020820190508181036000830152613a57816135aa565b9050919050565b60006020820190508181036000830152613a77816135cd565b9050919050565b60006020820190508181036000830152613a97816135f0565b9050919050565b60006020820190508181036000830152613ab781613636565b9050919050565b60006020820190508181036000830152613ad781613659565b9050919050565b60006020820190508181036000830152613af78161367c565b9050919050565b60006020820190508181036000830152613b178161369f565b9050919050565b6000602082019050613b3360008301846136c2565b92915050565b6000613b43613b54565b9050613b4f8282613e0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7957613b78613f43565b5b613b8282613f72565b9050602081019050919050565b600067ffffffffffffffff821115613baa57613ba9613f43565b5b613bb382613f72565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c1982613d8d565b9150613c2483613d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5957613c58613eb6565b5b828201905092915050565b6000613c6f82613d8d565b9150613c7a83613d8d565b925082613c8a57613c89613ee5565b5b828204905092915050565b6000613ca082613d8d565b9150613cab83613d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce457613ce3613eb6565b5b828202905092915050565b6000613cfa82613d8d565b9150613d0583613d8d565b925082821015613d1857613d17613eb6565b5b828203905092915050565b6000613d2e82613d6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b60006002820490506001821680613df157607f821691505b60208210811415613e0557613e04613f14565b5b50919050565b613e1482613f72565b810181811067ffffffffffffffff82111715613e3357613e32613f43565b5b80604052505050565b6000613e4782613d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7a57613e79613eb6565b5b600182019050919050565b6000613e9082613d8d565b9150613e9b83613d8d565b925082613eab57613eaa613ee5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5374617274696e6720696e64657820616c726561647920736574000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6145f381613d23565b81146145fe57600080fd5b50565b61460a81613d35565b811461461557600080fd5b50565b61462181613d41565b811461462c57600080fd5b50565b61463881613d8d565b811461464357600080fd5b5056fea2646970667358221220212969945741e8b1064bf9b035eae957446ec1dfff3bd1a29e517ad3a0fbf16164736f6c63430008040033

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.