CRO Price: $0.08 (+1.18%)

Token

CronosRagdoll (RAG)

Overview

Max Total Supply

10,000 RAG

Holders

418

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
NFTFull

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license
File 1 of 14 : NFTFull.sol
// SPDX-License-Identifier: MIT
// CronosRagdolls Contract 

pragma solidity >=0.7.0 <0.9.0;

import "ERC721Enumerable.sol";
import "MerkleProof.sol";
import "Ownable.sol";

contract NFTFull is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 10 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 10;
    bool public paused = true;
    bool public revealed = true;
    // Variables for airdrop
    bool allowAirdrop = true;
    bytes32 public immutable merkleRoot;
    mapping(address => bool) public hasClaimed;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        bytes32 _merkleRoot
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        merkleRoot = _merkleRoot;
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "max mint amount per session exceeded"
        );
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        if (msg.sender != owner()) {
            require(
                msg.value == cost * _mintAmount,
                "set the transaction value to exactly the cost time the mint amount"
            );
        }
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function claimAirdrop(bytes32[] calldata proof) public payable {
        require(!paused, "the contract is paused");
        require(allowAirdrop, "airdrop claiming period ended");
        uint256 supply = totalSupply();
        uint256 _mintAmount = 1;
        uint256 amount = 1000000000000000000;
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        // Check if the sender is a CHIMP Hodler
        // Verify merkle proof and revert if not in tree
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, amount));
        bool isValidLeaf = MerkleProof.verify(proof, merkleRoot, leaf);
        require(isValidLeaf, "wallet not part of the airdrop");
        // Verify user has not claimed the airdrop
        bool has_minted = hasClaimed[msg.sender];
        require(!has_minted, "airdrop already claimed");
        hasClaimed[msg.sender] = true;
        _safeMint(msg.sender, supply + 1);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function airdrop(address _user) public onlyOwner {
        uint256 supply = totalSupply();
        _safeMint(_user, supply + 1);
    }

    function setReveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setAllowAirdrop(bool _state) public onlyOwner {
        allowAirdrop = _state;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        // Pays the balance to owner
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

File 2 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev 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 4 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "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 5 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 7 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

File 8 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

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 9 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 11 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 12 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 13 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

File 14 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "NFTFull.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimAirdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setAllowAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e0604052600560a081905264173539b7b760d91b60c09081526200002891600c91906200020a565b50678ac7230489e80000600e55612710600f55600a6010556011805462ffffff1916620101011790553480156200005e57600080fd5b5060405162002fd538038062002fd583398101604081905262000081916200037d565b8451859085906200009a9060009060208501906200020a565b508051620000b09060019060208401906200020a565b505050620000cd620000c7620000f160201b60201c565b620000f5565b620000d88362000147565b620000e382620001af565b608052506200047d92505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001965760405162461bcd60e51b8152602060048201819052602482015260008051602062002fb583398151915260448201526064015b60405180910390fd5b8051620001ab90600b9060208401906200020a565b5050565b600a546001600160a01b03163314620001fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002fb583398151915260448201526064016200018d565b8051620001ab90600d9060208401905b828054620002189062000440565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d857600080fd5b81516001600160401b0380821115620002f557620002f5620002b0565b604051601f8301601f19908116603f01168101908282118183101715620003205762000320620002b0565b816040528381526020925086838588010111156200033d57600080fd5b600091505b8382101562000361578582018301518183018401529082019062000342565b83821115620003735760008385830101525b9695505050505050565b600080600080600060a086880312156200039657600080fd5b85516001600160401b0380821115620003ae57600080fd5b620003bc89838a01620002c6565b96506020880151915080821115620003d357600080fd5b620003e189838a01620002c6565b95506040880151915080821115620003f857600080fd5b6200040689838a01620002c6565b945060608801519150808211156200041d57600080fd5b506200042c88828901620002c6565b925050608086015190509295509295909350565b600181811c908216806200045557607f821691505b602082108114156200047757634e487b7160e01b600052602260045260246000fd5b50919050565b608051612b15620004a0600039600081816103fd0152610fd10152612b156000f3fe6080604052600436106102515760003560e01c806355f804b31161013957806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146106b5578063d5abeb01146106d5578063da3ef23f146106eb578063e985e9c51461070b578063f2c4ce1e14610754578063f2fde38b1461077457600080fd5b806395d89b4114610638578063a0712d681461064d578063a22cb46514610660578063b88d4fde14610680578063c6682862146106a057600080fd5b8063715018a6116100fd578063715018a61461059557806373b2e80e146105aa5780637f00c7a6146105da5780638da5cb5b146105fa5780638eec12351461061857600080fd5b806355f804b3146105065780635c975abb146105265780636352211e146105405780636c0360eb1461056057806370a082311461057557600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e14610447578063438b63001461046757806344a0d68a146104945780634f6ccce7146104b457806351830227146104d457806353223ab0146104f357600080fd5b806323b872dd146103ab5780632a3f300c146103cb5780632eb4a7ab146103eb5780632f745c591461041f5780633ccfd60b1461043f57600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806321860a0514610375578063239c70ae1461039557600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b506102766102713660046123f5565b610794565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612427565b6107bf565b005b3480156102b957600080fd5b506102c2610805565b604051610282919061249a565b3480156102db57600080fd5b506102ef6102ea3660046124ad565b610897565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c261092c565b34801561032857600080fd5b506102ab6103373660046124dd565b6109ba565b34801561034857600080fd5b50610352600e5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b506102ab610390366004612507565b610ad0565b3480156103a157600080fd5b5061035260105481565b3480156103b757600080fd5b506102ab6103c6366004612522565b610b1f565b3480156103d757600080fd5b506102ab6103e6366004612427565b610b50565b3480156103f757600080fd5b506103527f000000000000000000000000000000000000000000000000000000000000000081565b34801561042b57600080fd5b5061035261043a3660046124dd565b610b94565b6102ab610c2a565b34801561045357600080fd5b506102ab610462366004612522565b610cc8565b34801561047357600080fd5b50610487610482366004612507565b610ce3565b604051610282919061255e565b3480156104a057600080fd5b506102ab6104af3660046124ad565b610d85565b3480156104c057600080fd5b506103526104cf3660046124ad565b610db4565b3480156104e057600080fd5b5060115461027690610100900460ff1681565b6102ab6105013660046125a2565b610e47565b34801561051257600080fd5b506102ab6105213660046126a3565b6110e3565b34801561053257600080fd5b506011546102769060ff1681565b34801561054c57600080fd5b506102ef61055b3660046124ad565b611120565b34801561056c57600080fd5b506102c2611197565b34801561058157600080fd5b50610352610590366004612507565b6111a4565b3480156105a157600080fd5b506102ab61122b565b3480156105b657600080fd5b506102766105c5366004612507565b60126020526000908152604090205460ff1681565b3480156105e657600080fd5b506102ab6105f53660046124ad565b611261565b34801561060657600080fd5b50600a546001600160a01b03166102ef565b34801561062457600080fd5b506102ab610633366004612427565b611290565b34801561064457600080fd5b506102c26112d6565b6102ab61065b3660046124ad565b6112e5565b34801561066c57600080fd5b506102ab61067b3660046126ec565b611509565b34801561068c57600080fd5b506102ab61069b36600461271f565b611514565b3480156106ac57600080fd5b506102c261154c565b3480156106c157600080fd5b506102c26106d03660046124ad565b611559565b3480156106e157600080fd5b50610352600f5481565b3480156106f757600080fd5b506102ab6107063660046126a3565b6116d8565b34801561071757600080fd5b5061027661072636600461279b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b506102ab61076f3660046126a3565b611715565b34801561078057600080fd5b506102ab61078f366004612507565b611752565b60006001600160e01b0319821663780e9d6360e01b14806107b957506107b9826117ea565b92915050565b600a546001600160a01b031633146107f25760405162461bcd60e51b81526004016107e9906127c5565b60405180910390fd5b6011805460ff1916911515919091179055565b606060008054610814906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906127fa565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e9565b506000908152600460205260409020546001600160a01b031690565b600d8054610939906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610965906127fa565b80156109b25780601f10610987576101008083540402835291602001916109b2565b820191906000526020600020905b81548152906001019060200180831161099557829003601f168201915b505050505081565b60006109c582611120565b9050806001600160a01b0316836001600160a01b03161415610a335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e9565b336001600160a01b0382161480610a4f5750610a4f8133610726565b610ac15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e9565b610acb838361183a565b505050565b600a546001600160a01b03163314610afa5760405162461bcd60e51b81526004016107e9906127c5565b6000610b0560085490565b9050610b1b82610b1683600161284b565b6118a8565b5050565b610b2933826118c2565b610b455760405162461bcd60e51b81526004016107e990612863565b610acb8383836119b9565b600a546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016107e9906127c5565b601180549115156101000261ff0019909216919091179055565b6000610b9f836111a4565b8210610c015760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c545760405162461bcd60e51b81526004016107e9906127c5565b6000610c68600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cb2576040519150601f19603f3d011682016040523d82523d6000602084013e610cb7565b606091505b5050905080610cc557600080fd5b50565b610acb83838360405180602001604052806000815250611514565b60606000610cf0836111a4565b905060008167ffffffffffffffff811115610d0d57610d0d612617565b604051908082528060200260200182016040528015610d36578160200160208202803683370190505b50905060005b82811015610d7d57610d4e8582610b94565b828281518110610d6057610d606128b4565b602090810291909101015280610d75816128ca565b915050610d3c565b509392505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b81526004016107e9906127c5565b600e55565b6000610dbf60085490565b8210610e225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e9565b60088281548110610e3557610e356128b4565b90600052602060002001549050919050565b60115460ff1615610e935760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107e9565b60115462010000900460ff16610eeb5760405162461bcd60e51b815260206004820152601d60248201527f61697264726f7020636c61696d696e6720706572696f6420656e64656400000060448201526064016107e9565b6000610ef660085490565b600f54909150600190670de0b6b3a764000090610f13838561284b565b1115610f5a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107e9565b6040516bffffffffffffffffffffffff193360601b166020820152603481018290526000906054016040516020818303038152906040528051906020012090506000610ffc8787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507f00000000000000000000000000000000000000000000000000000000000000009250869150611b649050565b90508061104b5760405162461bcd60e51b815260206004820152601e60248201527f77616c6c6574206e6f742070617274206f66207468652061697264726f70000060448201526064016107e9565b3360009081526012602052604090205460ff1680156110ac5760405162461bcd60e51b815260206004820152601760248201527f61697264726f7020616c726561647920636c61696d656400000000000000000060448201526064016107e9565b336000818152601260205260409020805460ff191660019081179091556110d99190610b1690899061284b565b5050505050505050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600b906020840190612346565b6000818152600260205260408120546001600160a01b0316806107b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e9565b600b8054610939906127fa565b60006001600160a01b03821661120f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112555760405162461bcd60e51b81526004016107e9906127c5565b61125f6000611b7a565b565b600a546001600160a01b0316331461128b5760405162461bcd60e51b81526004016107e9906127c5565b601055565b600a546001600160a01b031633146112ba5760405162461bcd60e51b81526004016107e9906127c5565b60118054911515620100000262ff000019909216919091179055565b606060018054610814906127fa565b60115460ff16156113315760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107e9565b600061133c60085490565b90506000821161138e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107e9565b6010548211156113ec5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107e9565b600f546113f9838361284b565b11156114405760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107e9565b600a546001600160a01b031633146114df5781600e5461146091906128e5565b34146114df5760405162461bcd60e51b815260206004820152604260248201527f73657420746865207472616e73616374696f6e2076616c756520746f2065786160448201527f63746c792074686520636f73742074696d6520746865206d696e7420616d6f756064820152611b9d60f21b608482015260a4016107e9565b60015b828111610acb576114f733610b16838561284b565b80611501816128ca565b9150506114e2565b610b1b338383611bcc565b61151e33836118c2565b61153a5760405162461bcd60e51b81526004016107e990612863565b61154684848484611c9b565b50505050565b600c8054610939906127fa565b6000818152600260205260409020546060906001600160a01b03166115d85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e9565b601154610100900460ff1661167957600d80546115f4906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611620906127fa565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b50505050509050919050565b6000611683611cce565b905060008151116116a357604051806020016040528060008152506116d1565b806116ad84611cdd565b600c6040516020016116c193929190612904565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117025760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600c906020840190612346565b600a546001600160a01b0316331461173f5760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600d906020840190612346565b600a546001600160a01b0316331461177c5760405162461bcd60e51b81526004016107e9906127c5565b6001600160a01b0381166117e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e9565b610cc581611b7a565b60006001600160e01b031982166380ac58cd60e01b148061181b57506001600160e01b03198216635b5e139f60e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316146107b9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186f82611120565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b1b828260405180602001604052806000815250611ddb565b6000818152600260205260408120546001600160a01b031661193b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e9565b600061194683611120565b9050806001600160a01b0316846001600160a01b031614806119815750836001600160a01b031661197684610897565b6001600160a01b0316145b806119b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119cc82611120565b6001600160a01b031614611a345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e9565b6001600160a01b038216611a965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e9565b611aa1838383611e0e565b611aac60008261183a565b6001600160a01b0383166000908152600360205260408120805460019290611ad59084906129c8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0390849061284b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611b718584611ec6565b14949350505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c2e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca68484846119b9565b611cb284848484611f6a565b6115465760405162461bcd60e51b81526004016107e9906129df565b6060600b8054610814906127fa565b606081611d015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d2b5780611d15816128ca565b9150611d249050600a83612a47565b9150611d05565b60008167ffffffffffffffff811115611d4657611d46612617565b6040519080825280601f01601f191660200182016040528015611d70576020820181803683370190505b5090505b84156119b157611d856001836129c8565b9150611d92600a86612a5b565b611d9d90603061284b565b60f81b818381518110611db257611db26128b4565b60200101906001600160f81b031916908160001a905350611dd4600a86612a47565b9450611d74565b611de58383612068565b611df26000848484611f6a565b610acb5760405162461bcd60e51b81526004016107e9906129df565b6001600160a01b038316611e6957611e6481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e8c565b816001600160a01b0316836001600160a01b031614611e8c57611e8c83826121b6565b6001600160a01b038216611ea357610acb81612253565b826001600160a01b0316826001600160a01b031614610acb57610acb8282612302565b600081815b8451811015610d7d576000858281518110611ee857611ee86128b4565b60200260200101519050808311611f2a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f57565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f62816128ca565b915050611ecb565b60006001600160a01b0384163b1561205d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fae903390899088908890600401612a6f565b6020604051808303816000875af1925050508015611fe9575060408051601f3d908101601f19168201909252611fe691810190612aac565b60015b612043573d808015612017576040519150601f19603f3d011682016040523d82523d6000602084013e61201c565b606091505b50805161203b5760405162461bcd60e51b81526004016107e9906129df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b1565b506001949350505050565b6001600160a01b0382166120be5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e9565b6000818152600260205260409020546001600160a01b0316156121235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e9565b61212f60008383611e0e565b6001600160a01b038216600090815260036020526040812080546001929061215890849061284b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121c3846111a4565b6121cd91906129c8565b600083815260076020526040902054909150808214612220576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612265906001906129c8565b6000838152600960205260408120546008805493945090928490811061228d5761228d6128b4565b9060005260206000200154905080600883815481106122ae576122ae6128b4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122e6576122e6612ac9565b6001900381819060005260206000200160009055905550505050565b600061230d836111a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612352906127fa565b90600052602060002090601f01602090048101928261237457600085556123ba565b82601f1061238d57805160ff19168380011785556123ba565b828001600101855582156123ba579182015b828111156123ba57825182559160200191906001019061239f565b506123c69291506123ca565b5090565b5b808211156123c657600081556001016123cb565b6001600160e01b031981168114610cc557600080fd5b60006020828403121561240757600080fd5b81356116d1816123df565b8035801515811461242257600080fd5b919050565b60006020828403121561243957600080fd5b6116d182612412565b60005b8381101561245d578181015183820152602001612445565b838111156115465750506000910152565b60008151808452612486816020860160208601612442565b601f01601f19169290920160200192915050565b6020815260006116d1602083018461246e565b6000602082840312156124bf57600080fd5b5035919050565b80356001600160a01b038116811461242257600080fd5b600080604083850312156124f057600080fd5b6124f9836124c6565b946020939093013593505050565b60006020828403121561251957600080fd5b6116d1826124c6565b60008060006060848603121561253757600080fd5b612540846124c6565b925061254e602085016124c6565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125965783518352928401929184019160010161257a565b50909695505050505050565b600080602083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b8135818111156125f057600080fd5b8660208260051b850101111561260557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561264857612648612617565b604051601f8501601f19908116603f0116810190828211818310171561267057612670612617565b8160405280935085815286868601111561268957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b557600080fd5b813567ffffffffffffffff8111156126cc57600080fd5b8201601f810184136126dd57600080fd5b6119b18482356020840161262d565b600080604083850312156126ff57600080fd5b612708836124c6565b915061271660208401612412565b90509250929050565b6000806000806080858703121561273557600080fd5b61273e856124c6565b935061274c602086016124c6565b925060408501359150606085013567ffffffffffffffff81111561276f57600080fd5b8501601f8101871361278057600080fd5b61278f8782356020840161262d565b91505092959194509250565b600080604083850312156127ae57600080fd5b6127b7836124c6565b9150612716602084016124c6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061280e57607f821691505b6020821081141561282f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561285e5761285e612835565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128de576128de612835565b5060010190565b60008160001904831182151516156128ff576128ff612835565b500290565b6000845160206129178285838a01612442565b85519184019161292a8184848a01612442565b8554920191600090600181811c908083168061294757607f831692505b85831081141561296557634e487b7160e01b85526022600452602485fd5b808015612979576001811461298a576129b7565b60ff198516885283880195506129b7565b60008b81526020902060005b858110156129af5781548a820152908401908801612996565b505083880195505b50939b9a5050505050505050505050565b6000828210156129da576129da612835565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a5657612a56612a31565b500490565b600082612a6a57612a6a612a31565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa29083018461246e565b9695505050505050565b600060208284031215612abe57600080fd5b81516116d1816123df565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220358ac32007818d76131c00f705eee3d91eba6a8cff651e1b925b6b9155d909de64736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180df16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c000000000000000000000000000000000000000000000000000000000000000d43726f6e6f73526167646f6c6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352414700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6434376b6577694c456d44775475454a61313635425572744873725847636575684e736d4e703862356155632f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a54694a426a593450774666483738486e4c5038436f644775524c57324174776768427577554b4a723154520000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806355f804b31161013957806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146106b5578063d5abeb01146106d5578063da3ef23f146106eb578063e985e9c51461070b578063f2c4ce1e14610754578063f2fde38b1461077457600080fd5b806395d89b4114610638578063a0712d681461064d578063a22cb46514610660578063b88d4fde14610680578063c6682862146106a057600080fd5b8063715018a6116100fd578063715018a61461059557806373b2e80e146105aa5780637f00c7a6146105da5780638da5cb5b146105fa5780638eec12351461061857600080fd5b806355f804b3146105065780635c975abb146105265780636352211e146105405780636c0360eb1461056057806370a082311461057557600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e14610447578063438b63001461046757806344a0d68a146104945780634f6ccce7146104b457806351830227146104d457806353223ab0146104f357600080fd5b806323b872dd146103ab5780632a3f300c146103cb5780632eb4a7ab146103eb5780632f745c591461041f5780633ccfd60b1461043f57600080fd5b8063095ea7b311610219578063095ea7b31461031c57806313faede61461033c57806318160ddd1461036057806321860a0514610375578063239c70ae1461039557600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063081c8c4414610307575b600080fd5b34801561026257600080fd5b506102766102713660046123f5565b610794565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612427565b6107bf565b005b3480156102b957600080fd5b506102c2610805565b604051610282919061249a565b3480156102db57600080fd5b506102ef6102ea3660046124ad565b610897565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102c261092c565b34801561032857600080fd5b506102ab6103373660046124dd565b6109ba565b34801561034857600080fd5b50610352600e5481565b604051908152602001610282565b34801561036c57600080fd5b50600854610352565b34801561038157600080fd5b506102ab610390366004612507565b610ad0565b3480156103a157600080fd5b5061035260105481565b3480156103b757600080fd5b506102ab6103c6366004612522565b610b1f565b3480156103d757600080fd5b506102ab6103e6366004612427565b610b50565b3480156103f757600080fd5b506103527fdf16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c81565b34801561042b57600080fd5b5061035261043a3660046124dd565b610b94565b6102ab610c2a565b34801561045357600080fd5b506102ab610462366004612522565b610cc8565b34801561047357600080fd5b50610487610482366004612507565b610ce3565b604051610282919061255e565b3480156104a057600080fd5b506102ab6104af3660046124ad565b610d85565b3480156104c057600080fd5b506103526104cf3660046124ad565b610db4565b3480156104e057600080fd5b5060115461027690610100900460ff1681565b6102ab6105013660046125a2565b610e47565b34801561051257600080fd5b506102ab6105213660046126a3565b6110e3565b34801561053257600080fd5b506011546102769060ff1681565b34801561054c57600080fd5b506102ef61055b3660046124ad565b611120565b34801561056c57600080fd5b506102c2611197565b34801561058157600080fd5b50610352610590366004612507565b6111a4565b3480156105a157600080fd5b506102ab61122b565b3480156105b657600080fd5b506102766105c5366004612507565b60126020526000908152604090205460ff1681565b3480156105e657600080fd5b506102ab6105f53660046124ad565b611261565b34801561060657600080fd5b50600a546001600160a01b03166102ef565b34801561062457600080fd5b506102ab610633366004612427565b611290565b34801561064457600080fd5b506102c26112d6565b6102ab61065b3660046124ad565b6112e5565b34801561066c57600080fd5b506102ab61067b3660046126ec565b611509565b34801561068c57600080fd5b506102ab61069b36600461271f565b611514565b3480156106ac57600080fd5b506102c261154c565b3480156106c157600080fd5b506102c26106d03660046124ad565b611559565b3480156106e157600080fd5b50610352600f5481565b3480156106f757600080fd5b506102ab6107063660046126a3565b6116d8565b34801561071757600080fd5b5061027661072636600461279b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076057600080fd5b506102ab61076f3660046126a3565b611715565b34801561078057600080fd5b506102ab61078f366004612507565b611752565b60006001600160e01b0319821663780e9d6360e01b14806107b957506107b9826117ea565b92915050565b600a546001600160a01b031633146107f25760405162461bcd60e51b81526004016107e9906127c5565b60405180910390fd5b6011805460ff1916911515919091179055565b606060008054610814906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610840906127fa565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e9565b506000908152600460205260409020546001600160a01b031690565b600d8054610939906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610965906127fa565b80156109b25780601f10610987576101008083540402835291602001916109b2565b820191906000526020600020905b81548152906001019060200180831161099557829003601f168201915b505050505081565b60006109c582611120565b9050806001600160a01b0316836001600160a01b03161415610a335760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e9565b336001600160a01b0382161480610a4f5750610a4f8133610726565b610ac15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e9565b610acb838361183a565b505050565b600a546001600160a01b03163314610afa5760405162461bcd60e51b81526004016107e9906127c5565b6000610b0560085490565b9050610b1b82610b1683600161284b565b6118a8565b5050565b610b2933826118c2565b610b455760405162461bcd60e51b81526004016107e990612863565b610acb8383836119b9565b600a546001600160a01b03163314610b7a5760405162461bcd60e51b81526004016107e9906127c5565b601180549115156101000261ff0019909216919091179055565b6000610b9f836111a4565b8210610c015760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c545760405162461bcd60e51b81526004016107e9906127c5565b6000610c68600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cb2576040519150601f19603f3d011682016040523d82523d6000602084013e610cb7565b606091505b5050905080610cc557600080fd5b50565b610acb83838360405180602001604052806000815250611514565b60606000610cf0836111a4565b905060008167ffffffffffffffff811115610d0d57610d0d612617565b604051908082528060200260200182016040528015610d36578160200160208202803683370190505b50905060005b82811015610d7d57610d4e8582610b94565b828281518110610d6057610d606128b4565b602090810291909101015280610d75816128ca565b915050610d3c565b509392505050565b600a546001600160a01b03163314610daf5760405162461bcd60e51b81526004016107e9906127c5565b600e55565b6000610dbf60085490565b8210610e225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e9565b60088281548110610e3557610e356128b4565b90600052602060002001549050919050565b60115460ff1615610e935760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107e9565b60115462010000900460ff16610eeb5760405162461bcd60e51b815260206004820152601d60248201527f61697264726f7020636c61696d696e6720706572696f6420656e64656400000060448201526064016107e9565b6000610ef660085490565b600f54909150600190670de0b6b3a764000090610f13838561284b565b1115610f5a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107e9565b6040516bffffffffffffffffffffffff193360601b166020820152603481018290526000906054016040516020818303038152906040528051906020012090506000610ffc8787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152507fdf16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c9250869150611b649050565b90508061104b5760405162461bcd60e51b815260206004820152601e60248201527f77616c6c6574206e6f742070617274206f66207468652061697264726f70000060448201526064016107e9565b3360009081526012602052604090205460ff1680156110ac5760405162461bcd60e51b815260206004820152601760248201527f61697264726f7020616c726561647920636c61696d656400000000000000000060448201526064016107e9565b336000818152601260205260409020805460ff191660019081179091556110d99190610b1690899061284b565b5050505050505050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600b906020840190612346565b6000818152600260205260408120546001600160a01b0316806107b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e9565b600b8054610939906127fa565b60006001600160a01b03821661120f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112555760405162461bcd60e51b81526004016107e9906127c5565b61125f6000611b7a565b565b600a546001600160a01b0316331461128b5760405162461bcd60e51b81526004016107e9906127c5565b601055565b600a546001600160a01b031633146112ba5760405162461bcd60e51b81526004016107e9906127c5565b60118054911515620100000262ff000019909216919091179055565b606060018054610814906127fa565b60115460ff16156113315760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107e9565b600061133c60085490565b90506000821161138e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016107e9565b6010548211156113ec5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016107e9565b600f546113f9838361284b565b11156114405760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107e9565b600a546001600160a01b031633146114df5781600e5461146091906128e5565b34146114df5760405162461bcd60e51b815260206004820152604260248201527f73657420746865207472616e73616374696f6e2076616c756520746f2065786160448201527f63746c792074686520636f73742074696d6520746865206d696e7420616d6f756064820152611b9d60f21b608482015260a4016107e9565b60015b828111610acb576114f733610b16838561284b565b80611501816128ca565b9150506114e2565b610b1b338383611bcc565b61151e33836118c2565b61153a5760405162461bcd60e51b81526004016107e990612863565b61154684848484611c9b565b50505050565b600c8054610939906127fa565b6000818152600260205260409020546060906001600160a01b03166115d85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e9565b601154610100900460ff1661167957600d80546115f4906127fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611620906127fa565b801561166d5780601f106116425761010080835404028352916020019161166d565b820191906000526020600020905b81548152906001019060200180831161165057829003601f168201915b50505050509050919050565b6000611683611cce565b905060008151116116a357604051806020016040528060008152506116d1565b806116ad84611cdd565b600c6040516020016116c193929190612904565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117025760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600c906020840190612346565b600a546001600160a01b0316331461173f5760405162461bcd60e51b81526004016107e9906127c5565b8051610b1b90600d906020840190612346565b600a546001600160a01b0316331461177c5760405162461bcd60e51b81526004016107e9906127c5565b6001600160a01b0381166117e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e9565b610cc581611b7a565b60006001600160e01b031982166380ac58cd60e01b148061181b57506001600160e01b03198216635b5e139f60e01b145b806107b957506301ffc9a760e01b6001600160e01b03198316146107b9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186f82611120565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b1b828260405180602001604052806000815250611ddb565b6000818152600260205260408120546001600160a01b031661193b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e9565b600061194683611120565b9050806001600160a01b0316846001600160a01b031614806119815750836001600160a01b031661197684610897565b6001600160a01b0316145b806119b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119cc82611120565b6001600160a01b031614611a345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e9565b6001600160a01b038216611a965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e9565b611aa1838383611e0e565b611aac60008261183a565b6001600160a01b0383166000908152600360205260408120805460019290611ad59084906129c8565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0390849061284b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611b718584611ec6565b14949350505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c2e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ca68484846119b9565b611cb284848484611f6a565b6115465760405162461bcd60e51b81526004016107e9906129df565b6060600b8054610814906127fa565b606081611d015750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d2b5780611d15816128ca565b9150611d249050600a83612a47565b9150611d05565b60008167ffffffffffffffff811115611d4657611d46612617565b6040519080825280601f01601f191660200182016040528015611d70576020820181803683370190505b5090505b84156119b157611d856001836129c8565b9150611d92600a86612a5b565b611d9d90603061284b565b60f81b818381518110611db257611db26128b4565b60200101906001600160f81b031916908160001a905350611dd4600a86612a47565b9450611d74565b611de58383612068565b611df26000848484611f6a565b610acb5760405162461bcd60e51b81526004016107e9906129df565b6001600160a01b038316611e6957611e6481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e8c565b816001600160a01b0316836001600160a01b031614611e8c57611e8c83826121b6565b6001600160a01b038216611ea357610acb81612253565b826001600160a01b0316826001600160a01b031614610acb57610acb8282612302565b600081815b8451811015610d7d576000858281518110611ee857611ee86128b4565b60200260200101519050808311611f2a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f57565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f62816128ca565b915050611ecb565b60006001600160a01b0384163b1561205d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fae903390899088908890600401612a6f565b6020604051808303816000875af1925050508015611fe9575060408051601f3d908101601f19168201909252611fe691810190612aac565b60015b612043573d808015612017576040519150601f19603f3d011682016040523d82523d6000602084013e61201c565b606091505b50805161203b5760405162461bcd60e51b81526004016107e9906129df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b1565b506001949350505050565b6001600160a01b0382166120be5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e9565b6000818152600260205260409020546001600160a01b0316156121235760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e9565b61212f60008383611e0e565b6001600160a01b038216600090815260036020526040812080546001929061215890849061284b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016121c3846111a4565b6121cd91906129c8565b600083815260076020526040902054909150808214612220576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612265906001906129c8565b6000838152600960205260408120546008805493945090928490811061228d5761228d6128b4565b9060005260206000200154905080600883815481106122ae576122ae6128b4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122e6576122e6612ac9565b6001900381819060005260206000200160009055905550505050565b600061230d836111a4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612352906127fa565b90600052602060002090601f01602090048101928261237457600085556123ba565b82601f1061238d57805160ff19168380011785556123ba565b828001600101855582156123ba579182015b828111156123ba57825182559160200191906001019061239f565b506123c69291506123ca565b5090565b5b808211156123c657600081556001016123cb565b6001600160e01b031981168114610cc557600080fd5b60006020828403121561240757600080fd5b81356116d1816123df565b8035801515811461242257600080fd5b919050565b60006020828403121561243957600080fd5b6116d182612412565b60005b8381101561245d578181015183820152602001612445565b838111156115465750506000910152565b60008151808452612486816020860160208601612442565b601f01601f19169290920160200192915050565b6020815260006116d1602083018461246e565b6000602082840312156124bf57600080fd5b5035919050565b80356001600160a01b038116811461242257600080fd5b600080604083850312156124f057600080fd5b6124f9836124c6565b946020939093013593505050565b60006020828403121561251957600080fd5b6116d1826124c6565b60008060006060848603121561253757600080fd5b612540846124c6565b925061254e602085016124c6565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156125965783518352928401929184019160010161257a565b50909695505050505050565b600080602083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b8135818111156125f057600080fd5b8660208260051b850101111561260557600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561264857612648612617565b604051601f8501601f19908116603f0116810190828211818310171561267057612670612617565b8160405280935085815286868601111561268957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b557600080fd5b813567ffffffffffffffff8111156126cc57600080fd5b8201601f810184136126dd57600080fd5b6119b18482356020840161262d565b600080604083850312156126ff57600080fd5b612708836124c6565b915061271660208401612412565b90509250929050565b6000806000806080858703121561273557600080fd5b61273e856124c6565b935061274c602086016124c6565b925060408501359150606085013567ffffffffffffffff81111561276f57600080fd5b8501601f8101871361278057600080fd5b61278f8782356020840161262d565b91505092959194509250565b600080604083850312156127ae57600080fd5b6127b7836124c6565b9150612716602084016124c6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061280e57607f821691505b6020821081141561282f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561285e5761285e612835565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156128de576128de612835565b5060010190565b60008160001904831182151516156128ff576128ff612835565b500290565b6000845160206129178285838a01612442565b85519184019161292a8184848a01612442565b8554920191600090600181811c908083168061294757607f831692505b85831081141561296557634e487b7160e01b85526022600452602485fd5b808015612979576001811461298a576129b7565b60ff198516885283880195506129b7565b60008b81526020902060005b858110156129af5781548a820152908401908801612996565b505083880195505b50939b9a5050505050505050505050565b6000828210156129da576129da612835565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a5657612a56612a31565b500490565b600082612a6a57612a6a612a31565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612aa29083018461246e565b9695505050505050565b600060208284031215612abe57600080fd5b81516116d1816123df565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220358ac32007818d76131c00f705eee3d91eba6a8cff651e1b925b6b9155d909de64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180df16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c000000000000000000000000000000000000000000000000000000000000000d43726f6e6f73526167646f6c6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352414700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6434376b6577694c456d44775475454a61313635425572744873725847636575684e736d4e703862356155632f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a54694a426a593450774666483738486e4c5038436f644775524c57324174776768427577554b4a723154520000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CronosRagdoll
Arg [1] : _symbol (string): RAG
Arg [2] : _initBaseURI (string): ipfs://Qmd47kewiLEmDwTuEJa165BUrtHsrXGceuhNsmNp8b5aUc/
Arg [3] : _initNotRevealedUri (string): ipfs://QmZTiJBjY4PwFfH78HnLP8CodGuRLW2AtwghBuwUKJr1TR
Arg [4] : _merkleRoot (bytes32): 0xdf16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : df16af39ceb0049ea0fb2d451b082eda58b51f26677604769c80c8040373573c
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 43726f6e6f73526167646f6c6c00000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 5241470000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d6434376b6577694c456d44775475454a61313635425572
Arg [11] : 744873725847636575684e736d4e703862356155632f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d5a54694a426a593450774666483738486e4c5038436f64
Arg [14] : 4775524c57324174776768427577554b4a723154520000000000000000000000


Deployed Bytecode Sourcemap

174:4999:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985:222:4;;;;;;;;;;-1:-1:-1;985:222:4;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;985:222:4;;;;;;;;4899:77:11;;;;;;;;;;-1:-1:-1;4899:77:11;;;;;:::i;:::-;;:::i;:::-;;2394:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3905:217::-;;;;;;;;;;-1:-1:-1;3905:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:14;;;2024:51;;2012:2;1997:18;3905:217:3;1878:203:14;328:28:11;;;;;;;;;;;;;:::i;3443:401:3:-;;;;;;;;;;-1:-1:-1;3443:401:3;;;;;:::i;:::-;;:::i;362:30:11:-;;;;;;;;;;;;;;;;;;;2669:25:14;;;2657:2;2642:18;362:30:11;2523:177:14;1610:111:4;;;;;;;;;;-1:-1:-1;1697:10:4;:17;1610:111;;3965:134:11;;;;;;;;;;-1:-1:-1;3965:134:11;;;;;:::i;:::-;;:::i;436:33::-;;;;;;;;;;;;;;;;4632:330:3;;;;;;;;;;-1:-1:-1;4632:330:3;;;;;:::i;:::-;;:::i;4105:83:11:-;;;;;;;;;;-1:-1:-1;4105:83:11;;;;;:::i;:::-;;:::i;598:35::-;;;;;;;;;;;;;;;1286:253:4;;;;;;;;;;-1:-1:-1;1286:253:4;;;;;:::i;:::-;;:::i;4982:189:11:-;;;:::i;5028:179:3:-;;;;;;;;;;-1:-1:-1;5028:179:3;;;;;:::i;:::-;;:::i;2859:379:11:-;;;;;;;;;;-1:-1:-1;2859:379:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4293:84::-;;;;;;;;;;-1:-1:-1;4293:84:11;;;;;:::i;:::-;;:::i;1793:230:4:-;;;;;;;;;;-1:-1:-1;1793:230:4;;;;;:::i;:::-;;:::i;506:27:11:-;;;;;;;;;;-1:-1:-1;506:27:11;;;;;;;;;;;1915:938;;;;;;:::i;:::-;;:::i;4509:102::-;;;;;;;;;;-1:-1:-1;4509:102:11;;;;;:::i;:::-;;:::i;475:25::-;;;;;;;;;;-1:-1:-1;475:25:11;;;;;;;;2097:235:3;;;;;;;;;;-1:-1:-1;2097:235:3;;;;;:::i;:::-;;:::i;258:21:11:-;;;;;;;;;;;;;:::i;1835:205:3:-;;;;;;;;;;-1:-1:-1;1835:205:3;;;;;:::i;:::-;;:::i;1659:101:12:-;;;;;;;;;;;;;:::i;639:42:11:-;;;;;;;;;;-1:-1:-1;639:42:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;4383:120;;;;;;;;;;-1:-1:-1;4383:120:11;;;;;:::i;:::-;;:::i;1027:85:12:-;;;;;;;;;;-1:-1:-1;1099:6:12;;-1:-1:-1;;;;;1099:6:12;1027:85;;4194:93:11;;;;;;;;;;-1:-1:-1;4194:93:11;;;;;:::i;:::-;;:::i;2556:102:3:-;;;;;;;;;;;;;:::i;1168:741:11:-;;;;;;:::i;:::-;;:::i;4189:153:3:-;;;;;;;;;;-1:-1:-1;4189:153:3;;;;;:::i;:::-;;:::i;5273:320::-;;;;;;;;;;-1:-1:-1;5273:320:3;;;;;:::i;:::-;;:::i;285:37:11:-;;;;;;;;;;;;;:::i;3244:698::-;;;;;;;;;;-1:-1:-1;3244:698:11;;;;;:::i;:::-;;:::i;398:32::-;;;;;;;;;;;;;;;;4617:146;;;;;;;;;;-1:-1:-1;4617:146:11;;;;;:::i;:::-;;:::i;4408:162:3:-;;;;;;;;;;-1:-1:-1;4408:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4528:25:3;;;4505:4;4528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4408:162;4769:124:11;;;;;;;;;;-1:-1:-1;4769:124:11;;;;;:::i;:::-;;:::i;1909:198:12:-;;;;;;;;;;-1:-1:-1;1909:198:12;;;;;:::i;:::-;;:::i;985:222:4:-;1087:4;-1:-1:-1;;;;;;1110:50:4;;-1:-1:-1;;;1110:50:4;;:90;;;1164:36;1188:11;1164:23;:36::i;:::-;1103:97;985:222;-1:-1:-1;;985:222:4:o;4899:77:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;;;;;;;;;4954:6:11::1;:15:::0;;-1:-1:-1;;4954:15:11::1;::::0;::::1;;::::0;;;::::1;::::0;;4899:77::o;2394:98:3:-;2448:13;2480:5;2473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2394:98;:::o;3905:217::-;3981:7;7153:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7153:16:3;4000:73;;;;-1:-1:-1;;;4000:73:3;;8037:2:14;4000:73:3;;;8019:21:14;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:14;;;8159:42;8218:19;;4000:73:3;7835:408:14;4000:73:3;-1:-1:-1;4091:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4091:24:3;;3905:217::o;328:28:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3443:401:3:-;3523:13;3539:23;3554:7;3539:14;:23::i;:::-;3523:39;;3586:5;-1:-1:-1;;;;;3580:11:3;:2;-1:-1:-1;;;;;3580:11:3;;;3572:57;;;;-1:-1:-1;;;3572:57:3;;8450:2:14;3572:57:3;;;8432:21:14;8489:2;8469:18;;;8462:30;8528:34;8508:18;;;8501:62;-1:-1:-1;;;8579:18:14;;;8572:31;8620:19;;3572:57:3;8248:397:14;3572:57:3;719:10:1;-1:-1:-1;;;;;3661:21:3;;;;:62;;-1:-1:-1;3686:37:3;3703:5;719:10:1;4408:162:3;:::i;3686:37::-;3640:165;;;;-1:-1:-1;;;3640:165:3;;8852:2:14;3640:165:3;;;8834:21:14;8891:2;8871:18;;;8864:30;8930:34;8910:18;;;8903:62;9001:26;8981:18;;;8974:54;9045:19;;3640:165:3;8650:420:14;3640:165:3;3816:21;3825:2;3829:7;3816:8;:21::i;:::-;3513:331;3443:401;;:::o;3965:134:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4024:14:11::1;4041:13;1697:10:4::0;:17;;1610:111;4041:13:11::1;4024:30:::0;-1:-1:-1;4064:28:11::1;4074:5:::0;4081:10:::1;4024:30:::0;4090:1:::1;4081:10;:::i;:::-;4064:9;:28::i;:::-;4014:85;3965:134:::0;:::o;4632:330:3:-;4821:41;719:10:1;4854:7:3;4821:18;:41::i;:::-;4813:103;;;;-1:-1:-1;;;4813:103:3;;;;;;;:::i;:::-;4927:28;4937:4;4943:2;4947:7;4927:9;:28::i;4105:83:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4164:8:11::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;4164:17:11;;::::1;::::0;;;::::1;::::0;;4105:83::o;1286:253:4:-;1383:7;1418:23;1435:5;1418:16;:23::i;:::-;1410:5;:31;1402:87;;;;-1:-1:-1;;;1402:87:4;;9960:2:14;1402:87:4;;;9942:21:14;9999:2;9979:18;;;9972:30;10038:34;10018:18;;;10011:62;-1:-1:-1;;;10089:18:14;;;10082:41;10140:19;;1402:87:4;9758:407:14;1402:87:4;-1:-1:-1;;;;;;1506:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1286:253::o;4982:189:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;5075:7:11::1;5096;1099:6:12::0;;-1:-1:-1;;;;;1099:6:12;;1027:85;5096:7:11::1;-1:-1:-1::0;;;;;5088:21:11::1;5117;5088:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5074:69;;;5161:2;5153:11;;;::::0;::::1;;5027:144;4982:189::o:0;5028:179:3:-;5161:39;5178:4;5184:2;5188:7;5161:39;;;;;;;;;;;;:16;:39::i;2859:379:11:-;2943:16;2975:23;3001:17;3011:6;3001:9;:17::i;:::-;2975:43;;3028:25;3070:15;3056:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3056:30:11;;3028:58;;3101:9;3096:111;3116:15;3112:1;:19;3096:111;;;3166:30;3186:6;3194:1;3166:19;:30::i;:::-;3152:8;3161:1;3152:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;3133:3;;;;:::i;:::-;;;;3096:111;;;-1:-1:-1;3223:8:11;2859:379;-1:-1:-1;;;2859:379:11:o;4293:84::-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4355:4:11::1;:15:::0;4293:84::o;1793:230:4:-;1868:7;1903:30;1697:10;:17;;1610:111;1903:30;1895:5;:38;1887:95;;;;-1:-1:-1;;;1887:95:4;;10854:2:14;1887:95:4;;;10836:21:14;10893:2;10873:18;;;10866:30;10932:34;10912:18;;;10905:62;-1:-1:-1;;;10983:18:14;;;10976:42;11035:19;;1887:95:4;10652:408:14;1887:95:4;1999:10;2010:5;1999:17;;;;;;;;:::i;:::-;;;;;;;;;1992:24;;1793:230;;;:::o;1915:938:11:-;1997:6;;;;1996:7;1988:42;;;;-1:-1:-1;;;1988:42:11;;11267:2:14;1988:42:11;;;11249:21:14;11306:2;11286:18;;;11279:30;-1:-1:-1;;;11325:18:14;;;11318:52;11387:18;;1988:42:11;11065:346:14;1988:42:11;2048:12;;;;;;;2040:54;;;;-1:-1:-1;;;2040:54:11;;11618:2:14;2040:54:11;;;11600:21:14;11657:2;11637:18;;;11630:30;11696:31;11676:18;;;11669:59;11745:18;;2040:54:11;11416:353:14;2040:54:11;2104:14;2121:13;1697:10:4;:17;;1610:111;2121:13:11;2255:9;;2104:30;;-1:-1:-1;2166:1:11;;2194:19;;2231:20;2166:1;2104:30;2231:20;:::i;:::-;:33;;2223:68;;;;-1:-1:-1;;;2223:68:11;;11976:2:14;2223:68:11;;;11958:21:14;12015:2;11995:18;;;11988:30;-1:-1:-1;;;12034:18:14;;;12027:52;12096:18;;2223:68:11;11774:346:14;2223:68:11;2433:36;;-1:-1:-1;;2450:10:11;12302:2:14;12298:15;12294:53;2433:36:11;;;12282:66:14;12364:12;;;12357:28;;;2408:12:11;;12401::14;;2433:36:11;;;;;;;;;;;;2423:47;;;;;;2408:62;;2480:16;2499:43;2518:5;;2499:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2525:10:11;;-1:-1:-1;2537:4:11;;-1:-1:-1;2499:18:11;;-1:-1:-1;2499:43:11:i;:::-;2480:62;;2560:11;2552:54;;;;-1:-1:-1;;;2552:54:11;;12626:2:14;2552:54:11;;;12608:21:14;12665:2;12645:18;;;12638:30;12704:32;12684:18;;;12677:60;12754:18;;2552:54:11;12424:354:14;2552:54:11;2696:10;2667:15;2685:22;;;:10;:22;;;;;;;;2725:11;;2717:47;;;;-1:-1:-1;;;2717:47:11;;12985:2:14;2717:47:11;;;12967:21:14;13024:2;13004:18;;;12997:30;13063:25;13043:18;;;13036:53;13106:18;;2717:47:11;12783:347:14;2717:47:11;2785:10;2774:22;;;;:10;:22;;;;;:29;;-1:-1:-1;;2774:29:11;2799:4;2774:29;;;;;;2813:33;;2785:10;2835;;:6;;:10;:::i;2813:33::-;1978:875;;;;;;1915:938;;:::o;4509:102::-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4583:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;2097:235:3:-:0;2169:7;2204:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2204:16:3;2238:19;2230:73;;;;-1:-1:-1;;;2230:73:3;;13337:2:14;2230:73:3;;;13319:21:14;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:14;;;13459:39;13515:19;;2230:73:3;13135:405:14;258:21:11;;;;;;;:::i;1835:205:3:-;1907:7;-1:-1:-1;;;;;1934:19:3;;1926:74;;;;-1:-1:-1;;;1926:74:3;;13747:2:14;1926:74:3;;;13729:21:14;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:14;;;13869:40;13926:19;;1926:74:3;13545:406:14;1926:74:3;-1:-1:-1;;;;;;2017:16:3;;;;;:9;:16;;;;;;;1835:205::o;1659:101:12:-;1099:6;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;4383:120:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4463:13:11::1;:33:::0;4383:120::o;4194:93::-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4259:12:11::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;4259:21:11;;::::1;::::0;;;::::1;::::0;;4194:93::o;2556:102:3:-;2612:13;2644:7;2637:14;;;;;:::i;1168:741:11:-;1237:6;;;;1236:7;1228:42;;;;-1:-1:-1;;;1228:42:11;;11267:2:14;1228:42:11;;;11249:21:14;11306:2;11286:18;;;11279:30;-1:-1:-1;;;11325:18:14;;;11318:52;11387:18;;1228:42:11;11065:346:14;1228:42:11;1280:14;1297:13;1697:10:4;:17;;1610:111;1297:13:11;1280:30;;1342:1;1328:11;:15;1320:55;;;;-1:-1:-1;;;1320:55:11;;14158:2:14;1320:55:11;;;14140:21:14;14197:2;14177:18;;;14170:30;14236:29;14216:18;;;14209:57;14283:18;;1320:55:11;13956:351:14;1320:55:11;1421:13;;1406:11;:28;;1385:111;;;;-1:-1:-1;;;1385:111:11;;14514:2:14;1385:111:11;;;14496:21:14;14553:2;14533:18;;;14526:30;14592:34;14572:18;;;14565:62;-1:-1:-1;;;14643:18:14;;;14636:34;14687:19;;1385:111:11;14312:400:14;1385:111:11;1538:9;;1514:20;1523:11;1514:6;:20;:::i;:::-;:33;;1506:68;;;;-1:-1:-1;;;1506:68:11;;11976:2:14;1506:68:11;;;11958:21:14;12015:2;11995:18;;;11988:30;-1:-1:-1;;;12034:18:14;;;12027:52;12096:18;;1506:68:11;11774:346:14;1506:68:11;1099:6:12;;-1:-1:-1;;;;;1099:6:12;1589:10:11;:21;1585:208;;1671:11;1664:4;;:18;;;;:::i;:::-;1651:9;:31;1626:156;;;;-1:-1:-1;;;1626:156:11;;15092:2:14;1626:156:11;;;15074:21:14;15131:2;15111:18;;;15104:30;15170:34;15150:18;;;15143:62;15241:34;15221:18;;;15214:62;-1:-1:-1;;;15292:19:14;;;15285:33;15335:19;;1626:156:11;14890:470:14;1626:156:11;1819:1;1802:101;1827:11;1822:1;:16;1802:101;;1859:33;1869:10;1881;1890:1;1881:6;:10;:::i;1859:33::-;1840:3;;;;:::i;:::-;;;;1802:101;;4189:153:3;4283:52;719:10:1;4316:8:3;4326;4283:18;:52::i;5273:320::-;5442:41;719:10:1;5475:7:3;5442:18;:41::i;:::-;5434:103;;;;-1:-1:-1;;;5434:103:3;;;;;;;:::i;:::-;5547:39;5561:4;5567:2;5571:7;5580:5;5547:13;:39::i;:::-;5273:320;;;;:::o;285:37:11:-;;;;;;;:::i;3244:698::-;7130:4:3;7153:16;;;:7;:16;;;;;;3357:13:11;;-1:-1:-1;;;;;7153:16:3;3386:110:11;;;;-1:-1:-1;;;3386:110:11;;15567:2:14;3386:110:11;;;15549:21:14;15606:2;15586:18;;;15579:30;15645:34;15625:18;;;15618:62;-1:-1:-1;;;15696:18:14;;;15689:45;15751:19;;3386:110:11;15365:411:14;3386:110:11;3511:8;;;;;;;3507:69;;3551:14;3544:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3244:698;;;:::o;3507:69::-;3586:28;3617:10;:8;:10::i;:::-;3586:41;;3687:1;3662:14;3656:28;:32;:279;;;;;;;;;;;;;;;;;3777:14;3817:18;:7;:16;:18::i;:::-;3861:13;3735:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3656:279;3637:298;3244:698;-1:-1:-1;;;3244:698:11:o;4617:146::-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4723:33:11;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4769:124::-:0;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;4854:32:11;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1909:198:12:-:0;1099:6;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1997:22:12;::::1;1989:73;;;::::0;-1:-1:-1;;;1989:73:12;;17641:2:14;1989:73:12::1;::::0;::::1;17623:21:14::0;17680:2;17660:18;;;17653:30;17719:34;17699:18;;;17692:62;-1:-1:-1;;;17770:18:14;;;17763:36;17816:19;;1989:73:12::1;17439:402:14::0;1989:73:12::1;2072:28;2091:8;2072:18;:28::i;1476:300:3:-:0;1578:4;-1:-1:-1;;;;;;1613:40:3;;-1:-1:-1;;;1613:40:3;;:104;;-1:-1:-1;;;;;;;1669:48:3;;-1:-1:-1;;;1669:48:3;1613:104;:156;;;-1:-1:-1;;;;;;;;;;935:40:2;;;1733:36:3;827:155:2;10916:171:3;10990:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10990:29:3;-1:-1:-1;;;;;10990:29:3;;;;;;;;:24;;11043:23;10990:24;11043:14;:23::i;:::-;-1:-1:-1;;;;;11034:46:3;;;;;;;;;;;10916:171;;:::o;8022:108::-;8097:26;8107:2;8111:7;8097:26;;;;;;;;;;;;:9;:26::i;7348:344::-;7441:4;7153:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7153:16:3;7457:73;;;;-1:-1:-1;;;7457:73:3;;18048:2:14;7457:73:3;;;18030:21:14;18087:2;18067:18;;;18060:30;18126:34;18106:18;;;18099:62;-1:-1:-1;;;18177:18:14;;;18170:42;18229:19;;7457:73:3;17846:408:14;7457:73:3;7540:13;7556:23;7571:7;7556:14;:23::i;:::-;7540:39;;7608:5;-1:-1:-1;;;;;7597:16:3;:7;-1:-1:-1;;;;;7597:16:3;;:51;;;;7641:7;-1:-1:-1;;;;;7617:31:3;:20;7629:7;7617:11;:20::i;:::-;-1:-1:-1;;;;;7617:31:3;;7597:51;:87;;;-1:-1:-1;;;;;;4528:25:3;;;4505:4;4528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7652:32;7589:96;7348:344;-1:-1:-1;;;;7348:344:3:o;10245:560::-;10399:4;-1:-1:-1;;;;;10372:31:3;:23;10387:7;10372:14;:23::i;:::-;-1:-1:-1;;;;;10372:31:3;;10364:85;;;;-1:-1:-1;;;10364:85:3;;18461:2:14;10364:85:3;;;18443:21:14;18500:2;18480:18;;;18473:30;18539:34;18519:18;;;18512:62;-1:-1:-1;;;18590:18:14;;;18583:39;18639:19;;10364:85:3;18259:405:14;10364:85:3;-1:-1:-1;;;;;10467:16:3;;10459:65;;;;-1:-1:-1;;;10459:65:3;;18871:2:14;10459:65:3;;;18853:21:14;18910:2;18890:18;;;18883:30;18949:34;18929:18;;;18922:62;-1:-1:-1;;;19000:18:14;;;18993:34;19044:19;;10459:65:3;18669:400:14;10459:65:3;10535:39;10556:4;10562:2;10566:7;10535:20;:39::i;:::-;10636:29;10653:1;10657:7;10636:8;:29::i;:::-;-1:-1:-1;;;;;10676:15:3;;;;;;:9;:15;;;;;:20;;10695:1;;10676:15;:20;;10695:1;;10676:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10706:13:3;;;;;;:9;:13;;;;;:18;;10723:1;;10706:13;:18;;10723:1;;10706:18;:::i;:::-;;;;-1:-1:-1;;10734:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10734:21:3;-1:-1:-1;;;;;10734:21:3;;;;;;;;;10771:27;;10734:16;;10771:27;;;;;;;10245:560;;;:::o;847:184:10:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:10:o;2261:187:12:-;2353:6;;;-1:-1:-1;;;;;2369:17:12;;;-1:-1:-1;;;;;;2369:17:12;;;;;;;2401:40;;2353:6;;;2369:17;2353:6;;2401:40;;2334:16;;2401:40;2324:124;2261:187;:::o;11222:307:3:-;11372:8;-1:-1:-1;;;;;11363:17:3;:5;-1:-1:-1;;;;;11363:17:3;;;11355:55;;;;-1:-1:-1;;;11355:55:3;;19406:2:14;11355:55:3;;;19388:21:14;19445:2;19425:18;;;19418:30;19484:27;19464:18;;;19457:55;19529:18;;11355:55:3;19204:349:14;11355:55:3;-1:-1:-1;;;;;11420:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11420:46:3;;;;;;;;;;11481:41;;540::14;;;11481::3;;513:18:14;11481:41:3;;;;;;;11222:307;;;:::o;6455:::-;6606:28;6616:4;6622:2;6626:7;6606:9;:28::i;:::-;6652:48;6675:4;6681:2;6685:7;6694:5;6652:22;:48::i;:::-;6644:111;;;;-1:-1:-1;;;6644:111:3;;;;;;;:::i;1042:106:11:-;1102:13;1134:7;1127:14;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;8351:311:3;8476:18;8482:2;8486:7;8476:5;:18::i;:::-;8525:54;8556:1;8560:2;8564:7;8573:5;8525:22;:54::i;:::-;8504:151;;;;-1:-1:-1;;;8504:151:3;;;;;;;:::i;2619:572:4:-;-1:-1:-1;;;;;2818:18:4;;2814:183;;2852:40;2884:7;4000:10;:17;;3973:24;;;;:15;:24;;;;;:44;;;4027:24;;;;;;;;;;;;3897:161;2852:40;2814:183;;;2921:2;-1:-1:-1;;;;;2913:10:4;:4;-1:-1:-1;;;;;2913:10:4;;2909:88;;2939:47;2972:4;2978:7;2939:32;:47::i;:::-;-1:-1:-1;;;;;3010:16:4;;3006:179;;3042:45;3079:7;3042:36;:45::i;3006:179::-;3114:4;-1:-1:-1;;;;;3108:10:4;:2;-1:-1:-1;;;;;3108:10:4;;3104:81;;3134:40;3162:2;3166:7;3134:27;:40::i;1383:688:10:-;1466:7;1508:4;1466:7;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1779:44;;;;;;20508:19:14;;;20543:12;;;20536:28;;;20580:12;;1779:44:10;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1966:44;;;;;;20508:19:14;;;20543:12;;;20536:28;;;20580:12;;1966:44:10;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;-1:-1:-1;1560:3:10;;;;:::i;:::-;;;;1522:514;;12082:778:3;12232:4;-1:-1:-1;;;;;12252:13:3;;1087:20:0;1133:8;12248:606:3;;12287:72;;-1:-1:-1;;;12287:72:3;;-1:-1:-1;;;;;12287:36:3;;;;;:72;;719:10:1;;12338:4:3;;12344:7;;12353:5;;12287:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12287:72:3;;;;;;;;-1:-1:-1;;12287:72:3;;;;;;;;;;;;:::i;:::-;;;12283:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12526:13:3;;12522:266;;12568:60;;-1:-1:-1;;;12568:60:3;;;;;;;:::i;12522:266::-;12740:6;12734:13;12725:6;12721:2;12717:15;12710:38;12283:519;-1:-1:-1;;;;;;12409:51:3;-1:-1:-1;;;12409:51:3;;-1:-1:-1;12402:58:3;;12248:606;-1:-1:-1;12839:4:3;12082:778;;;;;;:::o;8984:372::-;-1:-1:-1;;;;;9063:16:3;;9055:61;;;;-1:-1:-1;;;9055:61:3;;21553:2:14;9055:61:3;;;21535:21:14;;;21572:18;;;21565:30;21631:34;21611:18;;;21604:62;21683:18;;9055:61:3;21351:356:14;9055:61:3;7130:4;7153:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7153:16:3;:30;9126:58;;;;-1:-1:-1;;;9126:58:3;;21914:2:14;9126:58:3;;;21896:21:14;21953:2;21933:18;;;21926:30;21992;21972:18;;;21965:58;22040:18;;9126:58:3;21712:352:14;9126:58:3;9195:45;9224:1;9228:2;9232:7;9195:20;:45::i;:::-;-1:-1:-1;;;;;9251:13:3;;;;;;:9;:13;;;;;:18;;9268:1;;9251:13;:18;;9268:1;;9251:18;:::i;:::-;;;;-1:-1:-1;;9279:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9279:21:3;-1:-1:-1;;;;;9279:21:3;;;;;;;;9316:33;;9279:16;;;9316:33;;9279:16;;9316:33;8984:372;;:::o;4675:970:4:-;4937:22;4987:1;4962:22;4979:4;4962:16;:22::i;:::-;:26;;;;:::i;:::-;4998:18;5019:26;;;:17;:26;;;;;;4937:51;;-1:-1:-1;5149:28:4;;;5145:323;;-1:-1:-1;;;;;5215:18:4;;5193:19;5215:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5264:30;;;;;;:44;;;5380:30;;:17;:30;;;;;:43;;;5145:323;-1:-1:-1;5561:26:4;;;;:17;:26;;;;;;;;5554:33;;;-1:-1:-1;;;;;5604:18:4;;;;;:12;:18;;;;;:34;;;;;;;5597:41;4675:970::o;5933:1061::-;6207:10;:17;6182:22;;6207:21;;6227:1;;6207:21;:::i;:::-;6238:18;6259:24;;;:15;:24;;;;;;6627:10;:26;;6182:46;;-1:-1:-1;6259:24:4;;6182:46;;6627:26;;;;;;:::i;:::-;;;;;;;;;6605:48;;6689:11;6664:10;6675;6664:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6768:28;;;:15;:28;;;;;;;:41;;;6937:24;;;;;6930:31;6971:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6004:990;;;5933:1061;:::o;3485:217::-;3569:14;3586:20;3603:2;3586:16;:20::i;:::-;-1:-1:-1;;;;;3616:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3485:217:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:14;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:14;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:14:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:14;;1693:180;-1:-1:-1;1693:180:14:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:14;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:14:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3411:632::-;3582:2;3634:21;;;3704:13;;3607:18;;;3726:22;;;3553:4;;3582:2;3805:15;;;;3779:2;3764:18;;;3553:4;3848:169;3862:6;3859:1;3856:13;3848:169;;;3923:13;;3911:26;;3992:15;;;;3957:12;;;;3884:1;3877:9;3848:169;;;-1:-1:-1;4034:3:14;;3411:632;-1:-1:-1;;;;;;3411:632:14:o;4048:615::-;4134:6;4142;4195:2;4183:9;4174:7;4170:23;4166:32;4163:52;;;4211:1;4208;4201:12;4163:52;4251:9;4238:23;4280:18;4321:2;4313:6;4310:14;4307:34;;;4337:1;4334;4327:12;4307:34;4375:6;4364:9;4360:22;4350:32;;4420:7;4413:4;4409:2;4405:13;4401:27;4391:55;;4442:1;4439;4432:12;4391:55;4482:2;4469:16;4508:2;4500:6;4497:14;4494:34;;;4524:1;4521;4514:12;4494:34;4577:7;4572:2;4562:6;4559:1;4555:14;4551:2;4547:23;4543:32;4540:45;4537:65;;;4598:1;4595;4588:12;4537:65;4629:2;4621:11;;;;;4651:6;;-1:-1:-1;4048:615:14;;-1:-1:-1;;;;4048:615:14:o;4668:127::-;4729:10;4724:3;4720:20;4717:1;4710:31;4760:4;4757:1;4750:15;4784:4;4781:1;4774:15;4800:632;4865:5;4895:18;4936:2;4928:6;4925:14;4922:40;;;4942:18;;:::i;:::-;5017:2;5011:9;4985:2;5071:15;;-1:-1:-1;;5067:24:14;;;5093:2;5063:33;5059:42;5047:55;;;5117:18;;;5137:22;;;5114:46;5111:72;;;5163:18;;:::i;:::-;5203:10;5199:2;5192:22;5232:6;5223:15;;5262:6;5254;5247:22;5302:3;5293:6;5288:3;5284:16;5281:25;5278:45;;;5319:1;5316;5309:12;5278:45;5369:6;5364:3;5357:4;5349:6;5345:17;5332:44;5424:1;5417:4;5408:6;5400;5396:19;5392:30;5385:41;;;;4800:632;;;;;:::o;5437:451::-;5506:6;5559:2;5547:9;5538:7;5534:23;5530:32;5527:52;;;5575:1;5572;5565:12;5527:52;5615:9;5602:23;5648:18;5640:6;5637:30;5634:50;;;5680:1;5677;5670:12;5634:50;5703:22;;5756:4;5748:13;;5744:27;-1:-1:-1;5734:55:14;;5785:1;5782;5775:12;5734:55;5808:74;5874:7;5869:2;5856:16;5851:2;5847;5843:11;5808:74;:::i;5893:254::-;5958:6;5966;6019:2;6007:9;5998:7;5994:23;5990:32;5987:52;;;6035:1;6032;6025:12;5987:52;6058:29;6077:9;6058:29;:::i;:::-;6048:39;;6106:35;6137:2;6126:9;6122:18;6106:35;:::i;:::-;6096:45;;5893:254;;;;;:::o;6152:667::-;6247:6;6255;6263;6271;6324:3;6312:9;6303:7;6299:23;6295:33;6292:53;;;6341:1;6338;6331:12;6292:53;6364:29;6383:9;6364:29;:::i;:::-;6354:39;;6412:38;6446:2;6435:9;6431:18;6412:38;:::i;:::-;6402:48;;6497:2;6486:9;6482:18;6469:32;6459:42;;6552:2;6541:9;6537:18;6524:32;6579:18;6571:6;6568:30;6565:50;;;6611:1;6608;6601:12;6565:50;6634:22;;6687:4;6679:13;;6675:27;-1:-1:-1;6665:55:14;;6716:1;6713;6706:12;6665:55;6739:74;6805:7;6800:2;6787:16;6782:2;6778;6774:11;6739:74;:::i;:::-;6729:84;;;6152:667;;;;;;;:::o;6824:260::-;6892:6;6900;6953:2;6941:9;6932:7;6928:23;6924:32;6921:52;;;6969:1;6966;6959:12;6921:52;6992:29;7011:9;6992:29;:::i;:::-;6982:39;;7040:38;7074:2;7063:9;7059:18;7040:38;:::i;7089:356::-;7291:2;7273:21;;;7310:18;;;7303:30;7369:34;7364:2;7349:18;;7342:62;7436:2;7421:18;;7089:356::o;7450:380::-;7529:1;7525:12;;;;7572;;;7593:61;;7647:4;7639:6;7635:17;7625:27;;7593:61;7700:2;7692:6;7689:14;7669:18;7666:38;7663:161;;;7746:10;7741:3;7737:20;7734:1;7727:31;7781:4;7778:1;7771:15;7809:4;7806:1;7799:15;7663:161;;7450:380;;;:::o;9075:127::-;9136:10;9131:3;9127:20;9124:1;9117:31;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9207:128;9247:3;9278:1;9274:6;9271:1;9268:13;9265:39;;;9284:18;;:::i;:::-;-1:-1:-1;9320:9:14;;9207:128::o;9340:413::-;9542:2;9524:21;;;9581:2;9561:18;;;9554:30;9620:34;9615:2;9600:18;;9593:62;-1:-1:-1;;;9686:2:14;9671:18;;9664:47;9743:3;9728:19;;9340:413::o;10380:127::-;10441:10;10436:3;10432:20;10429:1;10422:31;10472:4;10469:1;10462:15;10496:4;10493:1;10486:15;10512:135;10551:3;-1:-1:-1;;10572:17:14;;10569:43;;;10592:18;;:::i;:::-;-1:-1:-1;10639:1:14;10628:13;;10512:135::o;14717:168::-;14757:7;14823:1;14819;14815:6;14811:14;14808:1;14805:21;14800:1;14793:9;14786:17;14782:45;14779:71;;;14830:18;;:::i;:::-;-1:-1:-1;14870:9:14;;14717:168::o;15907:1527::-;16131:3;16169:6;16163:13;16195:4;16208:51;16252:6;16247:3;16242:2;16234:6;16230:15;16208:51;:::i;:::-;16322:13;;16281:16;;;;16344:55;16322:13;16281:16;16366:15;;;16344:55;:::i;:::-;16488:13;;16421:20;;;16461:1;;16548;16570:18;;;;16623;;;;16650:93;;16728:4;16718:8;16714:19;16702:31;;16650:93;16791:2;16781:8;16778:16;16758:18;16755:40;16752:167;;;-1:-1:-1;;;16818:33:14;;16874:4;16871:1;16864:15;16904:4;16825:3;16892:17;16752:167;16935:18;16962:110;;;;17086:1;17081:328;;;;16928:481;;16962:110;-1:-1:-1;;16997:24:14;;16983:39;;17042:20;;;;-1:-1:-1;16962:110:14;;17081:328;15854:1;15847:14;;;15891:4;15878:18;;17176:1;17190:169;17204:8;17201:1;17198:15;17190:169;;;17286:14;;17271:13;;;17264:37;17329:16;;;;17221:10;;17190:169;;;17194:3;;17390:8;17383:5;17379:20;17372:27;;16928:481;-1:-1:-1;17425:3:14;;15907:1527;-1:-1:-1;;;;;;;;;;;15907:1527:14:o;19074:125::-;19114:4;19142:1;19139;19136:8;19133:34;;;19147:18;;:::i;:::-;-1:-1:-1;19184:9:14;;19074:125::o;19558:414::-;19760:2;19742:21;;;19799:2;19779:18;;;19772:30;19838:34;19833:2;19818:18;;19811:62;-1:-1:-1;;;19904:2:14;19889:18;;19882:48;19962:3;19947:19;;19558:414::o;19977:127::-;20038:10;20033:3;20029:20;20026:1;20019:31;20069:4;20066:1;20059:15;20093:4;20090:1;20083:15;20109:120;20149:1;20175;20165:35;;20180:18;;:::i;:::-;-1:-1:-1;20214:9:14;;20109:120::o;20234:112::-;20266:1;20292;20282:35;;20297:18;;:::i;:::-;-1:-1:-1;20331:9:14;;20234:112::o;20603:489::-;-1:-1:-1;;;;;20872:15:14;;;20854:34;;20924:15;;20919:2;20904:18;;20897:43;20971:2;20956:18;;20949:34;;;21019:3;21014:2;20999:18;;20992:31;;;20797:4;;21040:46;;21066:19;;21058:6;21040:46;:::i;:::-;21032:54;20603:489;-1:-1:-1;;;;;;20603:489:14:o;21097:249::-;21166:6;21219:2;21207:9;21198:7;21194:23;21190:32;21187:52;;;21235:1;21232;21225:12;21187:52;21267:9;21261:16;21286:30;21310:5;21286:30;:::i;22069:127::-;22130:10;22125:3;22121:20;22118:1;22111:31;22161:4;22158:1;22151:15;22185:4;22182:1;22175:15

Swarm Source

ipfs://358ac32007818d76131c00f705eee3d91eba6a8cff651e1b925b6b9155d909de
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.