ETH Price: $3,106.87 (+1.55%)
Gas: 3 Gwei

Token

THE 2D SAUDIS (2DSAUDIS)
 

Overview

Max Total Supply

5,555 2DSAUDIS

Holders

1,464

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 2DSAUDIS
0xc0f6940d9781fbb975220a15530b09441aae0b41
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:
the2dsaudis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: contracts/the2dsaudis.sol


pragma solidity ^0.8.4;


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

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public FREE_MINT_LIMIT_PER_WALLET;
    uint256 public MAX_MINT_PER_TX;
    bool public IS_SALE_ACTIVE;
    uint256 public FREE_MINT_SUPPLY; 
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintAdressData;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintLimitPerWallet, uint256 maxMintPerTX, bool isSaleActive, uint256 freeMintSupply) ERC721A("THE 2D SAUDIS", "2DSAUDIS"){
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet;
        MAX_MINT_PER_TX = maxMintPerTX;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_SUPPLY = freeMintSupply;

        mintOwner(msg.sender,18);
    }

    function updateFreeMintsAdresses(address minter, uint256 count) private{
        freeMintAdressData[minter] += count;
    }

    function returnCurrentMinterFreeMint(address minter) public view returns (uint256){
        return freeMintAdressData[minter];
    }


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

    function setPrice(uint256 price) external onlyOwner(){
        PRICE = price;
    }

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner{
        require (newMaxSupply < MAX_SUPPLY, "MAX SUPPLY MORE THAN NEW MAX SUPPLY");
        require (newMaxSupply >= _currentIndex, "NEW MAX SUPPLY IS BIGGER OR EQUAL TO CURRENT INDEX");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory baseUri) external onlyOwner {
        require(!METADATA_FROZEN, "METADATA FROZEN");
        BASE_URI = baseUri;
    }

    function setFreeMintLimitPerWallet(uint256 freeMintLimitPerWallet) external onlyOwner{
        FREE_MINT_LIMIT_PER_WALLET = freeMintLimitPerWallet;
    }

    function setSalesActive(bool isSaleActive) external onlyOwner{
        IS_SALE_ACTIVE = isSaleActive;
    }

    function setFreeMintSupply(uint256 freeMintSupply) external onlyOwner{
        FREE_MINT_SUPPLY = freeMintSupply;
    }

    function FreezeMetaData() external onlyOwner{
        METADATA_FROZEN = true;
    }

    // ---------- MINT
    modifier mintRegulation(uint256 _mintAmount){
        require(_mintAmount > 0 && _mintAmount <= MAX_MINT_PER_TX, "MINT AMOUNT IS LESSER 0 OR MINT AMOUT EXCEEDS MINT AMOUNT PER TX");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "ALL SOLD. NO SUPPLY.");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintRegulation(_mintAmount) {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 totalPayable = _mintAmount * PRICE ;

        if (_currentIndex < FREE_MINT_SUPPLY) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintAdressData[msg.sender];
            if (remainingFreeMint > 0) {

                if (_mintAmount >= remainingFreeMint) {
                    totalPayable -= remainingFreeMint * PRICE;
                    updateFreeMintsAdresses(msg.sender, remainingFreeMint);
                } else {
                    totalPayable -= _mintAmount * PRICE;
                    updateFreeMintsAdresses(msg.sender, _mintAmount);
                }
            } 
        }

        require(msg.value >= totalPayable, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

        function mintOwner(address _to, uint256 _mintAmount) public mintRegulation(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

        function withdraw() public onlyOwner{
        require(address(this).balance > 0, "You have zero balance");
        payable(owner()).transfer(address(this).balance);
    }
        
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTX","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"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":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreezeMetaData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"returnCurrentMinterFreeMint","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":"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":"baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintLimitPerWallet","type":"uint256"}],"name":"setFreeMintLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintSupply","type":"uint256"}],"name":"setFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSaleActive","type":"bool"}],"name":"setSalesActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620027b2380380620027b28339810160408190526200003491620006af565b604080518082018252600d81526c5448452032442053415544495360981b602080830191825283518085019094526008845267324453415544495360c01b9084015281519192916200008991600291620005c0565b5080516200009f906003906020840190620005c0565b50506000805550620000b13362000108565b6009879055600a8690558451620000d090600b906020880190620005c0565b50600c849055600d839055600e805460ff1916831515179055600f819055620000fb3360126200015a565b50505050505050620008ac565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806000811180156200016e5750600d548111155b620001e8576040805162461bcd60e51b81526020600482015260248101919091527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e542060448201527f414d4f55542045584345454453204d494e5420414d4f554e542050455220545860648201526084015b60405180910390fd5b600a5481600054620001fb919062000803565b11156200024b5760405162461bcd60e51b815260206004820152601460248201527f414c4c20534f4c442e204e4f20535550504c592e0000000000000000000000006044820152606401620001df565b6008546001600160a01b03163314620002a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001df565b620002b38383620002b8565b505050565b620002da828260405180602001604052806000815250620002de60201b60201c565b5050565b620002b383838360016000546001600160a01b0385166200031157604051622e076360e81b815260040160405180910390fd5b83620003305760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620003e95750620003e9876001600160a01b0316620004b060201b620010931760201c565b1562000469575b60405182906001600160a01b0389169060009060008051602062002792833981519152908290a460018201916200042d90600090899088620004bf565b6200044b576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003f05782600054146200046357600080fd5b6200049f565b5b6040516001830192906001600160a01b0389169060009060008051602062002792833981519152908290a4808214156200046a575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004f6903390899088908890600401620007ad565b602060405180830381600087803b1580156200051157600080fd5b505af192505050801562000544575060408051601f3d908101601f1916820190925262000541918101906200067c565b60015b620005a3573d80801562000575576040519150601f19603f3d011682016040523d82523d6000602084013e6200057a565b606091505b5080516200059b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005ce9062000859565b90600052602060002090601f016020900481019282620005f257600085556200063d565b82601f106200060d57805160ff19168380011785556200063d565b828001600101855582156200063d579182015b828111156200063d57825182559160200191906001019062000620565b506200064b9291506200064f565b5090565b5b808211156200064b576000815560010162000650565b805180151581146200067757600080fd5b919050565b6000602082840312156200068f57600080fd5b81516001600160e01b031981168114620006a857600080fd5b9392505050565b600080600080600080600060e0888a031215620006cb57600080fd5b8751602089015160408a015191985096506001600160401b0380821115620006f257600080fd5b818a0191508a601f8301126200070757600080fd5b8151818111156200071c576200071c62000896565b604051601f8201601f19908116603f0116810190838211818310171562000747576200074762000896565b816040528281528d60208487010111156200076157600080fd5b620007748360208301602088016200082a565b809950505050505060608801519350608088015192506200079860a0890162000666565b915060c0880151905092959891949750929550565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007ec8160a08501602087016200082a565b601f01601f19169190910160a00195945050505050565b600082198211156200082557634e487b7160e01b600052601160045260246000fd5b500190565b60005b83811015620008475781810151838201526020016200082d565b83811115620004aa5750506000910152565b600181811c908216806200086e57607f821691505b602082108114156200089057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ed680620008bc6000396000f3fe6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dc8565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d05565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d3a565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d05565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d05565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d05565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d05565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d05565b600955565b6060600380546106c890611dc8565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d3a565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d66565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d85565b90508015610c9f57808410610c7c57600954610c619082611d66565b610c6b9083611d85565b9150610c7733826114a1565b610c9f565b600954610c899085611d66565b610c939083611d85565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d05565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d05565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d05565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d05565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d05565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d3a565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dc8565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e03565b91506116209050600a83611d52565b9150611601565b60008167ffffffffffffffff81111561164257611642611e74565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d85565b915061168e600a86611e1e565b611699906030611d3a565b60f81b8183815181106116ae576116ae611e5e565b60200101906001600160f81b031916908160001a9053506116d0600a86611d52565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dc8565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e74565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e74565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e8a565b600060208284031215611b8f57600080fd5b8151610fbb81611e8a565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611d9c565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611d9c565b835190830190611c4e818360208801611d9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b602080825260409082018190527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e5420908201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d4d57611d4d611e32565b500190565b600082611d6157611d61611e48565b500490565b6000816000190483118215151615611d8057611d80611e32565b500290565b600082821015611d9757611d97611e32565b500390565b60005b83811015611db7578181015183820152602001611d9f565b83811115610e0f5750506000910152565b600181811c90821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1757611e17611e32565b5060010190565b600082611e2d57611e2d611e48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea2646970667358221220562f7f7791b64a3d9fdbfabee2870a5e405ef872b77a3be31a1e53c12225726464736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51777a7578543742686d48693657726d6532624367714445674b747038616159436b4d6a736b507a4c3139672f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806376d02b7111610118578063a82fe0ac116100a0578063c87b56dd1161006f578063c87b56dd146105af578063e64369d9146105cf578063e985e9c5146105e4578063f2fde38b1461062d578063fdb4953a1461064d57600080fd5b8063a82fe0ac1461052f578063b88d4fde1461054f578063c4c39ed51461056f578063c4e9374d1461058f57600080fd5b80638f7a715f116100e75780638f7a715f146104a757806391b7f5ed146104c757806395d89b41146104e7578063a0712d68146104fc578063a22cb4651461050f57600080fd5b806376d02b71146104435780638d859f3e1461045d5780638da5cb5b146104735780638ecad7211461049157600080fd5b8063343b7b8a1161019b57806355f804b31161016a57806355f804b3146103b85780636352211e146103d857806363eb8bb6146103f857806370a082311461040e578063715018a61461042e57600080fd5b8063343b7b8a1461032d5780633ccfd60b14610363578063408cbf941461037857806342842e0e1461039857600080fd5b806310b0c052116101d757806310b0c052146102ba57806318160ddd146102de57806323b872dd146102f757806332cb6b0c1461031757600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611b60565b610667565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b9565b6040516102359190611c94565b34801561026c57600080fd5b5061028061027b366004611be3565b61074b565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b1b565b61078f565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b50600154600054036102d0565b34801561030357600080fd5b506102b8610312366004611a39565b61081d565b34801561032357600080fd5b506102d0600a5481565b34801561033957600080fd5b506102d06103483660046119eb565b6001600160a01b031660009081526011602052604090205490565b34801561036f57600080fd5b506102b8610828565b34801561038457600080fd5b506102b8610393366004611b1b565b6108df565b3480156103a457600080fd5b506102b86103b3366004611a39565b610998565b3480156103c457600080fd5b506102b86103d3366004611b9a565b6109b3565b3480156103e457600080fd5b506102806103f3366004611be3565b610a39565b34801561040457600080fd5b506102d0600f5481565b34801561041a57600080fd5b506102d06104293660046119eb565b610a4b565b34801561043a57600080fd5b506102b8610a9a565b34801561044f57600080fd5b50600e546102299060ff1681565b34801561046957600080fd5b506102d060095481565b34801561047f57600080fd5b506008546001600160a01b0316610280565b34801561049d57600080fd5b506102d0600d5481565b3480156104b357600080fd5b506102b86104c2366004611be3565b610ad0565b3480156104d357600080fd5b506102b86104e2366004611be3565b610aff565b3480156104f357600080fd5b50610253610b2e565b6102b861050a366004611be3565b610b3d565b34801561051b57600080fd5b506102b861052a366004611af1565b610cf1565b34801561053b57600080fd5b506102b861054a366004611b45565b610d87565b34801561055b57600080fd5b506102b861056a366004611a75565b610dc4565b34801561057b57600080fd5b506102b861058a366004611be3565b610e15565b34801561059b57600080fd5b506102b86105aa366004611be3565b610e44565b3480156105bb57600080fd5b506102536105ca366004611be3565b610f3d565b3480156105db57600080fd5b506102b8610fc2565b3480156105f057600080fd5b506102296105ff366004611a06565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063957600080fd5b506102b86106483660046119eb565b610ffb565b34801561065957600080fd5b506010546102299060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061069857506001600160e01b03198216635b5e139f60e01b145b806106b357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c890611dc8565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490611dc8565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b6000610756826110a2565b610773576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079a82610a39565b9050806001600160a01b0316836001600160a01b031614156107cf5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ef57506107ed81336105ff565b155b1561080d576040516367d9dca160e11b815260040160405180910390fd5b6108188383836110cd565b505050565b610818838383611129565b6008546001600160a01b0316331461085b5760405162461bcd60e51b815260040161085290611d05565b60405180910390fd5b600047116108a35760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b6044820152606401610852565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156108dc573d6000803e3d6000fd5b50565b806000811180156108f25750600d548111155b61090e5760405162461bcd60e51b815260040161085290611ca7565b600a548160005461091f9190611d3a565b11156109645760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b6008546001600160a01b0316331461098e5760405162461bcd60e51b815260040161085290611d05565b6108188383611319565b61081883838360405180602001604052806000815250610dc4565b6008546001600160a01b031633146109dd5760405162461bcd60e51b815260040161085290611d05565b60105460ff1615610a225760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b6044820152606401610852565b8051610a3590600b9060208401906118b0565b5050565b6000610a4482611333565b5192915050565b60006001600160a01b038216610a74576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac45760405162461bcd60e51b815260040161085290611d05565b610ace600061144f565b565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161085290611d05565b600c55565b6008546001600160a01b03163314610b295760405162461bcd60e51b815260040161085290611d05565b600955565b6060600380546106c890611dc8565b80600081118015610b505750600d548111155b610b6c5760405162461bcd60e51b815260040161085290611ca7565b600a5481600054610b7d9190611d3a565b1115610bc25760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b6044820152606401610852565b600e5460ff16610c0a5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610852565b600060095483610c1a9190611d66565b9050600f546000541015610ca15733600090815260116020526040812054600c54610c459190611d85565b90508015610c9f57808410610c7c57600954610c619082611d66565b610c6b9083611d85565b9150610c7733826114a1565b610c9f565b600954610c899085611d66565b610c939083611d85565b9150610c9f33856114a1565b505b80341015610ce75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610852565b6108183384611319565b6001600160a01b038216331415610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610db15760405162461bcd60e51b815260040161085290611d05565b600e805460ff1916911515919091179055565b610dcf848484611129565b6001600160a01b0383163b15158015610df15750610def848484846114d2565b155b15610e0f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161085290611d05565b600f55565b6008546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161085290611d05565b600a548110610ecb5760405162461bcd60e51b815260206004820152602360248201527f4d415820535550504c59204d4f5245205448414e204e4557204d415820535550604482015262504c5960e81b6064820152608401610852565b600054811015610f385760405162461bcd60e51b815260206004820152603260248201527f4e4557204d415820535550504c5920495320424947474552204f52204551554160448201527109840a89e4086aaa4a48a9ca840929c888ab60731b6064820152608401610852565b600a55565b6060610f48826110a2565b610f6557604051630a14c4b560e41b815260040160405180910390fd5b6000610f6f6115ca565b9050805160001415610f905760405180602001604052806000815250610fbb565b80610f9a846115d9565b604051602001610fab929190611c28565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fec5760405162461bcd60e51b815260040161085290611d05565b6010805460ff19166001179055565b6008546001600160a01b031633146110255760405162461bcd60e51b815260040161085290611d05565b6001600160a01b03811661108a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610852565b6108dc8161144f565b6001600160a01b03163b151590565b60008054821080156106b3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113482611333565b9050836001600160a01b031681600001516001600160a01b03161461116b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611189575061118985336105ff565b806111a45750336111998461074b565b6001600160a01b0316145b9050806111c457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111eb57604051633a954ecd60e21b815260040160405180910390fd5b6111f7600084876110cd565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112cd5760005482146112cd578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a358282604051806020016040528060008152506116d7565b60408051606081018252600080825260208201819052918101919091528160005481101561143657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114345780516001600160a01b0316156113ca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142f579392505050565b6113ca565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906114c9908490611d3a565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611507903390899088908890600401611c57565b602060405180830381600087803b15801561152157600080fd5b505af1925050508015611551575060408051601f3d908101601f1916820190925261154e91810190611b7d565b60015b6115ac573d80801561157f576040519150601f19603f3d011682016040523d82523d6000602084013e611584565b606091505b5080516115a4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106c890611dc8565b6060816115fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611627578061161181611e03565b91506116209050600a83611d52565b9150611601565b60008167ffffffffffffffff81111561164257611642611e74565b6040519080825280601f01601f19166020018201604052801561166c576020820181803683370190505b5090505b84156115c257611681600183611d85565b915061168e600a86611e1e565b611699906030611d3a565b60f81b8183815181106116ae576116ae611e5e565b60200101906001600160f81b031916908160001a9053506116d0600a86611d52565b9450611670565b61081883838360016000546001600160a01b03851661170857604051622e076360e81b815260040160405180910390fd5b836117265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156117d857506001600160a01b0387163b15155b15611861575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461182960008884806001019550886114d2565b611846576040516368d2bf6b60e11b815260040160405180910390fd5b808214156117de57826000541461185c57600080fd5b6118a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611862575b50600055611312565b8280546118bc90611dc8565b90600052602060002090601f0160209004810192826118de5760008555611924565b82601f106118f757805160ff1916838001178555611924565b82800160010185558215611924579182015b82811115611924578251825591602001919060010190611909565b50611930929150611934565b5090565b5b808211156119305760008155600101611935565b600067ffffffffffffffff8084111561196457611964611e74565b604051601f8501601f19908116603f0116810190828211818310171561198c5761198c611e74565b816040528093508581528686860111156119a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119d657600080fd5b919050565b803580151581146119d657600080fd5b6000602082840312156119fd57600080fd5b610fbb826119bf565b60008060408385031215611a1957600080fd5b611a22836119bf565b9150611a30602084016119bf565b90509250929050565b600080600060608486031215611a4e57600080fd5b611a57846119bf565b9250611a65602085016119bf565b9150604084013590509250925092565b60008060008060808587031215611a8b57600080fd5b611a94856119bf565b9350611aa2602086016119bf565b925060408501359150606085013567ffffffffffffffff811115611ac557600080fd5b8501601f81018713611ad657600080fd5b611ae587823560208401611949565b91505092959194509250565b60008060408385031215611b0457600080fd5b611b0d836119bf565b9150611a30602084016119db565b60008060408385031215611b2e57600080fd5b611b37836119bf565b946020939093013593505050565b600060208284031215611b5757600080fd5b610fbb826119db565b600060208284031215611b7257600080fd5b8135610fbb81611e8a565b600060208284031215611b8f57600080fd5b8151610fbb81611e8a565b600060208284031215611bac57600080fd5b813567ffffffffffffffff811115611bc357600080fd5b8201601f81018413611bd457600080fd5b6115c284823560208401611949565b600060208284031215611bf557600080fd5b5035919050565b60008151808452611c14816020860160208601611d9c565b601f01601f19169290920160200192915050565b60008351611c3a818460208801611d9c565b835190830190611c4e818360208801611d9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611bfc565b9695505050505050565b602081526000610fbb6020830184611bfc565b602080825260409082018190527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e5420908201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611d4d57611d4d611e32565b500190565b600082611d6157611d61611e48565b500490565b6000816000190483118215151615611d8057611d80611e32565b500290565b600082821015611d9757611d97611e32565b500390565b60005b83811015611db7578181015183820152602001611d9f565b83811115610e0f5750506000910152565b600181811c90821680611ddc57607f821691505b60208210811415611dfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e1757611e17611e32565b5060010190565b600082611e2d57611e2d611e48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108dc57600080fdfea2646970667358221220562f7f7791b64a3d9fdbfabee2870a5e405ef872b77a3be31a1e53c12225726464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000015b300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51777a7578543742686d48693657726d6532624367714445674b747038616159436b4d6a736b507a4c3139672f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 2500000000000000
Arg [1] : maxSupply (uint256): 5555
Arg [2] : baseUri (string): ipfs://QmQwzuxT7BhmHi6Wrme2bCgqDEgKtp8aaYCkMjskPzL19g/
Arg [3] : freeMintLimitPerWallet (uint256): 5
Arg [4] : maxMintPerTX (uint256): 100
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintSupply (uint256): 2222

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000008e1bc9bf04000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d51777a7578543742686d48693657726d65326243677144
Arg [9] : 45674b747038616159436b4d6a736b507a4c3139672f00000000000000000000


Deployed Bytecode Sourcemap

44890:3995:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27076:305;;;;;;;;;;-1:-1:-1;27076:305:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;27076:305:0;;;;;;;;30189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31692:204::-;;;;;;;;;;-1:-1:-1;31692:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;31692:204:0;5037:203:1;31255:371:0;;;;;;;;;;-1:-1:-1;31255:371:0;;;;;:::i;:::-;;:::i;:::-;;45061:41;;;;;;;;;;;;;;;;;;;10063:25:1;;;10051:2;10036:18;45061:41:0;9917:177:1;26325:303:0;;;;;;;;;;-1:-1:-1;26579:12:0;;26369:7;26563:13;:28;26325:303;;32557:170;;;;;;;;;;-1:-1:-1;32557:170:0;;;;;:::i;:::-;;:::i;44999:25::-;;;;;;;;;;;;;;;;45978:134;;;;;;;;;;-1:-1:-1;45978:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;46078:26:0;46052:7;46078:26;;;:18;:26;;;;;;;45978:134;48699:173;;;;;;;;;;;;;:::i;48543:144::-;;;;;;;;;;-1:-1:-1;48543:144:0;;;;;:::i;:::-;;:::i;32798:185::-;;;;;;;;;;-1:-1:-1;32798:185:0;;;;;:::i;:::-;;:::i;46637:154::-;;;;;;;;;;-1:-1:-1;46637:154:0;;;;;:::i;:::-;;:::i;29997:125::-;;;;;;;;;;-1:-1:-1;29997:125:0;;;;;:::i;:::-;;:::i;45179:31::-;;;;;;;;;;;;;;;;27445:206;;;;;;;;;;-1:-1:-1;27445:206:0;;;;;:::i;:::-;;:::i;4834:103::-;;;;;;;;;;;;;:::i;45146:26::-;;;;;;;;;;-1:-1:-1;45146:26:0;;;;;;;;44972:20;;;;;;;;;;;;;;;;4183:87;;;;;;;;;;-1:-1:-1;4256:6:0;;-1:-1:-1;;;;;4256:6:0;4183:87;;45109:30;;;;;;;;;;;;;;;;46799:155;;;;;;;;;;-1:-1:-1;46799:155:0;;;;;:::i;:::-;;:::i;46239:85::-;;;;;;;;;;-1:-1:-1;46239:85:0;;;;;:::i;:::-;;:::i;30358:104::-;;;;;;;;;;;;;:::i;47619:912::-;;;;;;:::i;:::-;;:::i;31968:287::-;;;;;;;;;;-1:-1:-1;31968:287:0;;;;;:::i;:::-;;:::i;46962:109::-;;;;;;;;;;-1:-1:-1;46962:109:0;;;;;:::i;:::-;;:::i;33054:369::-;;;;;;;;;;-1:-1:-1;33054:369:0;;;;;:::i;:::-;;:::i;47079:121::-;;;;;;;;;;-1:-1:-1;47079:121:0;;;;;:::i;:::-;;:::i;46332:297::-;;;;;;;;;;-1:-1:-1;46332:297:0;;;;;:::i;:::-;;:::i;30533:318::-;;;;;;;;;;-1:-1:-1;30533:318:0;;;;;:::i;:::-;;:::i;47208:85::-;;;;;;;;;;;;;:::i;32326:164::-;;;;;;;;;;-1:-1:-1;32326:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32447:25:0;;;32423:4;32447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32326:164;5092:201;;;;;;;;;;-1:-1:-1;5092:201:0;;;;;:::i;:::-;;:::i;45218:27::-;;;;;;;;;;-1:-1:-1;45218:27:0;;;;;;;;27076:305;27178:4;-1:-1:-1;;;;;;27215:40:0;;-1:-1:-1;;;27215:40:0;;:105;;-1:-1:-1;;;;;;;27272:48:0;;-1:-1:-1;;;27272:48:0;27215:105;:158;;;-1:-1:-1;;;;;;;;;;17076:40:0;;;27337:36;27195:178;27076:305;-1:-1:-1;;27076:305:0:o;30189:100::-;30243:13;30276:5;30269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30189:100;:::o;31692:204::-;31760:7;31785:16;31793:7;31785;:16::i;:::-;31780:64;;31810:34;;-1:-1:-1;;;31810:34:0;;;;;;;;;;;31780:64;-1:-1:-1;31864:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31864:24:0;;31692:204::o;31255:371::-;31328:13;31344:24;31360:7;31344:15;:24::i;:::-;31328:40;;31389:5;-1:-1:-1;;;;;31383:11:0;:2;-1:-1:-1;;;;;31383:11:0;;31379:48;;;31403:24;;-1:-1:-1;;;31403:24:0;;;;;;;;;;;31379:48;2987:10;-1:-1:-1;;;;;31444:21:0;;;;;;:63;;-1:-1:-1;31470:37:0;31487:5;2987:10;32326:164;:::i;31470:37::-;31469:38;31444:63;31440:138;;;31531:35;;-1:-1:-1;;;31531:35:0;;;;;;;;;;;31440:138;31590:28;31599:2;31603:7;31612:5;31590:8;:28::i;:::-;31317:309;31255:371;;:::o;32557:170::-;32691:28;32701:4;32707:2;32711:7;32691:9;:28::i;48699:173::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;;;;;;;;;48778:1:::1;48754:21;:25;48746:59;;;::::0;-1:-1:-1;;;48746:59:0;;7516:2:1;48746:59:0::1;::::0;::::1;7498:21:1::0;7555:2;7535:18;;;7528:30;-1:-1:-1;;;7574:18:1;;;7567:51;7635:18;;48746:59:0::1;7314:345:1::0;48746:59:0::1;4256:6:::0;;48816:48:::1;::::0;-1:-1:-1;;;;;4256:6:0;;;;48842:21:::1;48816:48:::0;::::1;;;::::0;::::1;::::0;;;48842:21;4256:6;48816:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48699:173::o:0;48543:144::-;48618:11;47402:1;47388:11;:15;:49;;;;;47422:15;;47407:11;:30;;47388:49;47380:126;;;;-1:-1:-1;;;47380:126:0;;;;;;;:::i;:::-;47556:10;;47541:11;47525:13;;:27;;;;:::i;:::-;:41;;47517:74;;;;-1:-1:-1;;;47517:74:0;;6356:2:1;47517:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47517:74:0;6154:344:1;47517:74:0;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23:::1;4395:68;;;;-1:-1:-1::0;;;4395:68:0::1;;;;;;;:::i;:::-;48652:27:::2;48662:3;48667:11;48652:9;:27::i;32798:185::-:0;32936:39;32953:4;32959:2;32963:7;32936:39;;;;;;;;;;;;:16;:39::i;46637:154::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;46719:15:::1;::::0;::::1;;46718:16;46710:44;;;::::0;-1:-1:-1;;;46710:44:0;;9008:2:1;46710:44:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;-1:-1:-1;;;9066:18:1;;;9059:45;9121:18;;46710:44:0::1;8806:339:1::0;46710:44:0::1;46765:18:::0;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46637:154:::0;:::o;29997:125::-;30061:7;30088:21;30101:7;30088:12;:21::i;:::-;:26;;29997:125;-1:-1:-1;;29997:125:0:o;27445:206::-;27509:7;-1:-1:-1;;;;;27533:19:0;;27529:60;;27561:28;;-1:-1:-1;;;27561:28:0;;;;;;;;;;;27529:60;-1:-1:-1;;;;;;27615:19:0;;;;;:12;:19;;;;;:27;;;;27445:206::o;4834:103::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;4899:30:::1;4926:1;4899:18;:30::i;:::-;4834:103::o:0;46799:155::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;46895:26:::1;:51:::0;46799:155::o;46239:85::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;46303:5:::1;:13:::0;46239:85::o;30358:104::-;30414:13;30447:7;30440:14;;;;;:::i;47619:912::-;47684:11;47402:1;47388:11;:15;:49;;;;;47422:15;;47407:11;:30;;47388:49;47380:126;;;;-1:-1:-1;;;47380:126:0;;;;;;;:::i;:::-;47556:10;;47541:11;47525:13;;:27;;;;:::i;:::-;:41;;47517:74;;;;-1:-1:-1;;;47517:74:0;;6356:2:1;47517:74:0;;;6338:21:1;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:1;;;6407:50;6474:18;;47517:74:0;6154:344:1;47517:74:0;47716:14:::1;::::0;::::1;;47708:46;;;::::0;-1:-1:-1;;;47708:46:0;;8660:2:1;47708:46:0::1;::::0;::::1;8642:21:1::0;8699:2;8679:18;;;8672:30;-1:-1:-1;;;8718:18:1;;;8711:49;8777:18;;47708:46:0::1;8458:343:1::0;47708:46:0::1;47767:20;47804:5;;47790:11;:19;;;;:::i;:::-;47767:42;;47843:16;;47827:13;;:32;47823:584;;;47952:10;47876:25;47933:30:::0;;;:18:::1;:30;::::0;;;;;47904:26:::1;::::0;:59:::1;::::0;47933:30;47904:59:::1;:::i;:::-;47876:87:::0;-1:-1:-1;47982:21:0;;47978:417:::1;;48045:17;48030:11;:32;48026:354;;48123:5;::::0;48103:25:::1;::::0;:17;:25:::1;:::i;:::-;48087:41;::::0;;::::1;:::i;:::-;;;48151:54;48175:10;48187:17;48151:23;:54::i;:::-;48026:354;;;48284:5;::::0;48270:19:::1;::::0;:11;:19:::1;:::i;:::-;48254:35;::::0;;::::1;:::i;:::-;;;48312:48;48336:10;48348:11;48312:23;:48::i;:::-;47861:546;47823:584;48440:12;48427:9;:25;;48419:57;;;::::0;-1:-1:-1;;;48419:57:0;;9771:2:1;48419:57:0::1;::::0;::::1;9753:21:1::0;9810:2;9790:18;;;9783:30;-1:-1:-1;;;9829:18:1;;;9822:49;9888:18;;48419:57:0::1;9569:343:1::0;48419:57:0::1;48489:34;48499:10;48511:11;48489:9;:34::i;31968:287::-:0;-1:-1:-1;;;;;32067:24:0;;2987:10;32067:24;32063:54;;;32100:17;;-1:-1:-1;;;32100:17:0;;;;;;;;;;;32063:54;2987:10;32130:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32130:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32130:53:0;;;;;;;;;;32199:48;;5878:41:1;;;32130:42:0;;2987:10;32199:48;;5851:18:1;32199:48:0;;;;;;;31968:287;;:::o;46962:109::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;47034:14:::1;:29:::0;;-1:-1:-1;;47034:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46962:109::o;33054:369::-;33221:28;33231:4;33237:2;33241:7;33221:9;:28::i;:::-;-1:-1:-1;;;;;33264:13:0;;7179:19;:23;;33264:76;;;;;33284:56;33315:4;33321:2;33325:7;33334:5;33284:30;:56::i;:::-;33283:57;33264:76;33260:156;;;33364:40;;-1:-1:-1;;;33364:40:0;;;;;;;;;;;33260:156;33054:369;;;;:::o;47079:121::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;47159:16:::1;:33:::0;47079:121::o;46332:297::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;46431:10:::1;;46416:12;:25;46407:74;;;::::0;-1:-1:-1;;;46407:74:0;;7112:2:1;46407:74:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:33;7284:19;;46407:74:0::1;6910:399:1::0;46407:74:0::1;46517:13;;46501:12;:29;;46492:93;;;::::0;-1:-1:-1;;;46492:93:0;;9352:2:1;46492:93:0::1;::::0;::::1;9334:21:1::0;9391:2;9371:18;;;9364:30;9430:34;9410:18;;;9403:62;-1:-1:-1;;;9481:18:1;;;9474:48;9539:19;;46492:93:0::1;9150:414:1::0;46492:93:0::1;46596:10;:25:::0;46332:297::o;30533:318::-;30606:13;30637:16;30645:7;30637;:16::i;:::-;30632:59;;30662:29;;-1:-1:-1;;;30662:29:0;;;;;;;;;;;30632:59;30704:21;30728:10;:8;:10::i;:::-;30704:34;;30762:7;30756:21;30781:1;30756:26;;:87;;;;;;;;;;;;;;;;;30809:7;30818:18;:7;:16;:18::i;:::-;30792:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30756:87;30749:94;30533:318;-1:-1:-1;;;30533:318:0:o;47208:85::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;47263:15:::1;:22:::0;;-1:-1:-1;;47263:22:0::1;47281:4;47263:22;::::0;;47208:85::o;5092:201::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5181:22:0;::::1;5173:73;;;::::0;-1:-1:-1;;;5173:73:0;;6705:2:1;5173:73:0::1;::::0;::::1;6687:21:1::0;6744:2;6724:18;;;6717:30;6783:34;6763:18;;;6756:62;-1:-1:-1;;;6834:18:1;;;6827:36;6880:19;;5173:73:0::1;6503:402:1::0;5173:73:0::1;5257:28;5276:8;5257:18;:28::i;6884:326::-:0;-1:-1:-1;;;;;7179:19:0;;:23;;;6884:326::o;33678:174::-;33735:4;33799:13;;33789:7;:23;33759:85;;;;-1:-1:-1;;33817:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33817:27:0;;;;33816:28;;33678:174::o;41835:196::-;41950:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41950:29:0;-1:-1:-1;;;;;41950:29:0;;;;;;;;;41995:28;;41950:24;;41995:28;;;;;;;41835:196;;;:::o;36778:2130::-;36893:35;36931:21;36944:7;36931:12;:21::i;:::-;36893:59;;36991:4;-1:-1:-1;;;;;36969:26:0;:13;:18;;;-1:-1:-1;;;;;36969:26:0;;36965:67;;37004:28;;-1:-1:-1;;;37004:28:0;;;;;;;;;;;36965:67;37045:22;2987:10;-1:-1:-1;;;;;37071:20:0;;;;:73;;-1:-1:-1;37108:36:0;37125:4;2987:10;32326:164;:::i;37108:36::-;37071:126;;;-1:-1:-1;2987:10:0;37161:20;37173:7;37161:11;:20::i;:::-;-1:-1:-1;;;;;37161:36:0;;37071:126;37045:153;;37216:17;37211:66;;37242:35;;-1:-1:-1;;;37242:35:0;;;;;;;;;;;37211:66;-1:-1:-1;;;;;37292:16:0;;37288:52;;37317:23;;-1:-1:-1;;;37317:23:0;;;;;;;;;;;37288:52;37461:35;37478:1;37482:7;37491:4;37461:8;:35::i;:::-;-1:-1:-1;;;;;37792:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37792:31:0;;;;;;;-1:-1:-1;;37792:31:0;;;;;;;37838:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37838:29:0;;;;;;;;;;;37918:20;;;:11;:20;;;;;;37953:18;;-1:-1:-1;;;;;;37986:49:0;;;;-1:-1:-1;;;38019:15:0;37986:49;;;;;;;;;;38309:11;;38369:24;;;;;38412:13;;37918:20;;38369:24;;38412:13;38408:384;;38622:13;;38607:11;:28;38603:174;;38660:20;;38729:28;;;;38703:54;;-1:-1:-1;;;38703:54:0;-1:-1:-1;;;;;;38703:54:0;;;-1:-1:-1;;;;;38660:20:0;;38703:54;;;;38603:174;37767:1036;;;38839:7;38835:2;-1:-1:-1;;;;;38820:27:0;38829:4;-1:-1:-1;;;;;38820:27:0;;;;;;;;;;;38858:42;36882:2026;;36778:2130;;;:::o;33860:104::-;33929:27;33939:2;33943:8;33929:27;;;;;;;;;;;;:9;:27::i;28826:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28937:7:0;29020:13;;29013:4;:20;28982:886;;;29054:31;29088:17;;;:11;:17;;;;;;;;;29054:51;;;;;;;;;-1:-1:-1;;;;;29054:51:0;;;;-1:-1:-1;;;29054:51:0;;;;;;;;;;;-1:-1:-1;;;29054:51:0;;;;;;;;;;;;;;29124:729;;29174:14;;-1:-1:-1;;;;;29174:28:0;;29170:101;;29238:9;28826:1109;-1:-1:-1;;;28826:1109:0:o;29170:101::-;-1:-1:-1;;;29613:6:0;29658:17;;;;:11;:17;;;;;;;;;29646:29;;;;;;;;;-1:-1:-1;;;;;29646:29:0;;;;;-1:-1:-1;;;29646:29:0;;;;;;;;;;;-1:-1:-1;;;29646:29:0;;;;;;;;;;;;;29706:28;29702:109;;29774:9;28826:1109;-1:-1:-1;;;28826:1109:0:o;29702:109::-;29573:261;;;29035:833;28982:886;29896:31;;-1:-1:-1;;;29896:31:0;;;;;;;;;;;5453:191;5546:6;;;-1:-1:-1;;;;;5563:17:0;;;-1:-1:-1;;;;;;5563:17:0;;;;;;;5596:40;;5546:6;;;5563:17;5546:6;;5596:40;;5527:16;;5596:40;5516:128;5453:191;:::o;45845:125::-;-1:-1:-1;;;;;45927:26:0;;;;;;:18;:26;;;;;:35;;45957:5;;45927:26;:35;;45957:5;;45927:35;:::i;:::-;;;;-1:-1:-1;;;;45845:125:0:o;42523:667::-;42707:72;;-1:-1:-1;;;42707:72:0;;42686:4;;-1:-1:-1;;;;;42707:36:0;;;;;:72;;2987:10;;42758:4;;42764:7;;42773:5;;42707:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42707:72:0;;;;;;;;-1:-1:-1;;42707:72:0;;;;;;;;;;;;:::i;:::-;;;42703:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42941:13:0;;42937:235;;42987:40;;-1:-1:-1;;;42987:40:0;;;;;;;;;;;42937:235;43130:6;43124:13;43115:6;43111:2;43107:15;43100:38;42703:480;-1:-1:-1;;;;;;42826:55:0;-1:-1:-1;;;42826:55:0;;-1:-1:-1;42703:480:0;42523:667;;;;;;:::o;46122:108::-;46182:13;46214:8;46207:15;;;;;:::i;469:723::-;525:13;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;34327:163;34450:32;34456:2;34460:8;34470:5;34477:4;34888:20;34911:13;-1:-1:-1;;;;;34939:16:0;;34935:48;;34964:19;;-1:-1:-1;;;34964:19:0;;;;;;;;;;;34935:48;34998:13;34994:44;;35020:18;;-1:-1:-1;;;35020:18:0;;;;;;;;;;;34994:44;-1:-1:-1;;;;;35389:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35448:49:0;;35389:44;;;;;;;;35448:49;;;;-1:-1:-1;;35389:44:0;;;;;;35448:49;;;;;;;;;;;;;;;;35514:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35564:66:0;;;;-1:-1:-1;;;35614:15:0;35564:66;;;;;;;;;;35514:25;35711:23;;;35755:4;:23;;;;-1:-1:-1;;;;;;35763:13:0;;7179:19;:23;;35763:15;35751:641;;;35799:314;35830:38;;35855:12;;-1:-1:-1;;;;;35830:38:0;;;35847:1;;35830:38;;35847:1;;35830:38;35896:69;35935:1;35939:2;35943:14;;;;;;35959:5;35896:30;:69::i;:::-;35891:174;;36001:40;;-1:-1:-1;;;36001:40:0;;;;;;;;;;;35891:174;36108:3;36092:12;:19;;35799:314;;36194:12;36177:13;;:29;36173:43;;36208:8;;;36173:43;35751:641;;;36257:120;36288:40;;36313:14;;;;;-1:-1:-1;;;;;36288:40:0;;;36305:1;;36288:40;;36305:1;;36288:40;36372:3;36356:12;:19;;36257:120;;35751:641;-1:-1:-1;36406:13:0;:28;36456:60;33054:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;7664:428::-;7866:2;7848:21;;;7905:2;7885:18;;;7878:30;;;7944:34;7924:18;;;7917:62;8015:34;8010:2;7995:18;;7988:62;8082:3;8067:19;;7664:428::o;8097:356::-;8299:2;8281:21;;;8318:18;;;8311:30;8377:34;8372:2;8357:18;;8350:62;8444:2;8429:18;;8097:356::o;10099:128::-;10139:3;10170:1;10166:6;10163:1;10160:13;10157:39;;;10176:18;;:::i;:::-;-1:-1:-1;10212:9:1;;10099:128::o;10232:120::-;10272:1;10298;10288:35;;10303:18;;:::i;:::-;-1:-1:-1;10337:9:1;;10232:120::o;10357:168::-;10397:7;10463:1;10459;10455:6;10451:14;10448:1;10445:21;10440:1;10433:9;10426:17;10422:45;10419:71;;;10470:18;;:::i;:::-;-1:-1:-1;10510:9:1;;10357:168::o;10530:125::-;10570:4;10598:1;10595;10592:8;10589:34;;;10603:18;;:::i;:::-;-1:-1:-1;10640:9:1;;10530:125::o;10660:258::-;10732:1;10742:113;10756:6;10753:1;10750:13;10742:113;;;10832:11;;;10826:18;10813:11;;;10806:39;10778:2;10771:10;10742:113;;;10873:6;10870:1;10867:13;10864:48;;;-1:-1:-1;;10908:1:1;10890:16;;10883:27;10660:258::o;10923:380::-;11002:1;10998:12;;;;11045;;;11066:61;;11120:4;11112:6;11108:17;11098:27;;11066:61;11173:2;11165:6;11162:14;11142:18;11139:38;11136:161;;;11219:10;11214:3;11210:20;11207:1;11200:31;11254:4;11251:1;11244:15;11282:4;11279:1;11272:15;11136:161;;10923:380;;;:::o;11308:135::-;11347:3;-1:-1:-1;;11368:17:1;;11365:43;;;11388:18;;:::i;:::-;-1:-1:-1;11435:1:1;11424:13;;11308:135::o;11448:112::-;11480:1;11506;11496:35;;11511:18;;:::i;:::-;-1:-1:-1;11545:9:1;;11448:112::o;11565:127::-;11626:10;11621:3;11617:20;11614:1;11607:31;11657:4;11654:1;11647:15;11681:4;11678:1;11671:15;11697:127;11758:10;11753:3;11749:20;11746:1;11739:31;11789:4;11786:1;11779:15;11813:4;11810:1;11803:15;11829:127;11890:10;11885:3;11881:20;11878:1;11871:31;11921:4;11918:1;11911:15;11945:4;11942:1;11935:15;11961:127;12022:10;12017:3;12013:20;12010:1;12003:31;12053:4;12050:1;12043:15;12077:4;12074:1;12067:15;12093:131;-1:-1:-1;;;;;;12167:32:1;;12157:43;;12147:71;;12214:1;12211;12204:12

Swarm Source

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