ETH Price: $2,504.66 (+1.25%)
 

Overview

Max Total Supply

146 Sloth

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Sloth
0x98d285e030Bb281cB4C12ea4F8CeD5980F76ee98
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:
MoonzSloth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/
// File: @openzeppelin/contracts/utils/Strings.sol

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Moonzsloth.sol


pragma solidity ^0.8.7;


contract MoonzSloth is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 6666;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 20;

    uint256 public _maxFreeMintPerAddr = 3;
    uint256 public _maxFreeMintSupply = 3666;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory initBaseURI) ERC721A("MoonzSloth", "Sloth") {
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
        
    function setmaxFreeMintPerAddr(uint256 _FreeMintPerAddr) external onlyOwner {
        _maxFreeMintPerAddr = _FreeMintPerAddr;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","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":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMintPerAddr","type":"uint256"}],"name":"setmaxFreeMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611a0a600a5566071afd498d0000600b556014600c556003600d55610e52600e553480156200003257600080fd5b50604051620036fc380380620036fc833981810160405281019062000058919062000357565b6040518060400160405280600a81526020017f4d6f6f6e7a536c6f7468000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f536c6f74680000000000000000000000000000000000000000000000000000008152508160029080519060200190620000dc92919062000229565b508060039080519060200190620000f592919062000229565b50620001066200015660201b60201c565b60008190555050506200012e620001226200015b60201b60201c565b6200016360201b60201c565b600160098190555080600f90805190602001906200014e92919062000229565b50506200052c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000237906200043d565b90600052602060002090601f0160209004810192826200025b5760008555620002a7565b82601f106200027657805160ff1916838001178555620002a7565b82800160010185558215620002a7579182015b82811115620002a657825182559160200191906001019062000289565b5b509050620002b69190620002ba565b5090565b5b80821115620002d5576000816000905550600101620002bb565b5090565b6000620002f0620002ea84620003d1565b620003a8565b9050828152602081018484840111156200030f576200030e6200050c565b5b6200031c84828562000407565b509392505050565b600082601f8301126200033c576200033b62000507565b5b81516200034e848260208601620002d9565b91505092915050565b60006020828403121562000370576200036f62000516565b5b600082015167ffffffffffffffff81111562000391576200039062000511565b5b6200039f8482850162000324565b91505092915050565b6000620003b4620003c7565b9050620003c2828262000473565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ef57620003ee620004d8565b5b620003fa826200051b565b9050602081019050919050565b60005b83811015620004275780820151818401526020810190506200040a565b8381111562000437576000848401525b50505050565b600060028204905060018216806200045657607f821691505b602082108114156200046d576200046c620004a9565b5b50919050565b6200047e826200051b565b810181811067ffffffffffffffff82111715620004a0576200049f620004d8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6131c0806200053c6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f75780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146105ec578063de314a5914610629578063e985e9c514610654578063f2fde38b14610691576101c2565b80639cb57d2014610553578063a0712d681461057e578063a22cb4651461059a578063b88d4fde146105c3576101c2565b806391b7f5ed116100d157806391b7f5ed146104ad57806392910eec146104d657806395d89b41146104ff57806398832bd51461052a576101c2565b806370a082311461042e578063715018a61461046b5780638da5cb5b14610482576101c2565b806323b872dd1161016457806355f804b31161013e57806355f804b3146103725780635e1c4b601461039b5780636352211e146103c65780636c0360eb14610403576101c2565b806323b872dd146103165780633ccfd60b1461033f57806342842e0e14610349576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806322f4596f146102eb576101c2565b806301ffc9a7146101c75780630387da421461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906125b8565b6106ba565b6040516101fb91906129bd565b60405180910390f35b34801561021057600080fd5b5061021961074c565b6040516102269190612ada565b60405180910390f35b34801561023b57600080fd5b50610244610752565b60405161025191906129d8565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c919061265b565b6107e4565b60405161028e9190612956565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612578565b610860565b005b3480156102cc57600080fd5b506102d5610a07565b6040516102e29190612ada565b60405180910390f35b3480156102f757600080fd5b50610300610a1e565b60405161030d9190612ada565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612462565b610a24565b005b610347610a34565b005b34801561035557600080fd5b50610370600480360381019061036b9190612462565b610b7f565b005b34801561037e57600080fd5b5061039960048036038101906103949190612612565b610b9f565b005b3480156103a757600080fd5b506103b0610c35565b6040516103bd9190612ada565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061265b565b610c3b565b6040516103fa9190612956565b60405180910390f35b34801561040f57600080fd5b50610418610c4d565b60405161042591906129d8565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906123f5565b610cdb565b6040516104629190612ada565b60405180910390f35b34801561047757600080fd5b50610480610d94565b005b34801561048e57600080fd5b50610497610e1c565b6040516104a49190612956565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf919061265b565b610e46565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061265b565b610ecc565b005b34801561050b57600080fd5b50610514610f52565b60405161052191906129d8565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061265b565b610fe4565b005b34801561055f57600080fd5b5061056861106a565b6040516105759190612ada565b60405180910390f35b6105986004803603810190610593919061265b565b611070565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190612538565b6112aa565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906124b5565b611422565b005b3480156105f857600080fd5b50610613600480360381019061060e919061265b565b611495565b60405161062091906129d8565b60405180910390f35b34801561063557600080fd5b5061063e611511565b60405161064b9190612ada565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190612422565b611517565b60405161068891906129bd565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906123f5565b6115ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461076190612daa565b80601f016020809104026020016040519081016040528092919081815260200182805461078d90612daa565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b60006107ef826116a3565b610825576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086b82611702565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117d0565b73ffffffffffffffffffffffffffffffffffffffff16146109555761091e816109196117d0565b611517565b610954576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a116117d8565b6001546000540303905090565b600a5481565b610a2f8383836117dd565b505050565b610a3c611b87565b73ffffffffffffffffffffffffffffffffffffffff16610a5a610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790612a1a565b60405180910390fd5b60026009541415610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90612a9a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610b2490612941565b60006040518083038185875af1925050503d8060008114610b61576040519150601f19603f3d011682016040523d82523d6000602084013e610b66565b606091505b5050905080610b7457600080fd5b506001600981905550565b610b9a83838360405180602001604052806000815250611422565b505050565b610ba7611b87565b73ffffffffffffffffffffffffffffffffffffffff16610bc5610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612a1a565b60405180910390fd5b80600f9080519060200190610c31929190612209565b5050565b600e5481565b6000610c4682611702565b9050919050565b600f8054610c5a90612daa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690612daa565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9c611b87565b73ffffffffffffffffffffffffffffffffffffffff16610dba610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790612a1a565b60405180910390fd5b610e1a6000611b8f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e4e611b87565b73ffffffffffffffffffffffffffffffffffffffff16610e6c610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990612a1a565b60405180910390fd5b80600b8190555050565b610ed4611b87565b73ffffffffffffffffffffffffffffffffffffffff16610ef2610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612a1a565b60405180910390fd5b80600e8190555050565b606060038054610f6190612daa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90612daa565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b5050505050905090565b610fec611b87565b73ffffffffffffffffffffffffffffffffffffffff1661100a610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612a1a565b60405180910390fd5b80600d8190555050565b600d5481565b6000600b54905060006001600e546110889190612bdf565b83611091610a07565b61109b9190612bdf565b1080156110f45750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f19190612bdf565b11155b806111315750611102610e1c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561113e57600091505b818361114a9190612c66565b34101561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612a5a565b60405180910390fd5b6001600a5461119b9190612bdf565b836111a4610a07565b6111ae9190612bdf565b106111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612aba565b60405180910390fd5b6001600c546111fd9190612bdf565b831061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612a7a565b60405180910390fd5b801561129b5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112939190612bdf565b925050819055505b6112a53384611c55565b505050565b6112b26117d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611317576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113246117d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d16117d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141691906129bd565b60405180910390a35050565b61142d8484846117dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461148f5761145884848484611c73565b61148e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114a0826116a3565b6114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612a3a565b60405180910390fd5b600f6114ea83611dd3565b6040516020016114fb929190612912565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611b87565b73ffffffffffffffffffffffffffffffffffffffff166115d1610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90612a1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906129fa565b60405180910390fd5b6116a081611b8f565b50565b6000816116ae6117d8565b111580156116bd575060005482105b80156116fb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117116117d8565b11611799576000548110156117985760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611796575b600081141561178c576004600083600190039350838152602001908152602001600020549050611761565b80925050506117cb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117e882611702565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461184f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118706117d0565b73ffffffffffffffffffffffffffffffffffffffff16148061189f575061189e856118996117d0565b611517565b5b806118e457506118ad6117d0565b73ffffffffffffffffffffffffffffffffffffffff166118cc846107e4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061191d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611984576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119918585856001611f34565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a8e86611f3a565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b18576000600184019050600060046000838152602001908152602001600020541415611b16576000548114611b15578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b808585856001611f44565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c6f828260405180602001604052806000815250611f4a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c996117d0565b8786866040518563ffffffff1660e01b8152600401611cbb9493929190612971565b602060405180830381600087803b158015611cd557600080fd5b505af1925050508015611d0657506040513d601f19601f82011682018060405250810190611d0391906125e5565b60015b611d80573d8060008114611d36576040519150601f19603f3d011682016040523d82523d6000602084013e611d3b565b606091505b50600081511415611d78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e4d578080611e3690612e0d565b915050600a82611e469190612c35565b9150611e23565b60008167ffffffffffffffff811115611e6957611e68612f43565b5b6040519080825280601f01601f191660200182016040528015611e9b5781602001600182028036833780820191505090505b5090505b60008514611f2857600182611eb49190612cc0565b9150600a85611ec39190612e56565b6030611ecf9190612bdf565b60f81b818381518110611ee557611ee4612f14565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f219190612c35565b9450611e9f565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611ff2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fff6000858386611f34565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612064600185146121ff565b901b60a042901b61207486611f3a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612178575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121286000878480600101955087611c73565b61215e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120b957826000541461217357600080fd5b6121e3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612179575b8160008190555050506121f96000858386611f44565b50505050565b6000819050919050565b82805461221590612daa565b90600052602060002090601f016020900481019282612237576000855561227e565b82601f1061225057805160ff191683800117855561227e565b8280016001018555821561227e579182015b8281111561227d578251825591602001919060010190612262565b5b50905061228b919061228f565b5090565b5b808211156122a8576000816000905550600101612290565b5090565b60006122bf6122ba84612b1a565b612af5565b9050828152602081018484840111156122db576122da612f77565b5b6122e6848285612d68565b509392505050565b60006123016122fc84612b4b565b612af5565b90508281526020810184848401111561231d5761231c612f77565b5b612328848285612d68565b509392505050565b60008135905061233f8161312e565b92915050565b60008135905061235481613145565b92915050565b6000813590506123698161315c565b92915050565b60008151905061237e8161315c565b92915050565b600082601f83011261239957612398612f72565b5b81356123a98482602086016122ac565b91505092915050565b600082601f8301126123c7576123c6612f72565b5b81356123d78482602086016122ee565b91505092915050565b6000813590506123ef81613173565b92915050565b60006020828403121561240b5761240a612f81565b5b600061241984828501612330565b91505092915050565b6000806040838503121561243957612438612f81565b5b600061244785828601612330565b925050602061245885828601612330565b9150509250929050565b60008060006060848603121561247b5761247a612f81565b5b600061248986828701612330565b935050602061249a86828701612330565b92505060406124ab868287016123e0565b9150509250925092565b600080600080608085870312156124cf576124ce612f81565b5b60006124dd87828801612330565b94505060206124ee87828801612330565b93505060406124ff878288016123e0565b925050606085013567ffffffffffffffff8111156125205761251f612f7c565b5b61252c87828801612384565b91505092959194509250565b6000806040838503121561254f5761254e612f81565b5b600061255d85828601612330565b925050602061256e85828601612345565b9150509250929050565b6000806040838503121561258f5761258e612f81565b5b600061259d85828601612330565b92505060206125ae858286016123e0565b9150509250929050565b6000602082840312156125ce576125cd612f81565b5b60006125dc8482850161235a565b91505092915050565b6000602082840312156125fb576125fa612f81565b5b60006126098482850161236f565b91505092915050565b60006020828403121561262857612627612f81565b5b600082013567ffffffffffffffff81111561264657612645612f7c565b5b612652848285016123b2565b91505092915050565b60006020828403121561267157612670612f81565b5b600061267f848285016123e0565b91505092915050565b61269181612cf4565b82525050565b6126a081612d06565b82525050565b60006126b182612b91565b6126bb8185612ba7565b93506126cb818560208601612d77565b6126d481612f86565b840191505092915050565b60006126ea82612b9c565b6126f48185612bc3565b9350612704818560208601612d77565b61270d81612f86565b840191505092915050565b600061272382612b9c565b61272d8185612bd4565b935061273d818560208601612d77565b80840191505092915050565b6000815461275681612daa565b6127608186612bd4565b9450600182166000811461277b576001811461278c576127bf565b60ff198316865281860193506127bf565b61279585612b7c565b60005b838110156127b757815481890152600182019150602081019050612798565b838801955050505b50505092915050565b60006127d5602683612bc3565b91506127e082612f97565b604082019050919050565b60006127f8600583612bd4565b915061280382612fe6565b600582019050919050565b600061281b602083612bc3565b91506128268261300f565b602082019050919050565b600061283e602f83612bc3565b915061284982613038565b604082019050919050565b6000612861601d83612bc3565b915061286c82613087565b602082019050919050565b6000612884600083612bb8565b915061288f826130b0565b600082019050919050565b60006128a7601383612bc3565b91506128b2826130b3565b602082019050919050565b60006128ca601f83612bc3565b91506128d5826130dc565b602082019050919050565b60006128ed600983612bc3565b91506128f882613105565b602082019050919050565b61290c81612d5e565b82525050565b600061291e8285612749565b915061292a8284612718565b9150612935826127eb565b91508190509392505050565b600061294c82612877565b9150819050919050565b600060208201905061296b6000830184612688565b92915050565b60006080820190506129866000830187612688565b6129936020830186612688565b6129a06040830185612903565b81810360608301526129b281846126a6565b905095945050505050565b60006020820190506129d26000830184612697565b92915050565b600060208201905081810360008301526129f281846126df565b905092915050565b60006020820190508181036000830152612a13816127c8565b9050919050565b60006020820190508181036000830152612a338161280e565b9050919050565b60006020820190508181036000830152612a5381612831565b9050919050565b60006020820190508181036000830152612a7381612854565b9050919050565b60006020820190508181036000830152612a938161289a565b9050919050565b60006020820190508181036000830152612ab3816128bd565b9050919050565b60006020820190508181036000830152612ad3816128e0565b9050919050565b6000602082019050612aef6000830184612903565b92915050565b6000612aff612b10565b9050612b0b8282612ddc565b919050565b6000604051905090565b600067ffffffffffffffff821115612b3557612b34612f43565b5b612b3e82612f86565b9050602081019050919050565b600067ffffffffffffffff821115612b6657612b65612f43565b5b612b6f82612f86565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bea82612d5e565b9150612bf583612d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c2a57612c29612e87565b5b828201905092915050565b6000612c4082612d5e565b9150612c4b83612d5e565b925082612c5b57612c5a612eb6565b5b828204905092915050565b6000612c7182612d5e565b9150612c7c83612d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb557612cb4612e87565b5b828202905092915050565b6000612ccb82612d5e565b9150612cd683612d5e565b925082821015612ce957612ce8612e87565b5b828203905092915050565b6000612cff82612d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d95578082015181840152602081019050612d7a565b83811115612da4576000848401525b50505050565b60006002820490506001821680612dc257607f821691505b60208210811415612dd657612dd5612ee5565b5b50919050565b612de582612f86565b810181811067ffffffffffffffff82111715612e0457612e03612f43565b5b80604052505050565b6000612e1882612d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e4b57612e4a612e87565b5b600182019050919050565b6000612e6182612d5e565b9150612e6c83612d5e565b925082612e7c57612e7b612eb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b61313781612cf4565b811461314257600080fd5b50565b61314e81612d06565b811461315957600080fd5b50565b61316581612d12565b811461317057600080fd5b50565b61317c81612d5e565b811461318757600080fd5b5056fea264697066735822122056b3e98679f7c80c36a5f53f4e2d6e31df3d1c01f3eba6c60d627370e740318564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f75780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146105ec578063de314a5914610629578063e985e9c514610654578063f2fde38b14610691576101c2565b80639cb57d2014610553578063a0712d681461057e578063a22cb4651461059a578063b88d4fde146105c3576101c2565b806391b7f5ed116100d157806391b7f5ed146104ad57806392910eec146104d657806395d89b41146104ff57806398832bd51461052a576101c2565b806370a082311461042e578063715018a61461046b5780638da5cb5b14610482576101c2565b806323b872dd1161016457806355f804b31161013e57806355f804b3146103725780635e1c4b601461039b5780636352211e146103c65780636c0360eb14610403576101c2565b806323b872dd146103165780633ccfd60b1461033f57806342842e0e14610349576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c057806322f4596f146102eb576101c2565b806301ffc9a7146101c75780630387da421461020457806306fdde031461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906125b8565b6106ba565b6040516101fb91906129bd565b60405180910390f35b34801561021057600080fd5b5061021961074c565b6040516102269190612ada565b60405180910390f35b34801561023b57600080fd5b50610244610752565b60405161025191906129d8565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c919061265b565b6107e4565b60405161028e9190612956565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612578565b610860565b005b3480156102cc57600080fd5b506102d5610a07565b6040516102e29190612ada565b60405180910390f35b3480156102f757600080fd5b50610300610a1e565b60405161030d9190612ada565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612462565b610a24565b005b610347610a34565b005b34801561035557600080fd5b50610370600480360381019061036b9190612462565b610b7f565b005b34801561037e57600080fd5b5061039960048036038101906103949190612612565b610b9f565b005b3480156103a757600080fd5b506103b0610c35565b6040516103bd9190612ada565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061265b565b610c3b565b6040516103fa9190612956565b60405180910390f35b34801561040f57600080fd5b50610418610c4d565b60405161042591906129d8565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906123f5565b610cdb565b6040516104629190612ada565b60405180910390f35b34801561047757600080fd5b50610480610d94565b005b34801561048e57600080fd5b50610497610e1c565b6040516104a49190612956565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf919061265b565b610e46565b005b3480156104e257600080fd5b506104fd60048036038101906104f8919061265b565b610ecc565b005b34801561050b57600080fd5b50610514610f52565b60405161052191906129d8565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c919061265b565b610fe4565b005b34801561055f57600080fd5b5061056861106a565b6040516105759190612ada565b60405180910390f35b6105986004803603810190610593919061265b565b611070565b005b3480156105a657600080fd5b506105c160048036038101906105bc9190612538565b6112aa565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906124b5565b611422565b005b3480156105f857600080fd5b50610613600480360381019061060e919061265b565b611495565b60405161062091906129d8565b60405180910390f35b34801561063557600080fd5b5061063e611511565b60405161064b9190612ada565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190612422565b611517565b60405161068891906129bd565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b391906123f5565b6115ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461076190612daa565b80601f016020809104026020016040519081016040528092919081815260200182805461078d90612daa565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b60006107ef826116a3565b610825576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086b82611702565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117d0565b73ffffffffffffffffffffffffffffffffffffffff16146109555761091e816109196117d0565b611517565b610954576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a116117d8565b6001546000540303905090565b600a5481565b610a2f8383836117dd565b505050565b610a3c611b87565b73ffffffffffffffffffffffffffffffffffffffff16610a5a610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790612a1a565b60405180910390fd5b60026009541415610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90612a9a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610b2490612941565b60006040518083038185875af1925050503d8060008114610b61576040519150601f19603f3d011682016040523d82523d6000602084013e610b66565b606091505b5050905080610b7457600080fd5b506001600981905550565b610b9a83838360405180602001604052806000815250611422565b505050565b610ba7611b87565b73ffffffffffffffffffffffffffffffffffffffff16610bc5610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612a1a565b60405180910390fd5b80600f9080519060200190610c31929190612209565b5050565b600e5481565b6000610c4682611702565b9050919050565b600f8054610c5a90612daa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8690612daa565b8015610cd35780601f10610ca857610100808354040283529160200191610cd3565b820191906000526020600020905b815481529060010190602001808311610cb657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d9c611b87565b73ffffffffffffffffffffffffffffffffffffffff16610dba610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790612a1a565b60405180910390fd5b610e1a6000611b8f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e4e611b87565b73ffffffffffffffffffffffffffffffffffffffff16610e6c610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990612a1a565b60405180910390fd5b80600b8190555050565b610ed4611b87565b73ffffffffffffffffffffffffffffffffffffffff16610ef2610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612a1a565b60405180910390fd5b80600e8190555050565b606060038054610f6190612daa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8d90612daa565b8015610fda5780601f10610faf57610100808354040283529160200191610fda565b820191906000526020600020905b815481529060010190602001808311610fbd57829003601f168201915b5050505050905090565b610fec611b87565b73ffffffffffffffffffffffffffffffffffffffff1661100a610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612a1a565b60405180910390fd5b80600d8190555050565b600d5481565b6000600b54905060006001600e546110889190612bdf565b83611091610a07565b61109b9190612bdf565b1080156110f45750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f19190612bdf565b11155b806111315750611102610e1c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561113e57600091505b818361114a9190612c66565b34101561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612a5a565b60405180910390fd5b6001600a5461119b9190612bdf565b836111a4610a07565b6111ae9190612bdf565b106111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612aba565b60405180910390fd5b6001600c546111fd9190612bdf565b831061123e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123590612a7a565b60405180910390fd5b801561129b5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112939190612bdf565b925050819055505b6112a53384611c55565b505050565b6112b26117d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611317576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113246117d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d16117d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141691906129bd565b60405180910390a35050565b61142d8484846117dd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461148f5761145884848484611c73565b61148e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114a0826116a3565b6114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612a3a565b60405180910390fd5b600f6114ea83611dd3565b6040516020016114fb929190612912565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611b87565b73ffffffffffffffffffffffffffffffffffffffff166115d1610e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90612a1a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906129fa565b60405180910390fd5b6116a081611b8f565b50565b6000816116ae6117d8565b111580156116bd575060005482105b80156116fb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117116117d8565b11611799576000548110156117985760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611796575b600081141561178c576004600083600190039350838152602001908152602001600020549050611761565b80925050506117cb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117e882611702565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461184f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118706117d0565b73ffffffffffffffffffffffffffffffffffffffff16148061189f575061189e856118996117d0565b611517565b5b806118e457506118ad6117d0565b73ffffffffffffffffffffffffffffffffffffffff166118cc846107e4565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061191d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611984576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119918585856001611f34565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a8e86611f3a565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b18576000600184019050600060046000838152602001908152602001600020541415611b16576000548114611b15578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b808585856001611f44565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c6f828260405180602001604052806000815250611f4a565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c996117d0565b8786866040518563ffffffff1660e01b8152600401611cbb9493929190612971565b602060405180830381600087803b158015611cd557600080fd5b505af1925050508015611d0657506040513d601f19601f82011682018060405250810190611d0391906125e5565b60015b611d80573d8060008114611d36576040519150601f19603f3d011682016040523d82523d6000602084013e611d3b565b606091505b50600081511415611d78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2f565b600082905060005b60008214611e4d578080611e3690612e0d565b915050600a82611e469190612c35565b9150611e23565b60008167ffffffffffffffff811115611e6957611e68612f43565b5b6040519080825280601f01601f191660200182016040528015611e9b5781602001600182028036833780820191505090505b5090505b60008514611f2857600182611eb49190612cc0565b9150600a85611ec39190612e56565b6030611ecf9190612bdf565b60f81b818381518110611ee557611ee4612f14565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f219190612c35565b9450611e9f565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611ff2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fff6000858386611f34565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612064600185146121ff565b901b60a042901b61207486611f3a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612178575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121286000878480600101955087611c73565b61215e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120b957826000541461217357600080fd5b6121e3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612179575b8160008190555050506121f96000858386611f44565b50505050565b6000819050919050565b82805461221590612daa565b90600052602060002090601f016020900481019282612237576000855561227e565b82601f1061225057805160ff191683800117855561227e565b8280016001018555821561227e579182015b8281111561227d578251825591602001919060010190612262565b5b50905061228b919061228f565b5090565b5b808211156122a8576000816000905550600101612290565b5090565b60006122bf6122ba84612b1a565b612af5565b9050828152602081018484840111156122db576122da612f77565b5b6122e6848285612d68565b509392505050565b60006123016122fc84612b4b565b612af5565b90508281526020810184848401111561231d5761231c612f77565b5b612328848285612d68565b509392505050565b60008135905061233f8161312e565b92915050565b60008135905061235481613145565b92915050565b6000813590506123698161315c565b92915050565b60008151905061237e8161315c565b92915050565b600082601f83011261239957612398612f72565b5b81356123a98482602086016122ac565b91505092915050565b600082601f8301126123c7576123c6612f72565b5b81356123d78482602086016122ee565b91505092915050565b6000813590506123ef81613173565b92915050565b60006020828403121561240b5761240a612f81565b5b600061241984828501612330565b91505092915050565b6000806040838503121561243957612438612f81565b5b600061244785828601612330565b925050602061245885828601612330565b9150509250929050565b60008060006060848603121561247b5761247a612f81565b5b600061248986828701612330565b935050602061249a86828701612330565b92505060406124ab868287016123e0565b9150509250925092565b600080600080608085870312156124cf576124ce612f81565b5b60006124dd87828801612330565b94505060206124ee87828801612330565b93505060406124ff878288016123e0565b925050606085013567ffffffffffffffff8111156125205761251f612f7c565b5b61252c87828801612384565b91505092959194509250565b6000806040838503121561254f5761254e612f81565b5b600061255d85828601612330565b925050602061256e85828601612345565b9150509250929050565b6000806040838503121561258f5761258e612f81565b5b600061259d85828601612330565b92505060206125ae858286016123e0565b9150509250929050565b6000602082840312156125ce576125cd612f81565b5b60006125dc8482850161235a565b91505092915050565b6000602082840312156125fb576125fa612f81565b5b60006126098482850161236f565b91505092915050565b60006020828403121561262857612627612f81565b5b600082013567ffffffffffffffff81111561264657612645612f7c565b5b612652848285016123b2565b91505092915050565b60006020828403121561267157612670612f81565b5b600061267f848285016123e0565b91505092915050565b61269181612cf4565b82525050565b6126a081612d06565b82525050565b60006126b182612b91565b6126bb8185612ba7565b93506126cb818560208601612d77565b6126d481612f86565b840191505092915050565b60006126ea82612b9c565b6126f48185612bc3565b9350612704818560208601612d77565b61270d81612f86565b840191505092915050565b600061272382612b9c565b61272d8185612bd4565b935061273d818560208601612d77565b80840191505092915050565b6000815461275681612daa565b6127608186612bd4565b9450600182166000811461277b576001811461278c576127bf565b60ff198316865281860193506127bf565b61279585612b7c565b60005b838110156127b757815481890152600182019150602081019050612798565b838801955050505b50505092915050565b60006127d5602683612bc3565b91506127e082612f97565b604082019050919050565b60006127f8600583612bd4565b915061280382612fe6565b600582019050919050565b600061281b602083612bc3565b91506128268261300f565b602082019050919050565b600061283e602f83612bc3565b915061284982613038565b604082019050919050565b6000612861601d83612bc3565b915061286c82613087565b602082019050919050565b6000612884600083612bb8565b915061288f826130b0565b600082019050919050565b60006128a7601383612bc3565b91506128b2826130b3565b602082019050919050565b60006128ca601f83612bc3565b91506128d5826130dc565b602082019050919050565b60006128ed600983612bc3565b91506128f882613105565b602082019050919050565b61290c81612d5e565b82525050565b600061291e8285612749565b915061292a8284612718565b9150612935826127eb565b91508190509392505050565b600061294c82612877565b9150819050919050565b600060208201905061296b6000830184612688565b92915050565b60006080820190506129866000830187612688565b6129936020830186612688565b6129a06040830185612903565b81810360608301526129b281846126a6565b905095945050505050565b60006020820190506129d26000830184612697565b92915050565b600060208201905081810360008301526129f281846126df565b905092915050565b60006020820190508181036000830152612a13816127c8565b9050919050565b60006020820190508181036000830152612a338161280e565b9050919050565b60006020820190508181036000830152612a5381612831565b9050919050565b60006020820190508181036000830152612a7381612854565b9050919050565b60006020820190508181036000830152612a938161289a565b9050919050565b60006020820190508181036000830152612ab3816128bd565b9050919050565b60006020820190508181036000830152612ad3816128e0565b9050919050565b6000602082019050612aef6000830184612903565b92915050565b6000612aff612b10565b9050612b0b8282612ddc565b919050565b6000604051905090565b600067ffffffffffffffff821115612b3557612b34612f43565b5b612b3e82612f86565b9050602081019050919050565b600067ffffffffffffffff821115612b6657612b65612f43565b5b612b6f82612f86565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bea82612d5e565b9150612bf583612d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c2a57612c29612e87565b5b828201905092915050565b6000612c4082612d5e565b9150612c4b83612d5e565b925082612c5b57612c5a612eb6565b5b828204905092915050565b6000612c7182612d5e565b9150612c7c83612d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb557612cb4612e87565b5b828202905092915050565b6000612ccb82612d5e565b9150612cd683612d5e565b925082821015612ce957612ce8612e87565b5b828203905092915050565b6000612cff82612d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d95578082015181840152602081019050612d7a565b83811115612da4576000848401525b50505050565b60006002820490506001821680612dc257607f821691505b60208210811415612dd657612dd5612ee5565b5b50919050565b612de582612f86565b810181811067ffffffffffffffff82111715612e0457612e03612f43565b5b80604052505050565b6000612e1882612d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e4b57612e4a612e87565b5b600182019050919050565b6000612e6182612d5e565b9150612e6c83612d5e565b925082612e7c57612e7b612eb6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b61313781612cf4565b811461314257600080fd5b50565b61314e81612d06565b811461315957600080fd5b50565b61316581612d12565b811461317057600080fd5b50565b61317c81612d5e565b811461318757600080fd5b5056fea264697066735822122056b3e98679f7c80c36a5f53f4e2d6e31df3d1c01f3eba6c60d627370e740318564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46813:2372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21481:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46919:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26494:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28562:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28022:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20535:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46880:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29448:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48977:205;;;:::i;:::-;;29689:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48515:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47052:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26283:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47133:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22160:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7591:103;;;;;;;;;;;;;:::i;:::-;;6940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48872:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48611:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26663;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48731:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47007:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47341:692;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28838:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29945:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48157:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46965:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29217:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7849:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21481:615;21566:4;21881:10;21866:25;;:11;:25;;;;:102;;;;21958:10;21943:25;;:11;:25;;;;21866:102;:179;;;;22035:10;22020:25;;:11;:25;;;;21866:179;21846:199;;21481:615;;;:::o;46919:39::-;;;;:::o;26494:100::-;26548:13;26581:5;26574:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26494:100;:::o;28562:204::-;28630:7;28655:16;28663:7;28655;:16::i;:::-;28650:64;;28680:34;;;;;;;;;;;;;;28650:64;28734:15;:24;28750:7;28734:24;;;;;;;;;;;;;;;;;;;;;28727:31;;28562:204;;;:::o;28022:474::-;28095:13;28127:27;28146:7;28127:18;:27::i;:::-;28095:61;;28177:5;28171:11;;:2;:11;;;28167:48;;;28191:24;;;;;;;;;;;;;;28167:48;28255:5;28232:28;;:19;:17;:19::i;:::-;:28;;;28228:175;;28280:44;28297:5;28304:19;:17;:19::i;:::-;28280:16;:44::i;:::-;28275:128;;28352:35;;;;;;;;;;;;;;28275:128;28228:175;28442:2;28415:15;:24;28431:7;28415:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28480:7;28476:2;28460:28;;28469:5;28460:28;;;;;;;;;;;;28084:412;28022:474;;:::o;20535:315::-;20588:7;20816:15;:13;:15::i;:::-;20801:12;;20785:13;;:28;:46;20778:53;;20535:315;:::o;46880:32::-;;;;:::o;29448:170::-;29582:28;29592:4;29598:2;29602:7;29582:9;:28::i;:::-;29448:170;;;:::o;48977:205::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4038:1:::1;4636:7;;:19;;4628:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4038:1;4769:7;:18;;;;49047:12:::2;49073:10;49065:24;;49111:21;49065:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49046:101;;;49166:7;49158:16;;;::::0;::::2;;49035:147;3994:1:::1;4948:7;:22;;;;48977:205::o:0;29689:185::-;29827:39;29844:4;29850:2;29854:7;29827:39;;;;;;;;;;;;:16;:39::i;:::-;29689:185;;;:::o;48515:88::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48592:3:::1;48582:7;:13;;;;;;;;;;;;:::i;:::-;;48515:88:::0;:::o;47052:40::-;;;;:::o;26283:144::-;26347:7;26390:27;26409:7;26390:18;:27::i;:::-;26367:52;;26283:144;;;:::o;47133:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22160:224::-;22224:7;22265:1;22248:19;;:5;:19;;;22244:60;;;22276:28;;;;;;;;;;;;;;22244:60;17499:13;22322:18;:25;22341:5;22322:25;;;;;;;;;;;;;;;;:54;22315:61;;22160:224;;;:::o;7591:103::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7656:30:::1;7683:1;7656:18;:30::i;:::-;7591:103::o:0;6940:87::-;6986:7;7013:6;;;;;;;;;;;7006:13;;6940:87;:::o;48872:97::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48952:9:::1;48939:10;:22;;;;48872:97:::0;:::o;48611:104::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48701:6:::1;48680:18;:27;;;;48611:104:::0;:::o;26663:::-;26719:13;26752:7;26745:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26663:104;:::o;48731:133::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48840:16:::1;48818:19;:38;;;;48731:133:::0;:::o;47007:38::-;;;;:::o;47341:692::-;47398:12;47413:10;;47398:25;;47434:11;47495:1;47474:18;;:22;;;;:::i;:::-;47466:5;47450:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;47449:127;;;;;47556:19;;47547:5;47515:17;:29;47533:10;47515:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;47449:127;47448:169;;;;47609:7;:5;:7::i;:::-;47595:21;;:10;:21;;;47448:169;47434:183;;47634:6;47630:47;;;47664:1;47657:8;;47630:47;47718:4;47710:5;:12;;;;:::i;:::-;47697:9;:25;;47689:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47812:1;47799:10;;:14;;;;:::i;:::-;47791:5;47775:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;47767:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47870:1;47854:13;;:17;;;;:::i;:::-;47846:5;:25;47838:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47912:6;47908:77;;;47968:5;47935:17;:29;47953:10;47935:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;47908:77;47997:28;48007:10;48019:5;47997:9;:28::i;:::-;47387:646;;47341:692;:::o;28838:308::-;28949:19;:17;:19::i;:::-;28937:31;;:8;:31;;;28933:61;;;28977:17;;;;;;;;;;;;;;28933:61;29059:8;29007:18;:39;29026:19;:17;:19::i;:::-;29007:39;;;;;;;;;;;;;;;:49;29047:8;29007:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29119:8;29083:55;;29098:19;:17;:19::i;:::-;29083:55;;;29129:8;29083:55;;;;;;:::i;:::-;;;;;;;;28838:308;;:::o;29945:396::-;30112:28;30122:4;30128:2;30132:7;30112:9;:28::i;:::-;30173:1;30155:2;:14;;;:19;30151:183;;30194:56;30225:4;30231:2;30235:7;30244:5;30194:30;:56::i;:::-;30189:145;;30278:40;;;;;;;;;;;;;;30189:145;30151:183;29945:396;;;;:::o;48157:350::-;48275:13;48328:16;48336:7;48328;:16::i;:::-;48306:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48461:7;48470:18;:7;:16;:18::i;:::-;48444:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48430:69;;48157:350;;;:::o;46965:33::-;;;;:::o;29217:164::-;29314:4;29338:18;:25;29357:5;29338:25;;;;;;;;;;;;;;;:35;29364:8;29338:35;;;;;;;;;;;;;;;;;;;;;;;;;29331:42;;29217:164;;;;:::o;7849:201::-;7171:12;:10;:12::i;:::-;7160:23;;:7;:5;:7::i;:::-;:23;;;7152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7958:1:::1;7938:22;;:8;:22;;;;7930:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8014:28;8033:8;8014:18;:28::i;:::-;7849:201:::0;:::o;30596:273::-;30653:4;30709:7;30690:15;:13;:15::i;:::-;:26;;:66;;;;;30743:13;;30733:7;:23;30690:66;:152;;;;;30841:1;18269:8;30794:17;:26;30812:7;30794:26;;;;;;;;;;;;:43;:48;30690:152;30670:172;;30596:273;;;:::o;23798:1129::-;23865:7;23885:12;23900:7;23885:22;;23968:4;23949:15;:13;:15::i;:::-;:23;23945:915;;24002:13;;23995:4;:20;23991:869;;;24040:14;24057:17;:23;24075:4;24057:23;;;;;;;;;;;;24040:40;;24173:1;18269:8;24146:6;:23;:28;24142:699;;;24665:113;24682:1;24672:6;:11;24665:113;;;24725:17;:25;24743:6;;;;;;;24725:25;;;;;;;;;;;;24716:34;;24665:113;;;24811:6;24804:13;;;;;;24142:699;24017:843;23991:869;23945:915;24888:31;;;;;;;;;;;;;;23798:1129;;;;:::o;44578:105::-;44638:7;44665:10;44658:17;;44578:105;:::o;20058:92::-;20114:7;20058:92;:::o;35835:2515::-;35950:27;35980;35999:7;35980:18;:27::i;:::-;35950:57;;36065:4;36024:45;;36040:19;36024:45;;;36020:86;;36078:28;;;;;;;;;;;;;;36020:86;36119:22;36168:4;36145:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36189:43;36206:4;36212:19;:17;:19::i;:::-;36189:16;:43::i;:::-;36145:87;:147;;;;36273:19;:17;:19::i;:::-;36249:43;;:20;36261:7;36249:11;:20::i;:::-;:43;;;36145:147;36119:174;;36311:17;36306:66;;36337:35;;;;;;;;;;;;;;36306:66;36401:1;36387:16;;:2;:16;;;36383:52;;;36412:23;;;;;;;;;;;;;;36383:52;36448:43;36470:4;36476:2;36480:7;36489:1;36448:21;:43::i;:::-;36564:15;:24;36580:7;36564:24;;;;;;;;;;;;36557:31;;;;;;;;;;;36956:18;:24;36975:4;36956:24;;;;;;;;;;;;;;;;36954:26;;;;;;;;;;;;37025:18;:22;37044:2;37025:22;;;;;;;;;;;;;;;;37023:24;;;;;;;;;;;18551:8;18153:3;37406:15;:41;;37364:21;37382:2;37364:17;:21::i;:::-;:84;:128;37318:17;:26;37336:7;37318:26;;;;;;;;;;;:174;;;;37662:1;18551:8;37612:19;:46;:51;37608:626;;;37684:19;37716:1;37706:7;:11;37684:33;;37873:1;37839:17;:30;37857:11;37839:30;;;;;;;;;;;;:35;37835:384;;;37977:13;;37962:11;:28;37958:242;;38157:19;38124:17;:30;38142:11;38124:30;;;;;;;;;;;:52;;;;37958:242;37835:384;37665:569;37608:626;38281:7;38277:2;38262:27;;38271:4;38262:27;;;;;;;;;;;;38300:42;38321:4;38327:2;38331:7;38340:1;38300:20;:42::i;:::-;35939:2411;;35835:2515;;;:::o;5664:98::-;5717:7;5744:10;5737:17;;5664:98;:::o;8210:191::-;8284:16;8303:6;;;;;;;;;;;8284:25;;8329:8;8320:6;;:17;;;;;;;;;;;;;;;;;;8384:8;8353:40;;8374:8;8353:40;;;;;;;;;;;;8273:128;8210:191;:::o;30953:104::-;31022:27;31032:2;31036:8;31022:27;;;;;;;;;;;;:9;:27::i;:::-;30953:104;;:::o;42047:716::-;42210:4;42256:2;42231:45;;;42277:19;:17;:19::i;:::-;42298:4;42304:7;42313:5;42231:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42227:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42531:1;42514:6;:13;:18;42510:235;;;42560:40;;;;;;;;;;;;;;42510:235;42703:6;42697:13;42688:6;42684:2;42680:15;42673:38;42227:529;42400:54;;;42390:64;;;:6;:64;;;;42383:71;;;42047:716;;;;;;:::o;467:723::-;523:13;753:1;744:5;:10;740:53;;;771:10;;;;;;;;;;;;;;;;;;;;;740:53;803:12;818:5;803:20;;834:14;859:78;874:1;866:4;:9;859:78;;892:8;;;;;:::i;:::-;;;;923:2;915:10;;;;;:::i;:::-;;;859:78;;;947:19;979:6;969:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947:39;;997:154;1013:1;1004:5;:10;997:154;;1041:1;1031:11;;;;;:::i;:::-;;;1108:2;1100:5;:10;;;;:::i;:::-;1087:2;:24;;;;:::i;:::-;1074:39;;1057:6;1064;1057:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1137:2;1128:11;;;;;:::i;:::-;;;997:154;;;1175:6;1161:21;;;;;467:723;;;;:::o;43411:159::-;;;;;:::o;27583:148::-;27647:14;27708:5;27698:15;;27583:148;;;:::o;44229:158::-;;;;;:::o;31430:2236::-;31553:20;31576:13;;31553:36;;31618:1;31604:16;;:2;:16;;;31600:48;;;31629:19;;;;;;;;;;;;;;31600:48;31675:1;31663:8;:13;31659:44;;;31685:18;;;;;;;;;;;;;;31659:44;31716:61;31746:1;31750:2;31754:12;31768:8;31716:21;:61::i;:::-;32320:1;17636:2;32291:1;:25;;32290:31;32278:8;:44;32252:18;:22;32271:2;32252:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18416:3;32721:29;32748:1;32736:8;:13;32721:14;:29::i;:::-;:56;;18153:3;32658:15;:41;;32616:21;32634:2;32616:17;:21::i;:::-;:84;:162;32565:17;:31;32583:12;32565:31;;;;;;;;;;;:213;;;;32795:20;32818:12;32795:35;;32845:11;32874:8;32859:12;:23;32845:37;;32921:1;32903:2;:14;;;:19;32899:635;;32943:313;32999:12;32995:2;32974:38;;32991:1;32974:38;;;;;;;;;;;;33040:69;33079:1;33083:2;33087:14;;;;;;33103:5;33040:30;:69::i;:::-;33035:174;;33145:40;;;;;;;;;;;;;;33035:174;33251:3;33236:12;:18;32943:313;;33337:12;33320:13;;:29;33316:43;;33351:8;;;33316:43;32899:635;;;33400:119;33456:14;;;;;;33452:2;33431:40;;33448:1;33431:40;;;;;;;;;;;;33514:3;33499:12;:18;33400:119;;32899:635;33564:12;33548:13;:28;;;;32029:1559;;33598:60;33627:1;33631:2;33635:12;33649:8;33598:20;:60::i;:::-;31542:2124;31430:2236;;;:::o;27818:142::-;27876:14;27937:5;27927:15;;27818:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:400::-;9923:3;9944:84;10026:1;10021:3;9944:84;:::i;:::-;9937:91;;10037:93;10126:3;10037:93;:::i;:::-;10155:1;10150:3;10146:11;10139:18;;9763:400;;;:::o;10169:366::-;10311:3;10332:67;10396:2;10391:3;10332:67;:::i;:::-;10325:74;;10408:93;10497:3;10408:93;:::i;:::-;10526:2;10521:3;10517:12;10510:19;;10169:366;;;:::o;10541:::-;10683:3;10704:67;10768:2;10763:3;10704:67;:::i;:::-;10697:74;;10780:93;10869:3;10780:93;:::i;:::-;10898:2;10893:3;10889:12;10882:19;;10541:366;;;:::o;10913:::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:398::-;11444:3;11465:83;11546:1;11541:3;11465:83;:::i;:::-;11458:90;;11557:93;11646:3;11557:93;:::i;:::-;11675:1;11670:3;11666:11;11659:18;;11285:398;;;:::o;11689:366::-;11831:3;11852:67;11916:2;11911:3;11852:67;:::i;:::-;11845:74;;11928:93;12017:3;11928:93;:::i;:::-;12046:2;12041:3;12037:12;12030:19;;11689:366;;;:::o;12061:::-;12203:3;12224:67;12288:2;12283:3;12224:67;:::i;:::-;12217:74;;12300:93;12389:3;12300:93;:::i;:::-;12418:2;12413:3;12409:12;12402:19;;12061:366;;;:::o;12433:365::-;12575:3;12596:66;12660:1;12655:3;12596:66;:::i;:::-;12589:73;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12433:365;;;:::o;12804:118::-;12891:24;12909:5;12891:24;:::i;:::-;12886:3;12879:37;12804:118;;:::o;12928:695::-;13206:3;13228:92;13316:3;13307:6;13228:92;:::i;:::-;13221:99;;13337:95;13428:3;13419:6;13337:95;:::i;:::-;13330:102;;13449:148;13593:3;13449:148;:::i;:::-;13442:155;;13614:3;13607:10;;12928:695;;;;;:::o;13629:379::-;13813:3;13835:147;13978:3;13835:147;:::i;:::-;13828:154;;13999:3;13992:10;;13629:379;;;:::o;14014:222::-;14107:4;14145:2;14134:9;14130:18;14122:26;;14158:71;14226:1;14215:9;14211:17;14202:6;14158:71;:::i;:::-;14014:222;;;;:::o;14242:640::-;14437:4;14475:3;14464:9;14460:19;14452:27;;14489:71;14557:1;14546:9;14542:17;14533:6;14489:71;:::i;:::-;14570:72;14638:2;14627:9;14623:18;14614:6;14570:72;:::i;:::-;14652;14720:2;14709:9;14705:18;14696:6;14652:72;:::i;:::-;14771:9;14765:4;14761:20;14756:2;14745:9;14741:18;14734:48;14799:76;14870:4;14861:6;14799:76;:::i;:::-;14791:84;;14242:640;;;;;;;:::o;14888:210::-;14975:4;15013:2;15002:9;14998:18;14990:26;;15026:65;15088:1;15077:9;15073:17;15064:6;15026:65;:::i;:::-;14888:210;;;;:::o;15104:313::-;15217:4;15255:2;15244:9;15240:18;15232:26;;15304:9;15298:4;15294:20;15290:1;15279:9;15275:17;15268:47;15332:78;15405:4;15396:6;15332:78;:::i;:::-;15324:86;;15104:313;;;;:::o;15423:419::-;15589:4;15627:2;15616:9;15612:18;15604:26;;15676:9;15670:4;15666:20;15662:1;15651:9;15647:17;15640:47;15704:131;15830:4;15704:131;:::i;:::-;15696:139;;15423:419;;;:::o;15848:::-;16014:4;16052:2;16041:9;16037:18;16029:26;;16101:9;16095:4;16091:20;16087:1;16076:9;16072:17;16065:47;16129:131;16255:4;16129:131;:::i;:::-;16121:139;;15848:419;;;:::o;16273:::-;16439:4;16477:2;16466:9;16462:18;16454:26;;16526:9;16520:4;16516:20;16512:1;16501:9;16497:17;16490:47;16554:131;16680:4;16554:131;:::i;:::-;16546:139;;16273:419;;;:::o;16698:::-;16864:4;16902:2;16891:9;16887:18;16879:26;;16951:9;16945:4;16941:20;16937:1;16926:9;16922:17;16915:47;16979:131;17105:4;16979:131;:::i;:::-;16971:139;;16698:419;;;:::o;17123:::-;17289:4;17327:2;17316:9;17312:18;17304:26;;17376:9;17370:4;17366:20;17362:1;17351:9;17347:17;17340:47;17404:131;17530:4;17404:131;:::i;:::-;17396:139;;17123:419;;;:::o;17548:::-;17714:4;17752:2;17741:9;17737:18;17729:26;;17801:9;17795:4;17791:20;17787:1;17776:9;17772:17;17765:47;17829:131;17955:4;17829:131;:::i;:::-;17821:139;;17548:419;;;:::o;17973:::-;18139:4;18177:2;18166:9;18162:18;18154:26;;18226:9;18220:4;18216:20;18212:1;18201:9;18197:17;18190:47;18254:131;18380:4;18254:131;:::i;:::-;18246:139;;17973:419;;;:::o;18398:222::-;18491:4;18529:2;18518:9;18514:18;18506:26;;18542:71;18610:1;18599:9;18595:17;18586:6;18542:71;:::i;:::-;18398:222;;;;:::o;18626:129::-;18660:6;18687:20;;:::i;:::-;18677:30;;18716:33;18744:4;18736:6;18716:33;:::i;:::-;18626:129;;;:::o;18761:75::-;18794:6;18827:2;18821:9;18811:19;;18761:75;:::o;18842:307::-;18903:4;18993:18;18985:6;18982:30;18979:56;;;19015:18;;:::i;:::-;18979:56;19053:29;19075:6;19053:29;:::i;:::-;19045:37;;19137:4;19131;19127:15;19119:23;;18842:307;;;:::o;19155:308::-;19217:4;19307:18;19299:6;19296:30;19293:56;;;19329:18;;:::i;:::-;19293:56;19367:29;19389:6;19367:29;:::i;:::-;19359:37;;19451:4;19445;19441:15;19433:23;;19155:308;;;:::o;19469:141::-;19518:4;19541:3;19533:11;;19564:3;19561:1;19554:14;19598:4;19595:1;19585:18;19577:26;;19469:141;;;:::o;19616:98::-;19667:6;19701:5;19695:12;19685:22;;19616:98;;;:::o;19720:99::-;19772:6;19806:5;19800:12;19790:22;;19720:99;;;:::o;19825:168::-;19908:11;19942:6;19937:3;19930:19;19982:4;19977:3;19973:14;19958:29;;19825:168;;;;:::o;19999:147::-;20100:11;20137:3;20122:18;;19999:147;;;;:::o;20152:169::-;20236:11;20270:6;20265:3;20258:19;20310:4;20305:3;20301:14;20286:29;;20152:169;;;;:::o;20327:148::-;20429:11;20466:3;20451:18;;20327:148;;;;:::o;20481:305::-;20521:3;20540:20;20558:1;20540:20;:::i;:::-;20535:25;;20574:20;20592:1;20574:20;:::i;:::-;20569:25;;20728:1;20660:66;20656:74;20653:1;20650:81;20647:107;;;20734:18;;:::i;:::-;20647:107;20778:1;20775;20771:9;20764:16;;20481:305;;;;:::o;20792:185::-;20832:1;20849:20;20867:1;20849:20;:::i;:::-;20844:25;;20883:20;20901:1;20883:20;:::i;:::-;20878:25;;20922:1;20912:35;;20927:18;;:::i;:::-;20912:35;20969:1;20966;20962:9;20957:14;;20792:185;;;;:::o;20983:348::-;21023:7;21046:20;21064:1;21046:20;:::i;:::-;21041:25;;21080:20;21098:1;21080:20;:::i;:::-;21075:25;;21268:1;21200:66;21196:74;21193:1;21190:81;21185:1;21178:9;21171:17;21167:105;21164:131;;;21275:18;;:::i;:::-;21164:131;21323:1;21320;21316:9;21305:20;;20983:348;;;;:::o;21337:191::-;21377:4;21397:20;21415:1;21397:20;:::i;:::-;21392:25;;21431:20;21449:1;21431:20;:::i;:::-;21426:25;;21470:1;21467;21464:8;21461:34;;;21475:18;;:::i;:::-;21461:34;21520:1;21517;21513:9;21505:17;;21337:191;;;;:::o;21534:96::-;21571:7;21600:24;21618:5;21600:24;:::i;:::-;21589:35;;21534:96;;;:::o;21636:90::-;21670:7;21713:5;21706:13;21699:21;21688:32;;21636:90;;;:::o;21732:149::-;21768:7;21808:66;21801:5;21797:78;21786:89;;21732:149;;;:::o;21887:126::-;21924:7;21964:42;21957:5;21953:54;21942:65;;21887:126;;;:::o;22019:77::-;22056:7;22085:5;22074:16;;22019:77;;;:::o;22102:154::-;22186:6;22181:3;22176;22163:30;22248:1;22239:6;22234:3;22230:16;22223:27;22102:154;;;:::o;22262:307::-;22330:1;22340:113;22354:6;22351:1;22348:13;22340:113;;;22439:1;22434:3;22430:11;22424:18;22420:1;22415:3;22411:11;22404:39;22376:2;22373:1;22369:10;22364:15;;22340:113;;;22471:6;22468:1;22465:13;22462:101;;;22551:1;22542:6;22537:3;22533:16;22526:27;22462:101;22311:258;22262:307;;;:::o;22575:320::-;22619:6;22656:1;22650:4;22646:12;22636:22;;22703:1;22697:4;22693:12;22724:18;22714:81;;22780:4;22772:6;22768:17;22758:27;;22714:81;22842:2;22834:6;22831:14;22811:18;22808:38;22805:84;;;22861:18;;:::i;:::-;22805:84;22626:269;22575:320;;;:::o;22901:281::-;22984:27;23006:4;22984:27;:::i;:::-;22976:6;22972:40;23114:6;23102:10;23099:22;23078:18;23066:10;23063:34;23060:62;23057:88;;;23125:18;;:::i;:::-;23057:88;23165:10;23161:2;23154:22;22944:238;22901:281;;:::o;23188:233::-;23227:3;23250:24;23268:5;23250:24;:::i;:::-;23241:33;;23296:66;23289:5;23286:77;23283:103;;;23366:18;;:::i;:::-;23283:103;23413:1;23406:5;23402:13;23395:20;;23188:233;;;:::o;23427:176::-;23459:1;23476:20;23494:1;23476:20;:::i;:::-;23471:25;;23510:20;23528:1;23510:20;:::i;:::-;23505:25;;23549:1;23539:35;;23554:18;;:::i;:::-;23539:35;23595:1;23592;23588:9;23583:14;;23427:176;;;;:::o;23609:180::-;23657:77;23654:1;23647:88;23754:4;23751:1;23744:15;23778:4;23775:1;23768:15;23795:180;23843:77;23840:1;23833:88;23940:4;23937:1;23930:15;23964:4;23961:1;23954:15;23981:180;24029:77;24026:1;24019:88;24126:4;24123:1;24116:15;24150:4;24147:1;24140:15;24167:180;24215:77;24212:1;24205:88;24312:4;24309:1;24302:15;24336:4;24333:1;24326:15;24353:180;24401:77;24398:1;24391:88;24498:4;24495:1;24488:15;24522:4;24519:1;24512:15;24539:117;24648:1;24645;24638:12;24662:117;24771:1;24768;24761:12;24785:117;24894:1;24891;24884:12;24908:117;25017:1;25014;25007:12;25031:102;25072:6;25123:2;25119:7;25114:2;25107:5;25103:14;25099:28;25089:38;;25031:102;;;:::o;25139:225::-;25279:34;25275:1;25267:6;25263:14;25256:58;25348:8;25343:2;25335:6;25331:15;25324:33;25139:225;:::o;25370:155::-;25510:7;25506:1;25498:6;25494:14;25487:31;25370:155;:::o;25531:182::-;25671:34;25667:1;25659:6;25655:14;25648:58;25531:182;:::o;25719:234::-;25859:34;25855:1;25847:6;25843:14;25836:58;25928:17;25923:2;25915:6;25911:15;25904:42;25719:234;:::o;25959:179::-;26099:31;26095:1;26087:6;26083:14;26076:55;25959:179;:::o;26144:114::-;;:::o;26264:169::-;26404:21;26400:1;26392:6;26388:14;26381:45;26264:169;:::o;26439:181::-;26579:33;26575:1;26567:6;26563:14;26556:57;26439:181;:::o;26626:159::-;26766:11;26762:1;26754:6;26750:14;26743:35;26626:159;:::o;26791:122::-;26864:24;26882:5;26864:24;:::i;:::-;26857:5;26854:35;26844:63;;26903:1;26900;26893:12;26844:63;26791:122;:::o;26919:116::-;26989:21;27004:5;26989:21;:::i;:::-;26982:5;26979:32;26969:60;;27025:1;27022;27015:12;26969:60;26919:116;:::o;27041:120::-;27113:23;27130:5;27113:23;:::i;:::-;27106:5;27103:34;27093:62;;27151:1;27148;27141:12;27093:62;27041:120;:::o;27167:122::-;27240:24;27258:5;27240:24;:::i;:::-;27233:5;27230:35;27220:63;;27279:1;27276;27269:12;27220:63;27167:122;:::o

Swarm Source

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