ETH Price: $2,959.87 (-1.02%)
Gas: 7 Gwei

Token

WolfTown (WOLF)
 

Overview

Max Total Supply

1,631 WOLF

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WOLF
0xc90c5eafd55dfadfd400f35e1a976abe62e37d2c
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:
WolfTown

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
                  .-'''-.                              .-'''-.                             
                 '   _    \  .---.                    '   _    \                           
               /   /` '.   \ |   |                  /   /` '.   \                 _..._    
       _     _.   |     \  ' |   |     _.._        .   |     \  '       _     _ .'     '.  
 /\    \\   //|   '      |  '|   |   .' .._|    .| |   '      |  '/\    \\   //.   .-.   . 
 `\\  //\\ // \    \     / / |   |   | '      .' |_\    \     / / `\\  //\\ // |  '   '  | 
   \`//  \'/   `.   ` ..' /  |   | __| |__  .'     |`.   ` ..' /    \`//  \'/  |  |   |  | 
    \|   |/       '-...-'`   |   ||__   __|'--.  .-'   '-...-'`      \|   |/   |  |   |  | 
     '                       |   |   | |      |  |                    '        |  |   |  | 
                             |   |   | |      |  |                             |  |   |  | 
                             '---'   | |      |  '.'                           |  |   |  | 
                                     | |      |   /                            |  |   |  | 
                                     |_|      `'-'                             '--'   '--' 
                                       
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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: @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: 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: contracts/WolfTown.sol



pragma solidity >=0.8.9 <0.9.0;

contract WolfTown is ERC721A, Ownable, ReentrancyGuard {
    
  using Strings for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply = 10000;
  uint256 public maxPerWallet = 1;

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

  constructor() ERC721A("WolfTown", "WOLF") {
    setHiddenMetadataUri("ipfs://QmcjtDqMkwauxYiJzJ3uqbeiPsXDcKGhCJ1czYyDCBcKRy/hidden_metadata.json");
  }


  function mint() public payable nonReentrant{
    require(!paused, "The contract is paused!");
    require(totalSupply() + 1 <= maxSupply, "Max supply exceeded!");
    require(_numberMinted(msg.sender) < maxPerWallet, "You already minted your Wolf!");
    _safeMint(_msgSender(), 1);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public  onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  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();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

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

  function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  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 setPaused(bool _state) public onlyOwner {
    paused = _state;
  }


  function withdraw() public onlyOwner nonReentrant {

    (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":"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a91620001e5565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001e5565b50612710600e556001600f8190556010805461ffff191690911790553480156200007357600080fd5b5060408051808201825260088152672bb7b6332a37bbb760c11b6020808301918252835180850190945260048452632ba7a62360e11b908401528151919291620000c091600291620001e5565b508051620000d6906003906020840190620001e5565b5050600160005550620000e9336200011b565b6001600981905550620001156040518060800160405280604a81526020016200205d604a91396200016d565b620002c7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e190600c906020840190620001e5565b5050565b828054620001f3906200028b565b90600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b600181811c90821680620002a057607f821691505b602082108103620002c157634e487b7160e01b600052602260045260246000fd5b50919050565b611d8680620002d76000396000f3fe6080604052600436106101f95760003560e01c806362b99ad41161010d578063a45ba8e7116100a0578063e0a808531161006f578063e0a8085314610559578063e268e4d314610579578063e985e9c514610599578063efbd73f4146105e2578063f2fde38b1461060257600080fd5b8063a45ba8e7146104ee578063b88d4fde14610503578063c87b56dd14610523578063d5abeb011461054357600080fd5b80637ec4a659116100dc5780637ec4a6591461047b5780638da5cb5b1461049b57806395d89b41146104b9578063a22cb465146104ce57600080fd5b806362b99ad4146104115780636352211e1461042657806370a0823114610446578063715018a61461046657600080fd5b806318160ddd11610190578063453c23101161015f578063453c23101461038d5780634fdd43cb146103a357806351830227146103c35780635503a0e8146103e25780635c975abb146103f757600080fd5b806318160ddd1461031b57806323b872dd146103385780633ccfd60b1461035857806342842e0e1461036d57600080fd5b80631249c58b116101cc5780631249c58b146102af57806313faede6146102b757806316ba10e0146102db57806316c38b3c146102fb57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046117d8565b610622565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610674565b60405161022a919061184d565b34801561026157600080fd5b50610275610270366004611860565b610706565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611895565b61074a565b005b6102ad61081c565b3480156102c357600080fd5b506102cd600d5481565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f636600461194b565b6109a9565b34801561030757600080fd5b506102ad6103163660046119a4565b6109ea565b34801561032757600080fd5b5060015460005403600019016102cd565b34801561034457600080fd5b506102ad6103533660046119bf565b610a27565b34801561036457600080fd5b506102ad610a37565b34801561037957600080fd5b506102ad6103883660046119bf565b610b31565b34801561039957600080fd5b506102cd600f5481565b3480156103af57600080fd5b506102ad6103be36600461194b565b610b4c565b3480156103cf57600080fd5b5060105461021e90610100900460ff1681565b3480156103ee57600080fd5b50610248610b89565b34801561040357600080fd5b5060105461021e9060ff1681565b34801561041d57600080fd5b50610248610c17565b34801561043257600080fd5b50610275610441366004611860565b610c24565b34801561045257600080fd5b506102cd6104613660046119fb565b610c2f565b34801561047257600080fd5b506102ad610c7e565b34801561048757600080fd5b506102ad61049636600461194b565b610cb4565b3480156104a757600080fd5b506008546001600160a01b0316610275565b3480156104c557600080fd5b50610248610cf1565b3480156104da57600080fd5b506102ad6104e9366004611a16565b610d00565b3480156104fa57600080fd5b50610248610d95565b34801561050f57600080fd5b506102ad61051e366004611a49565b610da2565b34801561052f57600080fd5b5061024861053e366004611860565b610dec565b34801561054f57600080fd5b506102cd600e5481565b34801561056557600080fd5b506102ad6105743660046119a4565b610f60565b34801561058557600080fd5b506102ad610594366004611860565b610fa4565b3480156105a557600080fd5b5061021e6105b4366004611ac5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ee57600080fd5b506102ad6105fd366004611aef565b610fd3565b34801561060e57600080fd5b506102ad61061d3660046119fb565b611067565b60006301ffc9a760e01b6001600160e01b03198316148061065357506380ac58cd60e01b6001600160e01b03198316145b8061066e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068390611b12565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90611b12565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611102565b61072e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075582611137565b9050806001600160a01b0316836001600160a01b0316036107895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107c0576107a381336105b4565b6107c0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600954036108735760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff16156108cb5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161086a565b600e5460015460005403600019016108e4906001611b62565b11156109295760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086a565b600f5433600090815260056020526040908190205467ffffffffffffffff911c16106109975760405162461bcd60e51b815260206004820152601d60248201527f596f7520616c7265616479206d696e74656420796f757220576f6c6621000000604482015260640161086a565b6109a23360016111a6565b6001600955565b6008546001600160a01b031633146109d35760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600b906020840190611729565b5050565b6008546001600160a01b03163314610a145760405162461bcd60e51b815260040161086a90611b7a565b6010805460ff1916911515919091179055565b610a328383836111c0565b505050565b6008546001600160a01b03163314610a615760405162461bcd60e51b815260040161086a90611b7a565b600260095403610ab35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086a565b60026009556000610acc6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b16576040519150601f19603f3d011682016040523d82523d6000602084013e610b1b565b606091505b5050905080610b2957600080fd5b506001600955565b610a3283838360405180602001604052806000815250610da2565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600c906020840190611729565b600b8054610b9690611b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290611b12565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b600a8054610b9690611b12565b600061066e82611137565b60006001600160a01b038216610c58576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ca85760405162461bcd60e51b815260040161086a90611b7a565b610cb26000611367565b565b6008546001600160a01b03163314610cde5760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600a906020840190611729565b60606003805461068390611b12565b336001600160a01b03831603610d295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610b9690611b12565b610dad8484846111c0565b6001600160a01b0383163b15610de657610dc9848484846113b9565b610de6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610df782611102565b610e5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086a565b601054610100900460ff161515600003610f0157600c8054610e7c90611b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611b12565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b6000610f0b6114a5565b90506000815111610f2b5760405180602001604052806000815250610f59565b80610f35846114b4565b600b604051602001610f4993929190611baf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161086a90611b7a565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610fce5760405162461bcd60e51b815260040161086a90611b7a565b600f55565b6008546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161086a90611b7a565b600e5460015460005484919003600019016110189190611b62565b111561105d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086a565b6109e681836111a6565b6008546001600160a01b031633146110915760405162461bcd60e51b815260040161086a90611b7a565b6001600160a01b0381166110f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086a565b6110ff81611367565b50565b600081600111158015611116575060005482105b801561066e575050600090815260046020526040902054600160e01b161590565b6000818060011161118d5760005481101561118d5760008181526004602052604081205490600160e01b8216900361118b575b80600003610f5957506000190160008181526004602052604090205461116a565b505b604051636f96cda160e11b815260040160405180910390fd5b6109e68282604051806020016040528060008152506115b5565b60006111cb82611137565b9050836001600160a01b0316816001600160a01b0316146111fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061121c575061121c85336105b4565b8061123757503361122c84610706565b6001600160a01b0316145b90508061125757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361131f5760018301600081815260046020526040812054900361131d57600054811461131d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ee903390899088908890600401611c72565b6020604051808303816000875af1925050508015611429575060408051601f3d908101601f1916820190925261142691810190611caf565b60015b611487573d808015611457576040519150601f19603f3d011682016040523d82523d6000602084013e61145c565b606091505b50805160000361147f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461068390611b12565b6060816000036114db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150557806114ef81611ccc565b91506114fe9050600a83611cfb565b91506114df565b60008167ffffffffffffffff811115611520576115206118bf565b6040519080825280601f01601f19166020018201604052801561154a576020820181803683370190505b5090505b841561149d5761155f600183611d0f565b915061156c600a86611d26565b611577906030611b62565b60f81b81838151811061158c5761158c611d3a565b60200101906001600160f81b031916908160001a9053506115ae600a86611cfb565b945061154e565b6000546001600160a01b0384166115de57604051622e076360e81b815260040160405180910390fd5b826000036115ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156116d4575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461169d60008784806001019550876113b9565b6116ba576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116525782600054146116cf57600080fd5b611719565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116d5575b506000908155610de69085838684565b82805461173590611b12565b90600052602060002090601f016020900481019282611757576000855561179d565b82601f1061177057805160ff191683800117855561179d565b8280016001018555821561179d579182015b8281111561179d578251825591602001919060010190611782565b506117a99291506117ad565b5090565b5b808211156117a957600081556001016117ae565b6001600160e01b0319811681146110ff57600080fd5b6000602082840312156117ea57600080fd5b8135610f59816117c2565b60005b838110156118105781810151838201526020016117f8565b83811115610de65750506000910152565b600081518084526118398160208601602086016117f5565b601f01601f19169290920160200192915050565b602081526000610f596020830184611821565b60006020828403121561187257600080fd5b5035919050565b80356001600160a01b038116811461189057600080fd5b919050565b600080604083850312156118a857600080fd5b6118b183611879565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f0576118f06118bf565b604051601f8501601f19908116603f01168101908282118183101715611918576119186118bf565b8160405280935085815286868601111561193157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561195d57600080fd5b813567ffffffffffffffff81111561197457600080fd5b8201601f8101841361198557600080fd5b61149d848235602084016118d5565b8035801515811461189057600080fd5b6000602082840312156119b657600080fd5b610f5982611994565b6000806000606084860312156119d457600080fd5b6119dd84611879565b92506119eb60208501611879565b9150604084013590509250925092565b600060208284031215611a0d57600080fd5b610f5982611879565b60008060408385031215611a2957600080fd5b611a3283611879565b9150611a4060208401611994565b90509250929050565b60008060008060808587031215611a5f57600080fd5b611a6885611879565b9350611a7660208601611879565b925060408501359150606085013567ffffffffffffffff811115611a9957600080fd5b8501601f81018713611aaa57600080fd5b611ab9878235602084016118d5565b91505092959194509250565b60008060408385031215611ad857600080fd5b611ae183611879565b9150611a4060208401611879565b60008060408385031215611b0257600080fd5b82359150611a4060208401611879565b600181811c90821680611b2657607f821691505b602082108103611b4657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b7557611b75611b4c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611bc28285838a016117f5565b855191840191611bd58184848a016117f5565b8554920191600090600181811c9080831680611bf257607f831692505b8583108103611c0f57634e487b7160e01b85526022600452602485fd5b808015611c235760018114611c3457611c61565b60ff19851688528388019550611c61565b60008b81526020902060005b85811015611c595781548a820152908401908801611c40565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca590830184611821565b9695505050505050565b600060208284031215611cc157600080fd5b8151610f59816117c2565b600060018201611cde57611cde611b4c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d0a57611d0a611ce5565b500490565b600082821015611d2157611d21611b4c565b500390565b600082611d3557611d35611ce5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c3a7e41519e2904cd12ff405521a6dbbf639b0dfbcac6ed63d5d52a71210963664736f6c634300080e0033697066733a2f2f516d636a7444714d6b7761757859694a7a4a33757162656950735844634b4768434a31637a5979444342634b52792f68696464656e5f6d657461646174612e6a736f6e

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806362b99ad41161010d578063a45ba8e7116100a0578063e0a808531161006f578063e0a8085314610559578063e268e4d314610579578063e985e9c514610599578063efbd73f4146105e2578063f2fde38b1461060257600080fd5b8063a45ba8e7146104ee578063b88d4fde14610503578063c87b56dd14610523578063d5abeb011461054357600080fd5b80637ec4a659116100dc5780637ec4a6591461047b5780638da5cb5b1461049b57806395d89b41146104b9578063a22cb465146104ce57600080fd5b806362b99ad4146104115780636352211e1461042657806370a0823114610446578063715018a61461046657600080fd5b806318160ddd11610190578063453c23101161015f578063453c23101461038d5780634fdd43cb146103a357806351830227146103c35780635503a0e8146103e25780635c975abb146103f757600080fd5b806318160ddd1461031b57806323b872dd146103385780633ccfd60b1461035857806342842e0e1461036d57600080fd5b80631249c58b116101cc5780631249c58b146102af57806313faede6146102b757806316ba10e0146102db57806316c38b3c146102fb57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046117d8565b610622565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610674565b60405161022a919061184d565b34801561026157600080fd5b50610275610270366004611860565b610706565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611895565b61074a565b005b6102ad61081c565b3480156102c357600080fd5b506102cd600d5481565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f636600461194b565b6109a9565b34801561030757600080fd5b506102ad6103163660046119a4565b6109ea565b34801561032757600080fd5b5060015460005403600019016102cd565b34801561034457600080fd5b506102ad6103533660046119bf565b610a27565b34801561036457600080fd5b506102ad610a37565b34801561037957600080fd5b506102ad6103883660046119bf565b610b31565b34801561039957600080fd5b506102cd600f5481565b3480156103af57600080fd5b506102ad6103be36600461194b565b610b4c565b3480156103cf57600080fd5b5060105461021e90610100900460ff1681565b3480156103ee57600080fd5b50610248610b89565b34801561040357600080fd5b5060105461021e9060ff1681565b34801561041d57600080fd5b50610248610c17565b34801561043257600080fd5b50610275610441366004611860565b610c24565b34801561045257600080fd5b506102cd6104613660046119fb565b610c2f565b34801561047257600080fd5b506102ad610c7e565b34801561048757600080fd5b506102ad61049636600461194b565b610cb4565b3480156104a757600080fd5b506008546001600160a01b0316610275565b3480156104c557600080fd5b50610248610cf1565b3480156104da57600080fd5b506102ad6104e9366004611a16565b610d00565b3480156104fa57600080fd5b50610248610d95565b34801561050f57600080fd5b506102ad61051e366004611a49565b610da2565b34801561052f57600080fd5b5061024861053e366004611860565b610dec565b34801561054f57600080fd5b506102cd600e5481565b34801561056557600080fd5b506102ad6105743660046119a4565b610f60565b34801561058557600080fd5b506102ad610594366004611860565b610fa4565b3480156105a557600080fd5b5061021e6105b4366004611ac5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ee57600080fd5b506102ad6105fd366004611aef565b610fd3565b34801561060e57600080fd5b506102ad61061d3660046119fb565b611067565b60006301ffc9a760e01b6001600160e01b03198316148061065357506380ac58cd60e01b6001600160e01b03198316145b8061066e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068390611b12565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90611b12565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611102565b61072e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075582611137565b9050806001600160a01b0316836001600160a01b0316036107895760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107c0576107a381336105b4565b6107c0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600954036108735760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff16156108cb5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161086a565b600e5460015460005403600019016108e4906001611b62565b11156109295760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086a565b600f5433600090815260056020526040908190205467ffffffffffffffff911c16106109975760405162461bcd60e51b815260206004820152601d60248201527f596f7520616c7265616479206d696e74656420796f757220576f6c6621000000604482015260640161086a565b6109a23360016111a6565b6001600955565b6008546001600160a01b031633146109d35760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600b906020840190611729565b5050565b6008546001600160a01b03163314610a145760405162461bcd60e51b815260040161086a90611b7a565b6010805460ff1916911515919091179055565b610a328383836111c0565b505050565b6008546001600160a01b03163314610a615760405162461bcd60e51b815260040161086a90611b7a565b600260095403610ab35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086a565b60026009556000610acc6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b16576040519150601f19603f3d011682016040523d82523d6000602084013e610b1b565b606091505b5050905080610b2957600080fd5b506001600955565b610a3283838360405180602001604052806000815250610da2565b6008546001600160a01b03163314610b765760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600c906020840190611729565b600b8054610b9690611b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc290611b12565b8015610c0f5780601f10610be457610100808354040283529160200191610c0f565b820191906000526020600020905b815481529060010190602001808311610bf257829003601f168201915b505050505081565b600a8054610b9690611b12565b600061066e82611137565b60006001600160a01b038216610c58576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ca85760405162461bcd60e51b815260040161086a90611b7a565b610cb26000611367565b565b6008546001600160a01b03163314610cde5760405162461bcd60e51b815260040161086a90611b7a565b80516109e690600a906020840190611729565b60606003805461068390611b12565b336001600160a01b03831603610d295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610b9690611b12565b610dad8484846111c0565b6001600160a01b0383163b15610de657610dc9848484846113b9565b610de6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610df782611102565b610e5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161086a565b601054610100900460ff161515600003610f0157600c8054610e7c90611b12565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea890611b12565b8015610ef55780601f10610eca57610100808354040283529160200191610ef5565b820191906000526020600020905b815481529060010190602001808311610ed857829003601f168201915b50505050509050919050565b6000610f0b6114a5565b90506000815111610f2b5760405180602001604052806000815250610f59565b80610f35846114b4565b600b604051602001610f4993929190611baf565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161086a90611b7a565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610fce5760405162461bcd60e51b815260040161086a90611b7a565b600f55565b6008546001600160a01b03163314610ffd5760405162461bcd60e51b815260040161086a90611b7a565b600e5460015460005484919003600019016110189190611b62565b111561105d5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086a565b6109e681836111a6565b6008546001600160a01b031633146110915760405162461bcd60e51b815260040161086a90611b7a565b6001600160a01b0381166110f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086a565b6110ff81611367565b50565b600081600111158015611116575060005482105b801561066e575050600090815260046020526040902054600160e01b161590565b6000818060011161118d5760005481101561118d5760008181526004602052604081205490600160e01b8216900361118b575b80600003610f5957506000190160008181526004602052604090205461116a565b505b604051636f96cda160e11b815260040160405180910390fd5b6109e68282604051806020016040528060008152506115b5565b60006111cb82611137565b9050836001600160a01b0316816001600160a01b0316146111fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061121c575061121c85336105b4565b8061123757503361122c84610706565b6001600160a01b0316145b90508061125757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361131f5760018301600081815260046020526040812054900361131d57600054811461131d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ee903390899088908890600401611c72565b6020604051808303816000875af1925050508015611429575060408051601f3d908101601f1916820190925261142691810190611caf565b60015b611487573d808015611457576040519150601f19603f3d011682016040523d82523d6000602084013e61145c565b606091505b50805160000361147f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461068390611b12565b6060816000036114db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150557806114ef81611ccc565b91506114fe9050600a83611cfb565b91506114df565b60008167ffffffffffffffff811115611520576115206118bf565b6040519080825280601f01601f19166020018201604052801561154a576020820181803683370190505b5090505b841561149d5761155f600183611d0f565b915061156c600a86611d26565b611577906030611b62565b60f81b81838151811061158c5761158c611d3a565b60200101906001600160f81b031916908160001a9053506115ae600a86611cfb565b945061154e565b6000546001600160a01b0384166115de57604051622e076360e81b815260040160405180910390fd5b826000036115ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156116d4575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461169d60008784806001019550876113b9565b6116ba576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116525782600054146116cf57600080fd5b611719565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116d5575b506000908155610de69085838684565b82805461173590611b12565b90600052602060002090601f016020900481019282611757576000855561179d565b82601f1061177057805160ff191683800117855561179d565b8280016001018555821561179d579182015b8281111561179d578251825591602001919060010190611782565b506117a99291506117ad565b5090565b5b808211156117a957600081556001016117ae565b6001600160e01b0319811681146110ff57600080fd5b6000602082840312156117ea57600080fd5b8135610f59816117c2565b60005b838110156118105781810151838201526020016117f8565b83811115610de65750506000910152565b600081518084526118398160208601602086016117f5565b601f01601f19169290920160200192915050565b602081526000610f596020830184611821565b60006020828403121561187257600080fd5b5035919050565b80356001600160a01b038116811461189057600080fd5b919050565b600080604083850312156118a857600080fd5b6118b183611879565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f0576118f06118bf565b604051601f8501601f19908116603f01168101908282118183101715611918576119186118bf565b8160405280935085815286868601111561193157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561195d57600080fd5b813567ffffffffffffffff81111561197457600080fd5b8201601f8101841361198557600080fd5b61149d848235602084016118d5565b8035801515811461189057600080fd5b6000602082840312156119b657600080fd5b610f5982611994565b6000806000606084860312156119d457600080fd5b6119dd84611879565b92506119eb60208501611879565b9150604084013590509250925092565b600060208284031215611a0d57600080fd5b610f5982611879565b60008060408385031215611a2957600080fd5b611a3283611879565b9150611a4060208401611994565b90509250929050565b60008060008060808587031215611a5f57600080fd5b611a6885611879565b9350611a7660208601611879565b925060408501359150606085013567ffffffffffffffff811115611a9957600080fd5b8501601f81018713611aaa57600080fd5b611ab9878235602084016118d5565b91505092959194509250565b60008060408385031215611ad857600080fd5b611ae183611879565b9150611a4060208401611879565b60008060408385031215611b0257600080fd5b82359150611a4060208401611879565b600181811c90821680611b2657607f821691505b602082108103611b4657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611b7557611b75611b4c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020611bc28285838a016117f5565b855191840191611bd58184848a016117f5565b8554920191600090600181811c9080831680611bf257607f831692505b8583108103611c0f57634e487b7160e01b85526022600452602485fd5b808015611c235760018114611c3457611c61565b60ff19851688528388019550611c61565b60008b81526020902060005b85811015611c595781548a820152908401908801611c40565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca590830184611821565b9695505050505050565b600060208284031215611cc157600080fd5b8151610f59816117c2565b600060018201611cde57611cde611b4c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611d0a57611d0a611ce5565b500490565b600082821015611d2157611d21611b4c565b500390565b600082611d3557611d35611ce5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c3a7e41519e2904cd12ff405521a6dbbf639b0dfbcac6ed63d5d52a71210963664736f6c634300080e0033

Deployed Bytecode Sourcemap

48021:2498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22673:615;;;;;;;;;;-1:-1:-1;22673:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22673:615:0;;;;;;;;27686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29754:204::-;;;;;;;;;;-1:-1:-1;29754:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29754:204:0;1528:203:1;29214:474:0;;;;;;;;;;-1:-1:-1;29214:474:0;;;;;:::i;:::-;;:::i;:::-;;48555:291;;;:::i;48230:19::-;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;48230:19:0;2173:177:1;50063:100:0;;;;;;;;;;-1:-1:-1;50063:100:0;;;;;:::i;:::-;;:::i;50169:77::-;;;;;;;;;;-1:-1:-1;50169:77:0;;;;;:::i;:::-;;:::i;21727:315::-;;;;;;;;;;-1:-1:-1;49156:1:0;21993:12;21780:7;21977:13;:28;-1:-1:-1;;21977:46:0;21727:315;;30640:170;;;;;;;;;;-1:-1:-1;30640:170:0;;;;;:::i;:::-;;:::i;50254:152::-;;;;;;;;;;;;;:::i;30881:185::-;;;;;;;;;;-1:-1:-1;30881:185:0;;;;;:::i;:::-;;:::i;48291:31::-;;;;;;;;;;;;;;;;49819:132;;;;;;;;;;-1:-1:-1;49819:132:0;;;;;:::i;:::-;;:::i;48359:28::-;;;;;;;;;;-1:-1:-1;48359:28:0;;;;;;;;;;;48152:33;;;;;;;;;;;;;:::i;48329:25::-;;;;;;;;;;-1:-1:-1;48329:25:0;;;;;;;;48119:28;;;;;;;;;;;;;:::i;27475:144::-;;;;;;;;;;-1:-1:-1;27475:144:0;;;;;:::i;:::-;;:::i;23352:224::-;;;;;;;;;;-1:-1:-1;23352:224:0;;;;;:::i;:::-;;:::i;6659:103::-;;;;;;;;;;;;;:::i;49957:100::-;;;;;;;;;;-1:-1:-1;49957:100:0;;;;;:::i;:::-;;:::i;6008:87::-;;;;;;;;;;-1:-1:-1;6081:6:0;;-1:-1:-1;;;;;6081:6:0;6008:87;;27855:104;;;;;;;;;;;;;:::i;30030:308::-;;;;;;;;;;-1:-1:-1;30030:308:0;;;;;:::i;:::-;;:::i;48190:31::-;;;;;;;;;;;;;:::i;31137:396::-;;;;;;;;;;-1:-1:-1;31137:396:0;;;;;:::i;:::-;;:::i;49169:445::-;;;;;;;;;;-1:-1:-1;49169:445:0;;;;;:::i;:::-;;:::i;48254:32::-;;;;;;;;;;;;;;;;49620:81;;;;;;;;;;-1:-1:-1;49620:81:0;;;;;:::i;:::-;;:::i;49707:106::-;;;;;;;;;;-1:-1:-1;49707:106:0;;;;;:::i;:::-;;:::i;30409:164::-;;;;;;;;;;-1:-1:-1;30409:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30530:25:0;;;30506:4;30530:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30409:164;48854:208;;;;;;;;;;-1:-1:-1;48854:208:0;;;;;:::i;:::-;;:::i;6917:201::-;;;;;;;;;;-1:-1:-1;6917:201:0;;;;;:::i;:::-;;:::i;22673:615::-;22758:4;-1:-1:-1;;;;;;;;;23058:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;23135:25:0;;;23058:102;:179;;;-1:-1:-1;;;;;;;;;;23212:25:0;;;23058:179;23038:199;22673:615;-1:-1:-1;;22673:615:0:o;27686:100::-;27740:13;27773:5;27766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27686:100;:::o;29754:204::-;29822:7;29847:16;29855:7;29847;:16::i;:::-;29842:64;;29872:34;;-1:-1:-1;;;29872:34:0;;;;;;;;;;;29842:64;-1:-1:-1;29926:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29926:24:0;;29754:204::o;29214:474::-;29287:13;29319:27;29338:7;29319:18;:27::i;:::-;29287:61;;29369:5;-1:-1:-1;;;;;29363:11:0;:2;-1:-1:-1;;;;;29363:11:0;;29359:48;;29383:24;;-1:-1:-1;;;29383:24:0;;;;;;;;;;;29359:48;45857:10;-1:-1:-1;;;;;29424:28:0;;;29420:175;;29472:44;29489:5;45857:10;30409:164;:::i;29472:44::-;29467:128;;29544:35;;-1:-1:-1;;;29544:35:0;;;;;;;;;;;29467:128;29607:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;29607:29:0;-1:-1:-1;;;;;29607:29:0;;;;;;;;;29652:28;;29607:24;;29652:28;;;;;;;29276:412;29214:474;;:::o;48555:291::-;3106:1;3704:7;;:19;3696:63;;;;-1:-1:-1;;;3696:63:0;;6496:2:1;3696:63:0;;;6478:21:1;6535:2;6515:18;;;6508:30;6574:33;6554:18;;;6547:61;6625:18;;3696:63:0;;;;;;;;;3106:1;3837:7;:18;48614:6:::1;::::0;::::1;;48613:7;48605:43;;;::::0;-1:-1:-1;;;48605:43:0;;6856:2:1;48605:43:0::1;::::0;::::1;6838:21:1::0;6895:2;6875:18;;;6868:30;6934:25;6914:18;;;6907:53;6977:18;;48605:43:0::1;6654:347:1::0;48605:43:0::1;48684:9;::::0;49156:1;21993:12;21780:7;21977:13;:28;-1:-1:-1;;21977:46:0;48663:17:::1;::::0;48679:1:::1;48663:17;:::i;:::-;:30;;48655:63;;;::::0;-1:-1:-1;;;48655:63:0;;7473:2:1;48655:63:0::1;::::0;::::1;7455:21:1::0;7512:2;7492:18;;;7485:30;-1:-1:-1;;;7531:18:1;;;7524:50;7591:18;;48655:63:0::1;7271:344:1::0;48655:63:0::1;48761:12;::::0;48747:10:::1;23719:7:::0;23747:25;;;:18;:25;;18828:2;23747:25;;;;;18691:13;23747:49;;23746:80;48733:40:::1;48725:82;;;::::0;-1:-1:-1;;;48725:82:0;;7822:2:1;48725:82:0::1;::::0;::::1;7804:21:1::0;7861:2;7841:18;;;7834:30;7900:31;7880:18;;;7873:59;7949:18;;48725:82:0::1;7620:353:1::0;48725:82:0::1;48814:26;45857:10:::0;48838:1:::1;48814:9;:26::i;:::-;3062:1:::0;4016:7;:22;48555:291::o;50063:100::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;50135:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50063:100:::0;:::o;50169:77::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;50225:6:::1;:15:::0;;-1:-1:-1;;50225:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50169:77::o;30640:170::-;30774:28;30784:4;30790:2;30794:7;30774:9;:28::i;:::-;30640:170;;;:::o;50254:152::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;3106:1:::1;3704:7;;:19:::0;3696:63:::1;;;::::0;-1:-1:-1;;;3696:63:0;;6496:2:1;3696:63:0::1;::::0;::::1;6478:21:1::0;6535:2;6515:18;;;6508:30;6574:33;6554:18;;;6547:61;6625:18;;3696:63:0::1;6294:355:1::0;3696:63:0::1;3106:1;3837:7;:18:::0;50314:7:::2;50335;6081:6:::0;;-1:-1:-1;;;;;6081:6:0;;6008:87;50335:7:::2;-1:-1:-1::0;;;;;50327:21:0::2;50356;50327:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50313:69;;;50397:2;50389:11;;;::::0;::::2;;-1:-1:-1::0;3062:1:0::1;4016:7;:22:::0;50254:152::o;30881:185::-;31019:39;31036:4;31042:2;31046:7;31019:39;;;;;;;;;;;;:16;:39::i;49819:132::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;49907:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;48152:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48119:28::-;;;;;;;:::i;27475:144::-;27539:7;27582:27;27601:7;27582:18;:27::i;23352:224::-;23416:7;-1:-1:-1;;;;;23440:19:0;;23436:60;;23468:28;;-1:-1:-1;;;23468:28:0;;;;;;;;;;;23436:60;-1:-1:-1;;;;;;23514:25:0;;;;;:18;:25;;;;;;18691:13;23514:54;;23352:224::o;6659:103::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;6724:30:::1;6751:1;6724:18;:30::i;:::-;6659:103::o:0;49957:100::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;50029:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27855:104::-:0;27911:13;27944:7;27937:14;;;;;:::i;30030:308::-;45857:10;-1:-1:-1;;;;;30129:31:0;;;30125:61;;30169:17;;-1:-1:-1;;;30169:17:0;;;;;;;;;;;30125:61;45857:10;30199:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30199:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30199:60:0;;;;;;;;;;30275:55;;540:41:1;;;30199:49:0;;45857:10;30275:55;;513:18:1;30275:55:0;;;;;;;30030:308;;:::o;48190:31::-;;;;;;;:::i;31137:396::-;31304:28;31314:4;31320:2;31324:7;31304:9;:28::i;:::-;-1:-1:-1;;;;;31347:14:0;;;:19;31343:183;;31386:56;31417:4;31423:2;31427:7;31436:5;31386:30;:56::i;:::-;31381:145;;31470:40;;-1:-1:-1;;;31470:40:0;;;;;;;;;;;31381:145;31137:396;;;;:::o;49169:445::-;49243:13;49273:17;49281:8;49273:7;:17::i;:::-;49265:77;;;;-1:-1:-1;;;49265:77:0;;8751:2:1;49265:77:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:45;8935:19;;49265:77:0;8549:411:1;49265:77:0;49355:8;;;;;;;:17;;49367:5;49355:17;49351:64;;49390:17;49383:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49169:445;;;:::o;49351:64::-;49423:28;49454:10;:8;:10::i;:::-;49423:41;;49509:1;49484:14;49478:28;:32;:130;;;;;;;;;;;;;;;;;49546:14;49562:19;:8;:17;:19::i;:::-;49583:9;49529:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49478:130;49471:137;49169:445;-1:-1:-1;;;49169:445:0:o;49620:81::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;49678:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49678:17:0;;::::1;::::0;;;::::1;::::0;;49620:81::o;49707:106::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;49779:12:::1;:28:::0;49707:106::o;48854:208::-;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;48982:9:::1;::::0;49156:1;21993:12;21780:7;21977:13;48967:11;;21977:28;;-1:-1:-1;;21977:46:0;48951:27:::1;;;;:::i;:::-;:40;;48943:73;;;::::0;-1:-1:-1;;;48943:73:0;;7473:2:1;48943:73:0::1;::::0;::::1;7455:21:1::0;7512:2;7492:18;;;7485:30;-1:-1:-1;;;7531:18:1;;;7524:50;7591:18;;48943:73:0::1;7271:344:1::0;48943:73:0::1;49023:33;49033:9;49044:11;49023:9;:33::i;6917:201::-:0;6081:6;;-1:-1:-1;;;;;6081:6:0;45857:10;6228:23;6220:68;;;;-1:-1:-1;;;6220:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7006:22:0;::::1;6998:73;;;::::0;-1:-1:-1;;;6998:73:0;;10825:2:1;6998:73:0::1;::::0;::::1;10807:21:1::0;10864:2;10844:18;;;10837:30;10903:34;10883:18;;;10876:62;-1:-1:-1;;;10954:18:1;;;10947:36;11000:19;;6998:73:0::1;10623:402:1::0;6998:73:0::1;7082:28;7101:8;7082:18;:28::i;:::-;6917:201:::0;:::o;31788:273::-;31845:4;31901:7;49156:1;31882:26;;:66;;;;;31935:13;;31925:7;:23;31882:66;:152;;;;-1:-1:-1;;31986:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31986:43:0;:48;;31788:273::o;24990:1129::-;25057:7;25092;;49156:1;25141:23;25137:915;;25194:13;;25187:4;:20;25183:869;;;25232:14;25249:23;;;:17;:23;;;;;;;-1:-1:-1;;;25338:23:0;;:28;;25334:699;;25857:113;25864:6;25874:1;25864:11;25857:113;;-1:-1:-1;;;25935:6:0;25917:25;;;;:17;:25;;;;;;25857:113;;25334:699;25209:843;25183:869;26080:31;;-1:-1:-1;;;26080:31:0;;;;;;;;;;;32145:104;32214:27;32224:2;32228:8;32214:27;;;;;;;;;;;;:9;:27::i;37027:2515::-;37142:27;37172;37191:7;37172:18;:27::i;:::-;37142:57;;37257:4;-1:-1:-1;;;;;37216:45:0;37232:19;-1:-1:-1;;;;;37216:45:0;;37212:86;;37270:28;;-1:-1:-1;;;37270:28:0;;;;;;;;;;;37212:86;37311:22;45857:10;-1:-1:-1;;;;;37337:27:0;;;;:87;;-1:-1:-1;37381:43:0;37398:4;45857:10;30409:164;:::i;37381:43::-;37337:147;;;-1:-1:-1;45857:10:0;37441:20;37453:7;37441:11;:20::i;:::-;-1:-1:-1;;;;;37441:43:0;;37337:147;37311:174;;37503:17;37498:66;;37529:35;;-1:-1:-1;;;37529:35:0;;;;;;;;;;;37498:66;-1:-1:-1;;;;;37579:16:0;;37575:52;;37604:23;;-1:-1:-1;;;37604:23:0;;;;;;;;;;;37575:52;37756:24;;;;:15;:24;;;;;;;;37749:31;;-1:-1:-1;;;;;;37749:31:0;;;-1:-1:-1;;;;;38148:24:0;;;;;:18;:24;;;;;38146:26;;-1:-1:-1;;38146:26:0;;;38217:22;;;;;;;38215:24;;-1:-1:-1;38215:24:0;;;38510:26;;;:17;:26;;;;;-1:-1:-1;;;38598:15:0;19345:3;38598:41;38556:84;;:128;;38510:174;;;38804:46;;:51;;38800:626;;38908:1;38898:11;;38876:19;39031:30;;;:17;:30;;;;;;:35;;39027:384;;39169:13;;39154:11;:28;39150:242;;39316:30;;;;:17;:30;;;;;:52;;;39150:242;38857:569;38800:626;39473:7;39469:2;-1:-1:-1;;;;;39454:27:0;39463:4;-1:-1:-1;;;;;39454:27:0;;;;;;;;;;;37131:2411;;37027:2515;;;:::o;7278:191::-;7371:6;;;-1:-1:-1;;;;;7388:17:0;;;-1:-1:-1;;;;;;7388:17:0;;;;;;;7421:40;;7371:6;;;7388:17;7371:6;;7421:40;;7352:16;;7421:40;7341:128;7278:191;:::o;43239:716::-;43423:88;;-1:-1:-1;;;43423:88:0;;43402:4;;-1:-1:-1;;;;;43423:45:0;;;;;:88;;45857:10;;43490:4;;43496:7;;43505:5;;43423:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43423:88:0;;;;;;;;-1:-1:-1;;43423:88:0;;;;;;;;;;;;:::i;:::-;;;43419:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43706:6;:13;43723:1;43706:18;43702:235;;43752:40;;-1:-1:-1;;;43752:40:0;;;;;;;;;;;43702:235;43895:6;43889:13;43880:6;43876:2;43872:15;43865:38;43419:529;-1:-1:-1;;;;;;43582:64:0;-1:-1:-1;;;43582:64:0;;-1:-1:-1;43419:529:0;43239:716;;;;;;:::o;50412:104::-;50472:13;50501:9;50494:16;;;;;:::i;7841:723::-;7897:13;8118:5;8127:1;8118:10;8114:53;;-1:-1:-1;;8145:10:0;;;;;;;;;;;;-1:-1:-1;;;8145:10:0;;;;;7841:723::o;8114:53::-;8192:5;8177:12;8233:78;8240:9;;8233:78;;8266:8;;;;:::i;:::-;;-1:-1:-1;8289:10:0;;-1:-1:-1;8297:2:0;8289:10;;:::i;:::-;;;8233:78;;;8321:19;8353:6;8343:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8343:17:0;;8321:39;;8371:154;8378:10;;8371:154;;8405:11;8415:1;8405:11;;:::i;:::-;;-1:-1:-1;8474:10:0;8482:2;8474:5;:10;:::i;:::-;8461:24;;:2;:24;:::i;:::-;8448:39;;8431:6;8438;8431:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8431:56:0;;;;;;;;-1:-1:-1;8502:11:0;8511:2;8502:11;;:::i;:::-;;;8371:154;;32622:2236;32745:20;32768:13;-1:-1:-1;;;;;32796:16:0;;32792:48;;32821:19;;-1:-1:-1;;;32821:19:0;;;;;;;;;;;32792:48;32855:8;32867:1;32855:13;32851:44;;32877:18;;-1:-1:-1;;;32877:18:0;;;;;;;;;;;32851:44;-1:-1:-1;;;;;33444:22:0;;;;;;:18;:22;;;;18828:2;33444:22;;;:70;;33482:31;33470:44;;33444:70;;;33757:31;;;:17;:31;;;;;33850:15;19345:3;33850:41;33808:84;;-1:-1:-1;33928:13:0;;19608:3;33913:56;33808:162;33757:213;;:31;;34051:23;;;;34095:14;:19;34091:635;;34135:313;34166:38;;34191:12;;-1:-1:-1;;;;;34166:38:0;;;34183:1;;34166:38;;34183:1;;34166:38;34232:69;34271:1;34275:2;34279:14;;;;;;34295:5;34232:30;:69::i;:::-;34227:174;;34337:40;;-1:-1:-1;;;34337:40:0;;;;;;;;;;;34227:174;34443:3;34428:12;:18;34135:313;;34529:12;34512:13;;:29;34508:43;;34543:8;;;34508:43;34091:635;;;34592:119;34623:40;;34648:14;;;;;-1:-1:-1;;;;;34623:40:0;;;34640:1;;34623:40;;34640:1;;34623:40;34706:3;34691:12;:18;34592:119;;34091:635;-1:-1:-1;34740:13:0;:28;;;34790:60;;34823:2;34827:12;34841:8;34790:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:254::-;5718:6;5726;5779:2;5767:9;5758:7;5754:23;5750:32;5747:52;;;5795:1;5792;5785:12;5747:52;5831:9;5818:23;5808:33;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;7006:127::-;7067:10;7062:3;7058:20;7055:1;7048:31;7098:4;7095:1;7088:15;7122:4;7119:1;7112:15;7138:128;7178:3;7209:1;7205:6;7202:1;7199:13;7196:39;;;7215:18;;:::i;:::-;-1:-1:-1;7251:9:1;;7138:128::o;7978:356::-;8180:2;8162:21;;;8199:18;;;8192:30;8258:34;8253:2;8238:18;;8231:62;8325:2;8310:18;;7978:356::o;9091:1527::-;9315:3;9353:6;9347:13;9379:4;9392:51;9436:6;9431:3;9426:2;9418:6;9414:15;9392:51;:::i;:::-;9506:13;;9465:16;;;;9528:55;9506:13;9465:16;9550:15;;;9528:55;:::i;:::-;9672:13;;9605:20;;;9645:1;;9732;9754:18;;;;9807;;;;9834:93;;9912:4;9902:8;9898:19;9886:31;;9834:93;9975:2;9965:8;9962:16;9942:18;9939:40;9936:167;;-1:-1:-1;;;10002:33:1;;10058:4;10055:1;10048:15;10088:4;10009:3;10076:17;9936:167;10119:18;10146:110;;;;10270:1;10265:328;;;;10112:481;;10146:110;-1:-1:-1;;10181:24:1;;10167:39;;10226:20;;;;-1:-1:-1;10146:110:1;;10265:328;9038:1;9031:14;;;9075:4;9062:18;;10360:1;10374:169;10388:8;10385:1;10382:15;10374:169;;;10470:14;;10455:13;;;10448:37;10513:16;;;;10405:10;;10374:169;;;10378:3;;10574:8;10567:5;10563:20;10556:27;;10112:481;-1:-1:-1;10609:3:1;;9091:1527;-1:-1:-1;;;;;;;;;;;9091:1527:1:o;11030:489::-;-1:-1:-1;;;;;11299:15:1;;;11281:34;;11351:15;;11346:2;11331:18;;11324:43;11398:2;11383:18;;11376:34;;;11446:3;11441:2;11426:18;;11419:31;;;11224:4;;11467:46;;11493:19;;11485:6;11467:46;:::i;:::-;11459:54;11030:489;-1:-1:-1;;;;;;11030:489:1:o;11524:249::-;11593:6;11646:2;11634:9;11625:7;11621:23;11617:32;11614:52;;;11662:1;11659;11652:12;11614:52;11694:9;11688:16;11713:30;11737:5;11713:30;:::i;11778:135::-;11817:3;11838:17;;;11835:43;;11858:18;;:::i;:::-;-1:-1:-1;11905:1:1;11894:13;;11778:135::o;11918:127::-;11979:10;11974:3;11970:20;11967:1;11960:31;12010:4;12007:1;12000:15;12034:4;12031:1;12024:15;12050:120;12090:1;12116;12106:35;;12121:18;;:::i;:::-;-1:-1:-1;12155:9:1;;12050:120::o;12175:125::-;12215:4;12243:1;12240;12237:8;12234:34;;;12248:18;;:::i;:::-;-1:-1:-1;12285:9:1;;12175:125::o;12305:112::-;12337:1;12363;12353:35;;12368:18;;:::i;:::-;-1:-1:-1;12402:9:1;;12305:112::o;12422:127::-;12483:10;12478:3;12474:20;12471:1;12464:31;12514:4;12511:1;12504:15;12538:4;12535:1;12528:15

Swarm Source

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