ETH Price: $3,110.18 (+1.23%)
Gas: 6 Gwei

Token

Skool Dayz (SKOOL)
 

Overview

Max Total Supply

5,555 SKOOL

Holders

1,108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 SKOOL
0xc994b3A4B2f9869f48c165C509B5b8bED0B29E9B
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:
SkoolDayz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-29
*/

//SPDX-License-Identifier: UNLICENSED
//SKOOL DAYZ

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC2981).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 {}
}
pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
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);
    }
}

interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

contract SkoolDayz is ERC721A, IERC2981, Ownable {
  using Strings for uint256;
  string public baseURI = "https://storage.googleapis.com/skooldayz/json/";
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 5555;
  uint256 public mintStartTime = 0;
  mapping(address => uint256) public totalMinted;
  mapping(address => bool) internal admins;
  constructor(
  ) ERC721A("Skool Dayz", "SKOOL") {
    admins[0x3C6DBc42A18343e3CDDb5896bF09BB13BdE8D071] = true;
    admins[0x61afB7081CFAc891a5498702626F94932fbbEac3] = true;
    admins[0xA37BFe36d292EeFE8B93A7Cd8Fb9e83F12645C42] = true;
  }
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "You need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded");
    if (msg.sender != owner()) {
        if (admins[msg.sender] != true) {
          require(mintStartTime>0, "Skool Day'z mint has not started");
          require(_mintAmount <= (5 - totalMinted[msg.sender]), "Max mint amount exceeded");
        }
    }
    _safeMint(msg.sender, _mintAmount);
    totalMinted[msg.sender] = totalMinted[msg.sender]+_mintAmount;
  }
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
  }
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  function startMint() public onlyOwner {
    mintStartTime = block.timestamp;
  }
  function royaltyInfo(uint256 tokenId, uint256 salePrice)
    public
    pure
    override
    returns (address receiver, uint256 royaltyAmount)
  {
    return (0xd6ab62d56f6DA9a47c528949510061a33726DD5b,(3 * salePrice)/100);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"pure","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60e0604052602e60808181529062001e8260a03960099062000022908262000253565b506000600a556115b3600b556000600c553480156200004057600080fd5b506040518060400160405280600a81526020016929b5b7b7b6102230bcbd60b11b8152506040518060400160405280600581526020016414d2d3d3d360da1b815250816002908162000093919062000253565b506003620000a2828262000253565b5050600160005550620000b5336200015c565b600e6020527fc359ce652b74bc8d61768e04d51e7b86e0e7bcbdcfec1b1069949c6a1d5ee0268054600160ff1991821681179092557f1670dd9bfda7fd1525ba104f07eefe535e0c50faa7962667b3ddedfbcbaa03a5805482168317905573a37bfe36d292eefe8b93a7cd8fb9e83f12645c426000527f29798fe7ae7b24892442b5611501bed2696bce873c546ba4ba32c0f0c72512a2805490911690911790556200031f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001d957607f821691505b602082108103620001fa57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024e57600081815260208120601f850160051c81016020861015620002295750805b601f850160051c820191505b818110156200024a5782815560010162000235565b5050505b505050565b81516001600160401b038111156200026f576200026f620001ae565b6200028781620002808454620001c4565b8462000200565b602080601f831160018114620002bf5760008415620002a65750858301515b600019600386901b1c1916600185901b1785556200024a565b600085815260208120601f198616915b82811015620002f057888601518255948401946001909101908401620002cf565b50858210156200030f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b53806200032f6000396000f3fe6080604052600436106101805760003560e01c80636c0360eb116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461045e578063d5abeb011461047e578063e985e9c514610494578063f2fde38b146104b457600080fd5b8063a0712d681461040b578063a22cb4651461041e578063b88d4fde1461043e57600080fd5b80636c0360eb1461037857806370a082311461038d578063715018a6146103ad5780638da5cb5b146103c2578063931e2e49146103e057806395d89b41146103f657600080fd5b806318160ddd1161013e5780632be09561116101185780632be095611461030357806342842e0e1461031857806355f804b3146103385780636352211e1461035857600080fd5b806318160ddd1461028757806323b872dd146102a45780632a55205a146102c457600080fd5b80623d47901461018557806301ffc9a7146101c557806306fdde03146101f5578063081812fc14610217578063095ea7b31461024f57806313faede614610271575b600080fd5b34801561019157600080fd5b506101b26101a03660046114d6565b600d6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156101d157600080fd5b506101e56101e036600461150e565b6104d4565b60405190151581526020016101bc565b34801561020157600080fd5b5061020a610541565b6040516101bc919061157b565b34801561022357600080fd5b5061023761023236600461158e565b6105d3565b6040516001600160a01b0390911681526020016101bc565b34801561025b57600080fd5b5061026f61026a3660046115a7565b610617565b005b34801561027d57600080fd5b506101b2600a5481565b34801561029357600080fd5b5060015460005403600019016101b2565b3480156102b057600080fd5b5061026f6102bf3660046115d1565b6106a4565b3480156102d057600080fd5b506102e46102df36600461160d565b6106af565b604080516001600160a01b0390931683526020830191909152016101bc565b34801561030f57600080fd5b5061026f6106e9565b34801561032457600080fd5b5061026f6103333660046115d1565b610722565b34801561034457600080fd5b5061026f6103533660046116bb565b61073d565b34801561036457600080fd5b5061023761037336600461158e565b610777565b34801561038457600080fd5b5061020a610789565b34801561039957600080fd5b506101b26103a83660046114d6565b610817565b3480156103b957600080fd5b5061026f610866565b3480156103ce57600080fd5b506008546001600160a01b0316610237565b3480156103ec57600080fd5b506101b2600c5481565b34801561040257600080fd5b5061020a61089c565b61026f61041936600461158e565b6108ab565b34801561042a57600080fd5b5061026f610439366004611704565b610a89565b34801561044a57600080fd5b5061026f610459366004611740565b610b1e565b34801561046a57600080fd5b5061020a61047936600461158e565b610b6f565b34801561048a57600080fd5b506101b2600b5481565b3480156104a057600080fd5b506101e56104af3660046117bc565b610c10565b3480156104c057600080fd5b5061026f6104cf3660046114d6565b610c3e565b60006001600160e01b031982166380ac58cd60e01b148061050557506001600160e01b03198216635b5e139f60e01b145b8061052057506001600160e01b0319821663152a902d60e11b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610550906117ef565b80601f016020809104026020016040519081016040528092919081815260200182805461057c906117ef565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82610cd9565b6105fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062282610777565b9050806001600160a01b0316836001600160a01b0316036106565760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067657506106748133610c10565b155b15610694576040516367d9dca160e11b815260040160405180910390fd5b61069f838383610d12565b505050565b61069f838383610d6e565b60008073d6ab62d56f6da9a47c528949510061a33726dd5b60646106d485600361183f565b6106de919061186c565b915091509250929050565b6008546001600160a01b0316331461071c5760405162461bcd60e51b815260040161071390611880565b60405180910390fd5b42600c55565b61069f83838360405180602001604052806000815250610b1e565b6008546001600160a01b031633146107675760405162461bcd60e51b815260040161071390611880565b60096107738282611903565b5050565b600061078282610f5e565b5192915050565b60098054610796906117ef565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906117ef565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60006001600160a01b038216610840576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108905760405162461bcd60e51b815260040161071390611880565b61089a6000611087565b565b606060038054610550906117ef565b60006108c06001546000546000199190030190565b9050600082116109125760405162461bcd60e51b815260206004820152601f60248201527f596f75206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610713565b600b5461091f83836119c3565b11156109665760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610713565b6008546001600160a01b03163314610a5057336000908152600e602052604090205460ff161515600114610a50576000600c54116109e65760405162461bcd60e51b815260206004820181905260248201527f536b6f6f6c20446179277a206d696e7420686173206e6f7420737461727465646044820152606401610713565b336000908152600d6020526040902054610a019060056119d6565b821115610a505760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e7420657863656564656400000000000000006044820152606401610713565b610a5a33836110d9565b336000908152600d6020526040902054610a759083906119c3565b336000908152600d60205260409020555050565b336001600160a01b03831603610ab25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b29848484610d6e565b6001600160a01b0383163b15158015610b4b5750610b49848484846110f3565b155b15610b69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7a82610cd9565b610bde5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610713565b6009610be9836111df565b604051602001610bfa9291906119e9565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161071390611880565b6001600160a01b038116610ccd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b610cd681611087565b50565b600081600111158015610ced575060005482105b801561053b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d7982610f5e565b9050836001600160a01b031681600001516001600160a01b031614610db05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dce5750610dce8533610c10565b80610de9575033610dde846105d3565b6001600160a01b0316145b905080610e0957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3057604051633a954ecd60e21b815260040160405180910390fd5b610e3c60008487610d12565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610f12576000548214610f12578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015610f8e575060005481105b1561106e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061106c5780516001600160a01b031615611002579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611067579392505050565b611002565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107738282604051806020016040528060008152506112e0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611128903390899088908890600401611a80565b6020604051808303816000875af1925050508015611163575060408051601f3d908101601f1916820190925261116091810190611abd565b60015b6111c1573d808015611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b5080516000036111b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611230578061121a81611ada565b91506112299050600a8361186c565b915061120a565b60008167ffffffffffffffff81111561124b5761124b61162f565b6040519080825280601f01601f191660200182016040528015611275576020820181803683370190505b5090505b84156111d75761128a6001836119d6565b9150611297600a86611af3565b6112a29060306119c3565b60f81b8183815181106112b7576112b7611b07565b60200101906001600160f81b031916908160001a9053506112d9600a8661186c565b9450611279565b61069f83838360016000546001600160a01b03851661131157604051622e076360e81b815260040160405180910390fd5b836000036113325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113e457506001600160a01b0387163b15155b1561146c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461143560008884806001019550886110f3565b611452576040516368d2bf6b60e11b815260040160405180910390fd5b8082036113ea57826000541461146757600080fd5b6114b1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361146d575b50600055610f57565b80356001600160a01b03811681146114d157600080fd5b919050565b6000602082840312156114e857600080fd5b6114f1826114ba565b9392505050565b6001600160e01b031981168114610cd657600080fd5b60006020828403121561152057600080fd5b81356114f1816114f8565b60005b8381101561154657818101518382015260200161152e565b50506000910152565b6000815180845261156781602086016020860161152b565b601f01601f19169290920160200192915050565b6020815260006114f1602083018461154f565b6000602082840312156115a057600080fd5b5035919050565b600080604083850312156115ba57600080fd5b6115c3836114ba565b946020939093013593505050565b6000806000606084860312156115e657600080fd5b6115ef846114ba565b92506115fd602085016114ba565b9150604084013590509250925092565b6000806040838503121561162057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116605761166061162f565b604051601f8501601f19908116603f011681019082821181831017156116885761168861162f565b816040528093508581528686860111156116a157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116cd57600080fd5b813567ffffffffffffffff8111156116e457600080fd5b8201601f810184136116f557600080fd5b6111d784823560208401611645565b6000806040838503121561171757600080fd5b611720836114ba565b91506020830135801515811461173557600080fd5b809150509250929050565b6000806000806080858703121561175657600080fd5b61175f856114ba565b935061176d602086016114ba565b925060408501359150606085013567ffffffffffffffff81111561179057600080fd5b8501601f810187136117a157600080fd5b6117b087823560208401611645565b91505092959194509250565b600080604083850312156117cf57600080fd5b6117d8836114ba565b91506117e6602084016114ba565b90509250929050565b600181811c9082168061180357607f821691505b60208210810361182357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761053b5761053b611829565b634e487b7160e01b600052601260045260246000fd5b60008261187b5761187b611856565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561069f57600081815260208120601f850160051c810160208610156118dc5750805b601f850160051c820191505b818110156118fb578281556001016118e8565b505050505050565b815167ffffffffffffffff81111561191d5761191d61162f565b6119318161192b84546117ef565b846118b5565b602080601f831160018114611966576000841561194e5750858301515b600019600386901b1c1916600185901b1785556118fb565b600085815260208120601f198616915b8281101561199557888601518255948401946001909101908401611976565b50858210156119b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561053b5761053b611829565b8181038181111561053b5761053b611829565b60008084546119f7816117ef565b60018281168015611a0f5760018114611a2457611a53565b60ff1984168752821515830287019450611a53565b8860005260208060002060005b85811015611a4a5781548a820152908401908201611a31565b50505082870194505b505050508351611a6781836020880161152b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab39083018461154f565b9695505050505050565b600060208284031215611acf57600080fd5b81516114f1816114f8565b600060018201611aec57611aec611829565b5060010190565b600082611b0257611b02611856565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205d60e5013bd52e03252175cca5a6cbc5e174519a09280eda8dbc67394962b48564736f6c6343000811003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f736b6f6f6c6461797a2f6a736f6e2f

Deployed Bytecode

0x6080604052600436106101805760003560e01c80636c0360eb116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461045e578063d5abeb011461047e578063e985e9c514610494578063f2fde38b146104b457600080fd5b8063a0712d681461040b578063a22cb4651461041e578063b88d4fde1461043e57600080fd5b80636c0360eb1461037857806370a082311461038d578063715018a6146103ad5780638da5cb5b146103c2578063931e2e49146103e057806395d89b41146103f657600080fd5b806318160ddd1161013e5780632be09561116101185780632be095611461030357806342842e0e1461031857806355f804b3146103385780636352211e1461035857600080fd5b806318160ddd1461028757806323b872dd146102a45780632a55205a146102c457600080fd5b80623d47901461018557806301ffc9a7146101c557806306fdde03146101f5578063081812fc14610217578063095ea7b31461024f57806313faede614610271575b600080fd5b34801561019157600080fd5b506101b26101a03660046114d6565b600d6020526000908152604090205481565b6040519081526020015b60405180910390f35b3480156101d157600080fd5b506101e56101e036600461150e565b6104d4565b60405190151581526020016101bc565b34801561020157600080fd5b5061020a610541565b6040516101bc919061157b565b34801561022357600080fd5b5061023761023236600461158e565b6105d3565b6040516001600160a01b0390911681526020016101bc565b34801561025b57600080fd5b5061026f61026a3660046115a7565b610617565b005b34801561027d57600080fd5b506101b2600a5481565b34801561029357600080fd5b5060015460005403600019016101b2565b3480156102b057600080fd5b5061026f6102bf3660046115d1565b6106a4565b3480156102d057600080fd5b506102e46102df36600461160d565b6106af565b604080516001600160a01b0390931683526020830191909152016101bc565b34801561030f57600080fd5b5061026f6106e9565b34801561032457600080fd5b5061026f6103333660046115d1565b610722565b34801561034457600080fd5b5061026f6103533660046116bb565b61073d565b34801561036457600080fd5b5061023761037336600461158e565b610777565b34801561038457600080fd5b5061020a610789565b34801561039957600080fd5b506101b26103a83660046114d6565b610817565b3480156103b957600080fd5b5061026f610866565b3480156103ce57600080fd5b506008546001600160a01b0316610237565b3480156103ec57600080fd5b506101b2600c5481565b34801561040257600080fd5b5061020a61089c565b61026f61041936600461158e565b6108ab565b34801561042a57600080fd5b5061026f610439366004611704565b610a89565b34801561044a57600080fd5b5061026f610459366004611740565b610b1e565b34801561046a57600080fd5b5061020a61047936600461158e565b610b6f565b34801561048a57600080fd5b506101b2600b5481565b3480156104a057600080fd5b506101e56104af3660046117bc565b610c10565b3480156104c057600080fd5b5061026f6104cf3660046114d6565b610c3e565b60006001600160e01b031982166380ac58cd60e01b148061050557506001600160e01b03198216635b5e139f60e01b145b8061052057506001600160e01b0319821663152a902d60e11b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610550906117ef565b80601f016020809104026020016040519081016040528092919081815260200182805461057c906117ef565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82610cd9565b6105fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062282610777565b9050806001600160a01b0316836001600160a01b0316036106565760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067657506106748133610c10565b155b15610694576040516367d9dca160e11b815260040160405180910390fd5b61069f838383610d12565b505050565b61069f838383610d6e565b60008073d6ab62d56f6da9a47c528949510061a33726dd5b60646106d485600361183f565b6106de919061186c565b915091509250929050565b6008546001600160a01b0316331461071c5760405162461bcd60e51b815260040161071390611880565b60405180910390fd5b42600c55565b61069f83838360405180602001604052806000815250610b1e565b6008546001600160a01b031633146107675760405162461bcd60e51b815260040161071390611880565b60096107738282611903565b5050565b600061078282610f5e565b5192915050565b60098054610796906117ef565b80601f01602080910402602001604051908101604052809291908181526020018280546107c2906117ef565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60006001600160a01b038216610840576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108905760405162461bcd60e51b815260040161071390611880565b61089a6000611087565b565b606060038054610550906117ef565b60006108c06001546000546000199190030190565b9050600082116109125760405162461bcd60e51b815260206004820152601f60248201527f596f75206e65656420746f206d696e74206174206c656173742031204e4654006044820152606401610713565b600b5461091f83836119c3565b11156109665760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610713565b6008546001600160a01b03163314610a5057336000908152600e602052604090205460ff161515600114610a50576000600c54116109e65760405162461bcd60e51b815260206004820181905260248201527f536b6f6f6c20446179277a206d696e7420686173206e6f7420737461727465646044820152606401610713565b336000908152600d6020526040902054610a019060056119d6565b821115610a505760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e7420657863656564656400000000000000006044820152606401610713565b610a5a33836110d9565b336000908152600d6020526040902054610a759083906119c3565b336000908152600d60205260409020555050565b336001600160a01b03831603610ab25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b29848484610d6e565b6001600160a01b0383163b15158015610b4b5750610b49848484846110f3565b155b15610b69576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b7a82610cd9565b610bde5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610713565b6009610be9836111df565b604051602001610bfa9291906119e9565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161071390611880565b6001600160a01b038116610ccd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610713565b610cd681611087565b50565b600081600111158015610ced575060005482105b801561053b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d7982610f5e565b9050836001600160a01b031681600001516001600160a01b031614610db05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dce5750610dce8533610c10565b80610de9575033610dde846105d3565b6001600160a01b0316145b905080610e0957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3057604051633a954ecd60e21b815260040160405180910390fd5b610e3c60008487610d12565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610f12576000548214610f12578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015610f8e575060005481105b1561106e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061106c5780516001600160a01b031615611002579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611067579392505050565b611002565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107738282604051806020016040528060008152506112e0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611128903390899088908890600401611a80565b6020604051808303816000875af1925050508015611163575060408051601f3d908101601f1916820190925261116091810190611abd565b60015b6111c1573d808015611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b5080516000036111b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611230578061121a81611ada565b91506112299050600a8361186c565b915061120a565b60008167ffffffffffffffff81111561124b5761124b61162f565b6040519080825280601f01601f191660200182016040528015611275576020820181803683370190505b5090505b84156111d75761128a6001836119d6565b9150611297600a86611af3565b6112a29060306119c3565b60f81b8183815181106112b7576112b7611b07565b60200101906001600160f81b031916908160001a9053506112d9600a8661186c565b9450611279565b61069f83838360016000546001600160a01b03851661131157604051622e076360e81b815260040160405180910390fd5b836000036113325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113e457506001600160a01b0387163b15155b1561146c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461143560008884806001019550886110f3565b611452576040516368d2bf6b60e11b815260040160405180910390fd5b8082036113ea57826000541461146757600080fd5b6114b1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361146d575b50600055610f57565b80356001600160a01b03811681146114d157600080fd5b919050565b6000602082840312156114e857600080fd5b6114f1826114ba565b9392505050565b6001600160e01b031981168114610cd657600080fd5b60006020828403121561152057600080fd5b81356114f1816114f8565b60005b8381101561154657818101518382015260200161152e565b50506000910152565b6000815180845261156781602086016020860161152b565b601f01601f19169290920160200192915050565b6020815260006114f1602083018461154f565b6000602082840312156115a057600080fd5b5035919050565b600080604083850312156115ba57600080fd5b6115c3836114ba565b946020939093013593505050565b6000806000606084860312156115e657600080fd5b6115ef846114ba565b92506115fd602085016114ba565b9150604084013590509250925092565b6000806040838503121561162057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116605761166061162f565b604051601f8501601f19908116603f011681019082821181831017156116885761168861162f565b816040528093508581528686860111156116a157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116cd57600080fd5b813567ffffffffffffffff8111156116e457600080fd5b8201601f810184136116f557600080fd5b6111d784823560208401611645565b6000806040838503121561171757600080fd5b611720836114ba565b91506020830135801515811461173557600080fd5b809150509250929050565b6000806000806080858703121561175657600080fd5b61175f856114ba565b935061176d602086016114ba565b925060408501359150606085013567ffffffffffffffff81111561179057600080fd5b8501601f810187136117a157600080fd5b6117b087823560208401611645565b91505092959194509250565b600080604083850312156117cf57600080fd5b6117d8836114ba565b91506117e6602084016114ba565b90509250929050565b600181811c9082168061180357607f821691505b60208210810361182357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761053b5761053b611829565b634e487b7160e01b600052601260045260246000fd5b60008261187b5761187b611856565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561069f57600081815260208120601f850160051c810160208610156118dc5750805b601f850160051c820191505b818110156118fb578281556001016118e8565b505050505050565b815167ffffffffffffffff81111561191d5761191d61162f565b6119318161192b84546117ef565b846118b5565b602080601f831160018114611966576000841561194e5750858301515b600019600386901b1c1916600185901b1785556118fb565b600085815260208120601f198616915b8281101561199557888601518255948401946001909101908401611976565b50858210156119b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561053b5761053b611829565b8181038181111561053b5761053b611829565b60008084546119f7816117ef565b60018281168015611a0f5760018114611a2457611a53565b60ff1984168752821515830287019450611a53565b8860005260208060002060005b85811015611a4a5781548a820152908401908201611a31565b50505082870194505b505050508351611a6781836020880161152b565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab39083018461154f565b9695505050505050565b600060208284031215611acf57600080fd5b81516114f1816114f8565b600060018201611aec57611aec611829565b5060010190565b600082611b0257611b02611856565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205d60e5013bd52e03252175cca5a6cbc5e174519a09280eda8dbc67394962b48564736f6c63430008110033

Deployed Bytecode Sourcemap

47280:1906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47548:46;;;;;;;;;;-1:-1:-1;47548:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;529:25:1;;;517:2;502:18;47548:46:0;;;;;;;;24407:363;;;;;;;;;;-1:-1:-1;24407:363:0;;;;;:::i;:::-;;:::i;:::-;;;1116:14:1;;1109:22;1091:41;;1079:2;1064:18;24407:363:0;951:187:1;27578:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29081:204::-;;;;;;;;;;-1:-1:-1;29081:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;29081:204:0;2084:203:1;28644:371:0;;;;;;;;;;-1:-1:-1;28644:371:0;;;;;:::i;:::-;;:::i;:::-;;47441:29;;;;;;;;;;;;;;;;23656:303;;;;;;;;;;-1:-1:-1;23513:1:0;23910:12;23700:7;23894:13;:28;-1:-1:-1;;23894:46:0;23656:303;;29946:170;;;;;;;;;;-1:-1:-1;29946:170:0;;;;;:::i;:::-;;:::i;48948:235::-;;;;;;;;;;-1:-1:-1;48948:235:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3329:32:1;;;3311:51;;3393:2;3378:18;;3371:34;;;;3284:18;48948:235:0;3137:274:1;48862:82:0;;;;;;;;;;;;;:::i;30187:185::-;;;;;;;;;;-1:-1:-1;30187:185:0;;;;;:::i;:::-;;:::i;48760:98::-;;;;;;;;;;-1:-1:-1;48760:98:0;;;;;:::i;:::-;;:::i;27386:125::-;;;;;;;;;;-1:-1:-1;27386:125:0;;;;;:::i;:::-;;:::i;47364:72::-;;;;;;;;;;;;;:::i;24834:206::-;;;;;;;;;;-1:-1:-1;24834:206:0;;;;;:::i;:::-;;:::i;45511:103::-;;;;;;;;;;;;;:::i;44859:87::-;;;;;;;;;;-1:-1:-1;44932:6:0;;-1:-1:-1;;;;;44932:6:0;44859:87;;47511:32;;;;;;;;;;;;;;;;27747:104;;;;;;;;;;;;;:::i;47895:605::-;;;;;;:::i;:::-;;:::i;29357:287::-;;;;;;;;;;-1:-1:-1;29357:287:0;;;;;:::i;:::-;;:::i;30443:369::-;;;;;;;;;;-1:-1:-1;30443:369:0;;;;;:::i;:::-;;:::i;48504:252::-;;;;;;;;;;-1:-1:-1;48504:252:0;;;;;:::i;:::-;;:::i;47475:31::-;;;;;;;;;;;;;;;;29715:164;;;;;;;;;;-1:-1:-1;29715:164:0;;;;;:::i;:::-;;:::i;45769:201::-;;;;;;;;;;-1:-1:-1;45769:201:0;;;;;:::i;:::-;;:::i;24407:363::-;24509:4;-1:-1:-1;;;;;;24546:40:0;;-1:-1:-1;;;24546:40:0;;:105;;-1:-1:-1;;;;;;;24603:48:0;;-1:-1:-1;;;24603:48:0;24546:105;:163;;;-1:-1:-1;;;;;;;24668:41:0;;-1:-1:-1;;;24668:41:0;24546:163;:216;;;-1:-1:-1;;;;;;;;;;14441:40:0;;;24726:36;24526:236;24407:363;-1:-1:-1;;24407:363:0:o;27578:100::-;27632:13;27665:5;27658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27578:100;:::o;29081:204::-;29149:7;29174:16;29182:7;29174;:16::i;:::-;29169:64;;29199:34;;-1:-1:-1;;;29199:34:0;;;;;;;;;;;29169:64;-1:-1:-1;29253:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29253:24:0;;29081:204::o;28644:371::-;28717:13;28733:24;28749:7;28733:15;:24::i;:::-;28717:40;;28778:5;-1:-1:-1;;;;;28772:11:0;:2;-1:-1:-1;;;;;28772:11:0;;28768:48;;28792:24;;-1:-1:-1;;;28792:24:0;;;;;;;;;;;28768:48;2882:10;-1:-1:-1;;;;;28833:21:0;;;;;;:63;;-1:-1:-1;28859:37:0;28876:5;2882:10;29715:164;:::i;28859:37::-;28858:38;28833:63;28829:138;;;28920:35;;-1:-1:-1;;;28920:35:0;;;;;;;;;;;28829:138;28979:28;28988:2;28992:7;29001:5;28979:8;:28::i;:::-;28706:309;28644:371;;:::o;29946:170::-;30080:28;30090:4;30096:2;30100:7;30080:9;:28::i;48948:235::-;49055:16;;49114:42;49173:3;49158:13;49162:9;49158:1;:13;:::i;:::-;49157:19;;;;:::i;:::-;49106:71;;;;48948:235;;;;;:::o;48862:82::-;44932:6;;-1:-1:-1;;;;;44932:6:0;2882:10;45079:23;45071:69;;;;-1:-1:-1;;;45071:69:0;;;;;;;:::i;:::-;;;;;;;;;48923:15:::1;48907:13;:31:::0;48862:82::o;30187:185::-;30325:39;30342:4;30348:2;30352:7;30325:39;;;;;;;;;;;;:16;:39::i;48760:98::-;44932:6;;-1:-1:-1;;;;;44932:6:0;2882:10;45079:23;45071:69;;;;-1:-1:-1;;;45071:69:0;;;;;;;:::i;:::-;48831:7:::1;:21;48841:11:::0;48831:7;:21:::1;:::i;:::-;;48760:98:::0;:::o;27386:125::-;27450:7;27477:21;27490:7;27477:12;:21::i;:::-;:26;;27386:125;-1:-1:-1;;27386:125:0:o;47364:72::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24834:206::-;24898:7;-1:-1:-1;;;;;24922:19:0;;24918:60;;24950:28;;-1:-1:-1;;;24950:28:0;;;;;;;;;;;24918:60;-1:-1:-1;;;;;;25004:19:0;;;;;:12;:19;;;;;:27;;;;24834:206::o;45511:103::-;44932:6;;-1:-1:-1;;;;;44932:6:0;2882:10;45079:23;45071:69;;;;-1:-1:-1;;;45071:69:0;;;;;;;:::i;:::-;45576:30:::1;45603:1;45576:18;:30::i;:::-;45511:103::o:0;27747:104::-;27803:13;27836:7;27829:14;;;;;:::i;47895:605::-;47952:14;47969:13;23513:1;23910:12;23700:7;23894:13;-1:-1:-1;;23894:28:0;;;:46;;23656:303;47969:13;47952:30;;48011:1;47997:11;:15;47989:59;;;;-1:-1:-1;;;47989:59:0;;9644:2:1;47989:59:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:33;9702:18;;;9695:61;9773:18;;47989:59:0;9442:355:1;47989:59:0;48087:9;;48063:20;48072:11;48063:6;:20;:::i;:::-;:33;;48055:68;;;;-1:-1:-1;;;48055:68:0;;10134:2:1;48055:68:0;;;10116:21:1;10173:2;10153:18;;;10146:30;-1:-1:-1;;;10192:18:1;;;10185:52;10254:18;;48055:68:0;9932:346:1;48055:68:0;44932:6;;-1:-1:-1;;;;;44932:6:0;48134:10;:21;48130:256;;48179:10;48172:18;;;;:6;:18;;;;;;;;:26;;:18;:26;48168:211;;48235:1;48221:13;;:15;48213:60;;;;-1:-1:-1;;;48213:60:0;;10485:2:1;48213:60:0;;;10467:21:1;;;10504:18;;;10497:30;10563:34;10543:18;;;10536:62;10615:18;;48213:60:0;10283:356:1;48213:60:0;48326:10;48314:23;;;;:11;:23;;;;;;48310:27;;:1;:27;:::i;:::-;48294:11;:44;;48286:81;;;;-1:-1:-1;;;48286:81:0;;10979:2:1;48286:81:0;;;10961:21:1;11018:2;10998:18;;;10991:30;11057:26;11037:18;;;11030:54;11101:18;;48286:81:0;10777:348:1;48286:81:0;48392:34;48402:10;48414:11;48392:9;:34::i;:::-;48471:10;48459:23;;;;:11;:23;;;;;;:35;;48483:11;;48459:35;:::i;:::-;48445:10;48433:23;;;;:11;:23;;;;;:61;-1:-1:-1;;47895:605:0:o;29357:287::-;2882:10;-1:-1:-1;;;;;29456:24:0;;;29452:54;;29489:17;;-1:-1:-1;;;29489:17:0;;;;;;;;;;;29452:54;2882:10;29519:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29519:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29519:53:0;;;;;;;;;;29588:48;;1091:41:1;;;29519:42:0;;2882:10;29588:48;;1064:18:1;29588:48:0;;;;;;;29357:287;;:::o;30443:369::-;30610:28;30620:4;30626:2;30630:7;30610:9;:28::i;:::-;-1:-1:-1;;;;;30653:13:0;;4544:19;:23;;30653:76;;;;;30673:56;30704:4;30710:2;30714:7;30723:5;30673:30;:56::i;:::-;30672:57;30653:76;30649:156;;;30753:40;;-1:-1:-1;;;30753:40:0;;;;;;;;;;;30649:156;30443:369;;;;:::o;48504:252::-;48577:13;48607:16;48615:7;48607;:16::i;:::-;48599:75;;;;-1:-1:-1;;;48599:75:0;;11332:2:1;48599:75:0;;;11314:21:1;11371:2;11351:18;;;11344:30;11410:34;11390:18;;;11383:62;-1:-1:-1;;;11461:18:1;;;11454:45;11516:19;;48599:75:0;11130:411:1;48599:75:0;48712:7;48721:18;:7;:16;:18::i;:::-;48695:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48681:69;;48504:252;;;:::o;29715:164::-;-1:-1:-1;;;;;29836:25:0;;;29812:4;29836:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29715:164::o;45769:201::-;44932:6;;-1:-1:-1;;;;;44932:6:0;2882:10;45079:23;45071:69;;;;-1:-1:-1;;;45071:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45858:22:0;::::1;45850:73;;;::::0;-1:-1:-1;;;45850:73:0;;12940:2:1;45850:73:0::1;::::0;::::1;12922:21:1::0;12979:2;12959:18;;;12952:30;13018:34;12998:18;;;12991:62;-1:-1:-1;;;13069:18:1;;;13062:36;13115:19;;45850:73:0::1;12738:402:1::0;45850:73:0::1;45934:28;45953:8;45934:18;:28::i;:::-;45769:201:::0;:::o;31067:187::-;31124:4;31167:7;23513:1;31148:26;;:53;;;;;31188:13;;31178:7;:23;31148:53;:98;;;;-1:-1:-1;;31219:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31219:27:0;;;;31218:28;;31067:187::o;39237:196::-;39352:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39352:29:0;-1:-1:-1;;;;;39352:29:0;;;;;;;;;39397:28;;39352:24;;39397:28;;;;;;;39237:196;;;:::o;34180:2130::-;34295:35;34333:21;34346:7;34333:12;:21::i;:::-;34295:59;;34393:4;-1:-1:-1;;;;;34371:26:0;:13;:18;;;-1:-1:-1;;;;;34371:26:0;;34367:67;;34406:28;;-1:-1:-1;;;34406:28:0;;;;;;;;;;;34367:67;34447:22;2882:10;-1:-1:-1;;;;;34473:20:0;;;;:73;;-1:-1:-1;34510:36:0;34527:4;2882:10;29715:164;:::i;34510:36::-;34473:126;;;-1:-1:-1;2882:10:0;34563:20;34575:7;34563:11;:20::i;:::-;-1:-1:-1;;;;;34563:36:0;;34473:126;34447:153;;34618:17;34613:66;;34644:35;;-1:-1:-1;;;34644:35:0;;;;;;;;;;;34613:66;-1:-1:-1;;;;;34694:16:0;;34690:52;;34719:23;;-1:-1:-1;;;34719:23:0;;;;;;;;;;;34690:52;34863:35;34880:1;34884:7;34893:4;34863:8;:35::i;:::-;-1:-1:-1;;;;;35194:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35194:31:0;;;;;;;-1:-1:-1;;35194:31:0;;;;;;;35240:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35240:29:0;;;;;;;;;;;35320:20;;;:11;:20;;;;;;35355:18;;-1:-1:-1;;;;;;35388:49:0;;;;-1:-1:-1;;;35421:15:0;35388:49;;;;;;;;;;35711:11;;35771:24;;;;;35814:13;;35320:20;;35771:24;;35814:13;35810:384;;36024:13;;36009:11;:28;36005:174;;36062:20;;36131:28;;;;36105:54;;-1:-1:-1;;;36105:54:0;-1:-1:-1;;;;;;36105:54:0;;;-1:-1:-1;;;;;36062:20:0;;36105:54;;;;36005:174;35169:1036;;;36241:7;36237:2;-1:-1:-1;;;;;36222:27:0;36231:4;-1:-1:-1;;;;;36222:27:0;;;;;;;;;;;36260:42;34284:2026;;34180:2130;;;:::o;26215:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26326:7:0;;23513:1;26375:23;;:47;;;;;26409:13;;26402:4;:20;26375:47;26371:886;;;26443:31;26477:17;;;:11;:17;;;;;;;;;26443:51;;;;;;;;;-1:-1:-1;;;;;26443:51:0;;;;-1:-1:-1;;;26443:51:0;;;;;;;;;;;-1:-1:-1;;;26443:51:0;;;;;;;;;;;;;;26513:729;;26563:14;;-1:-1:-1;;;;;26563:28:0;;26559:101;;26627:9;26215:1109;-1:-1:-1;;;26215:1109:0:o;26559:101::-;-1:-1:-1;;;27002:6:0;27047:17;;;;:11;:17;;;;;;;;;27035:29;;;;;;;;;-1:-1:-1;;;;;27035:29:0;;;;;-1:-1:-1;;;27035:29:0;;;;;;;;;;;-1:-1:-1;;;27035:29:0;;;;;;;;;;;;;27095:28;27091:109;;27163:9;26215:1109;-1:-1:-1;;;26215:1109:0:o;27091:109::-;26962:261;;;26424:833;26371:886;27285:31;;-1:-1:-1;;;27285:31:0;;;;;;;;;;;46130:191;46223:6;;;-1:-1:-1;;;;;46240:17:0;;;-1:-1:-1;;;;;;46240:17:0;;;;;;;46273:40;;46223:6;;;46240:17;46223:6;;46273:40;;46204:16;;46273:40;46193:128;46130:191;:::o;31262:104::-;31331:27;31341:2;31345:8;31331:27;;;;;;;;;;;;:9;:27::i;39925:667::-;40109:72;;-1:-1:-1;;;40109:72:0;;40088:4;;-1:-1:-1;;;;;40109:36:0;;;;;:72;;2882:10;;40160:4;;40166:7;;40175:5;;40109:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40109:72:0;;;;;;;;-1:-1:-1;;40109:72:0;;;;;;;;;;;;:::i;:::-;;;40105:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40343:6;:13;40360:1;40343:18;40339:235;;40389:40;;-1:-1:-1;;;40389:40:0;;;;;;;;;;;40339:235;40532:6;40526:13;40517:6;40513:2;40509:15;40502:38;40105:480;-1:-1:-1;;;;;;40228:55:0;-1:-1:-1;;;40228:55:0;;-1:-1:-1;40105:480:0;39925:667;;;;;;:::o;364:723::-;420:13;641:5;650:1;641:10;637:53;;-1:-1:-1;;668:10:0;;;;;;;;;;;;-1:-1:-1;;;668:10:0;;;;;364:723::o;637:53::-;715:5;700:12;756:78;763:9;;756:78;;789:8;;;;:::i;:::-;;-1:-1:-1;812:10:0;;-1:-1:-1;820:2:0;812:10;;:::i;:::-;;;756:78;;;844:19;876:6;866:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;866:17:0;;844:39;;894:154;901:10;;894:154;;928:11;938:1;928:11;;:::i;:::-;;-1:-1:-1;997:10:0;1005:2;997:5;:10;:::i;:::-;984:24;;:2;:24;:::i;:::-;971:39;;954:6;961;954:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;954:56:0;;;;;;;;-1:-1:-1;1025:11:0;1034:2;1025:11;;:::i;:::-;;;894:154;;31729:163;31852:32;31858:2;31862:8;31872:5;31879:4;32290:20;32313:13;-1:-1:-1;;;;;32341:16:0;;32337:48;;32366:19;;-1:-1:-1;;;32366:19:0;;;;;;;;;;;32337:48;32400:8;32412:1;32400:13;32396:44;;32422:18;;-1:-1:-1;;;32422:18:0;;;;;;;;;;;32396:44;-1:-1:-1;;;;;32791:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32850:49:0;;32791:44;;;;;;;;32850:49;;;;-1:-1:-1;;32791:44:0;;;;;;32850:49;;;;;;;;;;;;;;;;32916:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32966:66:0;;;;-1:-1:-1;;;33016:15:0;32966:66;;;;;;;;;;32916:25;33113:23;;;33157:4;:23;;;;-1:-1:-1;;;;;;33165:13:0;;4544:19;:23;;33165:15;33153:641;;;33201:314;33232:38;;33257:12;;-1:-1:-1;;;;;33232:38:0;;;33249:1;;33232:38;;33249:1;;33232:38;33298:69;33337:1;33341:2;33345:14;;;;;;33361:5;33298:30;:69::i;:::-;33293:174;;33403:40;;-1:-1:-1;;;33403:40:0;;;;;;;;;;;33293:174;33510:3;33494:12;:19;33201:314;;33596:12;33579:13;;:29;33575:43;;33610:8;;;33575:43;33153:641;;;33659:120;33690:40;;33715:14;;;;;-1:-1:-1;;;;;33690:40:0;;;33707:1;;33690:40;;33707:1;;33690:40;33774:3;33758:12;:19;33659:120;;33153:641;-1:-1:-1;33808:13:0;:28;33858:60;30443:369;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;565:131::-;-1:-1:-1;;;;;;639:32:1;;629:43;;619:71;;686:1;683;676:12;701:245;759:6;812:2;800:9;791:7;787:23;783:32;780:52;;;828:1;825;818:12;780:52;867:9;854:23;886:30;910:5;886:30;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:248::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;-1:-1:-1;;3052:23:1;;;3122:2;3107:18;;;3094:32;;-1:-1:-1;2884:248:1:o;3416:127::-;3477:10;3472:3;3468:20;3465:1;3458:31;3508:4;3505:1;3498:15;3532:4;3529:1;3522:15;3548:632;3613:5;3643:18;3684:2;3676:6;3673:14;3670:40;;;3690:18;;:::i;:::-;3765:2;3759:9;3733:2;3819:15;;-1:-1:-1;;3815:24:1;;;3841:2;3811:33;3807:42;3795:55;;;3865:18;;;3885:22;;;3862:46;3859:72;;;3911:18;;:::i;:::-;3951:10;3947:2;3940:22;3980:6;3971:15;;4010:6;4002;3995:22;4050:3;4041:6;4036:3;4032:16;4029:25;4026:45;;;4067:1;4064;4057:12;4026:45;4117:6;4112:3;4105:4;4097:6;4093:17;4080:44;4172:1;4165:4;4156:6;4148;4144:19;4140:30;4133:41;;;;3548:632;;;;;:::o;4185:451::-;4254:6;4307:2;4295:9;4286:7;4282:23;4278:32;4275:52;;;4323:1;4320;4313:12;4275:52;4363:9;4350:23;4396:18;4388:6;4385:30;4382:50;;;4428:1;4425;4418:12;4382:50;4451:22;;4504:4;4496:13;;4492:27;-1:-1:-1;4482:55:1;;4533:1;4530;4523:12;4482:55;4556:74;4622:7;4617:2;4604:16;4599:2;4595;4591:11;4556:74;:::i;4641:347::-;4706:6;4714;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;4806:29;4825:9;4806:29;:::i;:::-;4796:39;;4885:2;4874:9;4870:18;4857:32;4932:5;4925:13;4918:21;4911:5;4908:32;4898:60;;4954:1;4951;4944:12;4898:60;4977:5;4967:15;;;4641:347;;;;;:::o;4993:667::-;5088:6;5096;5104;5112;5165:3;5153:9;5144:7;5140:23;5136:33;5133:53;;;5182:1;5179;5172:12;5133:53;5205:29;5224:9;5205:29;:::i;:::-;5195:39;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;:::-;5243:48;;5338:2;5327:9;5323:18;5310:32;5300:42;;5393:2;5382:9;5378:18;5365:32;5420:18;5412:6;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475:22;;5528:4;5520:13;;5516:27;-1:-1:-1;5506:55:1;;5557:1;5554;5547:12;5506:55;5580:74;5646:7;5641:2;5628:16;5623:2;5619;5615:11;5580:74;:::i;:::-;5570:84;;;4993:667;;;;;;;:::o;5665:260::-;5733:6;5741;5794:2;5782:9;5773:7;5769:23;5765:32;5762:52;;;5810:1;5807;5800:12;5762:52;5833:29;5852:9;5833:29;:::i;:::-;5823:39;;5881:38;5915:2;5904:9;5900:18;5881:38;:::i;:::-;5871:48;;5665:260;;;;;:::o;5930:380::-;6009:1;6005:12;;;;6052;;;6073:61;;6127:4;6119:6;6115:17;6105:27;;6073:61;6180:2;6172:6;6169:14;6149:18;6146:38;6143:161;;6226:10;6221:3;6217:20;6214:1;6207:31;6261:4;6258:1;6251:15;6289:4;6286:1;6279:15;6143:161;;5930:380;;;:::o;6315:127::-;6376:10;6371:3;6367:20;6364:1;6357:31;6407:4;6404:1;6397:15;6431:4;6428:1;6421:15;6447:168;6520:9;;;6551;;6568:15;;;6562:22;;6548:37;6538:71;;6589:18;;:::i;6620:127::-;6681:10;6676:3;6672:20;6669:1;6662:31;6712:4;6709:1;6702:15;6736:4;6733:1;6726:15;6752:120;6792:1;6818;6808:35;;6823:18;;:::i;:::-;-1:-1:-1;6857:9:1;;6752:120::o;6877:356::-;7079:2;7061:21;;;7098:18;;;7091:30;7157:34;7152:2;7137:18;;7130:62;7224:2;7209:18;;6877:356::o;7364:545::-;7466:2;7461:3;7458:11;7455:448;;;7502:1;7527:5;7523:2;7516:17;7572:4;7568:2;7558:19;7642:2;7630:10;7626:19;7623:1;7619:27;7613:4;7609:38;7678:4;7666:10;7663:20;7660:47;;;-1:-1:-1;7701:4:1;7660:47;7756:2;7751:3;7747:12;7744:1;7740:20;7734:4;7730:31;7720:41;;7811:82;7829:2;7822:5;7819:13;7811:82;;;7874:17;;;7855:1;7844:13;7811:82;;;7815:3;;;7364:545;;;:::o;8085:1352::-;8211:3;8205:10;8238:18;8230:6;8227:30;8224:56;;;8260:18;;:::i;:::-;8289:97;8379:6;8339:38;8371:4;8365:11;8339:38;:::i;:::-;8333:4;8289:97;:::i;:::-;8441:4;;8505:2;8494:14;;8522:1;8517:663;;;;9224:1;9241:6;9238:89;;;-1:-1:-1;9293:19:1;;;9287:26;9238:89;-1:-1:-1;;8042:1:1;8038:11;;;8034:24;8030:29;8020:40;8066:1;8062:11;;;8017:57;9340:81;;8487:944;;8517:663;7311:1;7304:14;;;7348:4;7335:18;;-1:-1:-1;;8553:20:1;;;8671:236;8685:7;8682:1;8679:14;8671:236;;;8774:19;;;8768:26;8753:42;;8866:27;;;;8834:1;8822:14;;;;8701:19;;8671:236;;;8675:3;8935:6;8926:7;8923:19;8920:201;;;8996:19;;;8990:26;-1:-1:-1;;9079:1:1;9075:14;;;9091:3;9071:24;9067:37;9063:42;9048:58;9033:74;;8920:201;-1:-1:-1;;;;;9167:1:1;9151:14;;;9147:22;9134:36;;-1:-1:-1;8085:1352:1:o;9802:125::-;9867:9;;;9888:10;;;9885:36;;;9901:18;;:::i;10644:128::-;10711:9;;;10732:11;;;10729:37;;;10746:18;;:::i;11546:1187::-;11823:3;11852:1;11885:6;11879:13;11915:36;11941:9;11915:36;:::i;:::-;11970:1;11987:18;;;12014:133;;;;12161:1;12156:356;;;;11980:532;;12014:133;-1:-1:-1;;12047:24:1;;12035:37;;12120:14;;12113:22;12101:35;;12092:45;;;-1:-1:-1;12014:133:1;;12156:356;12187:6;12184:1;12177:17;12217:4;12262:2;12259:1;12249:16;12287:1;12301:165;12315:6;12312:1;12309:13;12301:165;;;12393:14;;12380:11;;;12373:35;12436:16;;;;12330:10;;12301:165;;;12305:3;;;12495:6;12490:3;12486:16;12479:23;;11980:532;;;;;12543:6;12537:13;12559:68;12618:8;12613:3;12606:4;12598:6;12594:17;12559:68;:::i;:::-;-1:-1:-1;;;12649:18:1;;12676:22;;;12725:1;12714:13;;11546:1187;-1:-1:-1;;;;11546:1187:1:o;13145:489::-;-1:-1:-1;;;;;13414:15:1;;;13396:34;;13466:15;;13461:2;13446:18;;13439:43;13513:2;13498:18;;13491:34;;;13561:3;13556:2;13541:18;;13534:31;;;13339:4;;13582:46;;13608:19;;13600:6;13582:46;:::i;:::-;13574:54;13145:489;-1:-1:-1;;;;;;13145:489:1:o;13639:249::-;13708:6;13761:2;13749:9;13740:7;13736:23;13732:32;13729:52;;;13777:1;13774;13767:12;13729:52;13809:9;13803:16;13828:30;13852:5;13828:30;:::i;13893:135::-;13932:3;13953:17;;;13950:43;;13973:18;;:::i;:::-;-1:-1:-1;14020:1:1;14009:13;;13893:135::o;14033:112::-;14065:1;14091;14081:35;;14096:18;;:::i;:::-;-1:-1:-1;14130:9:1;;14033:112::o;14150:127::-;14211:10;14206:3;14202:20;14199:1;14192:31;14242:4;14239:1;14232:15;14266:4;14263:1;14256:15

Swarm Source

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