ETH Price: $3,386.06 (-1.50%)
Gas: 2 Gwei

Token

Corite x Emery Kelly - Emotions Collection (EMOTIONS)
 

Overview

Max Total Supply

1,795 EMOTIONS

Holders

1,117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EMOTIONS
0xcA5f4c901182799Fd63b23B874E2712cCAaAaAAA
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoriteNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

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

contract CoriteNFT is ERC721Enumerable, Ownable {
    uint public nftCounter;
    uint public nftPrice;
    uint public nftCap;
    uint public nftBatchCap;
    uint public nftPerAddress;

    address private receiveFunds;

    bool public freeForAllMint = false;

    mapping(address=>uint) public hasMinted;

    event minted(address indexed to, uint tokeId);

    constructor (uint _nftPrice, uint _nftCap, uint _nftBatchCap, uint _nftPerAddress, address payable _receiveFunds) ERC721 ("Corite x Emery Kelly - Emotions Collection", "EMOTIONS") Ownable(){
        require(_nftBatchCap <= _nftCap, "nftBatchCap > nftCap");
        require(_nftPerAddress >= 0, "nftPerAddress not >= 0");
        require(_nftPrice >= 0, "nftPrice not >= 0");
        nftCounter = 0;
        nftPrice = _nftPrice;
        nftCap = _nftCap;
        nftBatchCap = _nftBatchCap;
        nftPerAddress = _nftPerAddress;
        receiveFunds = _receiveFunds;
    }

    function mintWL(uint8 _v, bytes32 _r, bytes32 _s, uint _nrToMint) public payable {
        require(_verifySignature(_v, _r, _s), "Invalid whitelist signature");
        _mintProcess(_nrToMint);
    }

    function mintFFA(uint _nrToMint) public payable {
        require(freeForAllMint, "Free for all mint is not enabled");
        _mintProcess(_nrToMint);
    }

    function mintO(uint _nrToMint) public onlyOwner(){
        require((nftCounter+_nrToMint) <= nftBatchCap, "Cap overflow.");
        uint target = nftCounter + _nrToMint;

        _mint(target, owner());
    }

    function _verifySignature(uint8 _v, bytes32 _r, bytes32 _s) internal view returns (bool){
        bytes memory prefix = "\x19Ethereum Signed Message:\n20";

        bytes32 msgh = keccak256(abi.encodePacked(prefix, msg.sender));
        return ecrecover(msgh, _v, _r, _s) == owner();
    }

    function _mintProcess(uint _nrToMint) private {
        require(msg.value == (nftPrice * _nrToMint), "Wrong ETH amount.");
        require((hasMinted[msg.sender] + _nrToMint) <= nftPerAddress, "One address in not allowed to mint more than nftPerAddress");
        uint target = nftCounter + _nrToMint;
        require(target <= nftBatchCap, "Cap reached.");

        hasMinted[msg.sender] = hasMinted[msg.sender] + _nrToMint;

        payable(receiveFunds).transfer(msg.value);

        _mint(target, msg.sender);
    }

    function _mint(uint _target, address _to) private {
        for (uint idToMint = nftCounter; idToMint < _target; idToMint++){
            _safeMint(_to, idToMint);
            emit minted(_to, idToMint);
            nftCounter = nftCounter + 1;
        }
    }

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

        return IChromiaNetResolver(0x04410C1874B7d1C13B47396B8e4b4fC5b778c1E6).getNFTURI(address(this), tokenId);
    }

    function changeNftPrice(uint _newNftPrice) public onlyOwner(){
        require(_newNftPrice >= 0);
        nftPrice = _newNftPrice;
    }

    function changeNftBatchCap(uint _newNftBatchCap) public onlyOwner(){
        require(_newNftBatchCap <= nftCap, "nftBatchCap can not be greater than nftCap");
        nftBatchCap = _newNftBatchCap;
    }

    function changeNftPerAddress(uint _newNftPerAddress) public onlyOwner(){
        require(_newNftPerAddress >= 0);
        nftPerAddress = _newNftPerAddress;
    }

    function toggleFreeForAllMint() public onlyOwner(){
        if(freeForAllMint){
            freeForAllMint = false;
        }else{
            freeForAllMint = true;
        }
    }

    function endSale() public onlyOwner() {
        nftCap = nftCounter;
        nftBatchCap = nftCounter;
    }
}

interface IChromiaNetResolver {
     function getNFTURI(address contractAddress, uint id) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 13 : 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 5 of 13 : 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 6 of 13 : 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 7 of 13 : 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 8 of 13 : 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 13 : 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 10 of 13 : 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 11 of 13 : 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 12 of 13 : 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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"},{"internalType":"uint256","name":"_nftCap","type":"uint256"},{"internalType":"uint256","name":"_nftBatchCap","type":"uint256"},{"internalType":"uint256","name":"_nftPerAddress","type":"uint256"},{"internalType":"address payable","name":"_receiveFunds","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokeId","type":"uint256"}],"name":"minted","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftBatchCap","type":"uint256"}],"name":"changeNftBatchCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftPerAddress","type":"uint256"}],"name":"changeNftPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftPrice","type":"uint256"}],"name":"changeNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeForAllMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nrToMint","type":"uint256"}],"name":"mintFFA","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nrToMint","type":"uint256"}],"name":"mintO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"uint256","name":"_nrToMint","type":"uint256"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftBatchCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeForAllMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000601060146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004ad238038062004ad28339818101604052810190620000529190620003e6565b6040518060600160405280602a815260200162004aa8602a91396040518060400160405280600881526020017f454d4f54494f4e530000000000000000000000000000000000000000000000008152508160009080519060200190620000ba92919062000308565b508060019080519060200190620000d392919062000308565b505050620000f6620000ea6200023a60201b60201c565b6200024260201b60201c565b838311156200013c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013390620004dd565b60405180910390fd5b600082101562000183576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017a9062000521565b60405180910390fd5b6000851015620001ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c190620004ff565b60405180910390fd5b6000600b8190555084600c8190555083600d8190555082600e8190555081600f8190555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620006a6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003169062000592565b90600052602060002090601f0160209004810192826200033a576000855562000386565b82601f106200035557805160ff191683800117855562000386565b8280016001018555821562000386579182015b828111156200038557825182559160200191906001019062000368565b5b50905062000395919062000399565b5090565b5b80821115620003b45760008160009055506001016200039a565b5090565b600081519050620003c98162000672565b92915050565b600081519050620003e0816200068c565b92915050565b600080600080600060a08688031215620003ff57600080fd5b60006200040f88828901620003cf565b95505060206200042288828901620003cf565b94505060406200043588828901620003cf565b93505060606200044888828901620003cf565b92505060806200045b88828901620003b8565b9150509295509295909350565b60006200047760148362000543565b91506200048482620005f7565b602082019050919050565b60006200049e60118362000543565b9150620004ab8262000620565b602082019050919050565b6000620004c560168362000543565b9150620004d28262000649565b602082019050919050565b60006020820190508181036000830152620004f88162000468565b9050919050565b600060208201905081810360008301526200051a816200048f565b9050919050565b600060208201905081810360008301526200053c81620004b6565b9050919050565b600082825260208201905092915050565b6000620005618262000568565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620005ab57607f821691505b60208210811415620005c257620005c1620005c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f6e66744261746368436170203e206e6674436170000000000000000000000000600082015250565b7f6e66745072696365206e6f74203e3d2030000000000000000000000000000000600082015250565b7f6e667450657241646472657373206e6f74203e3d203000000000000000000000600082015250565b6200067d8162000554565b81146200068957600080fd5b50565b620006978162000588565b8114620006a357600080fd5b50565b6143f280620006b66000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d578063bef4f940116100a0578063d7d0f4fa1161006f578063d7d0f4fa14610703578063deeed5691461072c578063e574609e14610757578063e985e9c514610782578063f2fde38b146107bf576101f9565b8063bef4f94014610658578063c546312714610681578063c87b56dd146106aa578063c92eaabe146106e7576101f9565b806395d89b41116100dc57806395d89b41146105b0578063a22cb465146105db578063b88d4fde14610604578063b98a4a041461062d576101f9565b80636352211e146104f457806370a0823114610531578063715018a61461056e5780638da5cb5b14610585576101f9565b80632032fd3c1161019057806338e21cce1161015f57806338e21cce1461041157806342842e0e1461044e578063460db40114610477578063471f93e31461048e5780634f6ccce7146104b7576101f9565b80632032fd3c1461036957806323b872dd146103945780632f745c59146103bd578063380d831b146103fa576101f9565b80630be5b340116101cc5780630be5b340146102cc5780630d39fc81146102f7578063169557a31461032257806318160ddd1461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ed7565b6107e8565b604051610232919061351e565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d919061357e565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f6a565b6108f4565b60405161029a919061348e565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e9b565b610979565b005b3480156102d857600080fd5b506102e1610a91565b6040516102ee91906138c0565b60405180910390f35b34801561030357600080fd5b5061030c610a97565b60405161031991906138c0565b60405180910390f35b61033c60048036038101906103379190612f6a565b610a9d565b005b34801561034a57600080fd5b50610353610af8565b60405161036091906138c0565b60405180910390f35b34801561037557600080fd5b5061037e610b05565b60405161038b91906138c0565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612d95565b610b0b565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612e9b565b610b6b565b6040516103f191906138c0565b60405180910390f35b34801561040657600080fd5b5061040f610c10565b005b34801561041d57600080fd5b5061043860048036038101906104339190612d30565b610ca0565b60405161044591906138c0565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612d95565b610cb8565b005b34801561048357600080fd5b5061048c610cd8565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612f6a565b610da7565b005b3480156104c357600080fd5b506104de60048036038101906104d99190612f6a565b610e3b565b6040516104eb91906138c0565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612f6a565b610ed2565b604051610528919061348e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612d30565b610f84565b60405161056591906138c0565b60405180910390f35b34801561057a57600080fd5b5061058361103c565b005b34801561059157600080fd5b5061059a6110c4565b6040516105a7919061348e565b60405180910390f35b3480156105bc57600080fd5b506105c56110ee565b6040516105d2919061357e565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612e5f565b611180565b005b34801561061057600080fd5b5061062b60048036038101906106269190612de4565b611301565b005b34801561063957600080fd5b50610642611363565b60405161064f91906138c0565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612f6a565b611369565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612f6a565b611434565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612f6a565b6114c8565b6040516106de919061357e565b60405180910390f35b61070160048036038101906106fc9190612f93565b6115bd565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612f6a565b611616565b005b34801561073857600080fd5b5061074161170b565b60405161074e919061351e565b60405180910390f35b34801561076357600080fd5b5061076c61171e565b60405161077991906138c0565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612d59565b611724565b6040516107b6919061351e565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190612d30565b6117b8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b575061085a826118b0565b5b9050919050565b60606000805461087190613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90613b56565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff82611992565b61093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906137c0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098482610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90613840565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a146119fe565b73ffffffffffffffffffffffffffffffffffffffff161480610a435750610a4281610a3d6119fe565b611724565b5b610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990613720565b60405180910390fd5b610a8c8383611a06565b505050565b600e5481565b600c5481565b601060149054906101000a900460ff16610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613640565b60405180910390fd5b610af581611abf565b50565b6000600880549050905090565b600f5481565b610b1c610b166119fe565b82611cf9565b610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613860565b60405180910390fd5b610b66838383611dd7565b505050565b6000610b7683610f84565b8210610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906135c0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c186119fe565b73ffffffffffffffffffffffffffffffffffffffff16610c366110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906137e0565b60405180910390fd5b600b54600d81905550600b54600e81905550565b60116020528060005260406000206000915090505481565b610cd383838360405180602001604052806000815250611301565b505050565b610ce06119fe565b73ffffffffffffffffffffffffffffffffffffffff16610cfe6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906137e0565b60405180910390fd5b601060149054906101000a900460ff1615610d89576000601060146101000a81548160ff021916908315150217905550610da5565b6001601060146101000a81548160ff0219169083151502179055505b565b610daf6119fe565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906137e0565b60405180910390fd5b6000811015610e3157600080fd5b80600f8190555050565b6000610e45610af8565b8210610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613880565b60405180910390fd5b60088281548110610ec0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613760565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613740565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110446119fe565b73ffffffffffffffffffffffffffffffffffffffff166110626110c4565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906137e0565b60405180910390fd5b6110c26000612033565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110fd90613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461112990613b56565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b5050505050905090565b6111886119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906136a0565b60405180910390fd5b80600560006112036119fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b06119fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f5919061351e565b60405180910390a35050565b61131261130c6119fe565b83611cf9565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890613860565b60405180910390fd5b61135d848484846120f9565b50505050565b600d5481565b6113716119fe565b73ffffffffffffffffffffffffffffffffffffffff1661138f6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc906137e0565b60405180910390fd5b600d5481111561142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906135a0565b60405180910390fd5b80600e8190555050565b61143c6119fe565b73ffffffffffffffffffffffffffffffffffffffff1661145a6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906137e0565b60405180910390fd5b60008110156114be57600080fd5b80600c8190555050565b60606114d382611992565b611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990613820565b60405180910390fd5b7304410c1874b7d1c13b47396b8e4b4fc5b778c1e673ffffffffffffffffffffffffffffffffffffffff1663d8bcda2730846040518363ffffffff1660e01b81526004016115619291906134f5565b60006040518083038186803b15801561157957600080fd5b505afa15801561158d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115b69190612f29565b9050919050565b6115c8848484612155565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906138a0565b60405180910390fd5b61161081611abf565b50505050565b61161e6119fe565b73ffffffffffffffffffffffffffffffffffffffff1661163c6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906137e0565b60405180910390fd5b600e5481600b546116a391906139a5565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906137a0565b60405180910390fd5b600081600b546116f491906139a5565b9050611707816117026110c4565b61224c565b5050565b601060149054906101000a900460ff1681565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c06119fe565b73ffffffffffffffffffffffffffffffffffffffff166117de6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906137e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613600565b60405180910390fd5b6118ad81612033565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198b575061198a826122e1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7983610ed2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80600c54611acd91906139fb565b3414611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906136c0565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5c91906139a5565b1115611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906136e0565b60405180910390fd5b600081600b54611bad91906139a5565b9050600e54811115611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613660565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3f91906139a5565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611cea573d6000803e3d6000fd5b50611cf5813361224c565b5050565b6000611d0482611992565b611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613700565b60405180910390fd5b6000611d4e83610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dbd57508373ffffffffffffffffffffffffffffffffffffffff16611da5846108f4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dce5750611dcd8185611724565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df782610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613680565b60405180910390fd5b611ec883838361234b565b611ed3600082611a06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f239190613a55565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7a91906139a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612104848484611dd7565b6121108484848461245f565b61214f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612146906135e0565b60405180910390fd5b50505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3230000000008152509050600081336040516020016121a5929190613466565b6040516020818303038152906040528051906020012090506121c56110c4565b73ffffffffffffffffffffffffffffffffffffffff16600182888888604051600081526020016040526040516121fe9493929190613539565b6020604051602081039080840390855afa158015612220573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6000600b5490505b828110156122dc5761226682826125f6565b8173ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c9826040516122ac91906138c0565b60405180910390a26001600b546122c391906139a5565b600b8190555080806122d490613bb9565b915050612254565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612356838383612614565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123995761239481612619565b6123d8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123d7576123d68382612662565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561241b57612416816127cf565b61245a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612459576124588282612912565b5b5b505050565b60006124808473ffffffffffffffffffffffffffffffffffffffff16612991565b156125e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a96119fe565b8786866040518563ffffffff1660e01b81526004016124cb94939291906134a9565b602060405180830381600087803b1580156124e557600080fd5b505af192505050801561251657506040513d601f19601f820116820180604052508101906125139190612f00565b60015b612599573d8060008114612546576040519150601f19603f3d011682016040523d82523d6000602084013e61254b565b606091505b50600081511415612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906135e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ee565b600190505b949350505050565b6126108282604051806020016040528060008152506129a4565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161266f84610f84565b6126799190613a55565b905060006007600084815260200190815260200160002054905081811461275e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127e39190613a55565b9050600060096000848152602001908152602001600020549050600060088381548110612839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061291d83610f84565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6129ae83836129ff565b6129bb600084848461245f565b6129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f1906135e0565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690613780565b60405180910390fd5b612a7881611992565b15612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90613620565b60405180910390fd5b612ac46000838361234b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1491906139a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612be0612bdb84613900565b6138db565b905082815260208101848484011115612bf857600080fd5b612c03848285613b14565b509392505050565b6000612c1e612c1984613931565b6138db565b905082815260208101848484011115612c3657600080fd5b612c41848285613b23565b509392505050565b600081359050612c5881614332565b92915050565b600081359050612c6d81614349565b92915050565b600081359050612c8281614360565b92915050565b600081359050612c9781614377565b92915050565b600081519050612cac81614377565b92915050565b600082601f830112612cc357600080fd5b8135612cd3848260208601612bcd565b91505092915050565b600082601f830112612ced57600080fd5b8151612cfd848260208601612c0b565b91505092915050565b600081359050612d158161438e565b92915050565b600081359050612d2a816143a5565b92915050565b600060208284031215612d4257600080fd5b6000612d5084828501612c49565b91505092915050565b60008060408385031215612d6c57600080fd5b6000612d7a85828601612c49565b9250506020612d8b85828601612c49565b9150509250929050565b600080600060608486031215612daa57600080fd5b6000612db886828701612c49565b9350506020612dc986828701612c49565b9250506040612dda86828701612d06565b9150509250925092565b60008060008060808587031215612dfa57600080fd5b6000612e0887828801612c49565b9450506020612e1987828801612c49565b9350506040612e2a87828801612d06565b925050606085013567ffffffffffffffff811115612e4757600080fd5b612e5387828801612cb2565b91505092959194509250565b60008060408385031215612e7257600080fd5b6000612e8085828601612c49565b9250506020612e9185828601612c5e565b9150509250929050565b60008060408385031215612eae57600080fd5b6000612ebc85828601612c49565b9250506020612ecd85828601612d06565b9150509250929050565b600060208284031215612ee957600080fd5b6000612ef784828501612c88565b91505092915050565b600060208284031215612f1257600080fd5b6000612f2084828501612c9d565b91505092915050565b600060208284031215612f3b57600080fd5b600082015167ffffffffffffffff811115612f5557600080fd5b612f6184828501612cdc565b91505092915050565b600060208284031215612f7c57600080fd5b6000612f8a84828501612d06565b91505092915050565b60008060008060808587031215612fa957600080fd5b6000612fb787828801612d1b565b9450506020612fc887828801612c73565b9350506040612fd987828801612c73565b9250506060612fea87828801612d06565b91505092959194509250565b612fff81613a89565b82525050565b61301661301182613a89565b613c02565b82525050565b61302581613a9b565b82525050565b61303481613aa7565b82525050565b600061304582613962565b61304f8185613978565b935061305f818560208601613b23565b61306881613cb3565b840191505092915050565b600061307e82613962565b6130888185613989565b9350613098818560208601613b23565b80840191505092915050565b60006130af8261396d565b6130b98185613994565b93506130c9818560208601613b23565b6130d281613cb3565b840191505092915050565b60006130ea602a83613994565b91506130f582613cd1565b604082019050919050565b600061310d602b83613994565b915061311882613d20565b604082019050919050565b6000613130603283613994565b915061313b82613d6f565b604082019050919050565b6000613153602683613994565b915061315e82613dbe565b604082019050919050565b6000613176601c83613994565b915061318182613e0d565b602082019050919050565b6000613199602083613994565b91506131a482613e36565b602082019050919050565b60006131bc600c83613994565b91506131c782613e5f565b602082019050919050565b60006131df602483613994565b91506131ea82613e88565b604082019050919050565b6000613202601983613994565b915061320d82613ed7565b602082019050919050565b6000613225601183613994565b915061323082613f00565b602082019050919050565b6000613248603a83613994565b915061325382613f29565b604082019050919050565b600061326b602c83613994565b915061327682613f78565b604082019050919050565b600061328e603883613994565b915061329982613fc7565b604082019050919050565b60006132b1602a83613994565b91506132bc82614016565b604082019050919050565b60006132d4602983613994565b91506132df82614065565b604082019050919050565b60006132f7602083613994565b9150613302826140b4565b602082019050919050565b600061331a600d83613994565b9150613325826140dd565b602082019050919050565b600061333d602c83613994565b915061334882614106565b604082019050919050565b6000613360602083613994565b915061336b82614155565b602082019050919050565b6000613383602983613994565b915061338e8261417e565b604082019050919050565b60006133a6602f83613994565b91506133b1826141cd565b604082019050919050565b60006133c9602183613994565b91506133d48261421c565b604082019050919050565b60006133ec603183613994565b91506133f78261426b565b604082019050919050565b600061340f602c83613994565b915061341a826142ba565b604082019050919050565b6000613432601b83613994565b915061343d82614309565b602082019050919050565b61345181613afd565b82525050565b61346081613b07565b82525050565b60006134728285613073565b915061347e8284613005565b6014820191508190509392505050565b60006020820190506134a36000830184612ff6565b92915050565b60006080820190506134be6000830187612ff6565b6134cb6020830186612ff6565b6134d86040830185613448565b81810360608301526134ea818461303a565b905095945050505050565b600060408201905061350a6000830185612ff6565b6135176020830184613448565b9392505050565b6000602082019050613533600083018461301c565b92915050565b600060808201905061354e600083018761302b565b61355b6020830186613457565b613568604083018561302b565b613575606083018461302b565b95945050505050565b6000602082019050818103600083015261359881846130a4565b905092915050565b600060208201905081810360008301526135b9816130dd565b9050919050565b600060208201905081810360008301526135d981613100565b9050919050565b600060208201905081810360008301526135f981613123565b9050919050565b6000602082019050818103600083015261361981613146565b9050919050565b6000602082019050818103600083015261363981613169565b9050919050565b600060208201905081810360008301526136598161318c565b9050919050565b60006020820190508181036000830152613679816131af565b9050919050565b60006020820190508181036000830152613699816131d2565b9050919050565b600060208201905081810360008301526136b9816131f5565b9050919050565b600060208201905081810360008301526136d981613218565b9050919050565b600060208201905081810360008301526136f98161323b565b9050919050565b600060208201905081810360008301526137198161325e565b9050919050565b6000602082019050818103600083015261373981613281565b9050919050565b60006020820190508181036000830152613759816132a4565b9050919050565b60006020820190508181036000830152613779816132c7565b9050919050565b60006020820190508181036000830152613799816132ea565b9050919050565b600060208201905081810360008301526137b98161330d565b9050919050565b600060208201905081810360008301526137d981613330565b9050919050565b600060208201905081810360008301526137f981613353565b9050919050565b6000602082019050818103600083015261381981613376565b9050919050565b6000602082019050818103600083015261383981613399565b9050919050565b60006020820190508181036000830152613859816133bc565b9050919050565b60006020820190508181036000830152613879816133df565b9050919050565b6000602082019050818103600083015261389981613402565b9050919050565b600060208201905081810360008301526138b981613425565b9050919050565b60006020820190506138d56000830184613448565b92915050565b60006138e56138f6565b90506138f18282613b88565b919050565b6000604051905090565b600067ffffffffffffffff82111561391b5761391a613c84565b5b61392482613cb3565b9050602081019050919050565b600067ffffffffffffffff82111561394c5761394b613c84565b5b61395582613cb3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006139b082613afd565b91506139bb83613afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f0576139ef613c26565b5b828201905092915050565b6000613a0682613afd565b9150613a1183613afd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a4a57613a49613c26565b5b828202905092915050565b6000613a6082613afd565b9150613a6b83613afd565b925082821015613a7e57613a7d613c26565b5b828203905092915050565b6000613a9482613add565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b41578082015181840152602081019050613b26565b83811115613b50576000848401525b50505050565b60006002820490506001821680613b6e57607f821691505b60208210811415613b8257613b81613c55565b5b50919050565b613b9182613cb3565b810181811067ffffffffffffffff82111715613bb057613baf613c84565b5b80604052505050565b6000613bc482613afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bf757613bf6613c26565b5b600182019050919050565b6000613c0d82613c14565b9050919050565b6000613c1f82613cc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6e667442617463684361702063616e206e6f742062652067726561746572207460008201527f68616e206e667443617000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4672656520666f7220616c6c206d696e74206973206e6f7420656e61626c6564600082015250565b7f43617020726561636865642e0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57726f6e672045544820616d6f756e742e000000000000000000000000000000600082015250565b7f4f6e65206164647265737320696e206e6f7420616c6c6f77656420746f206d6960008201527f6e74206d6f7265207468616e206e667450657241646472657373000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436170206f766572666c6f772e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c69642077686974656c697374207369676e61747572650000000000600082015250565b61433b81613a89565b811461434657600080fd5b50565b61435281613a9b565b811461435d57600080fd5b50565b61436981613aa7565b811461437457600080fd5b50565b61438081613ab1565b811461438b57600080fd5b50565b61439781613afd565b81146143a257600080fd5b50565b6143ae81613b07565b81146143b957600080fd5b5056fea2646970667358221220285dcb55d204dd6d6ac033f7cb246e79fe483b77423bcf61b19a0723fb187caf64736f6c63430008040033436f72697465207820456d657279204b656c6c79202d20456d6f74696f6e7320436f6c6c656374696f6e00000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e11d8c80449bc9fba10e40bffffba8ef030de3b1

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d578063bef4f940116100a0578063d7d0f4fa1161006f578063d7d0f4fa14610703578063deeed5691461072c578063e574609e14610757578063e985e9c514610782578063f2fde38b146107bf576101f9565b8063bef4f94014610658578063c546312714610681578063c87b56dd146106aa578063c92eaabe146106e7576101f9565b806395d89b41116100dc57806395d89b41146105b0578063a22cb465146105db578063b88d4fde14610604578063b98a4a041461062d576101f9565b80636352211e146104f457806370a0823114610531578063715018a61461056e5780638da5cb5b14610585576101f9565b80632032fd3c1161019057806338e21cce1161015f57806338e21cce1461041157806342842e0e1461044e578063460db40114610477578063471f93e31461048e5780634f6ccce7146104b7576101f9565b80632032fd3c1461036957806323b872dd146103945780632f745c59146103bd578063380d831b146103fa576101f9565b80630be5b340116101cc5780630be5b340146102cc5780630d39fc81146102f7578063169557a31461032257806318160ddd1461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612ed7565b6107e8565b604051610232919061351e565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d919061357e565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f6a565b6108f4565b60405161029a919061348e565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e9b565b610979565b005b3480156102d857600080fd5b506102e1610a91565b6040516102ee91906138c0565b60405180910390f35b34801561030357600080fd5b5061030c610a97565b60405161031991906138c0565b60405180910390f35b61033c60048036038101906103379190612f6a565b610a9d565b005b34801561034a57600080fd5b50610353610af8565b60405161036091906138c0565b60405180910390f35b34801561037557600080fd5b5061037e610b05565b60405161038b91906138c0565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612d95565b610b0b565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612e9b565b610b6b565b6040516103f191906138c0565b60405180910390f35b34801561040657600080fd5b5061040f610c10565b005b34801561041d57600080fd5b5061043860048036038101906104339190612d30565b610ca0565b60405161044591906138c0565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612d95565b610cb8565b005b34801561048357600080fd5b5061048c610cd8565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612f6a565b610da7565b005b3480156104c357600080fd5b506104de60048036038101906104d99190612f6a565b610e3b565b6040516104eb91906138c0565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612f6a565b610ed2565b604051610528919061348e565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612d30565b610f84565b60405161056591906138c0565b60405180910390f35b34801561057a57600080fd5b5061058361103c565b005b34801561059157600080fd5b5061059a6110c4565b6040516105a7919061348e565b60405180910390f35b3480156105bc57600080fd5b506105c56110ee565b6040516105d2919061357e565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612e5f565b611180565b005b34801561061057600080fd5b5061062b60048036038101906106269190612de4565b611301565b005b34801561063957600080fd5b50610642611363565b60405161064f91906138c0565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612f6a565b611369565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612f6a565b611434565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612f6a565b6114c8565b6040516106de919061357e565b60405180910390f35b61070160048036038101906106fc9190612f93565b6115bd565b005b34801561070f57600080fd5b5061072a60048036038101906107259190612f6a565b611616565b005b34801561073857600080fd5b5061074161170b565b60405161074e919061351e565b60405180910390f35b34801561076357600080fd5b5061076c61171e565b60405161077991906138c0565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612d59565b611724565b6040516107b6919061351e565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190612d30565b6117b8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085b575061085a826118b0565b5b9050919050565b60606000805461087190613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90613b56565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff82611992565b61093e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610935906137c0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098482610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90613840565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a146119fe565b73ffffffffffffffffffffffffffffffffffffffff161480610a435750610a4281610a3d6119fe565b611724565b5b610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990613720565b60405180910390fd5b610a8c8383611a06565b505050565b600e5481565b600c5481565b601060149054906101000a900460ff16610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613640565b60405180910390fd5b610af581611abf565b50565b6000600880549050905090565b600f5481565b610b1c610b166119fe565b82611cf9565b610b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5290613860565b60405180910390fd5b610b66838383611dd7565b505050565b6000610b7683610f84565b8210610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906135c0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c186119fe565b73ffffffffffffffffffffffffffffffffffffffff16610c366110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906137e0565b60405180910390fd5b600b54600d81905550600b54600e81905550565b60116020528060005260406000206000915090505481565b610cd383838360405180602001604052806000815250611301565b505050565b610ce06119fe565b73ffffffffffffffffffffffffffffffffffffffff16610cfe6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b906137e0565b60405180910390fd5b601060149054906101000a900460ff1615610d89576000601060146101000a81548160ff021916908315150217905550610da5565b6001601060146101000a81548160ff0219169083151502179055505b565b610daf6119fe565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906137e0565b60405180910390fd5b6000811015610e3157600080fd5b80600f8190555050565b6000610e45610af8565b8210610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613880565b60405180910390fd5b60088281548110610ec0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613760565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613740565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110446119fe565b73ffffffffffffffffffffffffffffffffffffffff166110626110c4565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af906137e0565b60405180910390fd5b6110c26000612033565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110fd90613b56565b80601f016020809104026020016040519081016040528092919081815260200182805461112990613b56565b80156111765780601f1061114b57610100808354040283529160200191611176565b820191906000526020600020905b81548152906001019060200180831161115957829003601f168201915b5050505050905090565b6111886119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed906136a0565b60405180910390fd5b80600560006112036119fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b06119fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f5919061351e565b60405180910390a35050565b61131261130c6119fe565b83611cf9565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890613860565b60405180910390fd5b61135d848484846120f9565b50505050565b600d5481565b6113716119fe565b73ffffffffffffffffffffffffffffffffffffffff1661138f6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc906137e0565b60405180910390fd5b600d5481111561142a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611421906135a0565b60405180910390fd5b80600e8190555050565b61143c6119fe565b73ffffffffffffffffffffffffffffffffffffffff1661145a6110c4565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a7906137e0565b60405180910390fd5b60008110156114be57600080fd5b80600c8190555050565b60606114d382611992565b611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990613820565b60405180910390fd5b7304410c1874b7d1c13b47396b8e4b4fc5b778c1e673ffffffffffffffffffffffffffffffffffffffff1663d8bcda2730846040518363ffffffff1660e01b81526004016115619291906134f5565b60006040518083038186803b15801561157957600080fd5b505afa15801561158d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115b69190612f29565b9050919050565b6115c8848484612155565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906138a0565b60405180910390fd5b61161081611abf565b50505050565b61161e6119fe565b73ffffffffffffffffffffffffffffffffffffffff1661163c6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906137e0565b60405180910390fd5b600e5481600b546116a391906139a5565b11156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db906137a0565b60405180910390fd5b600081600b546116f491906139a5565b9050611707816117026110c4565b61224c565b5050565b601060149054906101000a900460ff1681565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c06119fe565b73ffffffffffffffffffffffffffffffffffffffff166117de6110c4565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906137e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90613600565b60405180910390fd5b6118ad81612033565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198b575061198a826122e1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7983610ed2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80600c54611acd91906139fb565b3414611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b05906136c0565b60405180910390fd5b600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5c91906139a5565b1115611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b94906136e0565b60405180910390fd5b600081600b54611bad91906139a5565b9050600e54811115611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613660565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3f91906139a5565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611cea573d6000803e3d6000fd5b50611cf5813361224c565b5050565b6000611d0482611992565b611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90613700565b60405180910390fd5b6000611d4e83610ed2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dbd57508373ffffffffffffffffffffffffffffffffffffffff16611da5846108f4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dce5750611dcd8185611724565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df782610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb490613680565b60405180910390fd5b611ec883838361234b565b611ed3600082611a06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f239190613a55565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7a91906139a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612104848484611dd7565b6121108484848461245f565b61214f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612146906135e0565b60405180910390fd5b50505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3230000000008152509050600081336040516020016121a5929190613466565b6040516020818303038152906040528051906020012090506121c56110c4565b73ffffffffffffffffffffffffffffffffffffffff16600182888888604051600081526020016040526040516121fe9493929190613539565b6020604051602081039080840390855afa158015612220573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6000600b5490505b828110156122dc5761226682826125f6565b8173ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c9826040516122ac91906138c0565b60405180910390a26001600b546122c391906139a5565b600b8190555080806122d490613bb9565b915050612254565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612356838383612614565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123995761239481612619565b6123d8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123d7576123d68382612662565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561241b57612416816127cf565b61245a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612459576124588282612912565b5b5b505050565b60006124808473ffffffffffffffffffffffffffffffffffffffff16612991565b156125e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a96119fe565b8786866040518563ffffffff1660e01b81526004016124cb94939291906134a9565b602060405180830381600087803b1580156124e557600080fd5b505af192505050801561251657506040513d601f19601f820116820180604052508101906125139190612f00565b60015b612599573d8060008114612546576040519150601f19603f3d011682016040523d82523d6000602084013e61254b565b606091505b50600081511415612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906135e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ee565b600190505b949350505050565b6126108282604051806020016040528060008152506129a4565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161266f84610f84565b6126799190613a55565b905060006007600084815260200190815260200160002054905081811461275e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127e39190613a55565b9050600060096000848152602001908152602001600020549050600060088381548110612839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061291d83610f84565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6129ae83836129ff565b6129bb600084848461245f565b6129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f1906135e0565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690613780565b60405180910390fd5b612a7881611992565b15612ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaf90613620565b60405180910390fd5b612ac46000838361234b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1491906139a5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612be0612bdb84613900565b6138db565b905082815260208101848484011115612bf857600080fd5b612c03848285613b14565b509392505050565b6000612c1e612c1984613931565b6138db565b905082815260208101848484011115612c3657600080fd5b612c41848285613b23565b509392505050565b600081359050612c5881614332565b92915050565b600081359050612c6d81614349565b92915050565b600081359050612c8281614360565b92915050565b600081359050612c9781614377565b92915050565b600081519050612cac81614377565b92915050565b600082601f830112612cc357600080fd5b8135612cd3848260208601612bcd565b91505092915050565b600082601f830112612ced57600080fd5b8151612cfd848260208601612c0b565b91505092915050565b600081359050612d158161438e565b92915050565b600081359050612d2a816143a5565b92915050565b600060208284031215612d4257600080fd5b6000612d5084828501612c49565b91505092915050565b60008060408385031215612d6c57600080fd5b6000612d7a85828601612c49565b9250506020612d8b85828601612c49565b9150509250929050565b600080600060608486031215612daa57600080fd5b6000612db886828701612c49565b9350506020612dc986828701612c49565b9250506040612dda86828701612d06565b9150509250925092565b60008060008060808587031215612dfa57600080fd5b6000612e0887828801612c49565b9450506020612e1987828801612c49565b9350506040612e2a87828801612d06565b925050606085013567ffffffffffffffff811115612e4757600080fd5b612e5387828801612cb2565b91505092959194509250565b60008060408385031215612e7257600080fd5b6000612e8085828601612c49565b9250506020612e9185828601612c5e565b9150509250929050565b60008060408385031215612eae57600080fd5b6000612ebc85828601612c49565b9250506020612ecd85828601612d06565b9150509250929050565b600060208284031215612ee957600080fd5b6000612ef784828501612c88565b91505092915050565b600060208284031215612f1257600080fd5b6000612f2084828501612c9d565b91505092915050565b600060208284031215612f3b57600080fd5b600082015167ffffffffffffffff811115612f5557600080fd5b612f6184828501612cdc565b91505092915050565b600060208284031215612f7c57600080fd5b6000612f8a84828501612d06565b91505092915050565b60008060008060808587031215612fa957600080fd5b6000612fb787828801612d1b565b9450506020612fc887828801612c73565b9350506040612fd987828801612c73565b9250506060612fea87828801612d06565b91505092959194509250565b612fff81613a89565b82525050565b61301661301182613a89565b613c02565b82525050565b61302581613a9b565b82525050565b61303481613aa7565b82525050565b600061304582613962565b61304f8185613978565b935061305f818560208601613b23565b61306881613cb3565b840191505092915050565b600061307e82613962565b6130888185613989565b9350613098818560208601613b23565b80840191505092915050565b60006130af8261396d565b6130b98185613994565b93506130c9818560208601613b23565b6130d281613cb3565b840191505092915050565b60006130ea602a83613994565b91506130f582613cd1565b604082019050919050565b600061310d602b83613994565b915061311882613d20565b604082019050919050565b6000613130603283613994565b915061313b82613d6f565b604082019050919050565b6000613153602683613994565b915061315e82613dbe565b604082019050919050565b6000613176601c83613994565b915061318182613e0d565b602082019050919050565b6000613199602083613994565b91506131a482613e36565b602082019050919050565b60006131bc600c83613994565b91506131c782613e5f565b602082019050919050565b60006131df602483613994565b91506131ea82613e88565b604082019050919050565b6000613202601983613994565b915061320d82613ed7565b602082019050919050565b6000613225601183613994565b915061323082613f00565b602082019050919050565b6000613248603a83613994565b915061325382613f29565b604082019050919050565b600061326b602c83613994565b915061327682613f78565b604082019050919050565b600061328e603883613994565b915061329982613fc7565b604082019050919050565b60006132b1602a83613994565b91506132bc82614016565b604082019050919050565b60006132d4602983613994565b91506132df82614065565b604082019050919050565b60006132f7602083613994565b9150613302826140b4565b602082019050919050565b600061331a600d83613994565b9150613325826140dd565b602082019050919050565b600061333d602c83613994565b915061334882614106565b604082019050919050565b6000613360602083613994565b915061336b82614155565b602082019050919050565b6000613383602983613994565b915061338e8261417e565b604082019050919050565b60006133a6602f83613994565b91506133b1826141cd565b604082019050919050565b60006133c9602183613994565b91506133d48261421c565b604082019050919050565b60006133ec603183613994565b91506133f78261426b565b604082019050919050565b600061340f602c83613994565b915061341a826142ba565b604082019050919050565b6000613432601b83613994565b915061343d82614309565b602082019050919050565b61345181613afd565b82525050565b61346081613b07565b82525050565b60006134728285613073565b915061347e8284613005565b6014820191508190509392505050565b60006020820190506134a36000830184612ff6565b92915050565b60006080820190506134be6000830187612ff6565b6134cb6020830186612ff6565b6134d86040830185613448565b81810360608301526134ea818461303a565b905095945050505050565b600060408201905061350a6000830185612ff6565b6135176020830184613448565b9392505050565b6000602082019050613533600083018461301c565b92915050565b600060808201905061354e600083018761302b565b61355b6020830186613457565b613568604083018561302b565b613575606083018461302b565b95945050505050565b6000602082019050818103600083015261359881846130a4565b905092915050565b600060208201905081810360008301526135b9816130dd565b9050919050565b600060208201905081810360008301526135d981613100565b9050919050565b600060208201905081810360008301526135f981613123565b9050919050565b6000602082019050818103600083015261361981613146565b9050919050565b6000602082019050818103600083015261363981613169565b9050919050565b600060208201905081810360008301526136598161318c565b9050919050565b60006020820190508181036000830152613679816131af565b9050919050565b60006020820190508181036000830152613699816131d2565b9050919050565b600060208201905081810360008301526136b9816131f5565b9050919050565b600060208201905081810360008301526136d981613218565b9050919050565b600060208201905081810360008301526136f98161323b565b9050919050565b600060208201905081810360008301526137198161325e565b9050919050565b6000602082019050818103600083015261373981613281565b9050919050565b60006020820190508181036000830152613759816132a4565b9050919050565b60006020820190508181036000830152613779816132c7565b9050919050565b60006020820190508181036000830152613799816132ea565b9050919050565b600060208201905081810360008301526137b98161330d565b9050919050565b600060208201905081810360008301526137d981613330565b9050919050565b600060208201905081810360008301526137f981613353565b9050919050565b6000602082019050818103600083015261381981613376565b9050919050565b6000602082019050818103600083015261383981613399565b9050919050565b60006020820190508181036000830152613859816133bc565b9050919050565b60006020820190508181036000830152613879816133df565b9050919050565b6000602082019050818103600083015261389981613402565b9050919050565b600060208201905081810360008301526138b981613425565b9050919050565b60006020820190506138d56000830184613448565b92915050565b60006138e56138f6565b90506138f18282613b88565b919050565b6000604051905090565b600067ffffffffffffffff82111561391b5761391a613c84565b5b61392482613cb3565b9050602081019050919050565b600067ffffffffffffffff82111561394c5761394b613c84565b5b61395582613cb3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006139b082613afd565b91506139bb83613afd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f0576139ef613c26565b5b828201905092915050565b6000613a0682613afd565b9150613a1183613afd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a4a57613a49613c26565b5b828202905092915050565b6000613a6082613afd565b9150613a6b83613afd565b925082821015613a7e57613a7d613c26565b5b828203905092915050565b6000613a9482613add565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b41578082015181840152602081019050613b26565b83811115613b50576000848401525b50505050565b60006002820490506001821680613b6e57607f821691505b60208210811415613b8257613b81613c55565b5b50919050565b613b9182613cb3565b810181811067ffffffffffffffff82111715613bb057613baf613c84565b5b80604052505050565b6000613bc482613afd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bf757613bf6613c26565b5b600182019050919050565b6000613c0d82613c14565b9050919050565b6000613c1f82613cc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f6e667442617463684361702063616e206e6f742062652067726561746572207460008201527f68616e206e667443617000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4672656520666f7220616c6c206d696e74206973206e6f7420656e61626c6564600082015250565b7f43617020726561636865642e0000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f57726f6e672045544820616d6f756e742e000000000000000000000000000000600082015250565b7f4f6e65206164647265737320696e206e6f7420616c6c6f77656420746f206d6960008201527f6e74206d6f7265207468616e206e667450657241646472657373000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436170206f766572666c6f772e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c69642077686974656c697374207369676e61747572650000000000600082015250565b61433b81613a89565b811461434657600080fd5b50565b61435281613a9b565b811461435d57600080fd5b50565b61436981613aa7565b811461437457600080fd5b50565b61438081613ab1565b811461438b57600080fd5b50565b61439781613afd565b81146143a257600080fd5b50565b6143ae81613b07565b81146143b957600080fd5b5056fea2646970667358221220285dcb55d204dd6d6ac033f7cb246e79fe483b77423bcf61b19a0723fb187caf64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000354a6ba7a1800000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000007d00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e11d8c80449bc9fba10e40bffffba8ef030de3b1

-----Decoded View---------------
Arg [0] : _nftPrice (uint256): 15000000000000000
Arg [1] : _nftCap (uint256): 2000
Arg [2] : _nftBatchCap (uint256): 2000
Arg [3] : _nftPerAddress (uint256): 1
Arg [4] : _receiveFunds (address): 0xE11D8C80449bC9fbA10E40BFFFFBA8EF030de3b1

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000354a6ba7a18000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000e11d8c80449bc9fba10e40bffffba8ef030de3b1


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.