ETH Price: $2,983.85 (-4.74%)
Gas: 3 Gwei

Token

GoblinHunters.run (Gobhunt)
 

Overview

Max Total Supply

5,817 Gobhunt

Holders

504

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Gobhunt
0x4eb173b2a73875921facbf9e048c4b71ec8c8818
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GoblinHunters

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-22
*/

// SPDX-License-Identifier: MIT



// File: @openzeppelin/contracts/utils/Strings.sol

// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: contracts/new.sol




pragma solidity ^0.8.4;








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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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);
    }
}
    pragma solidity ^0.8.7;
    
    contract  GoblinHunters is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix = "";
  string private uriSuffix = ".json";


  string public hiddenUri ="https://degenerama.mypinata.cloud/ipfs/QmbpHDrFidLKDdTXm1ef6JcFxWqf2BMr7q1p6nppTq8MVX/2.json";
  

  uint256 public cost = 0.0069 ether;


  uint16 public constant maxSupply = 10000;
  uint8 public maxMintAmountPerWallet = 20;
                                                             

  bool public paused = true;
  bool public reveal = false;
 
  uint16 public freelimit = 4500;
  
  address public     proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
 mapping(address => bool) public projectProxy;

  mapping(address => uint8) public NFTPerAddress;
  
  
  

  constructor() ERC721A("GoblinHunters.run", "Gobhunt") {
  }

  
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    uint8 NftsMinted = NFTPerAddress[msg.sender];
    require(_mintAmount  + NftsMinted <= maxMintAmountPerWallet, "Exceeds max NFT per Wallet");

    require(!paused, "The contract is paused!");
    if(totalSupply >= freelimit )
    {require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _safeMint(msg.sender , _mintAmount);
    NFTPerAddress[msg.sender] = _mintAmount  + NftsMinted;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(reveal == false)
    {
        return hiddenUri;
    }
    

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






  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
 
  function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenUri = _uriPrefix;
  }

  function setPaused() external onlyOwner {
    paused = !paused;
   
  }
  function setRevealed() external onlyOwner {
    reveal = !reveal;
   
  }



  
  function setFreeLimit(uint16 _limit) external onlyOwner{
      freelimit = _limit;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }



  function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerWallet = _maxtx;

  }

 

  function withdraw() external onlyOwner {
     uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance); 
    


       
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
 function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }
    
     
     function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }
     function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }
}
contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freelimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_limit","type":"uint16"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000199565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000199565b506040518060800160405280605c815260200162002539605c913980516200007b91600b9160209091019062000199565b506618838370f34000600c55600d80546001600160c81b03191678a5409ec958c83c3f309868babaca7c86dcb077c11194000114179055348015620000bf57600080fd5b50604080518082018252601181527023b7b13634b7243ab73a32b93997393ab760791b60208083019182528351808501909452600784526611dbd89a1d5b9d60ca1b908401528151919291620001189160029162000199565b5080516200012e90600390602084019062000199565b5050600160005550620001413362000147565b6200027c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a7906200023f565b90600052602060002090601f016020900481019282620001cb576000855562000216565b82601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b5b8082111562000224576000815560010162000229565b600181811c908216806200025457607f821691505b602082108114156200027657634e487b7160e01b600052602260045260246000fd5b50919050565b6122ad806200028c6000396000f3fe6080604052600436106102305760003560e01c80636ecd23061161012e578063bc951b91116100ab578063d5abeb011161006f578063d5abeb011461068f578063dbd37cf4146106a5578063e985e9c5146106d5578063f2fde38b146106f5578063f73c814b1461071557600080fd5b8063bc951b91146105e5578063c5be875014610611578063c87b56dd14610626578063cd7c032614610646578063d26ea6c01461066f57600080fd5b806395d89b41116100f257806395d89b411461053b578063a22cb46514610550578063a475b5dd14610570578063b0917a9e14610590578063b88d4fde146105c557600080fd5b80636ecd2306146104b557806370a08231146104c8578063715018a6146104e85780637ec4a659146104fd5780638da5cb5b1461051d57600080fd5b80632f6f98e1116101bc57806344a0d68a1161018057806344a0d68a146104065780635bab26e2146104265780635c975abb146104565780636352211e1461047557806365db54741461049557600080fd5b80632f6f98e11461038757806337a66d85146103a75780633bd64968146103bc5780633ccfd60b146103d157806342842e0e146103e657600080fd5b80631067fcc7116102035780631067fcc7146102e657806313faede61461030657806318160ddd1461032a57806323b872dd1461034757806328b60d151461036757600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e29565b610735565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610787565b6040516102619190612069565b34801561029857600080fd5b506102ac6102a7366004611f00565b610819565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611dfd565b61085d565b005b3480156102f257600080fd5b506102e4610301366004611e80565b6108eb565b34801561031257600080fd5b5061031c600c5481565b604051908152602001610261565b34801561033657600080fd5b50600154600054036000190161031c565b34801561035357600080fd5b506102e4610362366004611d09565b610935565b34801561037357600080fd5b506102e4610382366004611f19565b610940565b34801561039357600080fd5b506102e46103a2366004611ee4565b610980565b3480156103b357600080fd5b506102e4610a24565b3480156103c857600080fd5b506102e4610a6b565b3480156103dd57600080fd5b506102e4610ab4565b3480156103f257600080fd5b506102e4610401366004611d09565b610b0d565b34801561041257600080fd5b506102e4610421366004611f00565b610b28565b34801561043257600080fd5b50610255610441366004611cb3565b600e6020526000908152604090205460ff1681565b34801561046257600080fd5b50600d5461025590610100900460ff1681565b34801561048157600080fd5b506102ac610490366004611f00565b610b57565b3480156104a157600080fd5b506102e46104b0366004611ec9565b610b69565b6102e46104c3366004611f19565b610bb5565b3480156104d457600080fd5b5061031c6104e3366004611cb3565b610d9c565b3480156104f457600080fd5b506102e4610deb565b34801561050957600080fd5b506102e4610518366004611e80565b610e21565b34801561052957600080fd5b506008546001600160a01b03166102ac565b34801561054757600080fd5b5061027f610e5e565b34801561055c57600080fd5b506102e461056b366004611dca565b610e6d565b34801561057c57600080fd5b50600d546102559062010000900460ff1681565b34801561059c57600080fd5b50600d546105b2906301000000900461ffff1681565b60405161ffff9091168152602001610261565b3480156105d157600080fd5b506102e46105e0366004611d4a565b610f03565b3480156105f157600080fd5b50600d546105ff9060ff1681565b60405160ff9091168152602001610261565b34801561061d57600080fd5b5061027f610f54565b34801561063257600080fd5b5061027f610641366004611f00565b610fe2565b34801561065257600080fd5b50600d546102ac906501000000000090046001600160a01b031681565b34801561067b57600080fd5b506102e461068a366004611cb3565b611152565b34801561069b57600080fd5b506105b261271081565b3480156106b157600080fd5b506105ff6106c0366004611cb3565b600f6020526000908152604090205460ff1681565b3480156106e157600080fd5b506102556106f0366004611cd0565b6111ac565b34801561070157600080fd5b506102e4610710366004611cb3565b6112a8565b34801561072157600080fd5b506102e4610730366004611cb3565b611343565b60006001600160e01b031982166380ac58cd60e01b148061076657506001600160e01b03198216635b5e139f60e01b145b8061078157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107969061218a565b80601f01602080910402602001604051908101604052809291908181526020018280546107c29061218a565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600061082482611396565b610841576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086882610b57565b9050806001600160a01b0316836001600160a01b0316141561089d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108bd57506108bb81336111ac565b155b156108db576040516367d9dca160e11b815260040160405180910390fd5b6108e68383836113cf565b505050565b6008546001600160a01b0316331461091e5760405162461bcd60e51b81526004016109159061207c565b60405180910390fd5b805161093190600b906020840190611b8d565b5050565b6108e683838361142b565b6008546001600160a01b0316331461096a5760405162461bcd60e51b81526004016109159061207c565b600d805460ff191660ff92909216919091179055565b6008546001600160a01b031633146109aa5760405162461bcd60e51b81526004016109159061207c565b60006109bf6001546000546000199190030190565b90506127106109ce84836120b1565b61ffff161115610a165760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610915565b6108e6828461ffff1661161b565b6008546001600160a01b03163314610a4e5760405162461bcd60e51b81526004016109159061207c565b600d805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610a955760405162461bcd60e51b81526004016109159061207c565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610ade5760405162461bcd60e51b81526004016109159061207c565b6040514790339082156108fc029083906000818181858888f19350505050158015610931573d6000803e3d6000fd5b6108e683838360405180602001604052806000815250610f03565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109159061207c565b600c55565b6000610b6282611635565b5192915050565b6008546001600160a01b03163314610b935760405162461bcd60e51b81526004016109159061207c565b600d805461ffff90921663010000000264ffff00000019909216919091179055565b6000610bca6001546000546000199190030190565b9050612710610bdc60ff8416836120b1565b61ffff161115610c245760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610915565b336000908152600f6020526040902054600d5460ff9182169116610c4882856120ef565b60ff161115610c995760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178204e4654207065722057616c6c65740000000000006044820152606401610915565b600d54610100900460ff1615610cf15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610915565b600d5461ffff6301000000909104811690831610610d5f578260ff16600c54610d1a9190612128565b341015610d5f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610915565b610d6c338460ff1661161b565b610d7681846120ef565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610dc5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e155760405162461bcd60e51b81526004016109159061207c565b610e1f600061175e565b565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b81526004016109159061207c565b8051610931906009906020840190611b8d565b6060600380546107969061218a565b6001600160a01b038216331415610e975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f0e84848461142b565b6001600160a01b0383163b15158015610f305750610f2e848484846117b0565b155b15610f4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610f619061218a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d9061218a565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b6060610fed82611396565b6110515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610915565b600d5462010000900460ff166110f357600b805461106e9061218a565b80601f016020809104026020016040519081016040528092919081815260200182805461109a9061218a565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b50505050509050919050565b60006110fd6118a7565b9050600081511161111d576040518060200160405280600081525061114b565b80611127846118b6565b600a60405160200161113b93929190611f68565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461117c5760405162461bcd60e51b81526004016109159061207c565b600d80546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009265010000000000900481169190841690829063c45527919060240160206040518083038186803b15801561120257600080fd5b505afa158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190611e63565b6001600160a01b0316148061126757506001600160a01b0383166000908152600e602052604090205460ff165b15611276576001915050610781565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112d25760405162461bcd60e51b81526004016109159061207c565b6001600160a01b0381166113375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610915565b6113408161175e565b50565b6008546001600160a01b0316331461136d5760405162461bcd60e51b81526004016109159061207c565b6001600160a01b03166000908152600e60205260409020805460ff19811660ff90911615179055565b6000816001111580156113aa575060005482105b8015610781575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143682611635565b9050836001600160a01b031681600001516001600160a01b03161461146d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061148b575061148b85336111ac565b806114a657503361149b84610819565b6001600160a01b0316145b9050806114c657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114ed57604051633a954ecd60e21b815260040160405180910390fd5b6114f9600084876113cf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115cf5760005482146115cf578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109318282604051806020016040528060008152506119b4565b60408051606081018252600080825260208201819052918101919091528180600111158015611665575060005481105b1561174557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117435780516001600160a01b0316156116d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561173e579392505050565b6116d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117e590339089908890889060040161202c565b602060405180830381600087803b1580156117ff57600080fd5b505af192505050801561182f575060408051601f3d908101601f1916820190925261182c91810190611e46565b60015b61188a573d80801561185d576040519150601f19603f3d011682016040523d82523d6000602084013e611862565b606091505b508051611882576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107969061218a565b6060816118da5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190457806118ee816121c5565b91506118fd9050600a83612114565b91506118de565b60008167ffffffffffffffff81111561191f5761191f612236565b6040519080825280601f01601f191660200182016040528015611949576020820181803683370190505b5090505b84156112a05761195e600183612147565b915061196b600a866121e0565b6119769060306120d7565b60f81b81838151811061198b5761198b612220565b60200101906001600160f81b031916908160001a9053506119ad600a86612114565b945061194d565b6108e683838360016000546001600160a01b0385166119e557604051622e076360e81b815260040160405180910390fd5b83611a035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ab557506001600160a01b0387163b15155b15611b3e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0660008884806001019550886117b0565b611b23576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611abb578260005414611b3957600080fd5b611b84565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b3f575b50600055611614565b828054611b999061218a565b90600052602060002090601f016020900481019282611bbb5760008555611c01565b82601f10611bd457805160ff1916838001178555611c01565b82800160010185558215611c01579182015b82811115611c01578251825591602001919060010190611be6565b50611c0d929150611c11565b5090565b5b80821115611c0d5760008155600101611c12565b600067ffffffffffffffff80841115611c4157611c41612236565b604051601f8501601f19908116603f01168101908282118183101715611c6957611c69612236565b81604052809350858152868686011115611c8257600080fd5b858560208301376000602087830101525050509392505050565b803561ffff81168114611cae57600080fd5b919050565b600060208284031215611cc557600080fd5b813561114b8161224c565b60008060408385031215611ce357600080fd5b8235611cee8161224c565b91506020830135611cfe8161224c565b809150509250929050565b600080600060608486031215611d1e57600080fd5b8335611d298161224c565b92506020840135611d398161224c565b929592945050506040919091013590565b60008060008060808587031215611d6057600080fd5b8435611d6b8161224c565b93506020850135611d7b8161224c565b925060408501359150606085013567ffffffffffffffff811115611d9e57600080fd5b8501601f81018713611daf57600080fd5b611dbe87823560208401611c26565b91505092959194509250565b60008060408385031215611ddd57600080fd5b8235611de88161224c565b915060208301358015158114611cfe57600080fd5b60008060408385031215611e1057600080fd5b8235611e1b8161224c565b946020939093013593505050565b600060208284031215611e3b57600080fd5b813561114b81612261565b600060208284031215611e5857600080fd5b815161114b81612261565b600060208284031215611e7557600080fd5b815161114b8161224c565b600060208284031215611e9257600080fd5b813567ffffffffffffffff811115611ea957600080fd5b8201601f81018413611eba57600080fd5b6112a084823560208401611c26565b600060208284031215611edb57600080fd5b61114b82611c9c565b60008060408385031215611ef757600080fd5b611cee83611c9c565b600060208284031215611f1257600080fd5b5035919050565b600060208284031215611f2b57600080fd5b813560ff8116811461114b57600080fd5b60008151808452611f5481602086016020860161215e565b601f01601f19169290920160200192915050565b600084516020611f7b8285838a0161215e565b855191840191611f8e8184848a0161215e565b8554920191600090600181811c9080831680611fab57607f831692505b858310811415611fc957634e487b7160e01b85526022600452602485fd5b808015611fdd5760018114611fee5761201b565b60ff1985168852838801955061201b565b60008b81526020902060005b858110156120135781548a820152908401908801611ffa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205f90830184611f3c565b9695505050505050565b60208152600061114b6020830184611f3c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156120ce576120ce6121f4565b01949350505050565b600082198211156120ea576120ea6121f4565b500190565b600060ff821660ff84168060ff0382111561210c5761210c6121f4565b019392505050565b6000826121235761212361220a565b500490565b6000816000190483118215151615612142576121426121f4565b500290565b600082821015612159576121596121f4565b500390565b60005b83811015612179578181015183820152602001612161565b83811115610f4e5750506000910152565b600181811c9082168061219e57607f821691505b602082108114156121bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d9576121d96121f4565b5060010190565b6000826121ef576121ef61220a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461134057600080fd5b6001600160e01b03198116811461134057600080fdfea2646970667358221220990e594333efb270194b7a2212c2db8e709ad7f28ce9a67342996fe06620565164736f6c6343000807003368747470733a2f2f646567656e6572616d612e6d7970696e6174612e636c6f75642f697066732f516d62704844724669644c4b446454586d316566364a63467857716632424d7237713170366e70705471384d56582f322e6a736f6e

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636ecd23061161012e578063bc951b91116100ab578063d5abeb011161006f578063d5abeb011461068f578063dbd37cf4146106a5578063e985e9c5146106d5578063f2fde38b146106f5578063f73c814b1461071557600080fd5b8063bc951b91146105e5578063c5be875014610611578063c87b56dd14610626578063cd7c032614610646578063d26ea6c01461066f57600080fd5b806395d89b41116100f257806395d89b411461053b578063a22cb46514610550578063a475b5dd14610570578063b0917a9e14610590578063b88d4fde146105c557600080fd5b80636ecd2306146104b557806370a08231146104c8578063715018a6146104e85780637ec4a659146104fd5780638da5cb5b1461051d57600080fd5b80632f6f98e1116101bc57806344a0d68a1161018057806344a0d68a146104065780635bab26e2146104265780635c975abb146104565780636352211e1461047557806365db54741461049557600080fd5b80632f6f98e11461038757806337a66d85146103a75780633bd64968146103bc5780633ccfd60b146103d157806342842e0e146103e657600080fd5b80631067fcc7116102035780631067fcc7146102e657806313faede61461030657806318160ddd1461032a57806323b872dd1461034757806328b60d151461036757600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e29565b610735565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610787565b6040516102619190612069565b34801561029857600080fd5b506102ac6102a7366004611f00565b610819565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611dfd565b61085d565b005b3480156102f257600080fd5b506102e4610301366004611e80565b6108eb565b34801561031257600080fd5b5061031c600c5481565b604051908152602001610261565b34801561033657600080fd5b50600154600054036000190161031c565b34801561035357600080fd5b506102e4610362366004611d09565b610935565b34801561037357600080fd5b506102e4610382366004611f19565b610940565b34801561039357600080fd5b506102e46103a2366004611ee4565b610980565b3480156103b357600080fd5b506102e4610a24565b3480156103c857600080fd5b506102e4610a6b565b3480156103dd57600080fd5b506102e4610ab4565b3480156103f257600080fd5b506102e4610401366004611d09565b610b0d565b34801561041257600080fd5b506102e4610421366004611f00565b610b28565b34801561043257600080fd5b50610255610441366004611cb3565b600e6020526000908152604090205460ff1681565b34801561046257600080fd5b50600d5461025590610100900460ff1681565b34801561048157600080fd5b506102ac610490366004611f00565b610b57565b3480156104a157600080fd5b506102e46104b0366004611ec9565b610b69565b6102e46104c3366004611f19565b610bb5565b3480156104d457600080fd5b5061031c6104e3366004611cb3565b610d9c565b3480156104f457600080fd5b506102e4610deb565b34801561050957600080fd5b506102e4610518366004611e80565b610e21565b34801561052957600080fd5b506008546001600160a01b03166102ac565b34801561054757600080fd5b5061027f610e5e565b34801561055c57600080fd5b506102e461056b366004611dca565b610e6d565b34801561057c57600080fd5b50600d546102559062010000900460ff1681565b34801561059c57600080fd5b50600d546105b2906301000000900461ffff1681565b60405161ffff9091168152602001610261565b3480156105d157600080fd5b506102e46105e0366004611d4a565b610f03565b3480156105f157600080fd5b50600d546105ff9060ff1681565b60405160ff9091168152602001610261565b34801561061d57600080fd5b5061027f610f54565b34801561063257600080fd5b5061027f610641366004611f00565b610fe2565b34801561065257600080fd5b50600d546102ac906501000000000090046001600160a01b031681565b34801561067b57600080fd5b506102e461068a366004611cb3565b611152565b34801561069b57600080fd5b506105b261271081565b3480156106b157600080fd5b506105ff6106c0366004611cb3565b600f6020526000908152604090205460ff1681565b3480156106e157600080fd5b506102556106f0366004611cd0565b6111ac565b34801561070157600080fd5b506102e4610710366004611cb3565b6112a8565b34801561072157600080fd5b506102e4610730366004611cb3565b611343565b60006001600160e01b031982166380ac58cd60e01b148061076657506001600160e01b03198216635b5e139f60e01b145b8061078157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107969061218a565b80601f01602080910402602001604051908101604052809291908181526020018280546107c29061218a565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b600061082482611396565b610841576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086882610b57565b9050806001600160a01b0316836001600160a01b0316141561089d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108bd57506108bb81336111ac565b155b156108db576040516367d9dca160e11b815260040160405180910390fd5b6108e68383836113cf565b505050565b6008546001600160a01b0316331461091e5760405162461bcd60e51b81526004016109159061207c565b60405180910390fd5b805161093190600b906020840190611b8d565b5050565b6108e683838361142b565b6008546001600160a01b0316331461096a5760405162461bcd60e51b81526004016109159061207c565b600d805460ff191660ff92909216919091179055565b6008546001600160a01b031633146109aa5760405162461bcd60e51b81526004016109159061207c565b60006109bf6001546000546000199190030190565b90506127106109ce84836120b1565b61ffff161115610a165760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610915565b6108e6828461ffff1661161b565b6008546001600160a01b03163314610a4e5760405162461bcd60e51b81526004016109159061207c565b600d805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610a955760405162461bcd60e51b81526004016109159061207c565b600d805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610ade5760405162461bcd60e51b81526004016109159061207c565b6040514790339082156108fc029083906000818181858888f19350505050158015610931573d6000803e3d6000fd5b6108e683838360405180602001604052806000815250610f03565b6008546001600160a01b03163314610b525760405162461bcd60e51b81526004016109159061207c565b600c55565b6000610b6282611635565b5192915050565b6008546001600160a01b03163314610b935760405162461bcd60e51b81526004016109159061207c565b600d805461ffff90921663010000000264ffff00000019909216919091179055565b6000610bca6001546000546000199190030190565b9050612710610bdc60ff8416836120b1565b61ffff161115610c245760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610915565b336000908152600f6020526040902054600d5460ff9182169116610c4882856120ef565b60ff161115610c995760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178204e4654207065722057616c6c65740000000000006044820152606401610915565b600d54610100900460ff1615610cf15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610915565b600d5461ffff6301000000909104811690831610610d5f578260ff16600c54610d1a9190612128565b341015610d5f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610915565b610d6c338460ff1661161b565b610d7681846120ef565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610dc5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e155760405162461bcd60e51b81526004016109159061207c565b610e1f600061175e565b565b6008546001600160a01b03163314610e4b5760405162461bcd60e51b81526004016109159061207c565b8051610931906009906020840190611b8d565b6060600380546107969061218a565b6001600160a01b038216331415610e975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f0e84848461142b565b6001600160a01b0383163b15158015610f305750610f2e848484846117b0565b155b15610f4e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b8054610f619061218a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d9061218a565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b505050505081565b6060610fed82611396565b6110515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610915565b600d5462010000900460ff166110f357600b805461106e9061218a565b80601f016020809104026020016040519081016040528092919081815260200182805461109a9061218a565b80156110e75780601f106110bc576101008083540402835291602001916110e7565b820191906000526020600020905b8154815290600101906020018083116110ca57829003601f168201915b50505050509050919050565b60006110fd6118a7565b9050600081511161111d576040518060200160405280600081525061114b565b80611127846118b6565b600a60405160200161113b93929190611f68565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461117c5760405162461bcd60e51b81526004016109159061207c565b600d80546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009265010000000000900481169190841690829063c45527919060240160206040518083038186803b15801561120257600080fd5b505afa158015611216573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123a9190611e63565b6001600160a01b0316148061126757506001600160a01b0383166000908152600e602052604090205460ff165b15611276576001915050610781565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112d25760405162461bcd60e51b81526004016109159061207c565b6001600160a01b0381166113375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610915565b6113408161175e565b50565b6008546001600160a01b0316331461136d5760405162461bcd60e51b81526004016109159061207c565b6001600160a01b03166000908152600e60205260409020805460ff19811660ff90911615179055565b6000816001111580156113aa575060005482105b8015610781575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143682611635565b9050836001600160a01b031681600001516001600160a01b03161461146d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061148b575061148b85336111ac565b806114a657503361149b84610819565b6001600160a01b0316145b9050806114c657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114ed57604051633a954ecd60e21b815260040160405180910390fd5b6114f9600084876113cf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115cf5760005482146115cf578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109318282604051806020016040528060008152506119b4565b60408051606081018252600080825260208201819052918101919091528180600111158015611665575060005481105b1561174557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117435780516001600160a01b0316156116d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561173e579392505050565b6116d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117e590339089908890889060040161202c565b602060405180830381600087803b1580156117ff57600080fd5b505af192505050801561182f575060408051601f3d908101601f1916820190925261182c91810190611e46565b60015b61188a573d80801561185d576040519150601f19603f3d011682016040523d82523d6000602084013e611862565b606091505b508051611882576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546107969061218a565b6060816118da5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190457806118ee816121c5565b91506118fd9050600a83612114565b91506118de565b60008167ffffffffffffffff81111561191f5761191f612236565b6040519080825280601f01601f191660200182016040528015611949576020820181803683370190505b5090505b84156112a05761195e600183612147565b915061196b600a866121e0565b6119769060306120d7565b60f81b81838151811061198b5761198b612220565b60200101906001600160f81b031916908160001a9053506119ad600a86612114565b945061194d565b6108e683838360016000546001600160a01b0385166119e557604051622e076360e81b815260040160405180910390fd5b83611a035760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ab557506001600160a01b0387163b15155b15611b3e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0660008884806001019550886117b0565b611b23576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611abb578260005414611b3957600080fd5b611b84565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b3f575b50600055611614565b828054611b999061218a565b90600052602060002090601f016020900481019282611bbb5760008555611c01565b82601f10611bd457805160ff1916838001178555611c01565b82800160010185558215611c01579182015b82811115611c01578251825591602001919060010190611be6565b50611c0d929150611c11565b5090565b5b80821115611c0d5760008155600101611c12565b600067ffffffffffffffff80841115611c4157611c41612236565b604051601f8501601f19908116603f01168101908282118183101715611c6957611c69612236565b81604052809350858152868686011115611c8257600080fd5b858560208301376000602087830101525050509392505050565b803561ffff81168114611cae57600080fd5b919050565b600060208284031215611cc557600080fd5b813561114b8161224c565b60008060408385031215611ce357600080fd5b8235611cee8161224c565b91506020830135611cfe8161224c565b809150509250929050565b600080600060608486031215611d1e57600080fd5b8335611d298161224c565b92506020840135611d398161224c565b929592945050506040919091013590565b60008060008060808587031215611d6057600080fd5b8435611d6b8161224c565b93506020850135611d7b8161224c565b925060408501359150606085013567ffffffffffffffff811115611d9e57600080fd5b8501601f81018713611daf57600080fd5b611dbe87823560208401611c26565b91505092959194509250565b60008060408385031215611ddd57600080fd5b8235611de88161224c565b915060208301358015158114611cfe57600080fd5b60008060408385031215611e1057600080fd5b8235611e1b8161224c565b946020939093013593505050565b600060208284031215611e3b57600080fd5b813561114b81612261565b600060208284031215611e5857600080fd5b815161114b81612261565b600060208284031215611e7557600080fd5b815161114b8161224c565b600060208284031215611e9257600080fd5b813567ffffffffffffffff811115611ea957600080fd5b8201601f81018413611eba57600080fd5b6112a084823560208401611c26565b600060208284031215611edb57600080fd5b61114b82611c9c565b60008060408385031215611ef757600080fd5b611cee83611c9c565b600060208284031215611f1257600080fd5b5035919050565b600060208284031215611f2b57600080fd5b813560ff8116811461114b57600080fd5b60008151808452611f5481602086016020860161215e565b601f01601f19169290920160200192915050565b600084516020611f7b8285838a0161215e565b855191840191611f8e8184848a0161215e565b8554920191600090600181811c9080831680611fab57607f831692505b858310811415611fc957634e487b7160e01b85526022600452602485fd5b808015611fdd5760018114611fee5761201b565b60ff1985168852838801955061201b565b60008b81526020902060005b858110156120135781548a820152908401908801611ffa565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061205f90830184611f3c565b9695505050505050565b60208152600061114b6020830184611f3c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156120ce576120ce6121f4565b01949350505050565b600082198211156120ea576120ea6121f4565b500190565b600060ff821660ff84168060ff0382111561210c5761210c6121f4565b019392505050565b6000826121235761212361220a565b500490565b6000816000190483118215151615612142576121426121f4565b500290565b600082821015612159576121596121f4565b500390565b60005b83811015612179578181015183820152602001612161565b83811115610f4e5750506000910152565b600181811c9082168061219e57607f821691505b602082108114156121bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d9576121d96121f4565b5060010190565b6000826121ef576121ef61220a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461134057600080fd5b6001600160e01b03198116811461134057600080fdfea2646970667358221220990e594333efb270194b7a2212c2db8e709ad7f28ce9a67342996fe06620565164736f6c63430008070033

Deployed Bytecode Sourcemap

44121:4020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;8336:14:1;;8329:22;8311:41;;8299:2;8284:18;24445:305:0;;;;;;;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7634:32:1;;;7616:51;;7604:2;7589:18;29061:204:0;7470:203:1;28624:371:0;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;:::-;;46623:102;;;;;;;;;;-1:-1:-1;46623:102:0;;;;;:::i;:::-;;:::i;44413:34::-;;;;;;;;;;;;;;;;;;;11513:25:1;;;11501:2;11486:18;44413:34:0;11367:177:1;23694:303:0;;;;;;;;;;-1:-1:-1;23551:1:0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;23694:303;;29926:170;;;;;;;;;;-1:-1:-1;29926:170:0;;;;;:::i;:::-;;:::i;47081:115::-;;;;;;;;;;-1:-1:-1;47081:115:0;;;;;:::i;:::-;;:::i;45657:326::-;;;;;;;;;;-1:-1:-1;45657:326:0;;;;;:::i;:::-;;:::i;46731:74::-;;;;;;;;;;;;;:::i;46809:76::-;;;;;;;;;;;;;:::i;47207:156::-;;;;;;;;;;;;;:::i;30167:185::-;;;;;;;;;;-1:-1:-1;30167:185:0;;;;;:::i;:::-;;:::i;46995:76::-;;;;;;;;;;-1:-1:-1;46995:76:0;;;;;:::i;:::-;;:::i;44802:44::-;;;;;;;;;;-1:-1:-1;44802:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44611:25;;;;;;;;;;-1:-1:-1;44611:25:0;;;;;;;;;;;27366:125;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;46899:90::-;;;;;;;;;;-1:-1:-1;46899:90:0;;;;;:::i;:::-;;:::i;44991:658::-;;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;43267:103::-;;;;;;;;;;;;;:::i;46514:102::-;;;;;;;;;;-1:-1:-1;46514:102:0;;;;;:::i;:::-;;:::i;42615:87::-;;;;;;;;;;-1:-1:-1;42688:6:0;;-1:-1:-1;;;;;42688:6:0;42615:87;;27727:104;;;;;;;;;;;;;:::i;29337:287::-;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;44641:26::-;;;;;;;;;;-1:-1:-1;44641:26:0;;;;;;;;;;;44675:30;;;;;;;;;;-1:-1:-1;44675:30:0;;;;;;;;;;;;;;11348:6:1;11336:19;;;11318:38;;11306:2;11291:18;44675:30:0;11174:188:1;30423:369:0;;;;;;;;;;-1:-1:-1;30423:369:0;;;;;:::i;:::-;;:::i;44501:40::-;;;;;;;;;;-1:-1:-1;44501:40:0;;;;;;;;;;;11721:4:1;11709:17;;;11691:36;;11679:2;11664:18;44501:40:0;11549:184:1;44283:119:0;;;;;;;;;;;;;:::i;45998:500::-;;;;;;;;;;-1:-1:-1;45998:500:0;;;;;:::i;:::-;;:::i;44714:84::-;;;;;;;;;;-1:-1:-1;44714:84:0;;;;;;;-1:-1:-1;;;;;44714:84:0;;;47992:146;;;;;;;;;;-1:-1:-1;47992:146:0;;;;;:::i;:::-;;:::i;44456:40::-;;;;;;;;;;;;44491:5;44456:40;;44853:46;;;;;;;;;;-1:-1:-1;44853:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47471:356;;;;;;;;;;-1:-1:-1;47471:356:0;;;;;:::i;:::-;;:::i;43525:201::-;;;;;;;;;;-1:-1:-1;43525:201:0;;;;;:::i;:::-;;:::i;47847:138::-;;;;;;;;;;-1:-1:-1;47847:138:0;;;;;:::i;:::-;;:::i;24445:305::-;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;47471:356;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;46623:102::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;;;;;;;;;46697:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46623:102:::0;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;47081:115::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;47157:22:::1;:31:::0;;-1:-1:-1;;47157:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47081:115::o;45657:326::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;45740:18:::1;45768:13;23551:1:::0;23948:12;23738:7;23932:13;-1:-1:-1;;23932:28:0;;;:46;;23694:303;45768:13:::1;45740:42:::0;-1:-1:-1;44491:5:0::1;45797:25;45811:11:::0;45740:42;45797:25:::1;:::i;:::-;:38;;;;45789:70;;;::::0;-1:-1:-1;;;45789:70:0;;10325:2:1;45789:70:0::1;::::0;::::1;10307:21:1::0;10364:2;10344:18;;;10337:30;-1:-1:-1;;;10383:18:1;;;10376:49;10442:18;;45789:70:0::1;10123:343:1::0;45789:70:0::1;45867:34;45877:9;45889:11;45867:34;;:9;:34::i;46731:74::-:0;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;46788:6:::1;::::0;;-1:-1:-1;;46778:16:0;::::1;46788:6;::::0;;;::::1;;;46787:7;46778:16:::0;;::::1;;::::0;;46731:74::o;46809:76::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;46868:6:::1;::::0;;-1:-1:-1;;46858:16:0;::::1;46868:6:::0;;;;::::1;;;46867:7;46858:16:::0;;::::1;;::::0;;46809:76::o;47207:156::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;47299:38:::1;::::0;47270:21:::1;::::0;47307:10:::1;::::0;47299:38;::::1;;;::::0;47270:21;;47254:13:::1;47299:38:::0;47254:13;47299:38;47270:21;47307:10;47299:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;30167:185:::0;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;46995:76::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;47051:4:::1;:12:::0;46995:76::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;46899:90::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;46963:9:::1;:18:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46963:18:0;;::::1;::::0;;;::::1;::::0;;46899:90::o;44991:658::-;45050:18;45078:13;23551:1;23948:12;23738:7;23932:13;-1:-1:-1;;23932:28:0;;;:46;;23694:303;45078:13;45050:42;-1:-1:-1;44491:5:0;45107:25;;;;45050:42;45107:25;:::i;:::-;:38;;;;45099:70;;;;-1:-1:-1;;;45099:70:0;;10325:2:1;45099:70:0;;;10307:21:1;10364:2;10344:18;;;10337:30;-1:-1:-1;;;10383:18:1;;;10376:49;10442:18;;45099:70:0;10123:343:1;45099:70:0;45209:10;45176:16;45195:25;;;:13;:25;;;;;;45264:22;;45195:25;;;;;45264:22;45235:25;45195;45235:11;:25;:::i;:::-;:51;;;;45227:90;;;;-1:-1:-1;;;45227:90:0;;10673:2:1;45227:90:0;;;10655:21:1;10712:2;10692:18;;;10685:30;10751:28;10731:18;;;10724:56;10797:18;;45227:90:0;10471:350:1;45227:90:0;45335:6;;;;;;;45334:7;45326:43;;;;-1:-1:-1;;;45326:43:0;;9557:2:1;45326:43:0;;;9539:21:1;9596:2;9576:18;;;9569:30;9635:25;9615:18;;;9608:53;9678:18;;45326:43:0;9355:347:1;45326:43:0;45394:9;;;;;;;;;45379:24;;;;45376:107;;45440:11;45433:18;;:4;;:18;;;;:::i;:::-;45420:9;:31;;45412:63;;;;-1:-1:-1;;;45412:63:0;;11028:2:1;45412:63:0;;;11010:21:1;11067:2;11047:18;;;11040:30;-1:-1:-1;;;11086:18:1;;;11079:49;11145:18;;45412:63:0;10826:343:1;45412:63:0;45489:35;45499:10;45512:11;45489:35;;:9;:35::i;:::-;45559:25;45574:10;45559:11;:25;:::i;:::-;45545:10;45531:25;;;;:13;:25;;;;;:53;;-1:-1:-1;;45531:53:0;;;;;;;;;;;;-1:-1:-1;;;44991:658:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;43267:103::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;43332:30:::1;43359:1;43332:18;:30::i;:::-;43267:103::o:0;46514:102::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;46588:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;-1:-1:-1;;;;;29436:24:0;;2920:10;29436:24;29432:54;;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;8311:41:1;;;29499:42:0;;2920:10;29568:48;;8284:18:1;29568:48:0;;;;;;;29337:287;;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;30629:156;30423:369;;;;:::o;44283:119::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45998:500::-;46097:13;46138:17;46146:8;46138:7;:17::i;:::-;46122:98;;;;-1:-1:-1;;;46122:98:0;;9909:2:1;46122:98:0;;;9891:21:1;9948:2;9928:18;;;9921:30;9987:34;9967:18;;;9960:62;-1:-1:-1;;;10038:18:1;;;10031:45;10093:19;;46122:98:0;9707:411:1;46122:98:0;46236:6;;;;;;;46233:60;;46276:9;46269:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45998:500;;;:::o;46233:60::-;46307:28;46338:10;:8;:10::i;:::-;46307:41;;46393:1;46368:14;46362:28;:32;:130;;;;;;;;;;;;;;;;;46430:14;46446:19;:8;:17;:19::i;:::-;46467:9;46413:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46362:130;46355:137;45998:500;-1:-1:-1;;;45998:500:0:o;47992:146::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;48086:20:::1;:44:::0;;-1:-1:-1;;;;;48086:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;48086:44:0;;::::1;::::0;;;::::1;::::0;;47992:146::o;47471:356::-;47636:20;;47680:29;;-1:-1:-1;;;47680:29:0;;-1:-1:-1;;;;;7634:32:1;;;47680:29:0;;;7616:51:1;47561:4:0;;47636:20;;;;;;47672:50;;;;47636:20;;47680:21;;7589:18:1;;47680:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47672:50:0;;:76;;;-1:-1:-1;;;;;;47726:22:0;;;;;;:12;:22;;;;;;;;47672:76;47668:93;;;47757:4;47750:11;;;;;47668:93;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47779:40;47772:47;47471:356;-1:-1:-1;;;;47471:356:0:o;43525:201::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43614:22:0;::::1;43606:73;;;::::0;-1:-1:-1;;;43606:73:0;;8789:2:1;43606:73:0::1;::::0;::::1;8771:21:1::0;8828:2;8808:18;;;8801:30;8867:34;8847:18;;;8840:62;-1:-1:-1;;;8918:18:1;;;8911:36;8964:19;;43606:73:0::1;8587:402:1::0;43606:73:0::1;43690:28;43709:8;43690:18;:28::i;:::-;43525:201:::0;:::o;47847:138::-;42688:6;;-1:-1:-1;;;;;42688:6:0;2920:10;42835:23;42827:69;;;;-1:-1:-1;;;42827:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47951:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;47921:56:0;::::1;47951:26;::::0;;::::1;47950:27;47921:56;::::0;;47847:138::o;31047:187::-;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;47471:356;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;;;;;;;;;;;36240:42;34264:2026;;34160:2130;;;:::o;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;43886:191;43979:6;;;-1:-1:-1;;;;;43996:17:0;;;-1:-1:-1;;;;;;43996:17:0;;;;;;;44029:40;;43979:6;;;43996:17;43979:6;;44029:40;;43960:16;;44029:40;43949:128;43886:191;:::o;39905:667::-;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40323:13:0;;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;39905:667:0;;;;;;:::o;47371:97::-;47424:13;47453:9;47446:16;;;;;:::i;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;31709:163;31832:32;31838:2;31842:8;31852:5;31859:4;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;33212:38;;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;33670:40;;33687:1;;33670:40;33754:3;33738:12;:19;;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;30423:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:159::-;717:20;;777:6;766:18;;756:29;;746:57;;799:1;796;789:12;746:57;650:159;;;:::o;814:247::-;873:6;926:2;914:9;905:7;901:23;897:32;894:52;;;942:1;939;932:12;894:52;981:9;968:23;1000:31;1025:5;1000:31;:::i;1066:388::-;1134:6;1142;1195:2;1183:9;1174:7;1170:23;1166:32;1163:52;;;1211:1;1208;1201:12;1163:52;1250:9;1237:23;1269:31;1294:5;1269:31;:::i;:::-;1319:5;-1:-1:-1;1376:2:1;1361:18;;1348:32;1389:33;1348:32;1389:33;:::i;:::-;1441:7;1431:17;;;1066:388;;;;;:::o;1459:456::-;1536:6;1544;1552;1605:2;1593:9;1584:7;1580:23;1576:32;1573:52;;;1621:1;1618;1611:12;1573:52;1660:9;1647:23;1679:31;1704:5;1679:31;:::i;:::-;1729:5;-1:-1:-1;1786:2:1;1771:18;;1758:32;1799:33;1758:32;1799:33;:::i;:::-;1459:456;;1851:7;;-1:-1:-1;;;1905:2:1;1890:18;;;;1877:32;;1459:456::o;1920:794::-;2015:6;2023;2031;2039;2092:3;2080:9;2071:7;2067:23;2063:33;2060:53;;;2109:1;2106;2099:12;2060:53;2148:9;2135:23;2167:31;2192:5;2167:31;:::i;:::-;2217:5;-1:-1:-1;2274:2:1;2259:18;;2246:32;2287:33;2246:32;2287:33;:::i;:::-;2339:7;-1:-1:-1;2393:2:1;2378:18;;2365:32;;-1:-1:-1;2448:2:1;2433:18;;2420:32;2475:18;2464:30;;2461:50;;;2507:1;2504;2497:12;2461:50;2530:22;;2583:4;2575:13;;2571:27;-1:-1:-1;2561:55:1;;2612:1;2609;2602:12;2561:55;2635:73;2700:7;2695:2;2682:16;2677:2;2673;2669:11;2635:73;:::i;:::-;2625:83;;;1920:794;;;;;;;:::o;2719:416::-;2784:6;2792;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2900:9;2887:23;2919:31;2944:5;2919:31;:::i;:::-;2969:5;-1:-1:-1;3026:2:1;3011:18;;2998:32;3068:15;;3061:23;3049:36;;3039:64;;3099:1;3096;3089:12;3140:315;3208:6;3216;3269:2;3257:9;3248:7;3244:23;3240:32;3237:52;;;3285:1;3282;3275:12;3237:52;3324:9;3311:23;3343:31;3368:5;3343:31;:::i;:::-;3393:5;3445:2;3430:18;;;;3417:32;;-1:-1:-1;;;3140:315:1:o;3460:245::-;3518:6;3571:2;3559:9;3550:7;3546:23;3542:32;3539:52;;;3587:1;3584;3577:12;3539:52;3626:9;3613:23;3645:30;3669:5;3645:30;:::i;3710:249::-;3779:6;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3880:9;3874:16;3899:30;3923:5;3899:30;:::i;3964:280::-;4063:6;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4164:9;4158:16;4183:31;4208:5;4183:31;:::i;4249:450::-;4318:6;4371:2;4359:9;4350:7;4346:23;4342:32;4339:52;;;4387:1;4384;4377:12;4339:52;4427:9;4414:23;4460:18;4452:6;4449:30;4446:50;;;4492:1;4489;4482:12;4446:50;4515:22;;4568:4;4560:13;;4556:27;-1:-1:-1;4546:55:1;;4597:1;4594;4587:12;4546:55;4620:73;4685:7;4680:2;4667:16;4662:2;4658;4654:11;4620:73;:::i;4704:184::-;4762:6;4815:2;4803:9;4794:7;4790:23;4786:32;4783:52;;;4831:1;4828;4821:12;4783:52;4854:28;4872:9;4854:28;:::i;4893:319::-;4960:6;4968;5021:2;5009:9;5000:7;4996:23;4992:32;4989:52;;;5037:1;5034;5027:12;4989:52;5060:28;5078:9;5060:28;:::i;5217:180::-;5276:6;5329:2;5317:9;5308:7;5304:23;5300:32;5297:52;;;5345:1;5342;5335:12;5297:52;-1:-1:-1;5368:23:1;;5217:180;-1:-1:-1;5217:180:1:o;5402:269::-;5459:6;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5567:9;5554:23;5617:4;5610:5;5606:16;5599:5;5596:27;5586:55;;5637:1;5634;5627:12;5676:257;5717:3;5755:5;5749:12;5782:6;5777:3;5770:19;5798:63;5854:6;5847:4;5842:3;5838:14;5831:4;5824:5;5820:16;5798:63;:::i;:::-;5915:2;5894:15;-1:-1:-1;;5890:29:1;5881:39;;;;5922:4;5877:50;;5676:257;-1:-1:-1;;5676:257:1:o;5938:1527::-;6162:3;6200:6;6194:13;6226:4;6239:51;6283:6;6278:3;6273:2;6265:6;6261:15;6239:51;:::i;:::-;6353:13;;6312:16;;;;6375:55;6353:13;6312:16;6397:15;;;6375:55;:::i;:::-;6519:13;;6452:20;;;6492:1;;6579;6601:18;;;;6654;;;;6681:93;;6759:4;6749:8;6745:19;6733:31;;6681:93;6822:2;6812:8;6809:16;6789:18;6786:40;6783:167;;;-1:-1:-1;;;6849:33:1;;6905:4;6902:1;6895:15;6935:4;6856:3;6923:17;6783:167;6966:18;6993:110;;;;7117:1;7112:328;;;;6959:481;;6993:110;-1:-1:-1;;7028:24:1;;7014:39;;7073:20;;;;-1:-1:-1;6993:110:1;;7112:328;11811:1;11804:14;;;11848:4;11835:18;;7207:1;7221:169;7235:8;7232:1;7229:15;7221:169;;;7317:14;;7302:13;;;7295:37;7360:16;;;;7252:10;;7221:169;;;7225:3;;7421:8;7414:5;7410:20;7403:27;;6959:481;-1:-1:-1;7456:3:1;;5938:1527;-1:-1:-1;;;;;;;;;;;5938:1527:1:o;7678:488::-;-1:-1:-1;;;;;7947:15:1;;;7929:34;;7999:15;;7994:2;7979:18;;7972:43;8046:2;8031:18;;8024:34;;;8094:3;8089:2;8074:18;;8067:31;;;7872:4;;8115:45;;8140:19;;8132:6;8115:45;:::i;:::-;8107:53;7678:488;-1:-1:-1;;;;;;7678:488:1:o;8363:219::-;8512:2;8501:9;8494:21;8475:4;8532:44;8572:2;8561:9;8557:18;8549:6;8532:44;:::i;8994:356::-;9196:2;9178:21;;;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;9341:2;9326:18;;8994:356::o;11864:224::-;11903:3;11931:6;11964:2;11961:1;11957:10;11994:2;11991:1;11987:10;12025:3;12021:2;12017:12;12012:3;12009:21;12006:47;;;12033:18;;:::i;:::-;12069:13;;11864:224;-1:-1:-1;;;;11864:224:1:o;12093:128::-;12133:3;12164:1;12160:6;12157:1;12154:13;12151:39;;;12170:18;;:::i;:::-;-1:-1:-1;12206:9:1;;12093:128::o;12226:204::-;12264:3;12300:4;12297:1;12293:12;12332:4;12329:1;12325:12;12367:3;12361:4;12357:14;12352:3;12349:23;12346:49;;;12375:18;;:::i;:::-;12411:13;;12226:204;-1:-1:-1;;;12226:204:1:o;12435:120::-;12475:1;12501;12491:35;;12506:18;;:::i;:::-;-1:-1:-1;12540:9:1;;12435:120::o;12560:168::-;12600:7;12666:1;12662;12658:6;12654:14;12651:1;12648:21;12643:1;12636:9;12629:17;12625:45;12622:71;;;12673:18;;:::i;:::-;-1:-1:-1;12713:9:1;;12560:168::o;12733:125::-;12773:4;12801:1;12798;12795:8;12792:34;;;12806:18;;:::i;:::-;-1:-1:-1;12843:9:1;;12733:125::o;12863:258::-;12935:1;12945:113;12959:6;12956:1;12953:13;12945:113;;;13035:11;;;13029:18;13016:11;;;13009:39;12981:2;12974:10;12945:113;;;13076:6;13073:1;13070:13;13067:48;;;-1:-1:-1;;13111:1:1;13093:16;;13086:27;12863:258::o;13126:380::-;13205:1;13201:12;;;;13248;;;13269:61;;13323:4;13315:6;13311:17;13301:27;;13269:61;13376:2;13368:6;13365:14;13345:18;13342:38;13339:161;;;13422:10;13417:3;13413:20;13410:1;13403:31;13457:4;13454:1;13447:15;13485:4;13482:1;13475:15;13339:161;;13126:380;;;:::o;13511:135::-;13550:3;-1:-1:-1;;13571:17:1;;13568:43;;;13591:18;;:::i;:::-;-1:-1:-1;13638:1:1;13627:13;;13511:135::o;13651:112::-;13683:1;13709;13699:35;;13714:18;;:::i;:::-;-1:-1:-1;13748:9:1;;13651:112::o;13768:127::-;13829:10;13824:3;13820:20;13817:1;13810:31;13860:4;13857:1;13850:15;13884:4;13881:1;13874:15;13900:127;13961:10;13956:3;13952:20;13949:1;13942:31;13992:4;13989:1;13982:15;14016:4;14013:1;14006:15;14032:127;14093:10;14088:3;14084:20;14081:1;14074:31;14124:4;14121:1;14114:15;14148:4;14145:1;14138:15;14164:127;14225:10;14220:3;14216:20;14213:1;14206:31;14256:4;14253:1;14246:15;14280:4;14277:1;14270:15;14296:131;-1:-1:-1;;;;;14371:31:1;;14361:42;;14351:70;;14417:1;14414;14407:12;14432:131;-1:-1:-1;;;;;;14506:32:1;;14496:43;;14486:71;;14553:1;14550;14543:12

Swarm Source

ipfs://990e594333efb270194b7a2212c2db8e709ad7f28ce9a67342996fe066205651
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.