ETH Price: $3,400.34 (+6.52%)
Gas: 24 Gwei

Token

Goblin Women (GW)
 

Overview

Max Total Supply

9,024 GW

Holders

552

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
50 GW
0x336865b330aa782a9dd65340911f79e23017d24c
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:
GoblinWomen

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-08
*/

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

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// 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: contracts/GoblinWomen.sol


pragma solidity >=0.7.0 <0.9.0;



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

  string public uriPrefix = "ipfs://QmcfTQgWnLBjps2jUqSEmLnaFKnhaPjjLjYwpqhB7hGTVt/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 50;
  uint256 public maxMintAmount = 1;

  bool public paused = false;
  bool public revealed = true;

  mapping(address => uint256) public allowedlist;

  constructor() ERC721A("Goblin Women", "GW")  {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    if (allowedlist[msg.sender] > maxMintAmount) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    } else {
      if(_mintAmount > maxMintAmount) {
        uint256 _tempMintAmount = _mintAmount - maxMintAmount;
        require(msg.value >= cost * _tempMintAmount, "Insufficient funds!");
      }
    }

    allowedlist[msg.sender] = allowedlist[msg.sender] + _mintAmount;

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address[] memory _receiver) public mintCompliance(_mintAmount) onlyOwner {
    for (uint256 i = 0; i < _receiver.length; i++) {
      _safeMint(_receiver[i], _mintAmount);
    }
  }

  function isAllowed(address _address) public view returns (uint256)  {
      return allowedlist[_address];
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId+1;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

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

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

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

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"allowedlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620025af60a03960099062000022908262000290565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004e908262000290565b5066470de4df820000600c55612710600d556032600e556001600f556010805461ffff19166101001790553480156200008657600080fd5b506040518060400160405280600c81526020016b23b7b13634b7102bb7b6b2b760a11b81525060405180604001604052806002815260200161475760f01b815250620000e1620000db6200012660201b60201c565b6200012a565b6003620000ef838262000290565b506004620000fe828262000290565b506000600155505060408051602081019091526000815262000120906200017a565b6200035c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b620001e7828262000290565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021657607f821691505b6020821081036200023757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028b57600081815260208120601f850160051c81016020861015620002665750805b601f850160051c820191505b81811015620002875782815560010162000272565b5050505b505050565b81516001600160401b03811115620002ac57620002ac620001eb565b620002c481620002bd845462000201565b846200023d565b602080601f831160018114620002fc5760008415620002e35750858301515b600019600386901b1c1916600185901b17855562000287565b600085815260208120601f198616915b828110156200032d578886015182559484019460019091019084016200030c565b50858210156200034c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612243806200036c6000396000f3fe6080604052600436106102465760003560e01c806362b99ad411610139578063a0712d68116100b6578063babcc5391161007a578063babcc53914610687578063c87b56dd146106bd578063d5abeb01146106dd578063e0a80853146106f3578063e985e9c514610713578063f2fde38b1461075c57600080fd5b8063a0712d68146105ff578063a22cb46514610612578063a45ba8e714610632578063b071401b14610647578063b88d4fde1461066757600080fd5b80637ec4a659116100fd5780637ec4a659146105765780638da5cb5b1461059657806394354fd0146105b457806395d89b41146105ca578063962e0f5a146105df57600080fd5b806362b99ad4146104ec5780636352211e146105015780636f8b44b01461052157806370a0823114610541578063715018a61461056157600080fd5b806323b872dd116101c75780634521c6951161018b5780634521c695146104515780634fdd43cb1461047e578063518302271461049e5780635503a0e8146104bd5780635c975abb146104d257600080fd5b806323b872dd146103af5780633ccfd60b146103cf57806342842e0e146103e4578063438b63001461040457806344a0d68a1461043157600080fd5b806313faede61161020e57806313faede61461031c57806316ba10e01461034057806316c38b3c1461036057806318160ddd14610380578063239c70ae1461039957600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063088a4ed0146102da578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611a9e565b61077c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107ce565b6040516102779190611b13565b3480156102ae57600080fd5b506102c26102bd366004611b26565b610860565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611b26565b6108a4565b005b34801561030857600080fd5b506102fa610317366004611b5b565b6108dc565b34801561032857600080fd5b50610332600c5481565b604051908152602001610277565b34801561034c57600080fd5b506102fa61035b366004611c24565b6109ae565b34801561036c57600080fd5b506102fa61037b366004611c7d565b6109e8565b34801561038c57600080fd5b5060025460015403610332565b3480156103a557600080fd5b50610332600f5481565b3480156103bb57600080fd5b506102fa6103ca366004611c98565b610a25565b3480156103db57600080fd5b506102fa610a35565b3480156103f057600080fd5b506102fa6103ff366004611c98565b610ac2565b34801561041057600080fd5b5061042461041f366004611cd4565b610add565b6040516102779190611cef565b34801561043d57600080fd5b506102fa61044c366004611b26565b610bc7565b34801561045d57600080fd5b5061033261046c366004611cd4565b60116020526000908152604090205481565b34801561048a57600080fd5b506102fa610499366004611c24565b610bf6565b3480156104aa57600080fd5b5060105461026b90610100900460ff1681565b3480156104c957600080fd5b50610295610c2c565b3480156104de57600080fd5b5060105461026b9060ff1681565b3480156104f857600080fd5b50610295610cba565b34801561050d57600080fd5b506102c261051c366004611b26565b610cc7565b34801561052d57600080fd5b506102fa61053c366004611b26565b610cd2565b34801561054d57600080fd5b5061033261055c366004611cd4565b610d01565b34801561056d57600080fd5b506102fa610d50565b34801561058257600080fd5b506102fa610591366004611c24565b610d86565b3480156105a257600080fd5b506000546001600160a01b03166102c2565b3480156105c057600080fd5b50610332600e5481565b3480156105d657600080fd5b50610295610dbc565b3480156105eb57600080fd5b506102fa6105fa366004611d33565b610dcb565b6102fa61060d366004611b26565b610eea565b34801561061e57600080fd5b506102fa61062d366004611dec565b611107565b34801561063e57600080fd5b5061029561119c565b34801561065357600080fd5b506102fa610662366004611b26565b6111a9565b34801561067357600080fd5b506102fa610682366004611e1f565b6111d8565b34801561069357600080fd5b506103326106a2366004611cd4565b6001600160a01b031660009081526011602052604090205490565b3480156106c957600080fd5b506102956106d8366004611b26565b61121c565b3480156106e957600080fd5b50610332600d5481565b3480156106ff57600080fd5b506102fa61070e366004611c7d565b61139d565b34801561071f57600080fd5b5061026b61072e366004611e9b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076857600080fd5b506102fa610777366004611cd4565b6113e1565b60006301ffc9a760e01b6001600160e01b0319831614806107ad57506380ac58cd60e01b6001600160e01b03198316145b806107c85750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107dd90611ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461080990611ec5565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061086b82611479565b610888576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b031633146108d75760405162461bcd60e51b81526004016108ce90611eff565b60405180910390fd5b600f55565b60006108e7826114a1565b9050806001600160a01b0316836001600160a01b03160361091b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461095257610935813361072e565b610952576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109d85760405162461bcd60e51b81526004016108ce90611eff565b600a6109e48282611f82565b5050565b6000546001600160a01b03163314610a125760405162461bcd60e51b81526004016108ce90611eff565b6010805460ff1916911515919091179055565b610a30838383611508565b505050565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016108ce90611eff565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b5050905080610abf57600080fd5b50565b610a30838383604051806020016040528060008152506111d8565b60606000610aea83610d01565b905060008167ffffffffffffffff811115610b0757610b07611b85565b604051908082528060200260200182016040528015610b30578160200160208202803683370190505b509050600160005b8381108015610b495750600d548211155b15610bbd576000610b5983610cc7565b9050866001600160a01b0316816001600160a01b031603610baa57610b7f836001612058565b848381518110610b9157610b91612070565b602090810291909101015281610ba681612086565b9250505b82610bb481612086565b93505050610b38565b5090949350505050565b6000546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108ce90611eff565b600c55565b6000546001600160a01b03163314610c205760405162461bcd60e51b81526004016108ce90611eff565b600b6109e48282611f82565b600a8054610c3990611ec5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6590611ec5565b8015610cb25780601f10610c8757610100808354040283529160200191610cb2565b820191906000526020600020905b815481529060010190602001808311610c9557829003601f168201915b505050505081565b60098054610c3990611ec5565b60006107c8826114a1565b6000546001600160a01b03163314610cfc5760405162461bcd60e51b81526004016108ce90611eff565b600d55565b60006001600160a01b038216610d2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b81526004016108ce90611eff565b610d8460006116af565b565b6000546001600160a01b03163314610db05760405162461bcd60e51b81526004016108ce90611eff565b60096109e48282611f82565b6060600480546107dd90611ec5565b81600d5481610ddd6002546001540390565b610de79190612058565b1115610e2c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108ce565b60105460ff1615610e795760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ce565b6000546001600160a01b03163314610ea35760405162461bcd60e51b81526004016108ce90611eff565b60005b8251811015610ee457610ed2838281518110610ec457610ec4612070565b6020026020010151856116ff565b80610edc81612086565b915050610ea6565b50505050565b80600d5481610efc6002546001540390565b610f069190612058565b1115610f4b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108ce565b60105460ff1615610f985760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ce565b600082118015610faa5750600e548211155b610fed5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ce565b600f5433600090815260116020526040902054111561105e5781600c54611014919061209f565b3410156110595760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ce565b6110cf565b600f548211156110cf576000600f548361107891906120be565b905080600c54611088919061209f565b3410156110cd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ce565b505b336000908152601160205260409020546110ea908390612058565b336000818152601160205260409020919091556109e490836116ff565b336001600160a01b038316036111305760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c3990611ec5565b6000546001600160a01b031633146111d35760405162461bcd60e51b81526004016108ce90611eff565b600e55565b6111e3848484611508565b6001600160a01b0383163b15610ee4576111ff84848484611719565b610ee4576040516368d2bf6b60e11b815260040160405180910390fd5b606061122782611479565b61128b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ce565b601054610100900460ff16151560000361133157600b80546112ac90611ec5565b80601f01602080910402602001604051908101604052809291908181526020018280546112d890611ec5565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b50505050509050919050565b600061133b611805565b9050611348836001612058565b925060008151116113685760405180602001604052806000815250611396565b8061137284611814565b600a604051602001611386939291906120d5565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113c75760405162461bcd60e51b81526004016108ce90611eff565b601080549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461140b5760405162461bcd60e51b81526004016108ce90611eff565b6001600160a01b0381166114705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b610abf816116af565b6000600154821080156107c8575050600090815260056020526040902054600160e01b161590565b6000816001548110156114ef5760008181526005602052604081205490600160e01b821690036114ed575b806000036113965750600019016000818152600560205260409020546114cc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611513826114a1565b9050836001600160a01b0316816001600160a01b0316146115465760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115645750611564853361072e565b8061157f57503361157484610860565b6001600160a01b0316145b90508061159f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115c657604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611667576001830160008181526005602052604081205490036116655760015481146116655760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e4828260405180602001604052806000815250611915565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174e903390899088908890600401612175565b6020604051808303816000875af1925050508015611789575060408051601f3d908101601f19168201909252611786918101906121b2565b60015b6117e7573d8080156117b7576040519150601f19603f3d011682016040523d82523d6000602084013e6117bc565b606091505b5080516000036117df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107dd90611ec5565b60608160000361183b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611865578061184f81612086565b915061185e9050600a836121e5565b915061183f565b60008167ffffffffffffffff81111561188057611880611b85565b6040519080825280601f01601f1916602001820160405280156118aa576020820181803683370190505b5090505b84156117fd576118bf6001836120be565b91506118cc600a866121f9565b6118d7906030612058565b60f81b8183815181106118ec576118ec612070565b60200101906001600160f81b031916908160001a90535061190e600a866121e5565b94506118ae565b6001546001600160a01b03841661193e57604051622e076360e81b815260040160405180910390fd5b8260000361195f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611a34575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119fd6000878480600101955087611719565b611a1a576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119b2578260015414611a2f57600080fd5b611a79565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a35575b50600155610ee4600085838684565b6001600160e01b031981168114610abf57600080fd5b600060208284031215611ab057600080fd5b813561139681611a88565b60005b83811015611ad6578181015183820152602001611abe565b83811115610ee45750506000910152565b60008151808452611aff816020860160208601611abb565b601f01601f19169290920160200192915050565b6020815260006113966020830184611ae7565b600060208284031215611b3857600080fd5b5035919050565b80356001600160a01b0381168114611b5657600080fd5b919050565b60008060408385031215611b6e57600080fd5b611b7783611b3f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611bc457611bc4611b85565b604052919050565b600067ffffffffffffffff831115611be657611be6611b85565b611bf9601f8401601f1916602001611b9b565b9050828152838383011115611c0d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c3657600080fd5b813567ffffffffffffffff811115611c4d57600080fd5b8201601f81018413611c5e57600080fd5b6117fd84823560208401611bcc565b80358015158114611b5657600080fd5b600060208284031215611c8f57600080fd5b61139682611c6d565b600080600060608486031215611cad57600080fd5b611cb684611b3f565b9250611cc460208501611b3f565b9150604084013590509250925092565b600060208284031215611ce657600080fd5b61139682611b3f565b6020808252825182820181905260009190848201906040850190845b81811015611d2757835183529284019291840191600101611d0b565b50909695505050505050565b60008060408385031215611d4657600080fd5b8235915060208084013567ffffffffffffffff80821115611d6657600080fd5b818601915086601f830112611d7a57600080fd5b813581811115611d8c57611d8c611b85565b8060051b9150611d9d848301611b9b565b8181529183018401918481019089841115611db757600080fd5b938501935b83851015611ddc57611dcd85611b3f565b82529385019390850190611dbc565b8096505050505050509250929050565b60008060408385031215611dff57600080fd5b611e0883611b3f565b9150611e1660208401611c6d565b90509250929050565b60008060008060808587031215611e3557600080fd5b611e3e85611b3f565b9350611e4c60208601611b3f565b925060408501359150606085013567ffffffffffffffff811115611e6f57600080fd5b8501601f81018713611e8057600080fd5b611e8f87823560208401611bcc565b91505092959194509250565b60008060408385031215611eae57600080fd5b611eb783611b3f565b9150611e1660208401611b3f565b600181811c90821680611ed957607f821691505b602082108103611ef957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a3057600081815260208120601f850160051c81016020861015611f5b5750805b601f850160051c820191505b81811015611f7a57828155600101611f67565b505050505050565b815167ffffffffffffffff811115611f9c57611f9c611b85565b611fb081611faa8454611ec5565b84611f34565b602080601f831160018114611fe55760008415611fcd5750858301515b600019600386901b1c1916600185901b178555611f7a565b600085815260208120601f198616915b8281101561201457888601518255948401946001909101908401611ff5565b50858210156120325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561206b5761206b612042565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161209857612098612042565b5060010190565b60008160001904831182151516156120b9576120b9612042565b500290565b6000828210156120d0576120d0612042565b500390565b6000845160206120e88285838a01611abb565b8551918401916120fb8184848a01611abb565b855492019160009061210c81611ec5565b60018281168015612124576001811461213957612165565b60ff1984168752821515830287019450612165565b896000528560002060005b8481101561215d57815489820152908301908701612144565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a890830184611ae7565b9695505050505050565b6000602082840312156121c457600080fd5b815161139681611a88565b634e487b7160e01b600052601260045260246000fd5b6000826121f4576121f46121cf565b500490565b600082612208576122086121cf565b50069056fea264697066735822122002069809fdda3128a21d23c56e4d343c909f5fe2dbbf8b5e741f5b5b7036a0ab64736f6c634300080f0033697066733a2f2f516d6366545167576e4c426a7073326a557153456d4c6e61464b6e6861506a6a4c6a5977707168423768475456742f

Deployed Bytecode

0x6080604052600436106102465760003560e01c806362b99ad411610139578063a0712d68116100b6578063babcc5391161007a578063babcc53914610687578063c87b56dd146106bd578063d5abeb01146106dd578063e0a80853146106f3578063e985e9c514610713578063f2fde38b1461075c57600080fd5b8063a0712d68146105ff578063a22cb46514610612578063a45ba8e714610632578063b071401b14610647578063b88d4fde1461066757600080fd5b80637ec4a659116100fd5780637ec4a659146105765780638da5cb5b1461059657806394354fd0146105b457806395d89b41146105ca578063962e0f5a146105df57600080fd5b806362b99ad4146104ec5780636352211e146105015780636f8b44b01461052157806370a0823114610541578063715018a61461056157600080fd5b806323b872dd116101c75780634521c6951161018b5780634521c695146104515780634fdd43cb1461047e578063518302271461049e5780635503a0e8146104bd5780635c975abb146104d257600080fd5b806323b872dd146103af5780633ccfd60b146103cf57806342842e0e146103e4578063438b63001461040457806344a0d68a1461043157600080fd5b806313faede61161020e57806313faede61461031c57806316ba10e01461034057806316c38b3c1461036057806318160ddd14610380578063239c70ae1461039957600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063088a4ed0146102da578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611a9e565b61077c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107ce565b6040516102779190611b13565b3480156102ae57600080fd5b506102c26102bd366004611b26565b610860565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611b26565b6108a4565b005b34801561030857600080fd5b506102fa610317366004611b5b565b6108dc565b34801561032857600080fd5b50610332600c5481565b604051908152602001610277565b34801561034c57600080fd5b506102fa61035b366004611c24565b6109ae565b34801561036c57600080fd5b506102fa61037b366004611c7d565b6109e8565b34801561038c57600080fd5b5060025460015403610332565b3480156103a557600080fd5b50610332600f5481565b3480156103bb57600080fd5b506102fa6103ca366004611c98565b610a25565b3480156103db57600080fd5b506102fa610a35565b3480156103f057600080fd5b506102fa6103ff366004611c98565b610ac2565b34801561041057600080fd5b5061042461041f366004611cd4565b610add565b6040516102779190611cef565b34801561043d57600080fd5b506102fa61044c366004611b26565b610bc7565b34801561045d57600080fd5b5061033261046c366004611cd4565b60116020526000908152604090205481565b34801561048a57600080fd5b506102fa610499366004611c24565b610bf6565b3480156104aa57600080fd5b5060105461026b90610100900460ff1681565b3480156104c957600080fd5b50610295610c2c565b3480156104de57600080fd5b5060105461026b9060ff1681565b3480156104f857600080fd5b50610295610cba565b34801561050d57600080fd5b506102c261051c366004611b26565b610cc7565b34801561052d57600080fd5b506102fa61053c366004611b26565b610cd2565b34801561054d57600080fd5b5061033261055c366004611cd4565b610d01565b34801561056d57600080fd5b506102fa610d50565b34801561058257600080fd5b506102fa610591366004611c24565b610d86565b3480156105a257600080fd5b506000546001600160a01b03166102c2565b3480156105c057600080fd5b50610332600e5481565b3480156105d657600080fd5b50610295610dbc565b3480156105eb57600080fd5b506102fa6105fa366004611d33565b610dcb565b6102fa61060d366004611b26565b610eea565b34801561061e57600080fd5b506102fa61062d366004611dec565b611107565b34801561063e57600080fd5b5061029561119c565b34801561065357600080fd5b506102fa610662366004611b26565b6111a9565b34801561067357600080fd5b506102fa610682366004611e1f565b6111d8565b34801561069357600080fd5b506103326106a2366004611cd4565b6001600160a01b031660009081526011602052604090205490565b3480156106c957600080fd5b506102956106d8366004611b26565b61121c565b3480156106e957600080fd5b50610332600d5481565b3480156106ff57600080fd5b506102fa61070e366004611c7d565b61139d565b34801561071f57600080fd5b5061026b61072e366004611e9b565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561076857600080fd5b506102fa610777366004611cd4565b6113e1565b60006301ffc9a760e01b6001600160e01b0319831614806107ad57506380ac58cd60e01b6001600160e01b03198316145b806107c85750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546107dd90611ec5565b80601f016020809104026020016040519081016040528092919081815260200182805461080990611ec5565b80156108565780601f1061082b57610100808354040283529160200191610856565b820191906000526020600020905b81548152906001019060200180831161083957829003601f168201915b5050505050905090565b600061086b82611479565b610888576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000546001600160a01b031633146108d75760405162461bcd60e51b81526004016108ce90611eff565b60405180910390fd5b600f55565b60006108e7826114a1565b9050806001600160a01b0316836001600160a01b03160361091b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461095257610935813361072e565b610952576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109d85760405162461bcd60e51b81526004016108ce90611eff565b600a6109e48282611f82565b5050565b6000546001600160a01b03163314610a125760405162461bcd60e51b81526004016108ce90611eff565b6010805460ff1916911515919091179055565b610a30838383611508565b505050565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016108ce90611eff565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b5050905080610abf57600080fd5b50565b610a30838383604051806020016040528060008152506111d8565b60606000610aea83610d01565b905060008167ffffffffffffffff811115610b0757610b07611b85565b604051908082528060200260200182016040528015610b30578160200160208202803683370190505b509050600160005b8381108015610b495750600d548211155b15610bbd576000610b5983610cc7565b9050866001600160a01b0316816001600160a01b031603610baa57610b7f836001612058565b848381518110610b9157610b91612070565b602090810291909101015281610ba681612086565b9250505b82610bb481612086565b93505050610b38565b5090949350505050565b6000546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108ce90611eff565b600c55565b6000546001600160a01b03163314610c205760405162461bcd60e51b81526004016108ce90611eff565b600b6109e48282611f82565b600a8054610c3990611ec5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6590611ec5565b8015610cb25780601f10610c8757610100808354040283529160200191610cb2565b820191906000526020600020905b815481529060010190602001808311610c9557829003601f168201915b505050505081565b60098054610c3990611ec5565b60006107c8826114a1565b6000546001600160a01b03163314610cfc5760405162461bcd60e51b81526004016108ce90611eff565b600d55565b60006001600160a01b038216610d2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b81526004016108ce90611eff565b610d8460006116af565b565b6000546001600160a01b03163314610db05760405162461bcd60e51b81526004016108ce90611eff565b60096109e48282611f82565b6060600480546107dd90611ec5565b81600d5481610ddd6002546001540390565b610de79190612058565b1115610e2c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108ce565b60105460ff1615610e795760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ce565b6000546001600160a01b03163314610ea35760405162461bcd60e51b81526004016108ce90611eff565b60005b8251811015610ee457610ed2838281518110610ec457610ec4612070565b6020026020010151856116ff565b80610edc81612086565b915050610ea6565b50505050565b80600d5481610efc6002546001540390565b610f069190612058565b1115610f4b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108ce565b60105460ff1615610f985760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ce565b600082118015610faa5750600e548211155b610fed5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108ce565b600f5433600090815260116020526040902054111561105e5781600c54611014919061209f565b3410156110595760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ce565b6110cf565b600f548211156110cf576000600f548361107891906120be565b905080600c54611088919061209f565b3410156110cd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ce565b505b336000908152601160205260409020546110ea908390612058565b336000818152601160205260409020919091556109e490836116ff565b336001600160a01b038316036111305760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c3990611ec5565b6000546001600160a01b031633146111d35760405162461bcd60e51b81526004016108ce90611eff565b600e55565b6111e3848484611508565b6001600160a01b0383163b15610ee4576111ff84848484611719565b610ee4576040516368d2bf6b60e11b815260040160405180910390fd5b606061122782611479565b61128b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ce565b601054610100900460ff16151560000361133157600b80546112ac90611ec5565b80601f01602080910402602001604051908101604052809291908181526020018280546112d890611ec5565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b50505050509050919050565b600061133b611805565b9050611348836001612058565b925060008151116113685760405180602001604052806000815250611396565b8061137284611814565b600a604051602001611386939291906120d5565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113c75760405162461bcd60e51b81526004016108ce90611eff565b601080549115156101000261ff0019909216919091179055565b6000546001600160a01b0316331461140b5760405162461bcd60e51b81526004016108ce90611eff565b6001600160a01b0381166114705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b610abf816116af565b6000600154821080156107c8575050600090815260056020526040902054600160e01b161590565b6000816001548110156114ef5760008181526005602052604081205490600160e01b821690036114ed575b806000036113965750600019016000818152600560205260409020546114cc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611513826114a1565b9050836001600160a01b0316816001600160a01b0316146115465760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115645750611564853361072e565b8061157f57503361157484610860565b6001600160a01b0316145b90508061159f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115c657604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091528120600160e11b4260a01b8717811790915583169003611667576001830160008181526005602052604081205490036116655760015481146116655760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e4828260405180602001604052806000815250611915565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174e903390899088908890600401612175565b6020604051808303816000875af1925050508015611789575060408051601f3d908101601f19168201909252611786918101906121b2565b60015b6117e7573d8080156117b7576040519150601f19603f3d011682016040523d82523d6000602084013e6117bc565b606091505b5080516000036117df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107dd90611ec5565b60608160000361183b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611865578061184f81612086565b915061185e9050600a836121e5565b915061183f565b60008167ffffffffffffffff81111561188057611880611b85565b6040519080825280601f01601f1916602001820160405280156118aa576020820181803683370190505b5090505b84156117fd576118bf6001836120be565b91506118cc600a866121f9565b6118d7906030612058565b60f81b8183815181106118ec576118ec612070565b60200101906001600160f81b031916908160001a90535061190e600a866121e5565b94506118ae565b6001546001600160a01b03841661193e57604051622e076360e81b815260040160405180910390fd5b8260000361195f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611a34575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119fd6000878480600101955087611719565b611a1a576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119b2578260015414611a2f57600080fd5b611a79565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a35575b50600155610ee4600085838684565b6001600160e01b031981168114610abf57600080fd5b600060208284031215611ab057600080fd5b813561139681611a88565b60005b83811015611ad6578181015183820152602001611abe565b83811115610ee45750506000910152565b60008151808452611aff816020860160208601611abb565b601f01601f19169290920160200192915050565b6020815260006113966020830184611ae7565b600060208284031215611b3857600080fd5b5035919050565b80356001600160a01b0381168114611b5657600080fd5b919050565b60008060408385031215611b6e57600080fd5b611b7783611b3f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611bc457611bc4611b85565b604052919050565b600067ffffffffffffffff831115611be657611be6611b85565b611bf9601f8401601f1916602001611b9b565b9050828152838383011115611c0d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c3657600080fd5b813567ffffffffffffffff811115611c4d57600080fd5b8201601f81018413611c5e57600080fd5b6117fd84823560208401611bcc565b80358015158114611b5657600080fd5b600060208284031215611c8f57600080fd5b61139682611c6d565b600080600060608486031215611cad57600080fd5b611cb684611b3f565b9250611cc460208501611b3f565b9150604084013590509250925092565b600060208284031215611ce657600080fd5b61139682611b3f565b6020808252825182820181905260009190848201906040850190845b81811015611d2757835183529284019291840191600101611d0b565b50909695505050505050565b60008060408385031215611d4657600080fd5b8235915060208084013567ffffffffffffffff80821115611d6657600080fd5b818601915086601f830112611d7a57600080fd5b813581811115611d8c57611d8c611b85565b8060051b9150611d9d848301611b9b565b8181529183018401918481019089841115611db757600080fd5b938501935b83851015611ddc57611dcd85611b3f565b82529385019390850190611dbc565b8096505050505050509250929050565b60008060408385031215611dff57600080fd5b611e0883611b3f565b9150611e1660208401611c6d565b90509250929050565b60008060008060808587031215611e3557600080fd5b611e3e85611b3f565b9350611e4c60208601611b3f565b925060408501359150606085013567ffffffffffffffff811115611e6f57600080fd5b8501601f81018713611e8057600080fd5b611e8f87823560208401611bcc565b91505092959194509250565b60008060408385031215611eae57600080fd5b611eb783611b3f565b9150611e1660208401611b3f565b600181811c90821680611ed957607f821691505b602082108103611ef957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610a3057600081815260208120601f850160051c81016020861015611f5b5750805b601f850160051c820191505b81811015611f7a57828155600101611f67565b505050505050565b815167ffffffffffffffff811115611f9c57611f9c611b85565b611fb081611faa8454611ec5565b84611f34565b602080601f831160018114611fe55760008415611fcd5750858301515b600019600386901b1c1916600185901b178555611f7a565b600085815260208120601f198616915b8281101561201457888601518255948401946001909101908401611ff5565b50858210156120325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000821982111561206b5761206b612042565b500190565b634e487b7160e01b600052603260045260246000fd5b60006001820161209857612098612042565b5060010190565b60008160001904831182151516156120b9576120b9612042565b500290565b6000828210156120d0576120d0612042565b500390565b6000845160206120e88285838a01611abb565b8551918401916120fb8184848a01611abb565b855492019160009061210c81611ec5565b60018281168015612124576001811461213957612165565b60ff1984168752821515830287019450612165565b896000528560002060005b8481101561215d57815489820152908301908701612144565b505082870194505b50929a9950505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121a890830184611ae7565b9695505050505050565b6000602082840312156121c457600080fd5b815161139681611a88565b634e487b7160e01b600052601260045260246000fd5b6000826121f4576121f46121cf565b500490565b600082612208576122086121cf565b50069056fea264697066735822122002069809fdda3128a21d23c56e4d343c909f5fe2dbbf8b5e741f5b5b7036a0ab64736f6c634300080f0033

Deployed Bytecode Sourcemap

43992:4162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16517:615;;;;;;;;;;-1:-1:-1;16517:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16517:615:0;;;;;;;;21530:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23598:204::-;;;;;;;;;;-1:-1:-1;23598:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23598:204:0;1528:203:1;47255:110:0;;;;;;;;;;-1:-1:-1;47255:110:0;;;;;:::i;:::-;;:::i;:::-;;23058:474;;;;;;;;;;-1:-1:-1;23058:474:0;;;;;:::i;:::-;;:::i;44235:32::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;44235:32:0;2173:177:1;47615:100:0;;;;;;;;;;-1:-1:-1;47615:100:0;;;;;:::i;:::-;;:::i;47821:77::-;;;;;;;;;;-1:-1:-1;47821:77:0;;;;;:::i;:::-;;:::i;15571:315::-;;;;;;;;;;-1:-1:-1;15837:12:0;;15821:13;;:28;15571:315;;44352:32;;;;;;;;;;;;;;;;24484:170;;;;;;;;;;-1:-1:-1;24484:170:0;;;;;:::i;:::-;;:::i;47904:137::-;;;;;;;;;;;;;:::i;24725:185::-;;;;;;;;;;-1:-1:-1;24725:185:0;;;;;:::i;:::-;;:::i;45781:637::-;;;;;;;;;;-1:-1:-1;45781:637:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47039:74::-;;;;;;;;;;-1:-1:-1;47039:74:0;;;;;:::i;:::-;;:::i;44456:46::-;;;;;;;;;;-1:-1:-1;44456:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;47371:132;;;;;;;;;;-1:-1:-1;47371:132:0;;;;;:::i;:::-;;:::i;44422:27::-;;;;;;;;;;-1:-1:-1;44422:27:0;;;;;;;;;;;44157:33;;;;;;;;;;;;;:::i;44391:26::-;;;;;;;;;;-1:-1:-1;44391:26:0;;;;;;;;44070:82;;;;;;;;;;;;;:::i;21319:144::-;;;;;;;;;;-1:-1:-1;21319:144:0;;;;;:::i;:::-;;:::i;47721:94::-;;;;;;;;;;-1:-1:-1;47721:94:0;;;;;:::i;:::-;;:::i;17196:224::-;;;;;;;;;;-1:-1:-1;17196:224:0;;;;;:::i;:::-;;:::i;2633:103::-;;;;;;;;;;;;;:::i;47509:100::-;;;;;;;;;;-1:-1:-1;47509:100:0;;;;;:::i;:::-;;:::i;1982:87::-;;;;;;;;;;-1:-1:-1;2028:7:0;2055:6;-1:-1:-1;;;;;2055:6:0;1982:87;;44309:38;;;;;;;;;;;;;;;;21699:104;;;;;;;;;;;;;:::i;45428:230::-;;;;;;;;;;-1:-1:-1;45428:230:0;;;;;:::i;:::-;;:::i;44792:628::-;;;;;;:::i;:::-;;:::i;23874:308::-;;;;;;;;;;-1:-1:-1;23874:308:0;;;;;:::i;:::-;;:::i;44195:31::-;;;;;;;;;;;;;:::i;47119:130::-;;;;;;;;;;-1:-1:-1;47119:130:0;;;;;:::i;:::-;;:::i;24981:396::-;;;;;;;;;;-1:-1:-1;24981:396:0;;;;;:::i;:::-;;:::i;45664:111::-;;;;;;;;;;-1:-1:-1;45664:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;45748:21:0;45722:7;45748:21;;;:11;:21;;;;;;;45664:111;46424:522;;;;;;;;;;-1:-1:-1;46424:522:0;;;;;:::i;:::-;;:::i;44272:32::-;;;;;;;;;;;;;;;;46952:81;;;;;;;;;;-1:-1:-1;46952:81:0;;;;;:::i;:::-;;:::i;24253:164::-;;;;;;;;;;-1:-1:-1;24253:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24374:25:0;;;24350:4;24374:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24253:164;2891:201;;;;;;;;;;-1:-1:-1;2891:201:0;;;;;:::i;:::-;;:::i;16517:615::-;16602:4;-1:-1:-1;;;;;;;;;16902:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16979:25:0;;;16902:102;:179;;;-1:-1:-1;;;;;;;;;;17056:25:0;;;16902:179;16882:199;16517:615;-1:-1:-1;;16517:615:0:o;21530:100::-;21584:13;21617:5;21610:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21530:100;:::o;23598:204::-;23666:7;23691:16;23699:7;23691;:16::i;:::-;23686:64;;23716:34;;-1:-1:-1;;;23716:34:0;;;;;;;;;;;23686:64;-1:-1:-1;23770:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23770:24:0;;23598:204::o;47255:110::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;;;;;;;;;47329:13:::1;:30:::0;47255:110::o;23058:474::-;23131:13;23163:27;23182:7;23163:18;:27::i;:::-;23131:61;;23213:5;-1:-1:-1;;;;;23207:11:0;:2;-1:-1:-1;;;;;23207:11:0;;23203:48;;23227:24;;-1:-1:-1;;;23227:24:0;;;;;;;;;;;23203:48;790:10;-1:-1:-1;;;;;23268:28:0;;;23264:175;;23316:44;23333:5;790:10;24253:164;:::i;23316:44::-;23311:128;;23388:35;;-1:-1:-1;;;23388:35:0;;;;;;;;;;;23311:128;23451:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23451:29:0;-1:-1:-1;;;;;23451:29:0;;;;;;;;;23496:28;;23451:24;;23496:28;;;;;;;23120:412;23058:474;;:::o;47615:100::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47687:9:::1;:22;47699:10:::0;47687:9;:22:::1;:::i;:::-;;47615:100:::0;:::o;47821:77::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47877:6:::1;:15:::0;;-1:-1:-1;;47877:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47821:77::o;24484:170::-;24618:28;24628:4;24634:2;24638:7;24618:9;:28::i;:::-;24484:170;;;:::o;47904:137::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47949:7:::1;2055:6:::0;;47962:55:::1;::::0;-1:-1:-1;;;;;2055:6:0;;;;47991:21:::1;::::0;47949:7;47962:55;47949:7;47962:55;47991:21;2055:6;47962:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47948:69;;;48032:2;48024:11;;;::::0;::::1;;47941:100;47904:137::o:0;24725:185::-;24863:39;24880:4;24886:2;24890:7;24863:39;;;;;;;;;;;;:16;:39::i;45781:637::-;45856:16;45884:23;45910:17;45920:6;45910:9;:17::i;:::-;45884:43;;45934:30;45981:15;45967:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45967:30:0;-1:-1:-1;45934:63:0;-1:-1:-1;46029:1:0;46004:22;46073:311;46098:15;46080;:33;:64;;;;;46135:9;;46117:14;:27;;46080:64;46073:311;;;46155:25;46183:23;46191:14;46183:7;:23::i;:::-;46155:51;;46242:6;-1:-1:-1;;;;;46221:27:0;:17;-1:-1:-1;;;;;46221:27:0;;46217:133;;46294:16;:14;46309:1;46294:16;:::i;:::-;46261:13;46275:15;46261:30;;;;;;;;:::i;:::-;;;;;;;;;;:49;46323:17;;;;:::i;:::-;;;;46217:133;46360:16;;;;:::i;:::-;;;;46146:238;46073:311;;;-1:-1:-1;46399:13:0;;45781:637;-1:-1:-1;;;;45781:637:0:o;47039:74::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47095:4:::1;:12:::0;47039:74::o;47371:132::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47459:17:::1;:38;47479:18:::0;47459:17;:38:::1;:::i;44157:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44070:82::-;;;;;;;:::i;21319:144::-;21383:7;21426:27;21445:7;21426:18;:27::i;47721:94::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47787:9:::1;:22:::0;47721:94::o;17196:224::-;17260:7;-1:-1:-1;;;;;17284:19:0;;17280:60;;17312:28;;-1:-1:-1;;;17312:28:0;;;;;;;;;;;17280:60;-1:-1:-1;;;;;;17358:25:0;;;;;:18;:25;;;;;;12535:13;17358:54;;17196:224::o;2633:103::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;2698:30:::1;2725:1;2698:18;:30::i;:::-;2633:103::o:0;47509:100::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47581:9:::1;:22;47593:10:::0;47581:9;:22:::1;:::i;21699:104::-:0;21755:13;21788:7;21781:14;;;;;:::i;45428:230::-;45523:11;44688:9;;44673:11;44657:13;15837:12;;15821:13;;:28;;15571:315;44657:13;:27;;;;:::i;:::-;:40;;44649:73;;;;-1:-1:-1;;;44649:73:0;;11266:2:1;44649:73:0;;;11248:21:1;11305:2;11285:18;;;11278:30;-1:-1:-1;;;11324:18:1;;;11317:50;11384:18;;44649:73:0;11064:344:1;44649:73:0;44738:6;;;;44737:7;44729:43;;;;-1:-1:-1;;;44729:43:0;;11615:2:1;44729:43:0;;;11597:21:1;11654:2;11634:18;;;11627:30;-1:-1:-1;;;11673:18:1;;;11666:53;11736:18;;44729:43:0;11413:347:1;44729:43:0;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23:::1;2194:68;;;;-1:-1:-1::0;;;2194:68:0::1;;;;;;;:::i;:::-;45558:9:::2;45553:100;45577:9;:16;45573:1;:20;45553:100;;;45609:36;45619:9;45629:1;45619:12;;;;;;;;:::i;:::-;;;;;;;45633:11;45609:9;:36::i;:::-;45595:3:::0;::::2;::::0;::::2;:::i;:::-;;;;45553:100;;;;45428:230:::0;;;:::o;44792:628::-;44857:11;44688:9;;44673:11;44657:13;15837:12;;15821:13;;:28;;15571:315;44657:13;:27;;;;:::i;:::-;:40;;44649:73;;;;-1:-1:-1;;;44649:73:0;;11266:2:1;44649:73:0;;;11248:21:1;11305:2;11285:18;;;11278:30;-1:-1:-1;;;11324:18:1;;;11317:50;11384:18;;44649:73:0;11064:344:1;44649:73:0;44738:6;;;;44737:7;44729:43;;;;-1:-1:-1;;;44729:43:0;;11615:2:1;44729:43:0;;;11597:21:1;11654:2;11634:18;;;11627:30;-1:-1:-1;;;11673:18:1;;;11666:53;11736:18;;44729:43:0;11413:347:1;44729:43:0;44899:1:::1;44885:11;:15;:52;;;;;44919:18;;44904:11;:33;;44885:52;44877:85;;;::::0;-1:-1:-1;;;44877:85:0;;11967:2:1;44877:85:0::1;::::0;::::1;11949:21:1::0;12006:2;11986:18;;;11979:30;-1:-1:-1;;;12025:18:1;;;12018:50;12085:18;;44877:85:0::1;11765:344:1::0;44877:85:0::1;44999:13;::::0;44985:10:::1;44973:23;::::0;;;:11:::1;:23;::::0;;;;;:39:::1;44969:331;;;45051:11;45044:4;;:18;;;;:::i;:::-;45031:9;:31;;45023:63;;;::::0;-1:-1:-1;;;45023:63:0;;12489:2:1;45023:63:0::1;::::0;::::1;12471:21:1::0;12528:2;12508:18;;;12501:30;-1:-1:-1;;;12547:18:1;;;12540:49;12606:18;;45023:63:0::1;12287:343:1::0;45023:63:0::1;44969:331;;;45126:13;;45112:11;:27;45109:184;;;45152:23;45192:13;;45178:11;:27;;;;:::i;:::-;45152:53;;45244:15;45237:4;;:22;;;;:::i;:::-;45224:9;:35;;45216:67;;;::::0;-1:-1:-1;;;45216:67:0;;12489:2:1;45216:67:0::1;::::0;::::1;12471:21:1::0;12528:2;12508:18;;;12501:30;-1:-1:-1;;;12547:18:1;;;12540:49;12606:18;;45216:67:0::1;12287:343:1::0;45216:67:0::1;45141:152;45109:184;45346:10;45334:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;45360:11;;45334:37:::1;:::i;:::-;45320:10;45308:23;::::0;;;:11:::1;:23;::::0;;;;:63;;;;45380:34:::1;::::0;45402:11;45380:9:::1;:34::i;23874:308::-:0;790:10;-1:-1:-1;;;;;23973:31:0;;;23969:61;;24013:17;;-1:-1:-1;;;24013:17:0;;;;;;;;;;;23969:61;790:10;24043:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24043:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24043:60:0;;;;;;;;;;24119:55;;540:41:1;;;24043:49:0;;790:10;24119:55;;513:18:1;24119:55:0;;;;;;;23874:308;;:::o;44195:31::-;;;;;;;:::i;47119:130::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47203:18:::1;:40:::0;47119:130::o;24981:396::-;25148:28;25158:4;25164:2;25168:7;25148:9;:28::i;:::-;-1:-1:-1;;;;;25191:14:0;;;:19;25187:183;;25230:56;25261:4;25267:2;25271:7;25280:5;25230:30;:56::i;:::-;25225:145;;25314:40;;-1:-1:-1;;;25314:40:0;;;;;;;;;;;46424:522;46523:13;46564:17;46572:8;46564:7;:17::i;:::-;46548:98;;;;-1:-1:-1;;;46548:98:0;;12967:2:1;46548:98:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045:34;13025:18;;;13018:62;-1:-1:-1;;;13096:18:1;;;13089:45;13151:19;;46548:98:0;12765:411:1;46548:98:0;46659:8;;;;;;;:17;;46671:5;46659:17;46655:64;;46694:17;46687:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46424:522;;;:::o;46655:64::-;46727:28;46758:10;:8;:10::i;:::-;46727:41;-1:-1:-1;46786:10:0;:8;46795:1;46786:10;:::i;:::-;46775:21;;46841:1;46816:14;46810:28;:32;:130;;;;;;;;;;;;;;;;;46878:14;46894:19;:8;:17;:19::i;:::-;46915:9;46861:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46810:130;46803:137;46424:522;-1:-1:-1;;;46424:522:0:o;46952:81::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;47010:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47010:17:0;;::::1;::::0;;;::::1;::::0;;46952:81::o;2891:201::-;2028:7;2055:6;-1:-1:-1;;;;;2055:6:0;790:10;2202:23;2194:68;;;;-1:-1:-1;;;2194:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2980:22:0;::::1;2972:73;;;::::0;-1:-1:-1;;;2972:73:0;;14618:2:1;2972:73:0::1;::::0;::::1;14600:21:1::0;14657:2;14637:18;;;14630:30;14696:34;14676:18;;;14669:62;-1:-1:-1;;;14747:18:1;;;14740:36;14793:19;;2972:73:0::1;14416:402:1::0;2972:73:0::1;3056:28;3075:8;3056:18;:28::i;25632:273::-:0;25689:4;25779:13;;25769:7;:23;25726:152;;;;-1:-1:-1;;25830:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25830:43:0;:48;;25632:273::o;18834:1129::-;18901:7;18936;19038:13;;19031:4;:20;19027:869;;;19076:14;19093:23;;;:17;:23;;;;;;;-1:-1:-1;;;19182:23:0;;:28;;19178:699;;19701:113;19708:6;19718:1;19708:11;19701:113;;-1:-1:-1;;;19779:6:0;19761:25;;;;:17;:25;;;;;;19701:113;;19178:699;19053:843;19027:869;19924:31;;-1:-1:-1;;;19924:31:0;;;;;;;;;;;30871:2515;30986:27;31016;31035:7;31016:18;:27::i;:::-;30986:57;;31101:4;-1:-1:-1;;;;;31060:45:0;31076:19;-1:-1:-1;;;;;31060:45:0;;31056:86;;31114:28;;-1:-1:-1;;;31114:28:0;;;;;;;;;;;31056:86;31155:22;790:10;-1:-1:-1;;;;;31181:27:0;;;;:87;;-1:-1:-1;31225:43:0;31242:4;790:10;24253:164;:::i;31225:43::-;31181:147;;;-1:-1:-1;790:10:0;31285:20;31297:7;31285:11;:20::i;:::-;-1:-1:-1;;;;;31285:43:0;;31181:147;31155:174;;31347:17;31342:66;;31373:35;;-1:-1:-1;;;31373:35:0;;;;;;;;;;;31342:66;-1:-1:-1;;;;;31423:16:0;;31419:52;;31448:23;;-1:-1:-1;;;31448:23:0;;;;;;;;;;;31419:52;31600:24;;;;:15;:24;;;;;;;;31593:31;;-1:-1:-1;;;;;;31593:31:0;;;-1:-1:-1;;;;;31992:24:0;;;;;:18;:24;;;;;31990:26;;-1:-1:-1;;31990:26:0;;;32061:22;;;;;;;32059:24;;-1:-1:-1;32059:24:0;;;32354:26;;;:17;:26;;;;;-1:-1:-1;;;32442:15:0;13189:3;32442:41;32400:84;;:128;;32354:174;;;32648:46;;:51;;32644:626;;32752:1;32742:11;;32720:19;32875:30;;;:17;:30;;;;;;:35;;32871:384;;33013:13;;32998:11;:28;32994:242;;33160:30;;;;:17;:30;;;;;:52;;;32994:242;32701:569;32644:626;33317:7;33313:2;-1:-1:-1;;;;;33298:27:0;33307:4;-1:-1:-1;;;;;33298:27:0;;;;;;;;;;;30975:2411;;30871:2515;;;:::o;3252:191::-;3326:16;3345:6;;-1:-1:-1;;;;;3362:17:0;;;-1:-1:-1;;;;;;3362:17:0;;;;;;3395:40;;3345:6;;;;;;;3395:40;;3326:16;3395:40;3315:128;3252:191;:::o;25989:104::-;26058:27;26068:2;26072:8;26058:27;;;;;;;;;;;;:9;:27::i;37083:716::-;37267:88;;-1:-1:-1;;;37267:88:0;;37246:4;;-1:-1:-1;;;;;37267:45:0;;;;;:88;;790:10;;37334:4;;37340:7;;37349:5;;37267:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37267:88:0;;;;;;;;-1:-1:-1;;37267:88:0;;;;;;;;;;;;:::i;:::-;;;37263:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37550:6;:13;37567:1;37550:18;37546:235;;37596:40;;-1:-1:-1;;;37596:40:0;;;;;;;;;;;37546:235;37739:6;37733:13;37724:6;37720:2;37716:15;37709:38;37263:529;-1:-1:-1;;;;;;37426:64:0;-1:-1:-1;;;37426:64:0;;-1:-1:-1;37263:529:0;37083:716;;;;;;:::o;48047:104::-;48107:13;48136:9;48129:16;;;;;:::i;42154:723::-;42210:13;42431:5;42440:1;42431:10;42427:53;;-1:-1:-1;;42458:10:0;;;;;;;;;;;;-1:-1:-1;;;42458:10:0;;;;;42154:723::o;42427:53::-;42505:5;42490:12;42546:78;42553:9;;42546:78;;42579:8;;;;:::i;:::-;;-1:-1:-1;42602:10:0;;-1:-1:-1;42610:2:0;42602:10;;:::i;:::-;;;42546:78;;;42634:19;42666:6;42656:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42656:17:0;;42634:39;;42684:154;42691:10;;42684:154;;42718:11;42728:1;42718:11;;:::i;:::-;;-1:-1:-1;42787:10:0;42795:2;42787:5;:10;:::i;:::-;42774:24;;:2;:24;:::i;:::-;42761:39;;42744:6;42751;42744:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;42744:56:0;;;;;;;;-1:-1:-1;42815:11:0;42824:2;42815:11;;:::i;:::-;;;42684:154;;26466:2236;26612:13;;-1:-1:-1;;;;;26640:16:0;;26636:48;;26665:19;;-1:-1:-1;;;26665:19:0;;;;;;;;;;;26636:48;26699:8;26711:1;26699:13;26695:44;;26721:18;;-1:-1:-1;;;26721:18:0;;;;;;;;;;;26695:44;-1:-1:-1;;;;;27288:22:0;;;;;;:18;:22;;;;12672:2;27288:22;;;:70;;27326:31;27314:44;;27288:70;;;27601:31;;;:17;:31;;;;;27694:15;13189:3;27694:41;27652:84;;-1:-1:-1;27772:13:0;;13452:3;27757:56;27652:162;27601:213;;:31;;27895:23;;;;27939:14;:19;27935:635;;27979:313;28010:38;;28035:12;;-1:-1:-1;;;;;28010:38:0;;;28027:1;;28010:38;;28027:1;;28010:38;28076:69;28115:1;28119:2;28123:14;;;;;;28139:5;28076:30;:69::i;:::-;28071:174;;28181:40;;-1:-1:-1;;;28181:40:0;;;;;;;;;;;28071:174;28287:3;28272:12;:18;27979:313;;28373:12;28356:13;;:29;28352:43;;28387:8;;;28352:43;27935:635;;;28436:119;28467:40;;28492:14;;;;;-1:-1:-1;;;;;28467:40:0;;;28484:1;;28467:40;;28484:1;;28467:40;28550:3;28535:12;:18;28436:119;;27935:635;-1:-1:-1;28584:13:0;:28;28634:60;28663:1;28667:2;28671:12;28685:8;28634:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:328::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;3985:328;;;;;:::o;4318:186::-;4377:6;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4469:29;4488:9;4469:29;:::i;4509:632::-;4680:2;4732:21;;;4802:13;;4705:18;;;4824:22;;;4651:4;;4680:2;4903:15;;;;4877:2;4862:18;;;4651:4;4946:169;4960:6;4957:1;4954:13;4946:169;;;5021:13;;5009:26;;5090:15;;;;5055:12;;;;4982:1;4975:9;4946:169;;;-1:-1:-1;5132:3:1;;4509:632;-1:-1:-1;;;;;;4509:632:1:o;5146:1020::-;5239:6;5247;5300:2;5288:9;5279:7;5275:23;5271:32;5268:52;;;5316:1;5313;5306:12;5268:52;5352:9;5339:23;5329:33;;5381:2;5434;5423:9;5419:18;5406:32;5457:18;5498:2;5490:6;5487:14;5484:34;;;5514:1;5511;5504:12;5484:34;5552:6;5541:9;5537:22;5527:32;;5597:7;5590:4;5586:2;5582:13;5578:27;5568:55;;5619:1;5616;5609:12;5568:55;5655:2;5642:16;5677:2;5673;5670:10;5667:36;;;5683:18;;:::i;:::-;5729:2;5726:1;5722:10;5712:20;;5752:28;5776:2;5772;5768:11;5752:28;:::i;:::-;5814:15;;;5884:11;;;5880:20;;;5845:12;;;;5912:19;;;5909:39;;;5944:1;5941;5934:12;5909:39;5968:11;;;;5988:148;6004:6;5999:3;5996:15;5988:148;;;6070:23;6089:3;6070:23;:::i;:::-;6058:36;;6021:12;;;;6114;;;;5988:148;;;6155:5;6145:15;;;;;;;;5146:1020;;;;;:::o;6171:254::-;6236:6;6244;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6336:29;6355:9;6336:29;:::i;:::-;6326:39;;6384:35;6415:2;6404:9;6400:18;6384:35;:::i;:::-;6374:45;;6171:254;;;;;:::o;6430:667::-;6525:6;6533;6541;6549;6602:3;6590:9;6581:7;6577:23;6573:33;6570:53;;;6619:1;6616;6609:12;6570:53;6642:29;6661:9;6642:29;:::i;:::-;6632:39;;6690:38;6724:2;6713:9;6709:18;6690:38;:::i;:::-;6680:48;;6775:2;6764:9;6760:18;6747:32;6737:42;;6830:2;6819:9;6815:18;6802:32;6857:18;6849:6;6846:30;6843:50;;;6889:1;6886;6879:12;6843:50;6912:22;;6965:4;6957:13;;6953:27;-1:-1:-1;6943:55:1;;6994:1;6991;6984:12;6943:55;7017:74;7083:7;7078:2;7065:16;7060:2;7056;7052:11;7017:74;:::i;:::-;7007:84;;;6430:667;;;;;;;:::o;7102:260::-;7170:6;7178;7231:2;7219:9;7210:7;7206:23;7202:32;7199:52;;;7247:1;7244;7237:12;7199:52;7270:29;7289:9;7270:29;:::i;:::-;7260:39;;7318:38;7352:2;7341:9;7337:18;7318:38;:::i;7367:380::-;7446:1;7442:12;;;;7489;;;7510:61;;7564:4;7556:6;7552:17;7542:27;;7510:61;7617:2;7609:6;7606:14;7586:18;7583:38;7580:161;;7663:10;7658:3;7654:20;7651:1;7644:31;7698:4;7695:1;7688:15;7726:4;7723:1;7716:15;7580:161;;7367:380;;;:::o;7752:356::-;7954:2;7936:21;;;7973:18;;;7966:30;8032:34;8027:2;8012:18;;8005:62;8099:2;8084:18;;7752:356::o;8239:545::-;8341:2;8336:3;8333:11;8330:448;;;8377:1;8402:5;8398:2;8391:17;8447:4;8443:2;8433:19;8517:2;8505:10;8501:19;8498:1;8494:27;8488:4;8484:38;8553:4;8541:10;8538:20;8535:47;;;-1:-1:-1;8576:4:1;8535:47;8631:2;8626:3;8622:12;8619:1;8615:20;8609:4;8605:31;8595:41;;8686:82;8704:2;8697:5;8694:13;8686:82;;;8749:17;;;8730:1;8719:13;8686:82;;;8690:3;;;8239:545;;;:::o;8960:1352::-;9086:3;9080:10;9113:18;9105:6;9102:30;9099:56;;;9135:18;;:::i;:::-;9164:97;9254:6;9214:38;9246:4;9240:11;9214:38;:::i;:::-;9208:4;9164:97;:::i;:::-;9316:4;;9380:2;9369:14;;9397:1;9392:663;;;;10099:1;10116:6;10113:89;;;-1:-1:-1;10168:19:1;;;10162:26;10113:89;-1:-1:-1;;8917:1:1;8913:11;;;8909:24;8905:29;8895:40;8941:1;8937:11;;;8892:57;10215:81;;9362:944;;9392:663;8186:1;8179:14;;;8223:4;8210:18;;-1:-1:-1;;9428:20:1;;;9546:236;9560:7;9557:1;9554:14;9546:236;;;9649:19;;;9643:26;9628:42;;9741:27;;;;9709:1;9697:14;;;;9576:19;;9546:236;;;9550:3;9810:6;9801:7;9798:19;9795:201;;;9871:19;;;9865:26;-1:-1:-1;;9954:1:1;9950:14;;;9966:3;9946:24;9942:37;9938:42;9923:58;9908:74;;9795:201;-1:-1:-1;;;;;10042:1:1;10026:14;;;10022:22;10009:36;;-1:-1:-1;8960:1352:1:o;10527:127::-;10588:10;10583:3;10579:20;10576:1;10569:31;10619:4;10616:1;10609:15;10643:4;10640:1;10633:15;10659:128;10699:3;10730:1;10726:6;10723:1;10720:13;10717:39;;;10736:18;;:::i;:::-;-1:-1:-1;10772:9:1;;10659:128::o;10792:127::-;10853:10;10848:3;10844:20;10841:1;10834:31;10884:4;10881:1;10874:15;10908:4;10905:1;10898:15;10924:135;10963:3;10984:17;;;10981:43;;11004:18;;:::i;:::-;-1:-1:-1;11051:1:1;11040:13;;10924:135::o;12114:168::-;12154:7;12220:1;12216;12212:6;12208:14;12205:1;12202:21;12197:1;12190:9;12183:17;12179:45;12176:71;;;12227:18;;:::i;:::-;-1:-1:-1;12267:9:1;;12114:168::o;12635:125::-;12675:4;12703:1;12700;12697:8;12694:34;;;12708:18;;:::i;:::-;-1:-1:-1;12745:9:1;;12635:125::o;13181:1230::-;13405:3;13443:6;13437:13;13469:4;13482:51;13526:6;13521:3;13516:2;13508:6;13504:15;13482:51;:::i;:::-;13596:13;;13555:16;;;;13618:55;13596:13;13555:16;13640:15;;;13618:55;:::i;:::-;13762:13;;13695:20;;;13735:1;;13800:36;13762:13;13800:36;:::i;:::-;13855:1;13872:18;;;13899:141;;;;14054:1;14049:337;;;;13865:521;;13899:141;-1:-1:-1;;13934:24:1;;13920:39;;14011:16;;14004:24;13990:39;;13979:51;;;-1:-1:-1;13899:141:1;;14049:337;14080:6;14077:1;14070:17;14128:2;14125:1;14115:16;14153:1;14167:169;14181:8;14178:1;14175:15;14167:169;;;14263:14;;14248:13;;;14241:37;14306:16;;;;14198:10;;14167:169;;;14171:3;;14367:8;14360:5;14356:20;14349:27;;13865:521;-1:-1:-1;14402:3:1;;13181:1230;-1:-1:-1;;;;;;;;;;13181:1230:1:o;14823:489::-;-1:-1:-1;;;;;15092:15:1;;;15074:34;;15144:15;;15139:2;15124:18;;15117:43;15191:2;15176:18;;15169:34;;;15239:3;15234:2;15219:18;;15212:31;;;15017:4;;15260:46;;15286:19;;15278:6;15260:46;:::i;:::-;15252:54;14823:489;-1:-1:-1;;;;;;14823:489:1:o;15317:249::-;15386:6;15439:2;15427:9;15418:7;15414:23;15410:32;15407:52;;;15455:1;15452;15445:12;15407:52;15487:9;15481:16;15506:30;15530:5;15506:30;:::i;15571:127::-;15632:10;15627:3;15623:20;15620:1;15613:31;15663:4;15660:1;15653:15;15687:4;15684:1;15677:15;15703:120;15743:1;15769;15759:35;;15774:18;;:::i;:::-;-1:-1:-1;15808:9:1;;15703:120::o;15828:112::-;15860:1;15886;15876:35;;15891:18;;:::i;:::-;-1:-1:-1;15925:9:1;;15828:112::o

Swarm Source

ipfs://02069809fdda3128a21d23c56e4d343c909f5fe2dbbf8b5e741f5b5b7036a0ab
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.