ETH Price: $2,291.85 (+1.22%)

Token

Abstract Nouveau (AN)
 

Overview

Max Total Supply

94 AN

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 AN
0x1d06c2bc428200c683e536e27ba2887cb9349772
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:
AbstractNouveau

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.7;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract AbstractNouveau is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 999;
    uint256 public constant WHITELIST_PRICE = 0.07 ether;
    uint256 public constant PUBLIC_PRICE = 0.09 ether;

    uint256 public constant MAX_QUANTITY = 2;

    mapping(address => uint256) public hasMinted;

    bool public mintTime = false;
    bool public publicMintTime = false;

    string private baseTokenUri = "";

    bytes32 public whitelistMerkleRoot = 0x73739025a6474df67aa5c5cf067afa3492de621fab7b24b393899b3ebed95b08;

    constructor() ERC721A("Abstract Nouveau", "AN") {

    }

    function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {

        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
        require(mintTime, "It is not time to mint");
        require(hasMinted[msg.sender] + _quantity <= MAX_QUANTITY, "Already Minted!");
        require(msg.value >= WHITELIST_PRICE * _quantity, "Not enough Ether");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof");

            hasMinted[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

    }

    function mint(uint256 _quantity) external payable {

        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
        require(publicMintTime, "It is not time to mint");
        require(hasMinted[msg.sender] + _quantity <= MAX_QUANTITY, "Already Minted!");
        require(msg.value >= PUBLIC_PRICE * _quantity, "Not enough Ether");
            
            
            hasMinted[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenURI(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function flipState() public onlyOwner {

        mintTime = !mintTime;
    }

    function flipStatePublic() public onlyOwner {

        publicMintTime = !publicMintTime;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        whitelistMerkleRoot = _merkleRoot;

    }

    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }

}

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();
                else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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);

    /**
     * @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 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","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":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipStatePublic","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff02191690831515021790555060405180602001604052806000815250600a9080519060200190620000619291906200022b565b507f73739025a6474df67aa5c5cf067afa3492de621fab7b24b393899b3ebed95b0860001b600b553480156200009657600080fd5b506040518060400160405280601081526020017f4162737472616374204e6f7576656175000000000000000000000000000000008152506040518060400160405280600281526020017f414e00000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200011b9291906200022b565b508060029080519060200190620001349291906200022b565b505050620001576200014b6200015d60201b60201c565b6200016560201b60201c565b62000340565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023990620002db565b90600052602060002090601f0160209004810192826200025d5760008555620002a9565b82601f106200027857805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a85782518255916020019190600101906200028b565b5b509050620002b89190620002bc565b5090565b5b80821115620002d7576000816000905550600101620002bd565b5090565b60006002820490506001821680620002f457607f821691505b602082108114156200030b576200030a62000311565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d4180620003506000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063aa98e0c6116100a0578063d2cab0561161006f578063d2cab05614610702578063e0df5b6f1461071e578063e41ee46a14610747578063e985e9c514610772578063f2fde38b146107af576101f9565b8063aa98e0c614610648578063b88d4fde14610673578063bd32fb661461069c578063c87b56dd146106c5576101f9565b80638e920351116100dc5780638e920351146105c157806395d89b41146105d8578063a0712d6814610603578063a22cb4651461061f576101f9565b806370a0823114610517578063715018a614610554578063864781221461056b5780638da5cb5b14610596576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e1461041e5780634f6ccce7146104475780635e40347214610484578063611f3f10146104af5780636352211e146104da576101f9565b80632f745c591461036257806332cb6b0c1461039f57806338e21cce146103ca5780633ccfd60b14610407576101f9565b80631670ea86116101cc5780631670ea86146102cc57806317e7f295146102e357806318160ddd1461030e57806323b872dd14610339576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612e88565b6107d8565b6040516102329190613397565b60405180910390f35b34801561024757600080fd5b50610250610922565b60405161025d91906133cd565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f2b565b6109b4565b60405161029a9190613330565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e1b565b610a30565b005b3480156102d857600080fd5b506102e1610b3b565b005b3480156102ef57600080fd5b506102f8610b6f565b604051610305919061352f565b60405180910390f35b34801561031a57600080fd5b50610323610b7a565b604051610330919061352f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612d05565b610b83565b005b34801561036e57600080fd5b5061038960048036038101906103849190612e1b565b610b93565b604051610396919061352f565b60405180910390f35b3480156103ab57600080fd5b506103b4610d54565b6040516103c1919061352f565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612c98565b610d5a565b6040516103fe919061352f565b60405180910390f35b34801561041357600080fd5b5061041c610d72565b005b34801561042a57600080fd5b5061044560048036038101906104409190612d05565b610d93565b005b34801561045357600080fd5b5061046e60048036038101906104699190612f2b565b610db3565b60405161047b919061352f565b60405180910390f35b34801561049057600080fd5b50610499610dfd565b6040516104a69190613397565b60405180910390f35b3480156104bb57600080fd5b506104c4610e10565b6040516104d1919061352f565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612f2b565b610e1c565b60405161050e9190613330565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612c98565b610e32565b60405161054b919061352f565b60405180910390f35b34801561056057600080fd5b50610569610f12565b005b34801561057757600080fd5b50610580610f26565b60405161058d9190613397565b60405180910390f35b3480156105a257600080fd5b506105ab610f39565b6040516105b89190613330565b60405180910390f35b3480156105cd57600080fd5b506105d6610f63565b005b3480156105e457600080fd5b506105ed610f97565b6040516105fa91906133cd565b60405180910390f35b61061d60048036038101906106189190612f2b565b611029565b005b34801561062b57600080fd5b5061064660048036038101906106419190612ddb565b611216565b005b34801561065457600080fd5b5061065d61138e565b60405161066a91906133b2565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612d58565b611394565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612e5b565b6113e7565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612f2b565b6113f9565b6040516106f991906133cd565b60405180910390f35b61071c60048036038101906107179190612f58565b6114a7565b005b34801561072a57600080fd5b5061074560048036038101906107409190612ee2565b61174e565b005b34801561075357600080fd5b5061075c611770565b604051610769919061352f565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612cc5565b611775565b6040516107a69190613397565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612c98565b611809565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091b575061091a8261188d565b5b9050919050565b60606001805461093190613809565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90613809565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf826118f7565b6109f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3b82610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac2611904565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af45750610af281610aed611904565b611775565b155b15610b2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3683838361190c565b505050565b610b436119be565b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b66f8b0a10e47000081565b60008054905090565b610b8e838383611a3c565b505050565b6000610b9e83610e32565b8210610bd6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610be0610b7a565b905060008060005b83811015610d3a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cda57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c5786841415610d23578195505050505050610d4e565b83806001019450505b508080600101915050610be8565b506000610d4a57610d4961390a565b5b5050505b92915050565b6103e781565b60086020528060005260406000206000915090505481565b610d7a6119be565b6000479050610d90610d8a610f39565b82611f61565b50565b610dae83838360405180602001604052806000815250611394565b505050565b6000610dbd610b7a565b8210610df5576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600960019054906101000a900460ff1681565b67013fbe85edc9000081565b6000610e2782612055565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f1a6119be565b610f2460006121dd565b565b600960009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6b6119be565b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b606060028054610fa690613809565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd290613809565b801561101f5780601f10610ff45761010080835404028352916020019161101f565b820191906000526020600020905b81548152906001019060200180831161100257829003601f168201915b5050505050905090565b6103e781611035610b7a565b61103f9190613634565b1115611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906133ef565b60405180910390fd5b600960019054906101000a900460ff166110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c6906134cf565b60405180910390fd5b600281600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111c9190613634565b111561115d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111549061342f565b60405180910390fd5b8067013fbe85edc9000061117191906136bb565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906134ef565b60405180910390fd5b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112029190613634565b9250508190555061121333826122a3565b50565b61121e611904565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611290611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190613397565b60405180910390a35050565b600b5481565b61139f848484611a3c565b6113ab848484846122c1565b6113e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6113ef6119be565b80600b8190555050565b6060611404826118f7565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906134af565b60405180910390fd5b60008290506000600a805461145790613809565b905011611473576040518060200160405280600081525061149f565b600a61147e8261244f565b60405160200161148f9291906132ec565b6040516020818303038152906040525b915050919050565b6103e7836114b3610b7a565b6114bd9190613634565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906133ef565b60405180910390fd5b600960009054906101000a900460ff1661154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906134cf565b60405180910390fd5b600283600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159a9190613634565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061342f565b60405180910390fd5b8266f8b0a10e4700006115ee91906136bb565b341015611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906134ef565b60405180910390fd5b60003360405160200161164391906132d1565b6040516020818303038152906040528051906020012090506116a9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54836125b0565b6116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061350f565b60405180910390fd5b83600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117379190613634565b9250508190555061174833856122a3565b50505050565b6117566119be565b80600a908051906020019061176c929190612a07565b5050565b600281565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118116119be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061340f565b60405180910390fd5b61188a816121dd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119c6611904565b73ffffffffffffffffffffffffffffffffffffffff166119e4610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a319061348f565b60405180910390fd5b565b6000611a4782612055565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a6e611904565b73ffffffffffffffffffffffffffffffffffffffff161480611aca5750611a93611904565b73ffffffffffffffffffffffffffffffffffffffff16611ab2846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ae65750611ae58260000151611ae0611904565b611775565b5b905080611b1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b88576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bfc85858560016125c7565b611c0c600084846000015161190c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef157611e50816118f7565b15611ef05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a85858560016125cd565b5050505050565b80471015611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b9061346f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fca9061331b565b60006040518083038185875af1925050503d8060008114612007576040519150601f19603f3d011682016040523d82523d6000602084013e61200c565b606091505b5050905080612050576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120479061344f565b60405180910390fd5b505050565b61205d612a8d565b612066826118f7565b61209c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106121a5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121965780925050506121d8565b508080600190039150506120a2565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122bd8282604051806020016040528060008152506125d3565b5050565b60006122e28473ffffffffffffffffffffffffffffffffffffffff166125e5565b15612442578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261230b611904565b8786866040518563ffffffff1660e01b815260040161232d949392919061334b565b602060405180830381600087803b15801561234757600080fd5b505af192505050801561237857506040513d601f19601f820116820180604052508101906123759190612eb5565b60015b6123f2573d80600081146123a8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ad565b606091505b506000815114156123ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612447565b600190505b949350505050565b60606000821415612497576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ab565b600082905060005b600082146124c95780806124b29061386c565b915050600a826124c2919061368a565b915061249f565b60008167ffffffffffffffff8111156124e5576124e46139f5565b5b6040519080825280601f01601f1916602001820160405280156125175781602001600182028036833780820191505090505b5090505b600085146125a4576001826125309190613715565b9150600a8561253f91906138d9565b603061254b9190613634565b60f81b818381518110612561576125606139c6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561259d919061368a565b945061251b565b8093505050505b919050565b6000826125bd8584612608565b1490509392505050565b50505050565b50505050565b6125e0838383600161265e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156126535761263e82868381518110612631576126306139c6565b5b60200260200101516129c5565b9150808061264b9061386c565b915050612611565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612706576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271360008683876125c7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129a857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561295c575061295a60008884886122c1565b155b15612993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506128e1565b5080600081905550506129be60008683876125cd565b5050505050565b60008183106129dd576129d882846129f0565b6129e8565b6129e783836129f0565b5b905092915050565b600082600052816020526040600020905092915050565b828054612a1390613809565b90600052602060002090601f016020900481019282612a355760008555612a7c565b82601f10612a4e57805160ff1916838001178555612a7c565b82800160010185558215612a7c579182015b82811115612a7b578251825591602001919060010190612a60565b5b509050612a899190612ac7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ae0576000816000905550600101612ac8565b5090565b6000612af7612af28461356f565b61354a565b905082815260208101848484011115612b1357612b12613a33565b5b612b1e8482856137c7565b509392505050565b6000612b39612b34846135a0565b61354a565b905082815260208101848484011115612b5557612b54613a33565b5b612b608482856137c7565b509392505050565b600081359050612b7781613c98565b92915050565b60008083601f840112612b9357612b92613a29565b5b8235905067ffffffffffffffff811115612bb057612baf613a24565b5b602083019150836020820283011115612bcc57612bcb613a2e565b5b9250929050565b600081359050612be281613caf565b92915050565b600081359050612bf781613cc6565b92915050565b600081359050612c0c81613cdd565b92915050565b600081519050612c2181613cdd565b92915050565b600082601f830112612c3c57612c3b613a29565b5b8135612c4c848260208601612ae4565b91505092915050565b600082601f830112612c6a57612c69613a29565b5b8135612c7a848260208601612b26565b91505092915050565b600081359050612c9281613cf4565b92915050565b600060208284031215612cae57612cad613a3d565b5b6000612cbc84828501612b68565b91505092915050565b60008060408385031215612cdc57612cdb613a3d565b5b6000612cea85828601612b68565b9250506020612cfb85828601612b68565b9150509250929050565b600080600060608486031215612d1e57612d1d613a3d565b5b6000612d2c86828701612b68565b9350506020612d3d86828701612b68565b9250506040612d4e86828701612c83565b9150509250925092565b60008060008060808587031215612d7257612d71613a3d565b5b6000612d8087828801612b68565b9450506020612d9187828801612b68565b9350506040612da287828801612c83565b925050606085013567ffffffffffffffff811115612dc357612dc2613a38565b5b612dcf87828801612c27565b91505092959194509250565b60008060408385031215612df257612df1613a3d565b5b6000612e0085828601612b68565b9250506020612e1185828601612bd3565b9150509250929050565b60008060408385031215612e3257612e31613a3d565b5b6000612e4085828601612b68565b9250506020612e5185828601612c83565b9150509250929050565b600060208284031215612e7157612e70613a3d565b5b6000612e7f84828501612be8565b91505092915050565b600060208284031215612e9e57612e9d613a3d565b5b6000612eac84828501612bfd565b91505092915050565b600060208284031215612ecb57612eca613a3d565b5b6000612ed984828501612c12565b91505092915050565b600060208284031215612ef857612ef7613a3d565b5b600082013567ffffffffffffffff811115612f1657612f15613a38565b5b612f2284828501612c55565b91505092915050565b600060208284031215612f4157612f40613a3d565b5b6000612f4f84828501612c83565b91505092915050565b600080600060408486031215612f7157612f70613a3d565b5b6000612f7f86828701612c83565b935050602084013567ffffffffffffffff811115612fa057612f9f613a38565b5b612fac86828701612b7d565b92509250509250925092565b612fc181613749565b82525050565b612fd8612fd382613749565b6138b5565b82525050565b612fe78161375b565b82525050565b612ff681613767565b82525050565b6000613007826135e6565b61301181856135fc565b93506130218185602086016137d6565b61302a81613a42565b840191505092915050565b6000613040826135f1565b61304a8185613618565b935061305a8185602086016137d6565b61306381613a42565b840191505092915050565b6000613079826135f1565b6130838185613629565b93506130938185602086016137d6565b80840191505092915050565b600081546130ac81613809565b6130b68186613629565b945060018216600081146130d157600181146130e257613115565b60ff19831686528186019350613115565b6130eb856135d1565b60005b8381101561310d578154818901526001820191506020810190506130ee565b838801955050505b50505092915050565b600061312b600d83613618565b915061313682613a60565b602082019050919050565b600061314e602683613618565b915061315982613a89565b604082019050919050565b6000613171600f83613618565b915061317c82613ad8565b602082019050919050565b6000613194603a83613618565b915061319f82613b01565b604082019050919050565b60006131b7601d83613618565b91506131c282613b50565b602082019050919050565b60006131da600583613629565b91506131e582613b79565b600582019050919050565b60006131fd602083613618565b915061320882613ba2565b602082019050919050565b6000613220602f83613618565b915061322b82613bcb565b604082019050919050565b6000613243601683613618565b915061324e82613c1a565b602082019050919050565b600061326660008361360d565b915061327182613c43565b600082019050919050565b6000613289601083613618565b915061329482613c46565b602082019050919050565b60006132ac601483613618565b91506132b782613c6f565b602082019050919050565b6132cb816137bd565b82525050565b60006132dd8284612fc7565b60148201915081905092915050565b60006132f8828561309f565b9150613304828461306e565b915061330f826131cd565b91508190509392505050565b600061332682613259565b9150819050919050565b60006020820190506133456000830184612fb8565b92915050565b60006080820190506133606000830187612fb8565b61336d6020830186612fb8565b61337a60408301856132c2565b818103606083015261338c8184612ffc565b905095945050505050565b60006020820190506133ac6000830184612fde565b92915050565b60006020820190506133c76000830184612fed565b92915050565b600060208201905081810360008301526133e78184613035565b905092915050565b600060208201905081810360008301526134088161311e565b9050919050565b6000602082019050818103600083015261342881613141565b9050919050565b6000602082019050818103600083015261344881613164565b9050919050565b6000602082019050818103600083015261346881613187565b9050919050565b60006020820190508181036000830152613488816131aa565b9050919050565b600060208201905081810360008301526134a8816131f0565b9050919050565b600060208201905081810360008301526134c881613213565b9050919050565b600060208201905081810360008301526134e881613236565b9050919050565b600060208201905081810360008301526135088161327c565b9050919050565b600060208201905081810360008301526135288161329f565b9050919050565b600060208201905061354460008301846132c2565b92915050565b6000613554613565565b9050613560828261383b565b919050565b6000604051905090565b600067ffffffffffffffff82111561358a576135896139f5565b5b61359382613a42565b9050602081019050919050565b600067ffffffffffffffff8211156135bb576135ba6139f5565b5b6135c482613a42565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363f826137bd565b915061364a836137bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367f5761367e613939565b5b828201905092915050565b6000613695826137bd565b91506136a0836137bd565b9250826136b0576136af613968565b5b828204905092915050565b60006136c6826137bd565b91506136d1836137bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370a57613709613939565b5b828202905092915050565b6000613720826137bd565b915061372b836137bd565b92508282101561373e5761373d613939565b5b828203905092915050565b60006137548261379d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f45780820151818401526020810190506137d9565b83811115613803576000848401525b50505050565b6000600282049050600182168061382157607f821691505b6020821081141561383557613834613997565b5b50919050565b61384482613a42565b810181811067ffffffffffffffff82111715613863576138626139f5565b5b80604052505050565b6000613877826137bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138aa576138a9613939565b5b600182019050919050565b60006138c0826138c7565b9050919050565b60006138d282613a53565b9050919050565b60006138e4826137bd565b91506138ef836137bd565b9250826138ff576138fe613968565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b613ca181613749565b8114613cac57600080fd5b50565b613cb88161375b565b8114613cc357600080fd5b50565b613ccf81613767565b8114613cda57600080fd5b50565b613ce681613771565b8114613cf157600080fd5b50565b613cfd816137bd565b8114613d0857600080fd5b5056fea2646970667358221220a377dad633bc1db4e26d1cdafe42def9df58e18897ad0118f1623d11d9a35d7264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063aa98e0c6116100a0578063d2cab0561161006f578063d2cab05614610702578063e0df5b6f1461071e578063e41ee46a14610747578063e985e9c514610772578063f2fde38b146107af576101f9565b8063aa98e0c614610648578063b88d4fde14610673578063bd32fb661461069c578063c87b56dd146106c5576101f9565b80638e920351116100dc5780638e920351146105c157806395d89b41146105d8578063a0712d6814610603578063a22cb4651461061f576101f9565b806370a0823114610517578063715018a614610554578063864781221461056b5780638da5cb5b14610596576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e1461041e5780634f6ccce7146104475780635e40347214610484578063611f3f10146104af5780636352211e146104da576101f9565b80632f745c591461036257806332cb6b0c1461039f57806338e21cce146103ca5780633ccfd60b14610407576101f9565b80631670ea86116101cc5780631670ea86146102cc57806317e7f295146102e357806318160ddd1461030e57806323b872dd14610339576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612e88565b6107d8565b6040516102329190613397565b60405180910390f35b34801561024757600080fd5b50610250610922565b60405161025d91906133cd565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f2b565b6109b4565b60405161029a9190613330565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e1b565b610a30565b005b3480156102d857600080fd5b506102e1610b3b565b005b3480156102ef57600080fd5b506102f8610b6f565b604051610305919061352f565b60405180910390f35b34801561031a57600080fd5b50610323610b7a565b604051610330919061352f565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612d05565b610b83565b005b34801561036e57600080fd5b5061038960048036038101906103849190612e1b565b610b93565b604051610396919061352f565b60405180910390f35b3480156103ab57600080fd5b506103b4610d54565b6040516103c1919061352f565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612c98565b610d5a565b6040516103fe919061352f565b60405180910390f35b34801561041357600080fd5b5061041c610d72565b005b34801561042a57600080fd5b5061044560048036038101906104409190612d05565b610d93565b005b34801561045357600080fd5b5061046e60048036038101906104699190612f2b565b610db3565b60405161047b919061352f565b60405180910390f35b34801561049057600080fd5b50610499610dfd565b6040516104a69190613397565b60405180910390f35b3480156104bb57600080fd5b506104c4610e10565b6040516104d1919061352f565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612f2b565b610e1c565b60405161050e9190613330565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612c98565b610e32565b60405161054b919061352f565b60405180910390f35b34801561056057600080fd5b50610569610f12565b005b34801561057757600080fd5b50610580610f26565b60405161058d9190613397565b60405180910390f35b3480156105a257600080fd5b506105ab610f39565b6040516105b89190613330565b60405180910390f35b3480156105cd57600080fd5b506105d6610f63565b005b3480156105e457600080fd5b506105ed610f97565b6040516105fa91906133cd565b60405180910390f35b61061d60048036038101906106189190612f2b565b611029565b005b34801561062b57600080fd5b5061064660048036038101906106419190612ddb565b611216565b005b34801561065457600080fd5b5061065d61138e565b60405161066a91906133b2565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612d58565b611394565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612e5b565b6113e7565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612f2b565b6113f9565b6040516106f991906133cd565b60405180910390f35b61071c60048036038101906107179190612f58565b6114a7565b005b34801561072a57600080fd5b5061074560048036038101906107409190612ee2565b61174e565b005b34801561075357600080fd5b5061075c611770565b604051610769919061352f565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612cc5565b611775565b6040516107a69190613397565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612c98565b611809565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091b575061091a8261188d565b5b9050919050565b60606001805461093190613809565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90613809565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109bf826118f7565b6109f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3b82610e1c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac2611904565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af45750610af281610aed611904565b611775565b155b15610b2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3683838361190c565b505050565b610b436119be565b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b66f8b0a10e47000081565b60008054905090565b610b8e838383611a3c565b505050565b6000610b9e83610e32565b8210610bd6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610be0610b7a565b905060008060005b83811015610d3a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cda57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c5786841415610d23578195505050505050610d4e565b83806001019450505b508080600101915050610be8565b506000610d4a57610d4961390a565b5b5050505b92915050565b6103e781565b60086020528060005260406000206000915090505481565b610d7a6119be565b6000479050610d90610d8a610f39565b82611f61565b50565b610dae83838360405180602001604052806000815250611394565b505050565b6000610dbd610b7a565b8210610df5576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600960019054906101000a900460ff1681565b67013fbe85edc9000081565b6000610e2782612055565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f1a6119be565b610f2460006121dd565b565b600960009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6b6119be565b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b606060028054610fa690613809565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd290613809565b801561101f5780601f10610ff45761010080835404028352916020019161101f565b820191906000526020600020905b81548152906001019060200180831161100257829003601f168201915b5050505050905090565b6103e781611035610b7a565b61103f9190613634565b1115611080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611077906133ef565b60405180910390fd5b600960019054906101000a900460ff166110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c6906134cf565b60405180910390fd5b600281600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111c9190613634565b111561115d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111549061342f565b60405180910390fd5b8067013fbe85edc9000061117191906136bb565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa906134ef565b60405180910390fd5b80600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112029190613634565b9250508190555061121333826122a3565b50565b61121e611904565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611290611904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611904565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190613397565b60405180910390a35050565b600b5481565b61139f848484611a3c565b6113ab848484846122c1565b6113e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6113ef6119be565b80600b8190555050565b6060611404826118f7565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906134af565b60405180910390fd5b60008290506000600a805461145790613809565b905011611473576040518060200160405280600081525061149f565b600a61147e8261244f565b60405160200161148f9291906132ec565b6040516020818303038152906040525b915050919050565b6103e7836114b3610b7a565b6114bd9190613634565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f5906133ef565b60405180910390fd5b600960009054906101000a900460ff1661154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906134cf565b60405180910390fd5b600283600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461159a9190613634565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061342f565b60405180910390fd5b8266f8b0a10e4700006115ee91906136bb565b341015611630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611627906134ef565b60405180910390fd5b60003360405160200161164391906132d1565b6040516020818303038152906040528051906020012090506116a9838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54836125b0565b6116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061350f565b60405180910390fd5b83600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117379190613634565b9250508190555061174833856122a3565b50505050565b6117566119be565b80600a908051906020019061176c929190612a07565b5050565b600281565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118116119be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118789061340f565b60405180910390fd5b61188a816121dd565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119c6611904565b73ffffffffffffffffffffffffffffffffffffffff166119e4610f39565b73ffffffffffffffffffffffffffffffffffffffff1614611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a319061348f565b60405180910390fd5b565b6000611a4782612055565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a6e611904565b73ffffffffffffffffffffffffffffffffffffffff161480611aca5750611a93611904565b73ffffffffffffffffffffffffffffffffffffffff16611ab2846109b4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ae65750611ae58260000151611ae0611904565b611775565b5b905080611b1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b88576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bef576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bfc85858560016125c7565b611c0c600084846000015161190c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef157611e50816118f7565b15611ef05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a85858560016125cd565b5050505050565b80471015611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b9061346f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fca9061331b565b60006040518083038185875af1925050503d8060008114612007576040519150601f19603f3d011682016040523d82523d6000602084013e61200c565b606091505b5050905080612050576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120479061344f565b60405180910390fd5b505050565b61205d612a8d565b612066826118f7565b61209c576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b600081106121a5576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121965780925050506121d8565b508080600190039150506120a2565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122bd8282604051806020016040528060008152506125d3565b5050565b60006122e28473ffffffffffffffffffffffffffffffffffffffff166125e5565b15612442578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261230b611904565b8786866040518563ffffffff1660e01b815260040161232d949392919061334b565b602060405180830381600087803b15801561234757600080fd5b505af192505050801561237857506040513d601f19601f820116820180604052508101906123759190612eb5565b60015b6123f2573d80600081146123a8576040519150601f19603f3d011682016040523d82523d6000602084013e6123ad565b606091505b506000815114156123ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612447565b600190505b949350505050565b60606000821415612497576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ab565b600082905060005b600082146124c95780806124b29061386c565b915050600a826124c2919061368a565b915061249f565b60008167ffffffffffffffff8111156124e5576124e46139f5565b5b6040519080825280601f01601f1916602001820160405280156125175781602001600182028036833780820191505090505b5090505b600085146125a4576001826125309190613715565b9150600a8561253f91906138d9565b603061254b9190613634565b60f81b818381518110612561576125606139c6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561259d919061368a565b945061251b565b8093505050505b919050565b6000826125bd8584612608565b1490509392505050565b50505050565b50505050565b6125e0838383600161265e565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156126535761263e82868381518110612631576126306139c6565b5b60200260200101516129c5565b9150808061264b9061386c565b915050612611565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612706576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271360008683876125c7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156129a857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561295c575061295a60008884886122c1565b155b15612993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506128e1565b5080600081905550506129be60008683876125cd565b5050505050565b60008183106129dd576129d882846129f0565b6129e8565b6129e783836129f0565b5b905092915050565b600082600052816020526040600020905092915050565b828054612a1390613809565b90600052602060002090601f016020900481019282612a355760008555612a7c565b82601f10612a4e57805160ff1916838001178555612a7c565b82800160010185558215612a7c579182015b82811115612a7b578251825591602001919060010190612a60565b5b509050612a899190612ac7565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ae0576000816000905550600101612ac8565b5090565b6000612af7612af28461356f565b61354a565b905082815260208101848484011115612b1357612b12613a33565b5b612b1e8482856137c7565b509392505050565b6000612b39612b34846135a0565b61354a565b905082815260208101848484011115612b5557612b54613a33565b5b612b608482856137c7565b509392505050565b600081359050612b7781613c98565b92915050565b60008083601f840112612b9357612b92613a29565b5b8235905067ffffffffffffffff811115612bb057612baf613a24565b5b602083019150836020820283011115612bcc57612bcb613a2e565b5b9250929050565b600081359050612be281613caf565b92915050565b600081359050612bf781613cc6565b92915050565b600081359050612c0c81613cdd565b92915050565b600081519050612c2181613cdd565b92915050565b600082601f830112612c3c57612c3b613a29565b5b8135612c4c848260208601612ae4565b91505092915050565b600082601f830112612c6a57612c69613a29565b5b8135612c7a848260208601612b26565b91505092915050565b600081359050612c9281613cf4565b92915050565b600060208284031215612cae57612cad613a3d565b5b6000612cbc84828501612b68565b91505092915050565b60008060408385031215612cdc57612cdb613a3d565b5b6000612cea85828601612b68565b9250506020612cfb85828601612b68565b9150509250929050565b600080600060608486031215612d1e57612d1d613a3d565b5b6000612d2c86828701612b68565b9350506020612d3d86828701612b68565b9250506040612d4e86828701612c83565b9150509250925092565b60008060008060808587031215612d7257612d71613a3d565b5b6000612d8087828801612b68565b9450506020612d9187828801612b68565b9350506040612da287828801612c83565b925050606085013567ffffffffffffffff811115612dc357612dc2613a38565b5b612dcf87828801612c27565b91505092959194509250565b60008060408385031215612df257612df1613a3d565b5b6000612e0085828601612b68565b9250506020612e1185828601612bd3565b9150509250929050565b60008060408385031215612e3257612e31613a3d565b5b6000612e4085828601612b68565b9250506020612e5185828601612c83565b9150509250929050565b600060208284031215612e7157612e70613a3d565b5b6000612e7f84828501612be8565b91505092915050565b600060208284031215612e9e57612e9d613a3d565b5b6000612eac84828501612bfd565b91505092915050565b600060208284031215612ecb57612eca613a3d565b5b6000612ed984828501612c12565b91505092915050565b600060208284031215612ef857612ef7613a3d565b5b600082013567ffffffffffffffff811115612f1657612f15613a38565b5b612f2284828501612c55565b91505092915050565b600060208284031215612f4157612f40613a3d565b5b6000612f4f84828501612c83565b91505092915050565b600080600060408486031215612f7157612f70613a3d565b5b6000612f7f86828701612c83565b935050602084013567ffffffffffffffff811115612fa057612f9f613a38565b5b612fac86828701612b7d565b92509250509250925092565b612fc181613749565b82525050565b612fd8612fd382613749565b6138b5565b82525050565b612fe78161375b565b82525050565b612ff681613767565b82525050565b6000613007826135e6565b61301181856135fc565b93506130218185602086016137d6565b61302a81613a42565b840191505092915050565b6000613040826135f1565b61304a8185613618565b935061305a8185602086016137d6565b61306381613a42565b840191505092915050565b6000613079826135f1565b6130838185613629565b93506130938185602086016137d6565b80840191505092915050565b600081546130ac81613809565b6130b68186613629565b945060018216600081146130d157600181146130e257613115565b60ff19831686528186019350613115565b6130eb856135d1565b60005b8381101561310d578154818901526001820191506020810190506130ee565b838801955050505b50505092915050565b600061312b600d83613618565b915061313682613a60565b602082019050919050565b600061314e602683613618565b915061315982613a89565b604082019050919050565b6000613171600f83613618565b915061317c82613ad8565b602082019050919050565b6000613194603a83613618565b915061319f82613b01565b604082019050919050565b60006131b7601d83613618565b91506131c282613b50565b602082019050919050565b60006131da600583613629565b91506131e582613b79565b600582019050919050565b60006131fd602083613618565b915061320882613ba2565b602082019050919050565b6000613220602f83613618565b915061322b82613bcb565b604082019050919050565b6000613243601683613618565b915061324e82613c1a565b602082019050919050565b600061326660008361360d565b915061327182613c43565b600082019050919050565b6000613289601083613618565b915061329482613c46565b602082019050919050565b60006132ac601483613618565b91506132b782613c6f565b602082019050919050565b6132cb816137bd565b82525050565b60006132dd8284612fc7565b60148201915081905092915050565b60006132f8828561309f565b9150613304828461306e565b915061330f826131cd565b91508190509392505050565b600061332682613259565b9150819050919050565b60006020820190506133456000830184612fb8565b92915050565b60006080820190506133606000830187612fb8565b61336d6020830186612fb8565b61337a60408301856132c2565b818103606083015261338c8184612ffc565b905095945050505050565b60006020820190506133ac6000830184612fde565b92915050565b60006020820190506133c76000830184612fed565b92915050565b600060208201905081810360008301526133e78184613035565b905092915050565b600060208201905081810360008301526134088161311e565b9050919050565b6000602082019050818103600083015261342881613141565b9050919050565b6000602082019050818103600083015261344881613164565b9050919050565b6000602082019050818103600083015261346881613187565b9050919050565b60006020820190508181036000830152613488816131aa565b9050919050565b600060208201905081810360008301526134a8816131f0565b9050919050565b600060208201905081810360008301526134c881613213565b9050919050565b600060208201905081810360008301526134e881613236565b9050919050565b600060208201905081810360008301526135088161327c565b9050919050565b600060208201905081810360008301526135288161329f565b9050919050565b600060208201905061354460008301846132c2565b92915050565b6000613554613565565b9050613560828261383b565b919050565b6000604051905090565b600067ffffffffffffffff82111561358a576135896139f5565b5b61359382613a42565b9050602081019050919050565b600067ffffffffffffffff8211156135bb576135ba6139f5565b5b6135c482613a42565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061363f826137bd565b915061364a836137bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561367f5761367e613939565b5b828201905092915050565b6000613695826137bd565b91506136a0836137bd565b9250826136b0576136af613968565b5b828204905092915050565b60006136c6826137bd565b91506136d1836137bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561370a57613709613939565b5b828202905092915050565b6000613720826137bd565b915061372b836137bd565b92508282101561373e5761373d613939565b5b828203905092915050565b60006137548261379d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137f45780820151818401526020810190506137d9565b83811115613803576000848401525b50505050565b6000600282049050600182168061382157607f821691505b6020821081141561383557613834613997565b5b50919050565b61384482613a42565b810181811067ffffffffffffffff82111715613863576138626139f5565b5b80604052505050565b6000613877826137bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138aa576138a9613939565b5b600182019050919050565b60006138c0826138c7565b9050919050565b60006138d282613a53565b9050919050565b60006138e4826137bd565b91506138ef836137bd565b9250826138ff576138fe613968565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b613ca181613749565b8114613cac57600080fd5b50565b613cb88161375b565b8114613cc357600080fd5b50565b613ccf81613767565b8114613cda57600080fd5b50565b613ce681613771565b8114613cf157600080fd5b50565b613cfd816137bd565b8114613d0857600080fd5b5056fea2646970667358221220a377dad633bc1db4e26d1cdafe42def9df58e18897ad0118f1623d11d9a35d7264736f6c63430008070033

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.