ETH Price: $3,247.37 (-0.35%)
Gas: 1 Gwei

Token

Schemurs (SCHEMURS)
 

Overview

Max Total Supply

6,438 SCHEMURS

Holders

8

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0x721931508df2764fd4f70c53da646cb8aed16ace.eth
Balance
3 SCHEMURS
0x44fDeA1F66e6876F38b88FC6134AA09F5dE9b232
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:
Schemurs

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

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

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

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

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

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/Schemurs.sol


pragma solidity ^0.8.13;




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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.0 ether;
  uint256 public maxSupply = 4444;
  uint256 public maxMintAmount = 2;
  bool public paused = false;
  bool public revealed = false;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Schemurs", "SCHEMURS"){
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }


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

 
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

     for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }


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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }


  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }


  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90816200004a919062000608565b506000600c5561115c600d556002600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200009e57600080fd5b5060405162003c2b38038062003c2b8339818101604052810190620000c491906200085d565b6040518060400160405280600881526020017f536368656d7572730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f534348454d555253000000000000000000000000000000000000000000000000815250816002908162000141919062000608565b50806003908162000153919062000608565b5062000164620001b660201b60201c565b60008190555050506200018c62000180620001bb60201b60201c565b620001c360201b60201c565b6200019d826200028960201b60201c565b620001ae81620002ae60201b60201c565b505062000965565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000299620002d360201b60201c565b8060099081620002aa919062000608565b5050565b620002be620002d360201b60201c565b80600b9081620002cf919062000608565b5050565b620002e3620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003096200036460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003599062000943565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041057607f821691505b602082108103620004265762000425620003c8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000451565b6200049c868362000451565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e9620004e3620004dd84620004b4565b620004be565b620004b4565b9050919050565b6000819050919050565b6200050583620004c8565b6200051d6200051482620004f0565b8484546200045e565b825550505050565b600090565b6200053462000525565b62000541818484620004fa565b505050565b5b8181101562000569576200055d6000826200052a565b60018101905062000547565b5050565b601f821115620005b85762000582816200042c565b6200058d8462000441565b810160208510156200059d578190505b620005b5620005ac8562000441565b83018262000546565b50505b505050565b600082821c905092915050565b6000620005dd60001984600802620005bd565b1980831691505092915050565b6000620005f88383620005ca565b9150826002028217905092915050565b62000613826200038e565b67ffffffffffffffff8111156200062f576200062e62000399565b5b6200063b8254620003f7565b620006488282856200056d565b600060209050601f8311600181146200068057600084156200066b578287015190505b620006778582620005ea565b865550620006e7565b601f19841662000690866200042c565b60005b82811015620006ba5784890151825560018201915060208501945060208101905062000693565b86831015620006da5784890151620006d6601f891682620005ca565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000729826200070d565b810181811067ffffffffffffffff821117156200074b576200074a62000399565b5b80604052505050565b600062000760620006ef565b90506200076e82826200071e565b919050565b600067ffffffffffffffff82111562000791576200079062000399565b5b6200079c826200070d565b9050602081019050919050565b60005b83811015620007c9578082015181840152602081019050620007ac565b83811115620007d9576000848401525b50505050565b6000620007f6620007f08462000773565b62000754565b90508281526020810184848401111562000815576200081462000708565b5b62000822848285620007a9565b509392505050565b600082601f83011262000842576200084162000703565b5b815162000854848260208601620007df565b91505092915050565b60008060408385031215620008775762000876620006f9565b5b600083015167ffffffffffffffff811115620008985762000897620006fe565b5b620008a6858286016200082a565b925050602083015167ffffffffffffffff811115620008ca57620008c9620006fe565b5b620008d8858286016200082a565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200092b602083620008e2565b91506200093882620008f3565b602082019050919050565b600060208201905081810360008301526200095e816200091c565b9050919050565b6132b680620009756000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb01146106cc578063da3ef23f146106f7578063e985e9c514610720578063f2c4ce1e1461075d578063f2fde38b14610786576101ee565b8063a475b5dd14610624578063b88d4fde1461063b578063c668286214610664578063c87b56dd1461068f576101ee565b80638da5cb5b116100dc5780638da5cb5b1461058957806395d89b41146105b4578063a0712d68146105df578063a22cb465146105fb576101ee565b80636c0360eb146104e157806370a082311461050c578063715018a6146105495780637f00c7a614610560576101ee565b806318cae269116101855780635183022711610154578063518302271461042557806355f804b3146104505780635c975abb146104795780636352211e146104a4576101ee565b806318cae2691461036b578063239c70ae146103a857806323b872dd146103d357806342842e0e146103fc576101ee565b8063081c8c44116101c1578063081c8c44146102c1578063095ea7b3146102ec57806313faede61461031557806318160ddd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061223a565b6107af565b6040516102279190612282565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906122c9565b610841565b005b34801561026557600080fd5b5061026e610866565b60405161027b919061238f565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906123e7565b6108f8565b6040516102b89190612455565b60405180910390f35b3480156102cd57600080fd5b506102d6610974565b6040516102e3919061238f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e919061249c565b610a02565b005b34801561032157600080fd5b5061032a610ba8565b60405161033791906124eb565b60405180910390f35b34801561034c57600080fd5b50610355610bae565b60405161036291906124eb565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612506565b610bc5565b60405161039f91906124eb565b60405180910390f35b3480156103b457600080fd5b506103bd610bdd565b6040516103ca91906124eb565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612533565b610be3565b005b34801561040857600080fd5b50610423600480360381019061041e9190612533565b610bf3565b005b34801561043157600080fd5b5061043a610c13565b6040516104479190612282565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906126bb565b610c26565b005b34801561048557600080fd5b5061048e610c41565b60405161049b9190612282565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906123e7565b610c54565b6040516104d89190612455565b60405180910390f35b3480156104ed57600080fd5b506104f6610c66565b604051610503919061238f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612506565b610cf4565b60405161054091906124eb565b60405180910390f35b34801561055557600080fd5b5061055e610d88565b005b34801561056c57600080fd5b50610587600480360381019061058291906123e7565b610d9c565b005b34801561059557600080fd5b5061059e610dae565b6040516105ab9190612455565b60405180910390f35b3480156105c057600080fd5b506105c9610dd8565b6040516105d6919061238f565b60405180910390f35b6105f960048036038101906105f491906123e7565b610e6a565b005b34801561060757600080fd5b50610622600480360381019061061d9190612704565b61102e565b005b34801561063057600080fd5b506106396111a5565b005b34801561064757600080fd5b50610662600480360381019061065d91906127e5565b6111ca565b005b34801561067057600080fd5b5061067961123d565b604051610686919061238f565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906123e7565b6112cb565b6040516106c3919061238f565b60405180910390f35b3480156106d857600080fd5b506106e1611423565b6040516106ee91906124eb565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906126bb565b611429565b005b34801561072c57600080fd5b5061074760048036038101906107429190612868565b611444565b6040516107549190612282565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906126bb565b6114d8565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612506565b6114f3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610849611576565b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610875906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546108a1906128d7565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b6000610903826115f4565b610939576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610981906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906128d7565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b505050505081565b6000610a0d82611653565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a74576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9361171f565b73ffffffffffffffffffffffffffffffffffffffff1614610af657610abf81610aba61171f565b611444565b610af5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610bb8611727565b6001546000540303905090565b60106020528060005260406000206000915090505481565b600e5481565b610bee83838361172c565b505050565b610c0e838383604051806020016040528060008152506111ca565b505050565b600f60019054906101000a900460ff1681565b610c2e611576565b8060099081610c3d9190612ab4565b5050565b600f60009054906101000a900460ff1681565b6000610c5f82611653565b9050919050565b60098054610c73906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9f906128d7565b8015610cec5780601f10610cc157610100808354040283529160200191610cec565b820191906000526020600020905b815481529060010190602001808311610ccf57829003601f168201915b505050505081565b600080610d0083611af1565b03610d37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d90611576565b610d9a6000611afb565b565b610da4611576565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610de7906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e13906128d7565b8015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1615610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612bd2565b60405180910390fd5b6000610ec4610bae565b905060008211610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612c3e565b60405180910390fd5b600e54821115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612cd0565b60405180910390fd5b600d548282610f5d9190612d1f565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612dc1565b60405180910390fd5b6000600190505b82811161102957601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ffc90612de1565b91905055506110163382846110119190612d1f565b611bc1565b808061102190612de1565b915050610fa5565b505050565b61103661171f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110a761171f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661115461171f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111999190612282565b60405180910390a35050565b6111ad611576565b6001600f60016101000a81548160ff021916908315150217905550565b6111d584848461172c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112375761120084848484611bdf565b611236576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461124a906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906128d7565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b505050505081565b60606112d6826115f4565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612e9b565b60405180910390fd5b60001515600f60019054906101000a900460ff161515036113c257600b805461133d906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611369906128d7565b80156113b65780601f1061138b576101008083540402835291602001916113b6565b820191906000526020600020905b81548152906001019060200180831161139957829003601f168201915b5050505050905061141e565b60006113cc611d2f565b905060008151116113ec576040518060200160405280600081525061141a565b806113f684611dc1565b600a60405160200161140a93929190612f7a565b6040516020818303038152906040525b9150505b919050565b600d5481565b611431611576565b80600a90816114409190612ab4565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e0611576565b80600b90816114ef9190612ab4565b5050565b6114fb611576565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061301d565b60405180910390fd5b61157381611afb565b50565b61157e611f21565b73ffffffffffffffffffffffffffffffffffffffff1661159c610dae565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613089565b60405180910390fd5b565b6000816115ff611727565b1115801561160e575060005482105b801561164c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611662611727565b116116e8576000548110156116e75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116e5575b600081036116db5760046000836001900393508381526020019081526020016000205490506116b1565b809250505061171a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061173782611653565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166117f761171f565b73ffffffffffffffffffffffffffffffffffffffff16148061182657506118258661182061171f565b611444565b5b80611863575061183461171f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061189c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118a786611af1565b036118de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118eb8686866001611f29565b60006118f683611af1565b14611932576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119f987611af1565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a815760006001850190506000600460008381526020019081526020016000205403611a7f576000548114611a7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ae98686866001611f2f565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bdb828260405180602001604052806000815250611f35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c0561171f565b8786866040518563ffffffff1660e01b8152600401611c2794939291906130fe565b6020604051808303816000875af1925050508015611c6357506040513d601f19601f82011682018060405250810190611c60919061315f565b60015b611cdc573d8060008114611c93576040519150601f19603f3d011682016040523d82523d6000602084013e611c98565b606091505b506000815103611cd4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d3e906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6a906128d7565b8015611db75780601f10611d8c57610100808354040283529160200191611db7565b820191906000526020600020905b815481529060010190602001808311611d9a57829003601f168201915b5050505050905090565b606060008203611e08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1c565b600082905060005b60008214611e3a578080611e2390612de1565b915050600a82611e3391906131bb565b9150611e10565b60008167ffffffffffffffff811115611e5657611e55612590565b5b6040519080825280601f01601f191660200182016040528015611e885781602001600182028036833780820191505090505b5090505b60008514611f1557600182611ea191906131ec565b9150600a85611eb09190613220565b6030611ebc9190612d1f565b60f81b818381518110611ed257611ed1613251565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0e91906131bb565b9450611e8c565b8093505050505b919050565b600033905090565b50505050565b50505050565b6000805490506000611f4685611af1565b03611f7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fb7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fc46000858386611f29565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612029600185146121c4565b901b60a042901b61203986611af1565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461213d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ed6000878480600101955087611bdf565b612123576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061207e57826000541461213857600080fd5b6121a8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061213e575b8160008190555050506121be6000858386611f2f565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612217816121e2565b811461222257600080fd5b50565b6000813590506122348161220e565b92915050565b6000602082840312156122505761224f6121d8565b5b600061225e84828501612225565b91505092915050565b60008115159050919050565b61227c81612267565b82525050565b60006020820190506122976000830184612273565b92915050565b6122a681612267565b81146122b157600080fd5b50565b6000813590506122c38161229d565b92915050565b6000602082840312156122df576122de6121d8565b5b60006122ed848285016122b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612330578082015181840152602081019050612315565b8381111561233f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612361826122f6565b61236b8185612301565b935061237b818560208601612312565b61238481612345565b840191505092915050565b600060208201905081810360008301526123a98184612356565b905092915050565b6000819050919050565b6123c4816123b1565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b6000602082840312156123fd576123fc6121d8565b5b600061240b848285016123d2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061243f82612414565b9050919050565b61244f81612434565b82525050565b600060208201905061246a6000830184612446565b92915050565b61247981612434565b811461248457600080fd5b50565b60008135905061249681612470565b92915050565b600080604083850312156124b3576124b26121d8565b5b60006124c185828601612487565b92505060206124d2858286016123d2565b9150509250929050565b6124e5816123b1565b82525050565b600060208201905061250060008301846124dc565b92915050565b60006020828403121561251c5761251b6121d8565b5b600061252a84828501612487565b91505092915050565b60008060006060848603121561254c5761254b6121d8565b5b600061255a86828701612487565b935050602061256b86828701612487565b925050604061257c868287016123d2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c882612345565b810181811067ffffffffffffffff821117156125e7576125e6612590565b5b80604052505050565b60006125fa6121ce565b905061260682826125bf565b919050565b600067ffffffffffffffff82111561262657612625612590565b5b61262f82612345565b9050602081019050919050565b82818337600083830152505050565b600061265e6126598461260b565b6125f0565b90508281526020810184848401111561267a5761267961258b565b5b61268584828561263c565b509392505050565b600082601f8301126126a2576126a1612586565b5b81356126b284826020860161264b565b91505092915050565b6000602082840312156126d1576126d06121d8565b5b600082013567ffffffffffffffff8111156126ef576126ee6121dd565b5b6126fb8482850161268d565b91505092915050565b6000806040838503121561271b5761271a6121d8565b5b600061272985828601612487565b925050602061273a858286016122b4565b9150509250929050565b600067ffffffffffffffff82111561275f5761275e612590565b5b61276882612345565b9050602081019050919050565b600061278861278384612744565b6125f0565b9050828152602081018484840111156127a4576127a361258b565b5b6127af84828561263c565b509392505050565b600082601f8301126127cc576127cb612586565b5b81356127dc848260208601612775565b91505092915050565b600080600080608085870312156127ff576127fe6121d8565b5b600061280d87828801612487565b945050602061281e87828801612487565b935050604061282f878288016123d2565b925050606085013567ffffffffffffffff8111156128505761284f6121dd565b5b61285c878288016127b7565b91505092959194509250565b6000806040838503121561287f5761287e6121d8565b5b600061288d85828601612487565b925050602061289e85828601612487565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128ef57607f821691505b602082108103612902576129016128a8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261296a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261292d565b612974868361292d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129b16129ac6129a7846123b1565b61298c565b6123b1565b9050919050565b6000819050919050565b6129cb83612996565b6129df6129d7826129b8565b84845461293a565b825550505050565b600090565b6129f46129e7565b6129ff8184846129c2565b505050565b5b81811015612a2357612a186000826129ec565b600181019050612a05565b5050565b601f821115612a6857612a3981612908565b612a428461291d565b81016020851015612a51578190505b612a65612a5d8561291d565b830182612a04565b50505b505050565b600082821c905092915050565b6000612a8b60001984600802612a6d565b1980831691505092915050565b6000612aa48383612a7a565b9150826002028217905092915050565b612abd826122f6565b67ffffffffffffffff811115612ad657612ad5612590565b5b612ae082546128d7565b612aeb828285612a27565b600060209050601f831160018114612b1e5760008415612b0c578287015190505b612b168582612a98565b865550612b7e565b601f198416612b2c86612908565b60005b82811015612b5457848901518255600182019150602085019450602081019050612b2f565b86831015612b715784890151612b6d601f891682612a7a565b8355505b6001600288020188555050505b505050505050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000612bbc601683612301565b9150612bc782612b86565b602082019050919050565b60006020820190508181036000830152612beb81612baf565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000612c28601b83612301565b9150612c3382612bf2565b602082019050919050565b60006020820190508181036000830152612c5781612c1b565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000612cba602483612301565b9150612cc582612c5e565b604082019050919050565b60006020820190508181036000830152612ce981612cad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2a826123b1565b9150612d35836123b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6a57612d69612cf0565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000612dab601683612301565b9150612db682612d75565b602082019050919050565b60006020820190508181036000830152612dda81612d9e565b9050919050565b6000612dec826123b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e1e57612e1d612cf0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e85602f83612301565b9150612e9082612e29565b604082019050919050565b60006020820190508181036000830152612eb481612e78565b9050919050565b600081905092915050565b6000612ed1826122f6565b612edb8185612ebb565b9350612eeb818560208601612312565b80840191505092915050565b60008154612f04816128d7565b612f0e8186612ebb565b94506001821660008114612f295760018114612f3e57612f71565b60ff1983168652811515820286019350612f71565b612f4785612908565b60005b83811015612f6957815481890152600182019150602081019050612f4a565b838801955050505b50505092915050565b6000612f868286612ec6565b9150612f928285612ec6565b9150612f9e8284612ef7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613007602683612301565b915061301282612fab565b604082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613073602083612301565b915061307e8261303d565b602082019050919050565b600060208201905081810360008301526130a281613066565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d0826130a9565b6130da81856130b4565b93506130ea818560208601612312565b6130f381612345565b840191505092915050565b60006080820190506131136000830187612446565b6131206020830186612446565b61312d60408301856124dc565b818103606083015261313f81846130c5565b905095945050505050565b6000815190506131598161220e565b92915050565b600060208284031215613175576131746121d8565b5b60006131838482850161314a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131c6826123b1565b91506131d1836123b1565b9250826131e1576131e061318c565b5b828204905092915050565b60006131f7826123b1565b9150613202836123b1565b92508282101561321557613214612cf0565b5b828203905092915050565b600061322b826123b1565b9150613236836123b1565b9250826132465761324561318c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fd1b2cdfd89d862cc7894f6fd700950e5e2b80aaf18d3ef579c38e6cfd6a24ac64736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb01146106cc578063da3ef23f146106f7578063e985e9c514610720578063f2c4ce1e1461075d578063f2fde38b14610786576101ee565b8063a475b5dd14610624578063b88d4fde1461063b578063c668286214610664578063c87b56dd1461068f576101ee565b80638da5cb5b116100dc5780638da5cb5b1461058957806395d89b41146105b4578063a0712d68146105df578063a22cb465146105fb576101ee565b80636c0360eb146104e157806370a082311461050c578063715018a6146105495780637f00c7a614610560576101ee565b806318cae269116101855780635183022711610154578063518302271461042557806355f804b3146104505780635c975abb146104795780636352211e146104a4576101ee565b806318cae2691461036b578063239c70ae146103a857806323b872dd146103d357806342842e0e146103fc576101ee565b8063081c8c44116101c1578063081c8c44146102c1578063095ea7b3146102ec57806313faede61461031557806318160ddd14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061223a565b6107af565b6040516102279190612282565b60405180910390f35b34801561023c57600080fd5b50610257600480360381019061025291906122c9565b610841565b005b34801561026557600080fd5b5061026e610866565b60405161027b919061238f565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906123e7565b6108f8565b6040516102b89190612455565b60405180910390f35b3480156102cd57600080fd5b506102d6610974565b6040516102e3919061238f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e919061249c565b610a02565b005b34801561032157600080fd5b5061032a610ba8565b60405161033791906124eb565b60405180910390f35b34801561034c57600080fd5b50610355610bae565b60405161036291906124eb565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612506565b610bc5565b60405161039f91906124eb565b60405180910390f35b3480156103b457600080fd5b506103bd610bdd565b6040516103ca91906124eb565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612533565b610be3565b005b34801561040857600080fd5b50610423600480360381019061041e9190612533565b610bf3565b005b34801561043157600080fd5b5061043a610c13565b6040516104479190612282565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906126bb565b610c26565b005b34801561048557600080fd5b5061048e610c41565b60405161049b9190612282565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906123e7565b610c54565b6040516104d89190612455565b60405180910390f35b3480156104ed57600080fd5b506104f6610c66565b604051610503919061238f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612506565b610cf4565b60405161054091906124eb565b60405180910390f35b34801561055557600080fd5b5061055e610d88565b005b34801561056c57600080fd5b50610587600480360381019061058291906123e7565b610d9c565b005b34801561059557600080fd5b5061059e610dae565b6040516105ab9190612455565b60405180910390f35b3480156105c057600080fd5b506105c9610dd8565b6040516105d6919061238f565b60405180910390f35b6105f960048036038101906105f491906123e7565b610e6a565b005b34801561060757600080fd5b50610622600480360381019061061d9190612704565b61102e565b005b34801561063057600080fd5b506106396111a5565b005b34801561064757600080fd5b50610662600480360381019061065d91906127e5565b6111ca565b005b34801561067057600080fd5b5061067961123d565b604051610686919061238f565b60405180910390f35b34801561069b57600080fd5b506106b660048036038101906106b191906123e7565b6112cb565b6040516106c3919061238f565b60405180910390f35b3480156106d857600080fd5b506106e1611423565b6040516106ee91906124eb565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906126bb565b611429565b005b34801561072c57600080fd5b5061074760048036038101906107429190612868565b611444565b6040516107549190612282565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906126bb565b6114d8565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612506565b6114f3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610849611576565b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610875906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546108a1906128d7565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b6000610903826115f4565b610939576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610981906128d7565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906128d7565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b505050505081565b6000610a0d82611653565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a74576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a9361171f565b73ffffffffffffffffffffffffffffffffffffffff1614610af657610abf81610aba61171f565b611444565b610af5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610bb8611727565b6001546000540303905090565b60106020528060005260406000206000915090505481565b600e5481565b610bee83838361172c565b505050565b610c0e838383604051806020016040528060008152506111ca565b505050565b600f60019054906101000a900460ff1681565b610c2e611576565b8060099081610c3d9190612ab4565b5050565b600f60009054906101000a900460ff1681565b6000610c5f82611653565b9050919050565b60098054610c73906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9f906128d7565b8015610cec5780601f10610cc157610100808354040283529160200191610cec565b820191906000526020600020905b815481529060010190602001808311610ccf57829003601f168201915b505050505081565b600080610d0083611af1565b03610d37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d90611576565b610d9a6000611afb565b565b610da4611576565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610de7906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e13906128d7565b8015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1615610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612bd2565b60405180910390fd5b6000610ec4610bae565b905060008211610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612c3e565b60405180910390fd5b600e54821115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612cd0565b60405180910390fd5b600d548282610f5d9190612d1f565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612dc1565b60405180910390fd5b6000600190505b82811161102957601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ffc90612de1565b91905055506110163382846110119190612d1f565b611bc1565b808061102190612de1565b915050610fa5565b505050565b61103661171f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110a761171f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661115461171f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111999190612282565b60405180910390a35050565b6111ad611576565b6001600f60016101000a81548160ff021916908315150217905550565b6111d584848461172c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112375761120084848484611bdf565b611236576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461124a906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611276906128d7565b80156112c35780601f10611298576101008083540402835291602001916112c3565b820191906000526020600020905b8154815290600101906020018083116112a657829003601f168201915b505050505081565b60606112d6826115f4565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90612e9b565b60405180910390fd5b60001515600f60019054906101000a900460ff161515036113c257600b805461133d906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611369906128d7565b80156113b65780601f1061138b576101008083540402835291602001916113b6565b820191906000526020600020905b81548152906001019060200180831161139957829003601f168201915b5050505050905061141e565b60006113cc611d2f565b905060008151116113ec576040518060200160405280600081525061141a565b806113f684611dc1565b600a60405160200161140a93929190612f7a565b6040516020818303038152906040525b9150505b919050565b600d5481565b611431611576565b80600a90816114409190612ab4565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e0611576565b80600b90816114ef9190612ab4565b5050565b6114fb611576565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361156a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115619061301d565b60405180910390fd5b61157381611afb565b50565b61157e611f21565b73ffffffffffffffffffffffffffffffffffffffff1661159c610dae565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613089565b60405180910390fd5b565b6000816115ff611727565b1115801561160e575060005482105b801561164c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611662611727565b116116e8576000548110156116e75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116e5575b600081036116db5760046000836001900393508381526020019081526020016000205490506116b1565b809250505061171a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061173782611653565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461179e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166117f761171f565b73ffffffffffffffffffffffffffffffffffffffff16148061182657506118258661182061171f565b611444565b5b80611863575061183461171f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061189c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118a786611af1565b036118de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118eb8686866001611f29565b60006118f683611af1565b14611932576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119f987611af1565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a815760006001850190506000600460008381526020019081526020016000205403611a7f576000548114611a7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ae98686866001611f2f565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bdb828260405180602001604052806000815250611f35565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c0561171f565b8786866040518563ffffffff1660e01b8152600401611c2794939291906130fe565b6020604051808303816000875af1925050508015611c6357506040513d601f19601f82011682018060405250810190611c60919061315f565b60015b611cdc573d8060008114611c93576040519150601f19603f3d011682016040523d82523d6000602084013e611c98565b606091505b506000815103611cd4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611d3e906128d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6a906128d7565b8015611db75780601f10611d8c57610100808354040283529160200191611db7565b820191906000526020600020905b815481529060010190602001808311611d9a57829003601f168201915b5050505050905090565b606060008203611e08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1c565b600082905060005b60008214611e3a578080611e2390612de1565b915050600a82611e3391906131bb565b9150611e10565b60008167ffffffffffffffff811115611e5657611e55612590565b5b6040519080825280601f01601f191660200182016040528015611e885781602001600182028036833780820191505090505b5090505b60008514611f1557600182611ea191906131ec565b9150600a85611eb09190613220565b6030611ebc9190612d1f565b60f81b818381518110611ed257611ed1613251565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0e91906131bb565b9450611e8c565b8093505050505b919050565b600033905090565b50505050565b50505050565b6000805490506000611f4685611af1565b03611f7d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611fb7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fc46000858386611f29565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612029600185146121c4565b901b60a042901b61203986611af1565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461213d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ed6000878480600101955087611bdf565b612123576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061207e57826000541461213857600080fd5b6121a8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061213e575b8160008190555050506121be6000858386611f2f565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612217816121e2565b811461222257600080fd5b50565b6000813590506122348161220e565b92915050565b6000602082840312156122505761224f6121d8565b5b600061225e84828501612225565b91505092915050565b60008115159050919050565b61227c81612267565b82525050565b60006020820190506122976000830184612273565b92915050565b6122a681612267565b81146122b157600080fd5b50565b6000813590506122c38161229d565b92915050565b6000602082840312156122df576122de6121d8565b5b60006122ed848285016122b4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612330578082015181840152602081019050612315565b8381111561233f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612361826122f6565b61236b8185612301565b935061237b818560208601612312565b61238481612345565b840191505092915050565b600060208201905081810360008301526123a98184612356565b905092915050565b6000819050919050565b6123c4816123b1565b81146123cf57600080fd5b50565b6000813590506123e1816123bb565b92915050565b6000602082840312156123fd576123fc6121d8565b5b600061240b848285016123d2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061243f82612414565b9050919050565b61244f81612434565b82525050565b600060208201905061246a6000830184612446565b92915050565b61247981612434565b811461248457600080fd5b50565b60008135905061249681612470565b92915050565b600080604083850312156124b3576124b26121d8565b5b60006124c185828601612487565b92505060206124d2858286016123d2565b9150509250929050565b6124e5816123b1565b82525050565b600060208201905061250060008301846124dc565b92915050565b60006020828403121561251c5761251b6121d8565b5b600061252a84828501612487565b91505092915050565b60008060006060848603121561254c5761254b6121d8565b5b600061255a86828701612487565b935050602061256b86828701612487565b925050604061257c868287016123d2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125c882612345565b810181811067ffffffffffffffff821117156125e7576125e6612590565b5b80604052505050565b60006125fa6121ce565b905061260682826125bf565b919050565b600067ffffffffffffffff82111561262657612625612590565b5b61262f82612345565b9050602081019050919050565b82818337600083830152505050565b600061265e6126598461260b565b6125f0565b90508281526020810184848401111561267a5761267961258b565b5b61268584828561263c565b509392505050565b600082601f8301126126a2576126a1612586565b5b81356126b284826020860161264b565b91505092915050565b6000602082840312156126d1576126d06121d8565b5b600082013567ffffffffffffffff8111156126ef576126ee6121dd565b5b6126fb8482850161268d565b91505092915050565b6000806040838503121561271b5761271a6121d8565b5b600061272985828601612487565b925050602061273a858286016122b4565b9150509250929050565b600067ffffffffffffffff82111561275f5761275e612590565b5b61276882612345565b9050602081019050919050565b600061278861278384612744565b6125f0565b9050828152602081018484840111156127a4576127a361258b565b5b6127af84828561263c565b509392505050565b600082601f8301126127cc576127cb612586565b5b81356127dc848260208601612775565b91505092915050565b600080600080608085870312156127ff576127fe6121d8565b5b600061280d87828801612487565b945050602061281e87828801612487565b935050604061282f878288016123d2565b925050606085013567ffffffffffffffff8111156128505761284f6121dd565b5b61285c878288016127b7565b91505092959194509250565b6000806040838503121561287f5761287e6121d8565b5b600061288d85828601612487565b925050602061289e85828601612487565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128ef57607f821691505b602082108103612902576129016128a8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261296a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261292d565b612974868361292d565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129b16129ac6129a7846123b1565b61298c565b6123b1565b9050919050565b6000819050919050565b6129cb83612996565b6129df6129d7826129b8565b84845461293a565b825550505050565b600090565b6129f46129e7565b6129ff8184846129c2565b505050565b5b81811015612a2357612a186000826129ec565b600181019050612a05565b5050565b601f821115612a6857612a3981612908565b612a428461291d565b81016020851015612a51578190505b612a65612a5d8561291d565b830182612a04565b50505b505050565b600082821c905092915050565b6000612a8b60001984600802612a6d565b1980831691505092915050565b6000612aa48383612a7a565b9150826002028217905092915050565b612abd826122f6565b67ffffffffffffffff811115612ad657612ad5612590565b5b612ae082546128d7565b612aeb828285612a27565b600060209050601f831160018114612b1e5760008415612b0c578287015190505b612b168582612a98565b865550612b7e565b601f198416612b2c86612908565b60005b82811015612b5457848901518255600182019150602085019450602081019050612b2f565b86831015612b715784890151612b6d601f891682612a7a565b8355505b6001600288020188555050505b505050505050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b6000612bbc601683612301565b9150612bc782612b86565b602082019050919050565b60006020820190508181036000830152612beb81612baf565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000612c28601b83612301565b9150612c3382612bf2565b602082019050919050565b60006020820190508181036000830152612c5781612c1b565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000612cba602483612301565b9150612cc582612c5e565b604082019050919050565b60006020820190508181036000830152612ce981612cad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d2a826123b1565b9150612d35836123b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6a57612d69612cf0565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000612dab601683612301565b9150612db682612d75565b602082019050919050565b60006020820190508181036000830152612dda81612d9e565b9050919050565b6000612dec826123b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e1e57612e1d612cf0565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e85602f83612301565b9150612e9082612e29565b604082019050919050565b60006020820190508181036000830152612eb481612e78565b9050919050565b600081905092915050565b6000612ed1826122f6565b612edb8185612ebb565b9350612eeb818560208601612312565b80840191505092915050565b60008154612f04816128d7565b612f0e8186612ebb565b94506001821660008114612f295760018114612f3e57612f71565b60ff1983168652811515820286019350612f71565b612f4785612908565b60005b83811015612f6957815481890152600182019150602081019050612f4a565b838801955050505b50505092915050565b6000612f868286612ec6565b9150612f928285612ec6565b9150612f9e8284612ef7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613007602683612301565b915061301282612fab565b604082019050919050565b6000602082019050818103600083015261303681612ffa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613073602083612301565b915061307e8261303d565b602082019050919050565b600060208201905081810360008301526130a281613066565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d0826130a9565b6130da81856130b4565b93506130ea818560208601612312565b6130f381612345565b840191505092915050565b60006080820190506131136000830187612446565b6131206020830186612446565b61312d60408301856124dc565b818103606083015261313f81846130c5565b905095945050505050565b6000815190506131598161220e565b92915050565b600060208284031215613175576131746121d8565b5b60006131838482850161314a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131c6826123b1565b91506131d1836123b1565b9250826131e1576131e061318c565b5b828204905092915050565b60006131f7826123b1565b9150613202836123b1565b92508282101561321557613214612cf0565b5b828203905092915050565b600061322b826123b1565b9150613236836123b1565b9250826132465761324561318c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fd1b2cdfd89d862cc7894f6fd700950e5e2b80aaf18d3ef579c38e6cfd6a24ac64736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44696:2401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19074:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47021:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24097:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26165:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44839:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25625:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44872:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18128:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45045:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44944:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27051:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27292:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45012:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46659:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44981:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23886:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44771:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19753:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5210:103;;;;;;;;;;;;;:::i;:::-;;46537:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4562:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24266:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45429:508;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26441:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46464:65;;;;;;;;;;;;;:::i;:::-;;27548:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44797:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45945:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44908:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46765:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26820:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46895:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5468:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19074:615;19159:4;19474:10;19459:25;;:11;:25;;;;:102;;;;19551:10;19536:25;;:11;:25;;;;19459:102;:179;;;;19628:10;19613:25;;:11;:25;;;;19459:179;19439:199;;19074:615;;;:::o;47021:73::-;4448:13;:11;:13::i;:::-;47082:6:::1;47073;;:15;;;;;;;;;;;;;;;;;;47021:73:::0;:::o;24097:100::-;24151:13;24184:5;24177:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24097:100;:::o;26165:204::-;26233:7;26258:16;26266:7;26258;:16::i;:::-;26253:64;;26283:34;;;;;;;;;;;;;;26253:64;26337:15;:24;26353:7;26337:24;;;;;;;;;;;;;;;;;;;;;26330:31;;26165:204;;;:::o;44839:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25625:474::-;25698:13;25730:27;25749:7;25730:18;:27::i;:::-;25698:61;;25780:5;25774:11;;:2;:11;;;25770:48;;25794:24;;;;;;;;;;;;;;25770:48;25858:5;25835:28;;:19;:17;:19::i;:::-;:28;;;25831:175;;25883:44;25900:5;25907:19;:17;:19::i;:::-;25883:16;:44::i;:::-;25878:128;;25955:35;;;;;;;;;;;;;;25878:128;25831:175;26045:2;26018:15;:24;26034:7;26018:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26083:7;26079:2;26063:28;;26072:5;26063:28;;;;;;;;;;;;25687:412;25625:474;;:::o;44872:31::-;;;;:::o;18128:315::-;18181:7;18409:15;:13;:15::i;:::-;18394:12;;18378:13;;:28;:46;18371:53;;18128:315;:::o;45045:55::-;;;;;;;;;;;;;;;;;:::o;44944:32::-;;;;:::o;27051:170::-;27185:28;27195:4;27201:2;27205:7;27185:9;:28::i;:::-;27051:170;;;:::o;27292:185::-;27430:39;27447:4;27453:2;27457:7;27430:39;;;;;;;;;;;;:16;:39::i;:::-;27292:185;;;:::o;45012:28::-;;;;;;;;;;;;;:::o;46659:98::-;4448:13;:11;:13::i;:::-;46740:11:::1;46730:7;:21;;;;;;:::i;:::-;;46659:98:::0;:::o;44981:26::-;;;;;;;;;;;;;:::o;23886:144::-;23950:7;23993:27;24012:7;23993:18;:27::i;:::-;23970:52;;23886:144;;;:::o;44771:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19753:234::-;19817:7;19869:1;19841:24;19859:5;19841:17;:24::i;:::-;:29;19837:70;;19879:28;;;;;;;;;;;;;;19837:70;15098:13;19925:18;:25;19944:5;19925:25;;;;;;;;;;;;;;;;:54;19918:61;;19753:234;;;:::o;5210:103::-;4448:13;:11;:13::i;:::-;5275:30:::1;5302:1;5275:18;:30::i;:::-;5210:103::o:0;46537:116::-;4448:13;:11;:13::i;:::-;46630:17:::1;46614:13;:33;;;;46537:116:::0;:::o;4562:87::-;4608:7;4635:6;;;;;;;;;;;4628:13;;4562:87;:::o;24266:104::-;24322:13;24355:7;24348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24266:104;:::o;45429:508::-;45495:6;;;;;;;;;;;45494:7;45486:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;45535:14;45552:13;:11;:13::i;:::-;45535:30;;45594:1;45580:11;:15;45572:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45657:13;;45642:11;:28;;45634:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45750:9;;45735:11;45726:6;:20;;;;:::i;:::-;:33;;45718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45801:9;45813:1;45801:13;;45796:136;45821:11;45816:1;:16;45796:136;;45848:20;:32;45869:10;45848:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;45891:33;45901:10;45922:1;45913:6;:10;;;;:::i;:::-;45891:9;:33::i;:::-;45834:3;;;;;:::i;:::-;;;;45796:136;;;;45479:458;45429:508;:::o;26441:308::-;26552:19;:17;:19::i;:::-;26540:31;;:8;:31;;;26536:61;;26580:17;;;;;;;;;;;;;;26536:61;26662:8;26610:18;:39;26629:19;:17;:19::i;:::-;26610:39;;;;;;;;;;;;;;;:49;26650:8;26610:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26722:8;26686:55;;26701:19;:17;:19::i;:::-;26686:55;;;26732:8;26686:55;;;;;;:::i;:::-;;;;;;;;26441:308;;:::o;46464:65::-;4448:13;:11;:13::i;:::-;46519:4:::1;46508:8;;:15;;;;;;;;;;;;;;;;;;46464:65::o:0;27548:396::-;27715:28;27725:4;27731:2;27735:7;27715:9;:28::i;:::-;27776:1;27758:2;:14;;;:19;27754:183;;27797:56;27828:4;27834:2;27838:7;27847:5;27797:30;:56::i;:::-;27792:145;;27881:40;;;;;;;;;;;;;;27792:145;27754:183;27548:396;;;;:::o;44797:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45945:497::-;46043:13;46084:16;46092:7;46084;:16::i;:::-;46068:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46193:5;46181:17;;:8;;;;;;;;;;;:17;;;46178:62;;46218:14;46211:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46178:62;46248:28;46279:10;:8;:10::i;:::-;46248:41;;46334:1;46309:14;46303:28;:32;:133;;;;;;;;;;;;;;;;;46371:14;46387:18;:7;:16;:18::i;:::-;46407:13;46354:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46303:133;46296:140;;;45945:497;;;;:::o;44908:31::-;;;;:::o;46765:122::-;4448:13;:11;:13::i;:::-;46864:17:::1;46848:13;:33;;;;;;:::i;:::-;;46765:122:::0;:::o;26820:164::-;26917:4;26941:18;:25;26960:5;26941:25;;;;;;;;;;;;;;;:35;26967:8;26941:35;;;;;;;;;;;;;;;;;;;;;;;;;26934:42;;26820:164;;;;:::o;46895:120::-;4448:13;:11;:13::i;:::-;46994:15:::1;46977:14;:32;;;;;;:::i;:::-;;46895:120:::0;:::o;5468:201::-;4448:13;:11;:13::i;:::-;5577:1:::1;5557:22;;:8;:22;;::::0;5549:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5633:28;5652:8;5633:18;:28::i;:::-;5468:201:::0;:::o;4727:132::-;4802:12;:10;:12::i;:::-;4791:23;;:7;:5;:7::i;:::-;:23;;;4783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4727:132::o;28199:273::-;28256:4;28312:7;28293:15;:13;:15::i;:::-;:26;;:66;;;;;28346:13;;28336:7;:23;28293:66;:152;;;;;28444:1;15868:8;28397:17;:26;28415:7;28397:26;;;;;;;;;;;;:43;:48;28293:152;28273:172;;28199:273;;;:::o;21401:1129::-;21468:7;21488:12;21503:7;21488:22;;21571:4;21552:15;:13;:15::i;:::-;:23;21548:915;;21605:13;;21598:4;:20;21594:869;;;21643:14;21660:17;:23;21678:4;21660:23;;;;;;;;;;;;21643:40;;21776:1;15868:8;21749:6;:23;:28;21745:699;;22268:113;22285:1;22275:6;:11;22268:113;;22328:17;:25;22346:6;;;;;;;22328:25;;;;;;;;;;;;22319:34;;22268:113;;;22414:6;22407:13;;;;;;21745:699;21620:843;21594:869;21548:915;22491:31;;;;;;;;;;;;;;21401:1129;;;;:::o;42466:105::-;42526:7;42553:10;42546:17;;42466:105;:::o;17652:92::-;17708:7;17652:92;:::o;33458:2654::-;33573:27;33603;33622:7;33603:18;:27::i;:::-;33573:57;;33688:4;33647:45;;33663:19;33647:45;;;33643:86;;33701:28;;;;;;;;;;;;;;33643:86;33742:23;33768:15;:24;33784:7;33768:24;;;;;;;;;;;;;;;;;;;;;33742:50;;33805:22;33854:4;33831:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33875:43;33892:4;33898:19;:17;:19::i;:::-;33875:16;:43::i;:::-;33831:87;:142;;;;33954:19;:17;:19::i;:::-;33935:38;;:15;:38;;;33831:142;33805:169;;33992:17;33987:66;;34018:35;;;;;;;;;;;;;;33987:66;34093:1;34068:21;34086:2;34068:17;:21::i;:::-;:26;34064:62;;34103:23;;;;;;;;;;;;;;34064:62;34139:43;34161:4;34167:2;34171:7;34180:1;34139:21;:43::i;:::-;34290:1;34252:34;34270:15;34252:17;:34::i;:::-;:39;34248:103;;34315:15;:24;34331:7;34315:24;;;;;;;;;;;;34308:31;;;;;;;;;;;34248:103;34718:18;:24;34737:4;34718:24;;;;;;;;;;;;;;;;34716:26;;;;;;;;;;;;34787:18;:22;34806:2;34787:22;;;;;;;;;;;;;;;;34785:24;;;;;;;;;;;16146:8;15752:3;35168:15;:41;;35126:21;35144:2;35126:17;:21::i;:::-;:84;:128;35080:17;:26;35098:7;35080:26;;;;;;;;;;;:174;;;;35424:1;16146:8;35374:19;:46;:51;35370:626;;35446:19;35478:1;35468:7;:11;35446:33;;35635:1;35601:17;:30;35619:11;35601:30;;;;;;;;;;;;:35;35597:384;;35739:13;;35724:11;:28;35720:242;;35919:19;35886:17;:30;35904:11;35886:30;;;;;;;;;;;:52;;;;35720:242;35597:384;35427:569;35370:626;36043:7;36039:2;36024:27;;36033:4;36024:27;;;;;;;;;;;;36062:42;36083:4;36089:2;36093:7;36102:1;36062:20;:42::i;:::-;33562:2550;;;33458:2654;;;:::o;25186:148::-;25250:14;25311:5;25301:15;;25186:148;;;:::o;5829:191::-;5903:16;5922:6;;;;;;;;;;;5903:25;;5948:8;5939:6;;:17;;;;;;;;;;;;;;;;;;6003:8;5972:40;;5993:8;5972:40;;;;;;;;;;;;5892:128;5829:191;:::o;28556:104::-;28625:27;28635:2;28639:8;28625:27;;;;;;;;;;;;:9;:27::i;:::-;28556:104;;:::o;39935:716::-;40098:4;40144:2;40119:45;;;40165:19;:17;:19::i;:::-;40186:4;40192:7;40201:5;40119:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40115:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40419:1;40402:6;:13;:18;40398:235;;40448:40;;;;;;;;;;;;;;40398:235;40591:6;40585:13;40576:6;40572:2;40568:15;40561:38;40115:529;40288:54;;;40278:64;;;:6;:64;;;;40271:71;;;39935:716;;;;;;:::o;45318:102::-;45378:13;45407:7;45400:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45318:102;:::o;410:723::-;466:13;696:1;687:5;:10;683:53;;714:10;;;;;;;;;;;;;;;;;;;;;683:53;746:12;761:5;746:20;;777:14;802:78;817:1;809:4;:9;802:78;;835:8;;;;;:::i;:::-;;;;866:2;858:10;;;;;:::i;:::-;;;802:78;;;890:19;922:6;912:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;890:39;;940:154;956:1;947:5;:10;940:154;;984:1;974:11;;;;;:::i;:::-;;;1051:2;1043:5;:10;;;;:::i;:::-;1030:2;:24;;;;:::i;:::-;1017:39;;1000:6;1007;1000:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1080:2;1071:11;;;;;:::i;:::-;;;940:154;;;1118:6;1104:21;;;;;410:723;;;;:::o;3136:98::-;3189:7;3216:10;3209:17;;3136:98;:::o;41299:159::-;;;;;:::o;42117:158::-;;;;;:::o;29033:2246::-;29156:20;29179:13;;29156:36;;29232:1;29207:21;29225:2;29207:17;:21::i;:::-;:26;29203:58;;29242:19;;;;;;;;;;;;;;29203:58;29288:1;29276:8;:13;29272:44;;29298:18;;;;;;;;;;;;;;29272:44;29329:61;29359:1;29363:2;29367:12;29381:8;29329:21;:61::i;:::-;29933:1;15235:2;29904:1;:25;;29903:31;29891:8;:44;29865:18;:22;29884:2;29865:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;16011:3;30334:29;30361:1;30349:8;:13;30334:14;:29::i;:::-;:56;;15752:3;30271:15;:41;;30229:21;30247:2;30229:17;:21::i;:::-;:84;:162;30178:17;:31;30196:12;30178:31;;;;;;;;;;;:213;;;;30408:20;30431:12;30408:35;;30458:11;30487:8;30472:12;:23;30458:37;;30534:1;30516:2;:14;;;:19;30512:635;;30556:313;30612:12;30608:2;30587:38;;30604:1;30587:38;;;;;;;;;;;;30653:69;30692:1;30696:2;30700:14;;;;;;30716:5;30653:30;:69::i;:::-;30648:174;;30758:40;;;;;;;;;;;;;;30648:174;30864:3;30849:12;:18;30556:313;;30950:12;30933:13;;:29;30929:43;;30964:8;;;30929:43;30512:635;;;31013:119;31069:14;;;;;;31065:2;31044:40;;31061:1;31044:40;;;;;;;;;;;;31127:3;31112:12;:18;31013:119;;30512:635;31177:12;31161:13;:28;;;;29642:1559;;31211:60;31240:1;31244:2;31248:12;31262:8;31211:20;:60::i;:::-;29145:2134;29033:2246;;;:::o;25421:142::-;25479:14;25540:5;25530:15;;25421:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:141::-;13011:4;13034:3;13026:11;;13057:3;13054:1;13047:14;13091:4;13088:1;13078:18;13070:26;;12962:141;;;:::o;13109:93::-;13146:6;13193:2;13188;13181:5;13177:14;13173:23;13163:33;;13109:93;;;:::o;13208:107::-;13252:8;13302:5;13296:4;13292:16;13271:37;;13208:107;;;;:::o;13321:393::-;13390:6;13440:1;13428:10;13424:18;13463:97;13493:66;13482:9;13463:97;:::i;:::-;13581:39;13611:8;13600:9;13581:39;:::i;:::-;13569:51;;13653:4;13649:9;13642:5;13638:21;13629:30;;13702:4;13692:8;13688:19;13681:5;13678:30;13668:40;;13397:317;;13321:393;;;;;:::o;13720:60::-;13748:3;13769:5;13762:12;;13720:60;;;:::o;13786:142::-;13836:9;13869:53;13887:34;13896:24;13914:5;13896:24;:::i;:::-;13887:34;:::i;:::-;13869:53;:::i;:::-;13856:66;;13786:142;;;:::o;13934:75::-;13977:3;13998:5;13991:12;;13934:75;;;:::o;14015:269::-;14125:39;14156:7;14125:39;:::i;:::-;14186:91;14235:41;14259:16;14235:41;:::i;:::-;14227:6;14220:4;14214:11;14186:91;:::i;:::-;14180:4;14173:105;14091:193;14015:269;;;:::o;14290:73::-;14335:3;14290:73;:::o;14369:189::-;14446:32;;:::i;:::-;14487:65;14545:6;14537;14531:4;14487:65;:::i;:::-;14422:136;14369:189;;:::o;14564:186::-;14624:120;14641:3;14634:5;14631:14;14624:120;;;14695:39;14732:1;14725:5;14695:39;:::i;:::-;14668:1;14661:5;14657:13;14648:22;;14624:120;;;14564:186;;:::o;14756:543::-;14857:2;14852:3;14849:11;14846:446;;;14891:38;14923:5;14891:38;:::i;:::-;14975:29;14993:10;14975:29;:::i;:::-;14965:8;14961:44;15158:2;15146:10;15143:18;15140:49;;;15179:8;15164:23;;15140:49;15202:80;15258:22;15276:3;15258:22;:::i;:::-;15248:8;15244:37;15231:11;15202:80;:::i;:::-;14861:431;;14846:446;14756:543;;;:::o;15305:117::-;15359:8;15409:5;15403:4;15399:16;15378:37;;15305:117;;;;:::o;15428:169::-;15472:6;15505:51;15553:1;15549:6;15541:5;15538:1;15534:13;15505:51;:::i;:::-;15501:56;15586:4;15580;15576:15;15566:25;;15479:118;15428:169;;;;:::o;15602:295::-;15678:4;15824:29;15849:3;15843:4;15824:29;:::i;:::-;15816:37;;15886:3;15883:1;15879:11;15873:4;15870:21;15862:29;;15602:295;;;;:::o;15902:1395::-;16019:37;16052:3;16019:37;:::i;:::-;16121:18;16113:6;16110:30;16107:56;;;16143:18;;:::i;:::-;16107:56;16187:38;16219:4;16213:11;16187:38;:::i;:::-;16272:67;16332:6;16324;16318:4;16272:67;:::i;:::-;16366:1;16390:4;16377:17;;16422:2;16414:6;16411:14;16439:1;16434:618;;;;17096:1;17113:6;17110:77;;;17162:9;17157:3;17153:19;17147:26;17138:35;;17110:77;17213:67;17273:6;17266:5;17213:67;:::i;:::-;17207:4;17200:81;17069:222;16404:887;;16434:618;16486:4;16482:9;16474:6;16470:22;16520:37;16552:4;16520:37;:::i;:::-;16579:1;16593:208;16607:7;16604:1;16601:14;16593:208;;;16686:9;16681:3;16677:19;16671:26;16663:6;16656:42;16737:1;16729:6;16725:14;16715:24;;16784:2;16773:9;16769:18;16756:31;;16630:4;16627:1;16623:12;16618:17;;16593:208;;;16829:6;16820:7;16817:19;16814:179;;;16887:9;16882:3;16878:19;16872:26;16930:48;16972:4;16964:6;16960:17;16949:9;16930:48;:::i;:::-;16922:6;16915:64;16837:156;16814:179;17039:1;17035;17027:6;17023:14;17019:22;17013:4;17006:36;16441:611;;;16404:887;;15994:1303;;;15902:1395;;:::o;17303:172::-;17443:24;17439:1;17431:6;17427:14;17420:48;17303:172;:::o;17481:366::-;17623:3;17644:67;17708:2;17703:3;17644:67;:::i;:::-;17637:74;;17720:93;17809:3;17720:93;:::i;:::-;17838:2;17833:3;17829:12;17822:19;;17481:366;;;:::o;17853:419::-;18019:4;18057:2;18046:9;18042:18;18034:26;;18106:9;18100:4;18096:20;18092:1;18081:9;18077:17;18070:47;18134:131;18260:4;18134:131;:::i;:::-;18126:139;;17853:419;;;:::o;18278:177::-;18418:29;18414:1;18406:6;18402:14;18395:53;18278:177;:::o;18461:366::-;18603:3;18624:67;18688:2;18683:3;18624:67;:::i;:::-;18617:74;;18700:93;18789:3;18700:93;:::i;:::-;18818:2;18813:3;18809:12;18802:19;;18461:366;;;:::o;18833:419::-;18999:4;19037:2;19026:9;19022:18;19014:26;;19086:9;19080:4;19076:20;19072:1;19061:9;19057:17;19050:47;19114:131;19240:4;19114:131;:::i;:::-;19106:139;;18833:419;;;:::o;19258:223::-;19398:34;19394:1;19386:6;19382:14;19375:58;19467:6;19462:2;19454:6;19450:15;19443:31;19258:223;:::o;19487:366::-;19629:3;19650:67;19714:2;19709:3;19650:67;:::i;:::-;19643:74;;19726:93;19815:3;19726:93;:::i;:::-;19844:2;19839:3;19835:12;19828:19;;19487:366;;;:::o;19859:419::-;20025:4;20063:2;20052:9;20048:18;20040:26;;20112:9;20106:4;20102:20;20098:1;20087:9;20083:17;20076:47;20140:131;20266:4;20140:131;:::i;:::-;20132:139;;19859:419;;;:::o;20284:180::-;20332:77;20329:1;20322:88;20429:4;20426:1;20419:15;20453:4;20450:1;20443:15;20470:305;20510:3;20529:20;20547:1;20529:20;:::i;:::-;20524:25;;20563:20;20581:1;20563:20;:::i;:::-;20558:25;;20717:1;20649:66;20645:74;20642:1;20639:81;20636:107;;;20723:18;;:::i;:::-;20636:107;20767:1;20764;20760:9;20753:16;;20470:305;;;;:::o;20781:172::-;20921:24;20917:1;20909:6;20905:14;20898:48;20781:172;:::o;20959:366::-;21101:3;21122:67;21186:2;21181:3;21122:67;:::i;:::-;21115:74;;21198:93;21287:3;21198:93;:::i;:::-;21316:2;21311:3;21307:12;21300:19;;20959:366;;;:::o;21331:419::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21584:9;21578:4;21574:20;21570:1;21559:9;21555:17;21548:47;21612:131;21738:4;21612:131;:::i;:::-;21604:139;;21331:419;;;:::o;21756:233::-;21795:3;21818:24;21836:5;21818:24;:::i;:::-;21809:33;;21864:66;21857:5;21854:77;21851:103;;21934:18;;:::i;:::-;21851:103;21981:1;21974:5;21970:13;21963:20;;21756:233;;;:::o;21995:234::-;22135:34;22131:1;22123:6;22119:14;22112:58;22204:17;22199:2;22191:6;22187:15;22180:42;21995:234;:::o;22235:366::-;22377:3;22398:67;22462:2;22457:3;22398:67;:::i;:::-;22391:74;;22474:93;22563:3;22474:93;:::i;:::-;22592:2;22587:3;22583:12;22576:19;;22235:366;;;:::o;22607:419::-;22773:4;22811:2;22800:9;22796:18;22788:26;;22860:9;22854:4;22850:20;22846:1;22835:9;22831:17;22824:47;22888:131;23014:4;22888:131;:::i;:::-;22880:139;;22607:419;;;:::o;23032:148::-;23134:11;23171:3;23156:18;;23032:148;;;;:::o;23186:377::-;23292:3;23320:39;23353:5;23320:39;:::i;:::-;23375:89;23457:6;23452:3;23375:89;:::i;:::-;23368:96;;23473:52;23518:6;23513:3;23506:4;23499:5;23495:16;23473:52;:::i;:::-;23550:6;23545:3;23541:16;23534:23;;23296:267;23186:377;;;;:::o;23593:874::-;23696:3;23733:5;23727:12;23762:36;23788:9;23762:36;:::i;:::-;23814:89;23896:6;23891:3;23814:89;:::i;:::-;23807:96;;23934:1;23923:9;23919:17;23950:1;23945:166;;;;24125:1;24120:341;;;;23912:549;;23945:166;24029:4;24025:9;24014;24010:25;24005:3;23998:38;24091:6;24084:14;24077:22;24069:6;24065:35;24060:3;24056:45;24049:52;;23945:166;;24120:341;24187:38;24219:5;24187:38;:::i;:::-;24247:1;24261:154;24275:6;24272:1;24269:13;24261:154;;;24349:7;24343:14;24339:1;24334:3;24330:11;24323:35;24399:1;24390:7;24386:15;24375:26;;24297:4;24294:1;24290:12;24285:17;;24261:154;;;24444:6;24439:3;24435:16;24428:23;;24127:334;;23912:549;;23700:767;;23593:874;;;;:::o;24473:589::-;24698:3;24720:95;24811:3;24802:6;24720:95;:::i;:::-;24713:102;;24832:95;24923:3;24914:6;24832:95;:::i;:::-;24825:102;;24944:92;25032:3;25023:6;24944:92;:::i;:::-;24937:99;;25053:3;25046:10;;24473:589;;;;;;:::o;25068:225::-;25208:34;25204:1;25196:6;25192:14;25185:58;25277:8;25272:2;25264:6;25260:15;25253:33;25068:225;:::o;25299:366::-;25441:3;25462:67;25526:2;25521:3;25462:67;:::i;:::-;25455:74;;25538:93;25627:3;25538:93;:::i;:::-;25656:2;25651:3;25647:12;25640:19;;25299:366;;;:::o;25671:419::-;25837:4;25875:2;25864:9;25860:18;25852:26;;25924:9;25918:4;25914:20;25910:1;25899:9;25895:17;25888:47;25952:131;26078:4;25952:131;:::i;:::-;25944:139;;25671:419;;;:::o;26096:182::-;26236:34;26232:1;26224:6;26220:14;26213:58;26096:182;:::o;26284:366::-;26426:3;26447:67;26511:2;26506:3;26447:67;:::i;:::-;26440:74;;26523:93;26612:3;26523:93;:::i;:::-;26641:2;26636:3;26632:12;26625:19;;26284:366;;;:::o;26656:419::-;26822:4;26860:2;26849:9;26845:18;26837:26;;26909:9;26903:4;26899:20;26895:1;26884:9;26880:17;26873:47;26937:131;27063:4;26937:131;:::i;:::-;26929:139;;26656:419;;;:::o;27081:98::-;27132:6;27166:5;27160:12;27150:22;;27081:98;;;:::o;27185:168::-;27268:11;27302:6;27297:3;27290:19;27342:4;27337:3;27333:14;27318:29;;27185:168;;;;:::o;27359:360::-;27445:3;27473:38;27505:5;27473:38;:::i;:::-;27527:70;27590:6;27585:3;27527:70;:::i;:::-;27520:77;;27606:52;27651:6;27646:3;27639:4;27632:5;27628:16;27606:52;:::i;:::-;27683:29;27705:6;27683:29;:::i;:::-;27678:3;27674:39;27667:46;;27449:270;27359:360;;;;:::o;27725:640::-;27920:4;27958:3;27947:9;27943:19;27935:27;;27972:71;28040:1;28029:9;28025:17;28016:6;27972:71;:::i;:::-;28053:72;28121:2;28110:9;28106:18;28097:6;28053:72;:::i;:::-;28135;28203:2;28192:9;28188:18;28179:6;28135:72;:::i;:::-;28254:9;28248:4;28244:20;28239:2;28228:9;28224:18;28217:48;28282:76;28353:4;28344:6;28282:76;:::i;:::-;28274:84;;27725:640;;;;;;;:::o;28371:141::-;28427:5;28458:6;28452:13;28443:22;;28474:32;28500:5;28474:32;:::i;:::-;28371:141;;;;:::o;28518:349::-;28587:6;28636:2;28624:9;28615:7;28611:23;28607:32;28604:119;;;28642:79;;:::i;:::-;28604:119;28762:1;28787:63;28842:7;28833:6;28822:9;28818:22;28787:63;:::i;:::-;28777:73;;28733:127;28518:349;;;;:::o;28873:180::-;28921:77;28918:1;28911:88;29018:4;29015:1;29008:15;29042:4;29039:1;29032:15;29059:185;29099:1;29116:20;29134:1;29116:20;:::i;:::-;29111:25;;29150:20;29168:1;29150:20;:::i;:::-;29145:25;;29189:1;29179:35;;29194:18;;:::i;:::-;29179:35;29236:1;29233;29229:9;29224:14;;29059:185;;;;:::o;29250:191::-;29290:4;29310:20;29328:1;29310:20;:::i;:::-;29305:25;;29344:20;29362:1;29344:20;:::i;:::-;29339:25;;29383:1;29380;29377:8;29374:34;;;29388:18;;:::i;:::-;29374:34;29433:1;29430;29426:9;29418:17;;29250:191;;;;:::o;29447:176::-;29479:1;29496:20;29514:1;29496:20;:::i;:::-;29491:25;;29530:20;29548:1;29530:20;:::i;:::-;29525:25;;29569:1;29559:35;;29574:18;;:::i;:::-;29559:35;29615:1;29612;29608:9;29603:14;;29447:176;;;;:::o;29629:180::-;29677:77;29674:1;29667:88;29774:4;29771:1;29764:15;29798:4;29795:1;29788:15

Swarm Source

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