ETH Price: $3,490.78 (+2.24%)
Gas: 2 Gwei

Token

The Cult DAO (CULD)
 

Overview

Max Total Supply

1,036 CULD

Holders

560

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CULD
0x68ae59fe9841e7321c0ceba4338a3f3101d550e9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Cult DAO community, through a vote, will decide which NFTs or crypto assets to invest in for the benefit of all DAO members.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheCultDAO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : TheCultDAO.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "../AvatarNFT.sol";

contract TheCultDAO is AvatarNFT {

    constructor() AvatarNFT(
        0.05 ether,
        20200, // total supply
        700, // reserved supply
        50, // max mint per transaction
        "https://metadata.buildship.dev/api/token/thecultdao/",
        "The Cult DAO", "CULD"
    ) {}

    // --- Admin functions ---

    // Update beneficiary, override to make updateable
    function setBeneficiary(address payable _beneficiary) public override onlyOwner {
        beneficiary = _beneficiary;
    }

}

File 2 of 14 : AvatarNFT.sol
// SPDX-License-Identifier: MIT
// Adapted from World of Women: https://etherscan.io/token/0xe785e82358879f061bc3dcac6f0444462d4b5330#readContract
pragma solidity ^0.8.2;

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

// Want to launch your own collection ? Check out https://buildship.dev
contract AvatarNFT is ERC721, ERC721Enumerable, Ownable {

    uint256 internal _price; // = 0.03 ether;
    uint256 internal _reserved; // = 200;

    uint256 public MAX_SUPPLY; // = 10000;
    uint256 public MAX_TOKENS_PER_MINT; // = 20;

    uint256 public startingIndex;

    address payable beneficiary;

    bool private _saleStarted;

    string public PROVENANCE_HASH = "";
    string public baseURI;

    constructor(
        uint256 _startPrice, uint256 _maxSupply,
        uint256 _nReserved,
        uint256 _maxTokensPerMint,
        string memory _uri,
        string memory _name, string memory _symbol
    ) ERC721(_name, _symbol) {
        _price = _startPrice;
        _reserved = _nReserved;
        MAX_SUPPLY = _maxSupply;
        MAX_TOKENS_PER_MINT = _maxTokensPerMint;
        baseURI = _uri;
    }

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

    function contractURI() public view returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string calldata uri) public onlyOwner {
        baseURI = uri;
    }

    function setBeneficiary(address payable _beneficiary) public virtual onlyOwner {
        // require non set
        require(beneficiary == address(0));

        beneficiary = _beneficiary;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    modifier whenSaleStarted() {
        require(_saleStarted, "Sale not started");
        _;
    }

    function mint(uint256 _nbTokens) whenSaleStarted public payable virtual {
        uint256 supply = totalSupply();
        require(_nbTokens <= MAX_TOKENS_PER_MINT, "You cannot mint more than MAX_TOKENS_PER_MINT tokens at once!");
        require(supply + _nbTokens <= MAX_SUPPLY - _reserved, "Not enough Tokens left.");
        require(_nbTokens * _price <= msg.value, "Inconsistent amount sent!");

        for (uint256 i; i < _nbTokens; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function flipSaleStarted() external onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");

        _saleStarted = !_saleStarted;

        if (_saleStarted && startingIndex == 0) {
            setStartingIndex();
        }
    }

    function saleStarted() public view returns(bool) {
        return _saleStarted;
    }

    // Make it possible to change the price: just in case
    function setPrice(uint256 _newPrice) external virtual onlyOwner {
        _price = _newPrice;
    }

    function getPrice() public view virtual returns (uint256){
        return _price;
    }

    function getReservedLeft() public view virtual returns (uint256) {
        return _reserved;
    }

    // This should be set before sales open.
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE_HASH = provenanceHash;
    }

    // Helper to list all the tokens of a wallet
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function claimReserved(uint256 _number, address _receiver) external onlyOwner virtual {
        require(_number <= _reserved, "That would exceed the max reserved.");

        uint256 _tokenId = totalSupply();
        for (uint256 i; i < _number; i++) {
            _safeMint(_receiver, _tokenId + i);
        }

        _reserved = _reserved - _number;
    }

    function setStartingIndex() public virtual {
        require(startingIndex == 0, "Starting index is already set");

        // BlockHash only works for the most 256 recent blocks.
        uint256 _block_shift = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        _block_shift =  1 + (_block_shift % 255);

        // This shouldn't happen, but just in case the blockchain gets a reboot?
        if (block.number < _block_shift) {
            _block_shift = 1;
        }

        uint256 _block_ref = block.number - _block_shift;
        startingIndex = uint(blockhash(_block_ref)) % MAX_SUPPLY;

        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function withdraw() public virtual onlyOwner {
        require(beneficiary != address(0), "Beneficiary not set");

        uint256 _balance = address(this).balance;

        require(payable(beneficiary).send(_balance));
    }

    function DEVELOPER() public pure returns (string memory _url) {
        _url = "https://buildship.dev";
    }

    function DEVELOPER_ADDRESS() public pure returns (address payable _dev) {
        _dev = payable(0x704C043CeB93bD6cBE570C6A2708c3E1C0310587);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"DEVELOPER","outputs":[{"internalType":"string","name":"_url","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"DEVELOPER_ADDRESS","outputs":[{"internalType":"address payable","name":"_dev","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleStarted","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","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":"_nbTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_beneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250601190805190602001906200002b92919062000236565b503480156200003957600080fd5b5066b1a2bc2ec50000614ee86102bc603260405180606001604052806034815260200162004fe5603491396040518060400160405280600c81526020017f5468652043756c742044414f00000000000000000000000000000000000000008152506040518060400160405280600481526020017f43554c440000000000000000000000000000000000000000000000000000000081525081818160009080519060200190620000ea92919062000236565b5080600190805190602001906200010392919062000236565b505050620001266200011a6200016860201b60201c565b6200017060201b60201c565b86600b8190555084600c8190555085600d8190555083600e8190555082601290805190602001906200015a92919062000236565b50505050505050506200034b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002449062000315565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032e57607f821691505b60208210811415620003455762000344620002e6565b5b50919050565b614c8a806200035b6000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b0e1d7f3116100ab578063e8a3d4851161006f578063e8a3d48514610852578063e985e9c51461087d578063e9866550146108ba578063f2fde38b146108d1578063ff1b6556146108fa5761023b565b8063b0e1d7f31461076d578063b88d4fde14610796578063c87b56dd146107bf578063cb774d47146107fc578063daa023aa146108275761023b565b806391b7f5ed116100f257806391b7f5ed146106a957806395d89b41146106d257806398d5fdca146106fd578063a0712d6814610728578063a22cb465146107445761023b565b80636c0360eb146105e857806370a0823114610613578063715018a614610650578063899d7b38146106675780638da5cb5b1461067e5761023b565b80633377cd66116101bc578063454e66c811610180578063454e66c8146104ef5780634f6ccce71461051a57806355f804b3146105575780635c474f9e146105805780636352211e146105ab5761023b565b80633377cd661461041c5780633c934ab3146104475780633ccfd60b1461047257806342842e0e14610489578063438b6300146104b25761023b565b806318160ddd1161020357806318160ddd146103375780631c31f7101461036257806323b872dd1461038b5780632f745c59146103b457806332cb6b0c146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613289565b610925565b60405161027491906132d1565b60405180910390f35b34801561028957600080fd5b50610292610937565b60405161029f9190613385565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133dd565b6109c9565b6040516102dc919061344b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613492565b610a4e565b005b34801561031a57600080fd5b5061033560048036038101906103309190613607565b610b66565b005b34801561034357600080fd5b5061034c610bfc565b604051610359919061365f565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906136b8565b610c09565b005b34801561039757600080fd5b506103b260048036038101906103ad91906136e5565b610cc9565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613492565b610d29565b6040516103e8919061365f565b60405180910390f35b3480156103fd57600080fd5b50610406610dce565b604051610413919061365f565b60405180910390f35b34801561042857600080fd5b50610431610dd4565b60405161043e919061365f565b60405180910390f35b34801561045357600080fd5b5061045c610dda565b6040516104699190613385565b60405180910390f35b34801561047e57600080fd5b50610487610e17565b005b34801561049557600080fd5b506104b060048036038101906104ab91906136e5565b610f8d565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613738565b610fad565b6040516104e69190613823565b60405180910390f35b3480156104fb57600080fd5b5061050461105b565b6040516105119190613854565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906133dd565b611077565b60405161054e919061365f565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906138cf565b6110e8565b005b34801561058c57600080fd5b5061059561117a565b6040516105a291906132d1565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906133dd565b611191565b6040516105df919061344b565b60405180910390f35b3480156105f457600080fd5b506105fd611243565b60405161060a9190613385565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613738565b6112d1565b604051610647919061365f565b60405180910390f35b34801561065c57600080fd5b50610665611389565b005b34801561067357600080fd5b5061067c611411565b005b34801561068a57600080fd5b50610693611577565b6040516106a0919061344b565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb91906133dd565b6115a1565b005b3480156106de57600080fd5b506106e7611627565b6040516106f49190613385565b60405180910390f35b34801561070957600080fd5b506107126116b9565b60405161071f919061365f565b60405180910390f35b610742600480360381019061073d91906133dd565b6116c3565b005b34801561075057600080fd5b5061076b60048036038101906107669190613948565b611848565b005b34801561077957600080fd5b50610794600480360381019061078f9190613988565b6119c9565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613a69565b611ae3565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906133dd565b611b45565b6040516107f39190613385565b60405180910390f35b34801561080857600080fd5b50610811611bec565b60405161081e919061365f565b60405180910390f35b34801561083357600080fd5b5061083c611bf2565b604051610849919061365f565b60405180910390f35b34801561085e57600080fd5b50610867611bfc565b6040516108749190613385565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190613aec565b611c8e565b6040516108b191906132d1565b60405180910390f35b3480156108c657600080fd5b506108cf611d22565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613738565b611e0c565b005b34801561090657600080fd5b5061090f611f04565b60405161091c9190613385565b60405180910390f35b600061093082611f92565b9050919050565b60606000805461094690613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613b5b565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d48261200c565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90613bff565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613c91565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae9612078565b73ffffffffffffffffffffffffffffffffffffffff161480610b185750610b1781610b12612078565b611c8e565b5b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613d23565b60405180910390fd5b610b618383612080565b505050565b610b6e612078565b73ffffffffffffffffffffffffffffffffffffffff16610b8c611577565b73ffffffffffffffffffffffffffffffffffffffff1614610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613d8f565b60405180910390fd5b8060119080519060200190610bf89291906130f4565b5050565b6000600880549050905090565b610c11612078565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611577565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613d8f565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cda610cd4612078565b82612139565b610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613e21565b60405180910390fd5b610d24838383612217565b505050565b6000610d34836112d1565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613eb3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600e5481565b60606040518060400160405280601581526020017f68747470733a2f2f6275696c64736869702e6465760000000000000000000000815250905090565b610e1f612078565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611577565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90613f1f565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8a57600080fd5b50565b610fa883838360405180602001604052806000815250611ae3565b505050565b60606000610fba836112d1565b905060008167ffffffffffffffff811115610fd857610fd76134dc565b5b6040519080825280602002602001820160405280156110065781602001602082028036833780820191505090505b50905060005b828110156110505761101e8582610d29565b82828151811061103157611030613f3f565b5b602002602001018181525050808061104890613f9d565b91505061100c565b508092505050919050565b600073704c043ceb93bd6cbe570c6a2708c3e1c0310587905090565b6000611081610bfc565b82106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614058565b60405180910390fd5b600882815481106110d6576110d5613f3f565b5b90600052602060002001549050919050565b6110f0612078565b73ffffffffffffffffffffffffffffffffffffffff1661110e611577565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613d8f565b60405180910390fd5b81816012919061117592919061317a565b505050565b6000601060149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906140ea565b60405180910390fd5b80915050919050565b6012805461125090613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461127c90613b5b565b80156112c95780601f1061129e576101008083540402835291602001916112c9565b820191906000526020600020905b8154815290600101906020018083116112ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113399061417c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611391612078565b73ffffffffffffffffffffffffffffffffffffffff166113af611577565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613d8f565b60405180910390fd5b61140f6000612473565b565b611419612078565b73ffffffffffffffffffffffffffffffffffffffff16611437611577565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613f1f565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550601060149054906101000a900460ff16801561156757506000600f54145b1561157557611574611d22565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a9612078565b73ffffffffffffffffffffffffffffffffffffffff166115c7611577565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613d8f565b60405180910390fd5b80600b8190555050565b60606001805461163690613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461166290613b5b565b80156116af5780601f10611684576101008083540402835291602001916116af565b820191906000526020600020905b81548152906001019060200180831161169257829003601f168201915b5050505050905090565b6000600b54905090565b601060149054906101000a900460ff16611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906141e8565b60405180910390fd5b600061171c610bfc565b9050600e54821115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a9061427a565b60405180910390fd5b600c54600d54611773919061429a565b828261177f91906142ce565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614370565b60405180910390fd5b34600b54836117cf9190614390565b1115611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614436565b60405180910390fd5b60005b828110156118435761183033828461182b91906142ce565b612539565b808061183b90613f9d565b915050611813565b505050565b611850612078565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906144a2565b60405180910390fd5b80600560006118cb612078565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611978612078565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119bd91906132d1565b60405180910390a35050565b6119d1612078565b73ffffffffffffffffffffffffffffffffffffffff166119ef611577565b73ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c90613d8f565b60405180910390fd5b600c54821115611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190614534565b60405180910390fd5b6000611a94610bfc565b905060005b83811015611ac957611ab6838284611ab191906142ce565b612539565b8080611ac190613f9d565b915050611a99565b5082600c54611ad8919061429a565b600c81905550505050565b611af4611aee612078565b83612139565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90613e21565b60405180910390fd5b611b3f84848484612557565b50505050565b6060611b508261200c565b611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906145c6565b60405180910390fd5b6000611b996125b3565b90506000815111611bb95760405180602001604052806000815250611be4565b80611bc384612645565b604051602001611bd4929190614622565b6040516020818303038152906040525b915050919050565b600f5481565b6000600c54905090565b606060128054611c0b90613b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3790613b5b565b8015611c845780601f10611c5957610100808354040283529160200191611c84565b820191906000526020600020905b815481529060010190602001808311611c6757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600f5414611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614692565b60405180910390fd5b60004442604051602001611d7c9291906146d3565b6040516020818303038152906040528051906020012060001c905060ff81611da4919061472e565b6001611db091906142ce565b905080431015611dbf57600190505b60008143611dcd919061429a565b9050600d54814060001c611de1919061472e565b600f819055506000600f541415611e08576001600f54611e0191906142ce565b600f819055505b5050565b611e14612078565b73ffffffffffffffffffffffffffffffffffffffff16611e32611577565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef906147d1565b60405180910390fd5b611f0181612473565b50565b60118054611f1190613b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3d90613b5b565b8015611f8a5780601f10611f5f57610100808354040283529160200191611f8a565b820191906000526020600020905b815481529060010190602001808311611f6d57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120055750612004826127a6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120f383611191565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121448261200c565b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614863565b60405180910390fd5b600061218e83611191565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fd57508373ffffffffffffffffffffffffffffffffffffffff166121e5846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220e575061220d8185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223782611191565b73ffffffffffffffffffffffffffffffffffffffff161461228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906148f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614987565b60405180910390fd5b612308838383612888565b612313600082612080565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612363919061429a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ba91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612553828260405180602001604052806000815250612898565b5050565b612562848484612217565b61256e848484846128f3565b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a490614a19565b60405180910390fd5b50505050565b6060601280546125c290613b5b565b80601f01602080910402602001604051908101604052809291908181526020018280546125ee90613b5b565b801561263b5780601f106126105761010080835404028352916020019161263b565b820191906000526020600020905b81548152906001019060200180831161261e57829003601f168201915b5050505050905090565b6060600082141561268d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a1565b600082905060005b600082146126bf5780806126a890613f9d565b915050600a826126b89190614a39565b9150612695565b60008167ffffffffffffffff8111156126db576126da6134dc565b5b6040519080825280601f01601f19166020018201604052801561270d5781602001600182028036833780820191505090505b5090505b6000851461279a57600182612726919061429a565b9150600a85612735919061472e565b603061274191906142ce565b60f81b81838151811061275757612756613f3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127939190614a39565b9450612711565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612881575061288082612a8a565b5b9050919050565b612893838383612af4565b505050565b6128a28383612c08565b6128af60008484846128f3565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614a19565b60405180910390fd5b505050565b60006129148473ffffffffffffffffffffffffffffffffffffffff16612dd6565b15612a7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261293d612078565b8786866040518563ffffffff1660e01b815260040161295f9493929190614abf565b602060405180830381600087803b15801561297957600080fd5b505af19250505080156129aa57506040513d601f19601f820116820180604052508101906129a79190614b20565b60015b612a2d573d80600081146129da576040519150601f19603f3d011682016040523d82523d6000602084013e6129df565b606091505b50600081511415612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90614a19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a82565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612aff838383612de9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b4257612b3d81612dee565b612b81565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b8057612b7f8382612e37565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc457612bbf81612fa4565b612c03565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c0257612c018282613075565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f90614b99565b60405180910390fd5b612c818161200c565b15612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614c05565b60405180910390fd5b612ccd60008383612888565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1d91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e44846112d1565b612e4e919061429a565b9050600060076000848152602001908152602001600020549050818114612f33576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fb8919061429a565b9050600060096000848152602001908152602001600020549050600060088381548110612fe857612fe7613f3f565b5b90600052602060002001549050806008838154811061300a57613009613f3f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061305957613058614c25565b5b6001900381819060005260206000200160009055905550505050565b6000613080836112d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461310090613b5b565b90600052602060002090601f0160209004810192826131225760008555613169565b82601f1061313b57805160ff1916838001178555613169565b82800160010185558215613169579182015b8281111561316857825182559160200191906001019061314d565b5b5090506131769190613200565b5090565b82805461318690613b5b565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157803560ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782358255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61326681613231565b811461327157600080fd5b50565b6000813590506132838161325d565b92915050565b60006020828403121561329f5761329e613227565b5b60006132ad84828501613274565b91505092915050565b60008115159050919050565b6132cb816132b6565b82525050565b60006020820190506132e660008301846132c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332657808201518184015260208101905061330b565b83811115613335576000848401525b50505050565b6000601f19601f8301169050919050565b6000613357826132ec565b61336181856132f7565b9350613371818560208601613308565b61337a8161333b565b840191505092915050565b6000602082019050818103600083015261339f818461334c565b905092915050565b6000819050919050565b6133ba816133a7565b81146133c557600080fd5b50565b6000813590506133d7816133b1565b92915050565b6000602082840312156133f3576133f2613227565b5b6000613401848285016133c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134358261340a565b9050919050565b6134458161342a565b82525050565b6000602082019050613460600083018461343c565b92915050565b61346f8161342a565b811461347a57600080fd5b50565b60008135905061348c81613466565b92915050565b600080604083850312156134a9576134a8613227565b5b60006134b78582860161347d565b92505060206134c8858286016133c8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135148261333b565b810181811067ffffffffffffffff82111715613533576135326134dc565b5b80604052505050565b600061354661321d565b9050613552828261350b565b919050565b600067ffffffffffffffff821115613572576135716134dc565b5b61357b8261333b565b9050602081019050919050565b82818337600083830152505050565b60006135aa6135a584613557565b61353c565b9050828152602081018484840111156135c6576135c56134d7565b5b6135d1848285613588565b509392505050565b600082601f8301126135ee576135ed6134d2565b5b81356135fe848260208601613597565b91505092915050565b60006020828403121561361d5761361c613227565b5b600082013567ffffffffffffffff81111561363b5761363a61322c565b5b613647848285016135d9565b91505092915050565b613659816133a7565b82525050565b60006020820190506136746000830184613650565b92915050565b60006136858261340a565b9050919050565b6136958161367a565b81146136a057600080fd5b50565b6000813590506136b28161368c565b92915050565b6000602082840312156136ce576136cd613227565b5b60006136dc848285016136a3565b91505092915050565b6000806000606084860312156136fe576136fd613227565b5b600061370c8682870161347d565b935050602061371d8682870161347d565b925050604061372e868287016133c8565b9150509250925092565b60006020828403121561374e5761374d613227565b5b600061375c8482850161347d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61379a816133a7565b82525050565b60006137ac8383613791565b60208301905092915050565b6000602082019050919050565b60006137d082613765565b6137da8185613770565b93506137e583613781565b8060005b838110156138165781516137fd88826137a0565b9750613808836137b8565b9250506001810190506137e9565b5085935050505092915050565b6000602082019050818103600083015261383d81846137c5565b905092915050565b61384e8161367a565b82525050565b60006020820190506138696000830184613845565b92915050565b600080fd5b600080fd5b60008083601f84011261388f5761388e6134d2565b5b8235905067ffffffffffffffff8111156138ac576138ab61386f565b5b6020830191508360018202830111156138c8576138c7613874565b5b9250929050565b600080602083850312156138e6576138e5613227565b5b600083013567ffffffffffffffff8111156139045761390361322c565b5b61391085828601613879565b92509250509250929050565b613925816132b6565b811461393057600080fd5b50565b6000813590506139428161391c565b92915050565b6000806040838503121561395f5761395e613227565b5b600061396d8582860161347d565b925050602061397e85828601613933565b9150509250929050565b6000806040838503121561399f5761399e613227565b5b60006139ad858286016133c8565b92505060206139be8582860161347d565b9150509250929050565b600067ffffffffffffffff8211156139e3576139e26134dc565b5b6139ec8261333b565b9050602081019050919050565b6000613a0c613a07846139c8565b61353c565b905082815260208101848484011115613a2857613a276134d7565b5b613a33848285613588565b509392505050565b600082601f830112613a5057613a4f6134d2565b5b8135613a608482602086016139f9565b91505092915050565b60008060008060808587031215613a8357613a82613227565b5b6000613a918782880161347d565b9450506020613aa28782880161347d565b9350506040613ab3878288016133c8565b925050606085013567ffffffffffffffff811115613ad457613ad361322c565b5b613ae087828801613a3b565b91505092959194509250565b60008060408385031215613b0357613b02613227565b5b6000613b118582860161347d565b9250506020613b228582860161347d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b7357607f821691505b60208210811415613b8757613b86613b2c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613be9602c836132f7565b9150613bf482613b8d565b604082019050919050565b60006020820190508181036000830152613c1881613bdc565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c7b6021836132f7565b9150613c8682613c1f565b604082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613d0d6038836132f7565b9150613d1882613cb1565b604082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d796020836132f7565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e0b6031836132f7565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613e9d602b836132f7565b9150613ea882613e41565b604082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b6000613f096013836132f7565b9150613f1482613ed3565b602082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fa8826133a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fdb57613fda613f6e565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614042602c836132f7565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006140d46029836132f7565b91506140df82614078565b604082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614166602a836132f7565b91506141718261410a565b604082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b60006141d26010836132f7565b91506141dd8261419c565b602082019050919050565b60006020820190508181036000830152614201816141c5565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e204d41585f544f60008201527f4b454e535f5045525f4d494e5420746f6b656e73206174206f6e636521000000602082015250565b6000614264603d836132f7565b915061426f82614208565b604082019050919050565b6000602082019050818103600083015261429381614257565b9050919050565b60006142a5826133a7565b91506142b0836133a7565b9250828210156142c3576142c2613f6e565b5b828203905092915050565b60006142d9826133a7565b91506142e4836133a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431957614318613f6e565b5b828201905092915050565b7f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000600082015250565b600061435a6017836132f7565b915061436582614324565b602082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b600061439b826133a7565b91506143a6836133a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143df576143de613f6e565b5b828202905092915050565b7f496e636f6e73697374656e7420616d6f756e742073656e742100000000000000600082015250565b60006144206019836132f7565b915061442b826143ea565b602082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061448c6019836132f7565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f5468617420776f756c642065786365656420746865206d61782072657365727660008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b600061451e6023836132f7565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145b0602f836132f7565b91506145bb82614554565b604082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b600081905092915050565b60006145fc826132ec565b61460681856145e6565b9350614616818560208601613308565b80840191505092915050565b600061462e82856145f1565b915061463a82846145f1565b91508190509392505050565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b600061467c601d836132f7565b915061468782614646565b602082019050919050565b600060208201905081810360008301526146ab8161466f565b9050919050565b6000819050919050565b6146cd6146c8826133a7565b6146b2565b82525050565b60006146df82856146bc565b6020820191506146ef82846146bc565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614739826133a7565b9150614744836133a7565b925082614754576147536146ff565b5b828206905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147bb6026836132f7565b91506147c68261475f565b604082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061484d602c836132f7565b9150614858826147f1565b604082019050919050565b6000602082019050818103600083015261487c81614840565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148df6029836132f7565b91506148ea82614883565b604082019050919050565b6000602082019050818103600083015261490e816148d2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149716024836132f7565b915061497c82614915565b604082019050919050565b600060208201905081810360008301526149a081614964565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a036032836132f7565b9150614a0e826149a7565b604082019050919050565b60006020820190508181036000830152614a32816149f6565b9050919050565b6000614a44826133a7565b9150614a4f836133a7565b925082614a5f57614a5e6146ff565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a9182614a6a565b614a9b8185614a75565b9350614aab818560208601613308565b614ab48161333b565b840191505092915050565b6000608082019050614ad4600083018761343c565b614ae1602083018661343c565b614aee6040830185613650565b8181036060830152614b008184614a86565b905095945050505050565b600081519050614b1a8161325d565b92915050565b600060208284031215614b3657614b35613227565b5b6000614b4484828501614b0b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614b836020836132f7565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614bef601c836132f7565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207021dd292eb53c5abbd9006ab718779f3a14a51cfe27a73853c189617cc758ed64736f6c6343000809003368747470733a2f2f6d657461646174612e6275696c64736869702e6465762f6170692f746f6b656e2f74686563756c7464616f2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b0e1d7f3116100ab578063e8a3d4851161006f578063e8a3d48514610852578063e985e9c51461087d578063e9866550146108ba578063f2fde38b146108d1578063ff1b6556146108fa5761023b565b8063b0e1d7f31461076d578063b88d4fde14610796578063c87b56dd146107bf578063cb774d47146107fc578063daa023aa146108275761023b565b806391b7f5ed116100f257806391b7f5ed146106a957806395d89b41146106d257806398d5fdca146106fd578063a0712d6814610728578063a22cb465146107445761023b565b80636c0360eb146105e857806370a0823114610613578063715018a614610650578063899d7b38146106675780638da5cb5b1461067e5761023b565b80633377cd66116101bc578063454e66c811610180578063454e66c8146104ef5780634f6ccce71461051a57806355f804b3146105575780635c474f9e146105805780636352211e146105ab5761023b565b80633377cd661461041c5780633c934ab3146104475780633ccfd60b1461047257806342842e0e14610489578063438b6300146104b25761023b565b806318160ddd1161020357806318160ddd146103375780631c31f7101461036257806323b872dd1461038b5780632f745c59146103b457806332cb6b0c146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613289565b610925565b60405161027491906132d1565b60405180910390f35b34801561028957600080fd5b50610292610937565b60405161029f9190613385565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133dd565b6109c9565b6040516102dc919061344b565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613492565b610a4e565b005b34801561031a57600080fd5b5061033560048036038101906103309190613607565b610b66565b005b34801561034357600080fd5b5061034c610bfc565b604051610359919061365f565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906136b8565b610c09565b005b34801561039757600080fd5b506103b260048036038101906103ad91906136e5565b610cc9565b005b3480156103c057600080fd5b506103db60048036038101906103d69190613492565b610d29565b6040516103e8919061365f565b60405180910390f35b3480156103fd57600080fd5b50610406610dce565b604051610413919061365f565b60405180910390f35b34801561042857600080fd5b50610431610dd4565b60405161043e919061365f565b60405180910390f35b34801561045357600080fd5b5061045c610dda565b6040516104699190613385565b60405180910390f35b34801561047e57600080fd5b50610487610e17565b005b34801561049557600080fd5b506104b060048036038101906104ab91906136e5565b610f8d565b005b3480156104be57600080fd5b506104d960048036038101906104d49190613738565b610fad565b6040516104e69190613823565b60405180910390f35b3480156104fb57600080fd5b5061050461105b565b6040516105119190613854565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906133dd565b611077565b60405161054e919061365f565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906138cf565b6110e8565b005b34801561058c57600080fd5b5061059561117a565b6040516105a291906132d1565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906133dd565b611191565b6040516105df919061344b565b60405180910390f35b3480156105f457600080fd5b506105fd611243565b60405161060a9190613385565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613738565b6112d1565b604051610647919061365f565b60405180910390f35b34801561065c57600080fd5b50610665611389565b005b34801561067357600080fd5b5061067c611411565b005b34801561068a57600080fd5b50610693611577565b6040516106a0919061344b565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb91906133dd565b6115a1565b005b3480156106de57600080fd5b506106e7611627565b6040516106f49190613385565b60405180910390f35b34801561070957600080fd5b506107126116b9565b60405161071f919061365f565b60405180910390f35b610742600480360381019061073d91906133dd565b6116c3565b005b34801561075057600080fd5b5061076b60048036038101906107669190613948565b611848565b005b34801561077957600080fd5b50610794600480360381019061078f9190613988565b6119c9565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613a69565b611ae3565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906133dd565b611b45565b6040516107f39190613385565b60405180910390f35b34801561080857600080fd5b50610811611bec565b60405161081e919061365f565b60405180910390f35b34801561083357600080fd5b5061083c611bf2565b604051610849919061365f565b60405180910390f35b34801561085e57600080fd5b50610867611bfc565b6040516108749190613385565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190613aec565b611c8e565b6040516108b191906132d1565b60405180910390f35b3480156108c657600080fd5b506108cf611d22565b005b3480156108dd57600080fd5b506108f860048036038101906108f39190613738565b611e0c565b005b34801561090657600080fd5b5061090f611f04565b60405161091c9190613385565b60405180910390f35b600061093082611f92565b9050919050565b60606000805461094690613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613b5b565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d48261200c565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90613bff565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613c91565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ae9612078565b73ffffffffffffffffffffffffffffffffffffffff161480610b185750610b1781610b12612078565b611c8e565b5b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613d23565b60405180910390fd5b610b618383612080565b505050565b610b6e612078565b73ffffffffffffffffffffffffffffffffffffffff16610b8c611577565b73ffffffffffffffffffffffffffffffffffffffff1614610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613d8f565b60405180910390fd5b8060119080519060200190610bf89291906130f4565b5050565b6000600880549050905090565b610c11612078565b73ffffffffffffffffffffffffffffffffffffffff16610c2f611577565b73ffffffffffffffffffffffffffffffffffffffff1614610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613d8f565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cda610cd4612078565b82612139565b610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613e21565b60405180910390fd5b610d24838383612217565b505050565b6000610d34836112d1565b8210610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613eb3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600d5481565b600e5481565b60606040518060400160405280601581526020017f68747470733a2f2f6275696c64736869702e6465760000000000000000000000815250905090565b610e1f612078565b73ffffffffffffffffffffffffffffffffffffffff16610e3d611577565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90613f1f565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8a57600080fd5b50565b610fa883838360405180602001604052806000815250611ae3565b505050565b60606000610fba836112d1565b905060008167ffffffffffffffff811115610fd857610fd76134dc565b5b6040519080825280602002602001820160405280156110065781602001602082028036833780820191505090505b50905060005b828110156110505761101e8582610d29565b82828151811061103157611030613f3f565b5b602002602001018181525050808061104890613f9d565b91505061100c565b508092505050919050565b600073704c043ceb93bd6cbe570c6a2708c3e1c0310587905090565b6000611081610bfc565b82106110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614058565b60405180910390fd5b600882815481106110d6576110d5613f3f565b5b90600052602060002001549050919050565b6110f0612078565b73ffffffffffffffffffffffffffffffffffffffff1661110e611577565b73ffffffffffffffffffffffffffffffffffffffff1614611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613d8f565b60405180910390fd5b81816012919061117592919061317a565b505050565b6000601060149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906140ea565b60405180910390fd5b80915050919050565b6012805461125090613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461127c90613b5b565b80156112c95780601f1061129e576101008083540402835291602001916112c9565b820191906000526020600020905b8154815290600101906020018083116112ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611342576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113399061417c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611391612078565b73ffffffffffffffffffffffffffffffffffffffff166113af611577565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90613d8f565b60405180910390fd5b61140f6000612473565b565b611419612078565b73ffffffffffffffffffffffffffffffffffffffff16611437611577565b73ffffffffffffffffffffffffffffffffffffffff161461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613f1f565b60405180910390fd5b601060149054906101000a900460ff1615601060146101000a81548160ff021916908315150217905550601060149054906101000a900460ff16801561156757506000600f54145b1561157557611574611d22565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115a9612078565b73ffffffffffffffffffffffffffffffffffffffff166115c7611577565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613d8f565b60405180910390fd5b80600b8190555050565b60606001805461163690613b5b565b80601f016020809104026020016040519081016040528092919081815260200182805461166290613b5b565b80156116af5780601f10611684576101008083540402835291602001916116af565b820191906000526020600020905b81548152906001019060200180831161169257829003601f168201915b5050505050905090565b6000600b54905090565b601060149054906101000a900460ff16611712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611709906141e8565b60405180910390fd5b600061171c610bfc565b9050600e54821115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a9061427a565b60405180910390fd5b600c54600d54611773919061429a565b828261177f91906142ce565b11156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614370565b60405180910390fd5b34600b54836117cf9190614390565b1115611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790614436565b60405180910390fd5b60005b828110156118435761183033828461182b91906142ce565b612539565b808061183b90613f9d565b915050611813565b505050565b611850612078565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906144a2565b60405180910390fd5b80600560006118cb612078565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611978612078565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119bd91906132d1565b60405180910390a35050565b6119d1612078565b73ffffffffffffffffffffffffffffffffffffffff166119ef611577565b73ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c90613d8f565b60405180910390fd5b600c54821115611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8190614534565b60405180910390fd5b6000611a94610bfc565b905060005b83811015611ac957611ab6838284611ab191906142ce565b612539565b8080611ac190613f9d565b915050611a99565b5082600c54611ad8919061429a565b600c81905550505050565b611af4611aee612078565b83612139565b611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90613e21565b60405180910390fd5b611b3f84848484612557565b50505050565b6060611b508261200c565b611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906145c6565b60405180910390fd5b6000611b996125b3565b90506000815111611bb95760405180602001604052806000815250611be4565b80611bc384612645565b604051602001611bd4929190614622565b6040516020818303038152906040525b915050919050565b600f5481565b6000600c54905090565b606060128054611c0b90613b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3790613b5b565b8015611c845780601f10611c5957610100808354040283529160200191611c84565b820191906000526020600020905b815481529060010190602001808311611c6757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600f5414611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e90614692565b60405180910390fd5b60004442604051602001611d7c9291906146d3565b6040516020818303038152906040528051906020012060001c905060ff81611da4919061472e565b6001611db091906142ce565b905080431015611dbf57600190505b60008143611dcd919061429a565b9050600d54814060001c611de1919061472e565b600f819055506000600f541415611e08576001600f54611e0191906142ce565b600f819055505b5050565b611e14612078565b73ffffffffffffffffffffffffffffffffffffffff16611e32611577565b73ffffffffffffffffffffffffffffffffffffffff1614611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f90613d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef906147d1565b60405180910390fd5b611f0181612473565b50565b60118054611f1190613b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3d90613b5b565b8015611f8a5780601f10611f5f57610100808354040283529160200191611f8a565b820191906000526020600020905b815481529060010190602001808311611f6d57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120055750612004826127a6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120f383611191565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121448261200c565b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614863565b60405180910390fd5b600061218e83611191565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fd57508373ffffffffffffffffffffffffffffffffffffffff166121e5846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220e575061220d8185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223782611191565b73ffffffffffffffffffffffffffffffffffffffff161461228d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612284906148f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490614987565b60405180910390fd5b612308838383612888565b612313600082612080565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612363919061429a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ba91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612553828260405180602001604052806000815250612898565b5050565b612562848484612217565b61256e848484846128f3565b6125ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a490614a19565b60405180910390fd5b50505050565b6060601280546125c290613b5b565b80601f01602080910402602001604051908101604052809291908181526020018280546125ee90613b5b565b801561263b5780601f106126105761010080835404028352916020019161263b565b820191906000526020600020905b81548152906001019060200180831161261e57829003601f168201915b5050505050905090565b6060600082141561268d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a1565b600082905060005b600082146126bf5780806126a890613f9d565b915050600a826126b89190614a39565b9150612695565b60008167ffffffffffffffff8111156126db576126da6134dc565b5b6040519080825280601f01601f19166020018201604052801561270d5781602001600182028036833780820191505090505b5090505b6000851461279a57600182612726919061429a565b9150600a85612735919061472e565b603061274191906142ce565b60f81b81838151811061275757612756613f3f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127939190614a39565b9450612711565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061287157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612881575061288082612a8a565b5b9050919050565b612893838383612af4565b505050565b6128a28383612c08565b6128af60008484846128f3565b6128ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e590614a19565b60405180910390fd5b505050565b60006129148473ffffffffffffffffffffffffffffffffffffffff16612dd6565b15612a7d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261293d612078565b8786866040518563ffffffff1660e01b815260040161295f9493929190614abf565b602060405180830381600087803b15801561297957600080fd5b505af19250505080156129aa57506040513d601f19601f820116820180604052508101906129a79190614b20565b60015b612a2d573d80600081146129da576040519150601f19603f3d011682016040523d82523d6000602084013e6129df565b606091505b50600081511415612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90614a19565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a82565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612aff838383612de9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b4257612b3d81612dee565b612b81565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b8057612b7f8382612e37565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bc457612bbf81612fa4565b612c03565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c0257612c018282613075565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6f90614b99565b60405180910390fd5b612c818161200c565b15612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614c05565b60405180910390fd5b612ccd60008383612888565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1d91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e44846112d1565b612e4e919061429a565b9050600060076000848152602001908152602001600020549050818114612f33576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612fb8919061429a565b9050600060096000848152602001908152602001600020549050600060088381548110612fe857612fe7613f3f565b5b90600052602060002001549050806008838154811061300a57613009613f3f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061305957613058614c25565b5b6001900381819060005260206000200160009055905550505050565b6000613080836112d1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461310090613b5b565b90600052602060002090601f0160209004810192826131225760008555613169565b82601f1061313b57805160ff1916838001178555613169565b82800160010185558215613169579182015b8281111561316857825182559160200191906001019061314d565b5b5090506131769190613200565b5090565b82805461318690613b5b565b90600052602060002090601f0160209004810192826131a857600085556131ef565b82601f106131c157803560ff19168380011785556131ef565b828001600101855582156131ef579182015b828111156131ee5782358255916020019190600101906131d3565b5b5090506131fc9190613200565b5090565b5b80821115613219576000816000905550600101613201565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61326681613231565b811461327157600080fd5b50565b6000813590506132838161325d565b92915050565b60006020828403121561329f5761329e613227565b5b60006132ad84828501613274565b91505092915050565b60008115159050919050565b6132cb816132b6565b82525050565b60006020820190506132e660008301846132c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561332657808201518184015260208101905061330b565b83811115613335576000848401525b50505050565b6000601f19601f8301169050919050565b6000613357826132ec565b61336181856132f7565b9350613371818560208601613308565b61337a8161333b565b840191505092915050565b6000602082019050818103600083015261339f818461334c565b905092915050565b6000819050919050565b6133ba816133a7565b81146133c557600080fd5b50565b6000813590506133d7816133b1565b92915050565b6000602082840312156133f3576133f2613227565b5b6000613401848285016133c8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134358261340a565b9050919050565b6134458161342a565b82525050565b6000602082019050613460600083018461343c565b92915050565b61346f8161342a565b811461347a57600080fd5b50565b60008135905061348c81613466565b92915050565b600080604083850312156134a9576134a8613227565b5b60006134b78582860161347d565b92505060206134c8858286016133c8565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135148261333b565b810181811067ffffffffffffffff82111715613533576135326134dc565b5b80604052505050565b600061354661321d565b9050613552828261350b565b919050565b600067ffffffffffffffff821115613572576135716134dc565b5b61357b8261333b565b9050602081019050919050565b82818337600083830152505050565b60006135aa6135a584613557565b61353c565b9050828152602081018484840111156135c6576135c56134d7565b5b6135d1848285613588565b509392505050565b600082601f8301126135ee576135ed6134d2565b5b81356135fe848260208601613597565b91505092915050565b60006020828403121561361d5761361c613227565b5b600082013567ffffffffffffffff81111561363b5761363a61322c565b5b613647848285016135d9565b91505092915050565b613659816133a7565b82525050565b60006020820190506136746000830184613650565b92915050565b60006136858261340a565b9050919050565b6136958161367a565b81146136a057600080fd5b50565b6000813590506136b28161368c565b92915050565b6000602082840312156136ce576136cd613227565b5b60006136dc848285016136a3565b91505092915050565b6000806000606084860312156136fe576136fd613227565b5b600061370c8682870161347d565b935050602061371d8682870161347d565b925050604061372e868287016133c8565b9150509250925092565b60006020828403121561374e5761374d613227565b5b600061375c8482850161347d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61379a816133a7565b82525050565b60006137ac8383613791565b60208301905092915050565b6000602082019050919050565b60006137d082613765565b6137da8185613770565b93506137e583613781565b8060005b838110156138165781516137fd88826137a0565b9750613808836137b8565b9250506001810190506137e9565b5085935050505092915050565b6000602082019050818103600083015261383d81846137c5565b905092915050565b61384e8161367a565b82525050565b60006020820190506138696000830184613845565b92915050565b600080fd5b600080fd5b60008083601f84011261388f5761388e6134d2565b5b8235905067ffffffffffffffff8111156138ac576138ab61386f565b5b6020830191508360018202830111156138c8576138c7613874565b5b9250929050565b600080602083850312156138e6576138e5613227565b5b600083013567ffffffffffffffff8111156139045761390361322c565b5b61391085828601613879565b92509250509250929050565b613925816132b6565b811461393057600080fd5b50565b6000813590506139428161391c565b92915050565b6000806040838503121561395f5761395e613227565b5b600061396d8582860161347d565b925050602061397e85828601613933565b9150509250929050565b6000806040838503121561399f5761399e613227565b5b60006139ad858286016133c8565b92505060206139be8582860161347d565b9150509250929050565b600067ffffffffffffffff8211156139e3576139e26134dc565b5b6139ec8261333b565b9050602081019050919050565b6000613a0c613a07846139c8565b61353c565b905082815260208101848484011115613a2857613a276134d7565b5b613a33848285613588565b509392505050565b600082601f830112613a5057613a4f6134d2565b5b8135613a608482602086016139f9565b91505092915050565b60008060008060808587031215613a8357613a82613227565b5b6000613a918782880161347d565b9450506020613aa28782880161347d565b9350506040613ab3878288016133c8565b925050606085013567ffffffffffffffff811115613ad457613ad361322c565b5b613ae087828801613a3b565b91505092959194509250565b60008060408385031215613b0357613b02613227565b5b6000613b118582860161347d565b9250506020613b228582860161347d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b7357607f821691505b60208210811415613b8757613b86613b2c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613be9602c836132f7565b9150613bf482613b8d565b604082019050919050565b60006020820190508181036000830152613c1881613bdc565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c7b6021836132f7565b9150613c8682613c1f565b604082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613d0d6038836132f7565b9150613d1882613cb1565b604082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d796020836132f7565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e0b6031836132f7565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613e9d602b836132f7565b9150613ea882613e41565b604082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b7f42656e6566696369617279206e6f742073657400000000000000000000000000600082015250565b6000613f096013836132f7565b9150613f1482613ed3565b602082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fa8826133a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fdb57613fda613f6e565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614042602c836132f7565b915061404d82613fe6565b604082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006140d46029836132f7565b91506140df82614078565b604082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614166602a836132f7565b91506141718261410a565b604082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b60006141d26010836132f7565b91506141dd8261419c565b602082019050919050565b60006020820190508181036000830152614201816141c5565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e204d41585f544f60008201527f4b454e535f5045525f4d494e5420746f6b656e73206174206f6e636521000000602082015250565b6000614264603d836132f7565b915061426f82614208565b604082019050919050565b6000602082019050818103600083015261429381614257565b9050919050565b60006142a5826133a7565b91506142b0836133a7565b9250828210156142c3576142c2613f6e565b5b828203905092915050565b60006142d9826133a7565b91506142e4836133a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431957614318613f6e565b5b828201905092915050565b7f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000600082015250565b600061435a6017836132f7565b915061436582614324565b602082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b600061439b826133a7565b91506143a6836133a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143df576143de613f6e565b5b828202905092915050565b7f496e636f6e73697374656e7420616d6f756e742073656e742100000000000000600082015250565b60006144206019836132f7565b915061442b826143ea565b602082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061448c6019836132f7565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f5468617420776f756c642065786365656420746865206d61782072657365727660008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b600061451e6023836132f7565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145b0602f836132f7565b91506145bb82614554565b604082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b600081905092915050565b60006145fc826132ec565b61460681856145e6565b9350614616818560208601613308565b80840191505092915050565b600061462e82856145f1565b915061463a82846145f1565b91508190509392505050565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b600061467c601d836132f7565b915061468782614646565b602082019050919050565b600060208201905081810360008301526146ab8161466f565b9050919050565b6000819050919050565b6146cd6146c8826133a7565b6146b2565b82525050565b60006146df82856146bc565b6020820191506146ef82846146bc565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614739826133a7565b9150614744836133a7565b925082614754576147536146ff565b5b828206905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147bb6026836132f7565b91506147c68261475f565b604082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061484d602c836132f7565b9150614858826147f1565b604082019050919050565b6000602082019050818103600083015261487c81614840565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006148df6029836132f7565b91506148ea82614883565b604082019050919050565b6000602082019050818103600083015261490e816148d2565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149716024836132f7565b915061497c82614915565b604082019050919050565b600060208201905081810360008301526149a081614964565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a036032836132f7565b9150614a0e826149a7565b604082019050919050565b60006020820190508181036000830152614a32816149f6565b9050919050565b6000614a44826133a7565b9150614a4f836133a7565b925082614a5f57614a5e6146ff565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000614a9182614a6a565b614a9b8185614a75565b9350614aab818560208601613308565b614ab48161333b565b840191505092915050565b6000608082019050614ad4600083018761343c565b614ae1602083018661343c565b614aee6040830185613650565b8181036060830152614b008184614a86565b905095945050505050565b600081519050614b1a8161325d565b92915050565b600060208284031215614b3657614b35613227565b5b6000614b4484828501614b0b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614b836020836132f7565b9150614b8e82614b4d565b602082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614bef601c836132f7565b9150614bfa82614bb9565b602082019050919050565b60006020820190508181036000830152614c1e81614be2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212207021dd292eb53c5abbd9006ab718779f3a14a51cfe27a73853c189617cc758ed64736f6c63430008090033

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.