ETH Price: $3,248.84 (-0.56%)

Token

Sleeper Hits (Dream)
 

Overview

Max Total Supply

384 Dream

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 Dream
0xb6487d7a48c2e246df12f0148775dcd56f1f8e0d
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:
SLEEPER

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/sleep.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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


// File contracts/sleep.sol


contract SLEEPER is ERC721A, Ownable {

    string public baseURI = "ipfs://QmP1QqAECtismVg6K6xQSdETBkavbqkQFaanWuj5esvUDv/";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant MAX_PER_FREE = 5;
    uint256 public constant FREE_MAX_SUPPLY = 350;
    uint256 public MAX_SUPPLY = 969;
    uint256 public price = 0.003 ether;

    bool public paused = false;

    constructor() ERC721A("Sleeper Hits", "Dream") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        uint maxfree = MAX_PER_TX;
        if(totalSupply() + _amount < FREE_MAX_SUPPLY + 1) {
            cost = 0;
            maxfree = 5;
        }
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(maxfree >= _amount , "Excess max per tx");
        require(_amount * cost <= msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function ownerBuy(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId), ".json"
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"ownerBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003fe760369139600990805190602001906200003592919062000223565b506103c9600a55660aa87bee538000600b556000600c60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040518060400160405280600c81526020017f536c6565706572204869747300000000000000000000000000000000000000008152506040518060400160405280600581526020017f447265616d0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f492919062000223565b5080600390805190602001906200010d92919062000223565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000338565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023190620002d3565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b60006002820490506001821680620002ec57607f821691505b6020821081141562000303576200030262000309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c9f80620003486000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c032614610657578063e985e9c514610682578063f2fde38b146106bf578063f43a22dc146106e8576101cd565b8063a22cb4651461059f578063b359a41c146105c8578063b88d4fde146105f1578063c87b56dd1461061a576101cd565b80638da5cb5b116100d15780638da5cb5b1461050257806395d89b411461052d578063a035b1fe14610558578063a0712d6814610583576101cd565b8063715018a6146104955780638069876d146104ac57806381511e23146104d7576101cd565b806332cb6b0c1161016f5780635c975abb1161013e5780635c975abb146103c55780636352211e146103f05780636c0360eb1461042d57806370a0823114610458576101cd565b806332cb6b0c146103315780633ccfd60b1461035c57806342842e0e1461037357806355f804b31461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631e7269c5146102cb57806323b872dd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612f23565b610713565b60405161020691906133be565b60405180910390f35b34801561021b57600080fd5b506102246107f5565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ff3565b610887565b60405161026e9190613357565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ee3565b610903565b005b3480156102ac57600080fd5b506102b5610a0e565b6040516102c2919061353b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d60565b610a25565b6040516102ff919061353b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612dcd565b610a37565b005b34801561033d57600080fd5b50610346610a47565b604051610353919061353b565b60405180910390f35b34801561036857600080fd5b50610371610a4d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612dcd565b610b85565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612faa565b610ba5565b005b3480156103d157600080fd5b506103da610c3b565b6040516103e791906133be565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612ff3565b610c4e565b6040516104249190613357565b60405180910390f35b34801561043957600080fd5b50610442610c64565b60405161044f91906133d9565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612d60565b610cf2565b60405161048c919061353b565b60405180910390f35b3480156104a157600080fd5b506104aa610dc2565b005b3480156104b857600080fd5b506104c1610e4a565b6040516104ce919061353b565b60405180910390f35b3480156104e357600080fd5b506104ec610e50565b6040516104f9919061353b565b60405180910390f35b34801561050e57600080fd5b50610517610e55565b6040516105249190613357565b60405180910390f35b34801561053957600080fd5b50610542610e7f565b60405161054f91906133d9565b60405180910390f35b34801561056457600080fd5b5061056d610f11565b60405161057a919061353b565b60405180910390f35b61059d60048036038101906105989190612ff3565b610f17565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ea3565b61115a565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612ff3565b6112d2565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e20565b611358565b005b34801561062657600080fd5b50610641600480360381019061063c9190612ff3565b6113d4565b60405161064e91906133d9565b60405180910390f35b34801561066357600080fd5b5061066c61147c565b6040516106799190613357565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612d8d565b611494565b6040516106b691906133be565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612d60565b611588565b005b3480156106f457600080fd5b506106fd611680565b60405161070a919061353b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107de57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ee57506107ed82611685565b5b9050919050565b6060600280546108049061381d565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061381d565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826116ef565b6108c8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090e82610c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099561173d565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c757506109c5816109c061173d565b611494565b155b156109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a09838383611745565b505050565b6000610a186117f7565b6001546000540303905090565b6000610a3082611800565b9050919050565b610a428383836118d0565b505050565b600a5481565b610a5561173d565b73ffffffffffffffffffffffffffffffffffffffff16610a73610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906134bb565b60405180910390fd5b60004790506000610ad861173d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610afb90613342565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b5050905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906134fb565b60405180910390fd5b5050565b610ba083838360405180602001604052806000815250611358565b505050565b610bad61173d565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906134bb565b60405180910390fd5b8060099080519060200190610c37929190612b1c565b5050565b600c60009054906101000a900460ff1681565b6000610c5982611dc1565b600001519050919050565b60098054610c719061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d9061381d565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dca61173d565b73ffffffffffffffffffffffffffffffffffffffff16610de8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906134bb565b60405180910390fd5b610e486000612050565b565b61015e81565b600581565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8e9061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba9061381d565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b5050505050905090565b600b5481565b6000600b549050600060149050600161015e610f339190613640565b83610f3c610a0e565b610f469190613640565b1015610f555760009150600590505b6000610f5f61173d565b9050600c60009054906101000a900460ff1615610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa8906133fb565b60405180910390fd5b83610fba610a0e565b610fc49190613640565b600a541015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff9061347b565b60405180910390fd5b6000841161104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061345b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061351b565b60405180910390fd5b838210156110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061343b565b60405180910390fd5b34838561110991906136c7565b111561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906134db565b60405180910390fd5b6111548185612116565b50505050565b61116261173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d461173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128161173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c691906133be565b60405180910390a35050565b6112da61173d565b73ffffffffffffffffffffffffffffffffffffffff166112f8610e55565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906134bb565b60405180910390fd5b80600a8190555050565b6113638484846118d0565b6113828373ffffffffffffffffffffffffffffffffffffffff16612134565b8015611397575061139584848484612157565b155b156113ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113df826116ef565b61141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061349b565b60405180910390fd5b60006009805461142d9061381d565b9050116114495760405180602001604052806000815250611475565b6009611454836122b7565b604051602001611465929190613313565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016114fe9190613357565b60206040518083038186803b15801561151657600080fd5b505afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190612f7d565b73ffffffffffffffffffffffffffffffffffffffff161415611574576001915050611582565b61157e8484612418565b9150505b92915050565b61159061173d565b73ffffffffffffffffffffffffffffffffffffffff166115ae610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906134bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061341b565b60405180910390fd5b61167d81612050565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116fa6117f7565b11158015611709575060005482105b8015611736575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611868576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006118db82611dc1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661190261173d565b73ffffffffffffffffffffffffffffffffffffffff1614806119355750611934826000015161192f61173d565b611494565b5b8061197a575061194361173d565b73ffffffffffffffffffffffffffffffffffffffff1661196284610887565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9085858560016124ac565b611aa06000848460000151611745565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5157600054811015611d505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba85858560016124b2565b5050505050565b611dc9612ba2565b600082905080611dd76117f7565b11158015611de6575060005481105b15612019576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efb57809250505061204b565b5b60011561201657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201157809250505061204b565b611efc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121308282604051806020016040528060008152506124b8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217d61173d565b8786866040518563ffffffff1660e01b815260040161219f9493929190613372565b602060405180830381600087803b1580156121b957600080fd5b505af19250505080156121ea57506040513d601f19601f820116820180604052508101906121e79190612f50565b60015b612264573d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5060008151141561225c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612413565b600082905060005b6000821461233157808061231a90613880565b915050600a8261232a9190613696565b9150612307565b60008167ffffffffffffffff81111561234d5761234c6139b6565b5b6040519080825280601f01601f19166020018201604052801561237f5781602001600182028036833780820191505090505b5090505b6000851461240c576001826123989190613721565b9150600a856123a791906138c9565b60306123b39190613640565b60f81b8183815181106123c9576123c8613987565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124059190613696565b9450612383565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6124c583838360016124ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612537576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f60008683876124ac565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061260c5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612656575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126a05750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126ea575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127345750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061277e575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127c8575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561280357600080600090505b615ecd8110156128005781806127ea90613880565b92505080806127f890613880565b9150506127d5565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129cd57506129cc8773ffffffffffffffffffffffffffffffffffffffff16612134565b5b15612a93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a426000888480600101955088612157565b612a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d3578260005414612a8e57600080fd5b612aff565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a94575b816000819055505050612b1560008683876124b2565b5050505050565b828054612b289061381d565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357805160ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578251825591602001919060010190612b75565b5b509050612b9e9190612be5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bfe576000816000905550600101612be6565b5090565b6000612c15612c108461357b565b613556565b905082815260208101848484011115612c3157612c306139ea565b5b612c3c8482856137db565b509392505050565b6000612c57612c52846135ac565b613556565b905082815260208101848484011115612c7357612c726139ea565b5b612c7e8482856137db565b509392505050565b600081359050612c9581613bf6565b92915050565b600081359050612caa81613c0d565b92915050565b600081359050612cbf81613c24565b92915050565b600081519050612cd481613c24565b92915050565b600082601f830112612cef57612cee6139e5565b5b8135612cff848260208601612c02565b91505092915050565b600081519050612d1781613c3b565b92915050565b600082601f830112612d3257612d316139e5565b5b8135612d42848260208601612c44565b91505092915050565b600081359050612d5a81613c52565b92915050565b600060208284031215612d7657612d756139f4565b5b6000612d8484828501612c86565b91505092915050565b60008060408385031215612da457612da36139f4565b5b6000612db285828601612c86565b9250506020612dc385828601612c86565b9150509250929050565b600080600060608486031215612de657612de56139f4565b5b6000612df486828701612c86565b9350506020612e0586828701612c86565b9250506040612e1686828701612d4b565b9150509250925092565b60008060008060808587031215612e3a57612e396139f4565b5b6000612e4887828801612c86565b9450506020612e5987828801612c86565b9350506040612e6a87828801612d4b565b925050606085013567ffffffffffffffff811115612e8b57612e8a6139ef565b5b612e9787828801612cda565b91505092959194509250565b60008060408385031215612eba57612eb96139f4565b5b6000612ec885828601612c86565b9250506020612ed985828601612c9b565b9150509250929050565b60008060408385031215612efa57612ef96139f4565b5b6000612f0885828601612c86565b9250506020612f1985828601612d4b565b9150509250929050565b600060208284031215612f3957612f386139f4565b5b6000612f4784828501612cb0565b91505092915050565b600060208284031215612f6657612f656139f4565b5b6000612f7484828501612cc5565b91505092915050565b600060208284031215612f9357612f926139f4565b5b6000612fa184828501612d08565b91505092915050565b600060208284031215612fc057612fbf6139f4565b5b600082013567ffffffffffffffff811115612fde57612fdd6139ef565b5b612fea84828501612d1d565b91505092915050565b600060208284031215613009576130086139f4565b5b600061301784828501612d4b565b91505092915050565b61302981613755565b82525050565b61303881613767565b82525050565b6000613049826135f2565b6130538185613608565b93506130638185602086016137ea565b61306c816139f9565b840191505092915050565b6000613082826135fd565b61308c8185613624565b935061309c8185602086016137ea565b6130a5816139f9565b840191505092915050565b60006130bb826135fd565b6130c58185613635565b93506130d58185602086016137ea565b80840191505092915050565b600081546130ee8161381d565b6130f88186613635565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856135dd565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316d600683613624565b915061317882613a0a565b602082019050919050565b6000613190602683613624565b915061319b82613a33565b604082019050919050565b60006131b3601183613624565b91506131be82613a82565b602082019050919050565b60006131d6600a83613624565b91506131e182613aab565b602082019050919050565b60006131f9601283613624565b915061320482613ad4565b602082019050919050565b600061321c601583613624565b915061322782613afd565b602082019050919050565b600061323f600583613635565b915061324a82613b26565b600582019050919050565b6000613262602083613624565b915061326d82613b4f565b602082019050919050565b6000613285601683613624565b915061329082613b78565b602082019050919050565b60006132a8600083613619565b91506132b382613ba1565b600082019050919050565b60006132cb600e83613624565b91506132d682613ba4565b602082019050919050565b60006132ee600c83613624565b91506132f982613bcd565b602082019050919050565b61330d816137d1565b82525050565b600061331f82856130e1565b915061332b82846130b0565b915061333682613232565b91508190509392505050565b600061334d8261329b565b9150819050919050565b600060208201905061336c6000830184613020565b92915050565b60006080820190506133876000830187613020565b6133946020830186613020565b6133a16040830185613304565b81810360608301526133b3818461303e565b905095945050505050565b60006020820190506133d3600083018461302f565b92915050565b600060208201905081810360008301526133f38184613077565b905092915050565b6000602082019050818103600083015261341481613160565b9050919050565b6000602082019050818103600083015261343481613183565b9050919050565b60006020820190508181036000830152613454816131a6565b9050919050565b60006020820190508181036000830152613474816131c9565b9050919050565b60006020820190508181036000830152613494816131ec565b9050919050565b600060208201905081810360008301526134b48161320f565b9050919050565b600060208201905081810360008301526134d481613255565b9050919050565b600060208201905081810360008301526134f481613278565b9050919050565b60006020820190508181036000830152613514816132be565b9050919050565b60006020820190508181036000830152613534816132e1565b9050919050565b60006020820190506135506000830184613304565b92915050565b6000613560613571565b905061356c828261384f565b919050565b6000604051905090565b600067ffffffffffffffff821115613596576135956139b6565b5b61359f826139f9565b9050602081019050919050565b600067ffffffffffffffff8211156135c7576135c66139b6565b5b6135d0826139f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364b826137d1565b9150613656836137d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368b5761368a6138fa565b5b828201905092915050565b60006136a1826137d1565b91506136ac836137d1565b9250826136bc576136bb613929565b5b828204905092915050565b60006136d2826137d1565b91506136dd836137d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613716576137156138fa565b5b828202905092915050565b600061372c826137d1565b9150613737836137d1565b92508282101561374a576137496138fa565b5b828203905092915050565b6000613760826137b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006137aa82613755565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138085780820151818401526020810190506137ed565b83811115613817576000848401525b50505050565b6000600282049050600182168061383557607f821691505b6020821081141561384957613848613958565b5b50919050565b613858826139f9565b810181811067ffffffffffffffff82111715613877576138766139b6565b5b80604052505050565b600061388b826137d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138be576138bd6138fa565b5b600182019050919050565b60006138d4826137d1565b91506138df836137d1565b9250826138ef576138ee613929565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bff81613755565b8114613c0a57600080fd5b50565b613c1681613767565b8114613c2157600080fd5b50565b613c2d81613773565b8114613c3857600080fd5b50565b613c448161379f565b8114613c4f57600080fd5b50565b613c5b816137d1565b8114613c6657600080fd5b5056fea2646970667358221220c136ab5768d709911663bd13f1a658ba58926cb34214b4e369bd34e264c78b7864736f6c63430008070033697066733a2f2f516d503151714145437469736d5667364b36785153644554426b617662716b514661616e57756a356573765544762f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c032614610657578063e985e9c514610682578063f2fde38b146106bf578063f43a22dc146106e8576101cd565b8063a22cb4651461059f578063b359a41c146105c8578063b88d4fde146105f1578063c87b56dd1461061a576101cd565b80638da5cb5b116100d15780638da5cb5b1461050257806395d89b411461052d578063a035b1fe14610558578063a0712d6814610583576101cd565b8063715018a6146104955780638069876d146104ac57806381511e23146104d7576101cd565b806332cb6b0c1161016f5780635c975abb1161013e5780635c975abb146103c55780636352211e146103f05780636c0360eb1461042d57806370a0823114610458576101cd565b806332cb6b0c146103315780633ccfd60b1461035c57806342842e0e1461037357806355f804b31461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631e7269c5146102cb57806323b872dd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612f23565b610713565b60405161020691906133be565b60405180910390f35b34801561021b57600080fd5b506102246107f5565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ff3565b610887565b60405161026e9190613357565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ee3565b610903565b005b3480156102ac57600080fd5b506102b5610a0e565b6040516102c2919061353b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d60565b610a25565b6040516102ff919061353b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612dcd565b610a37565b005b34801561033d57600080fd5b50610346610a47565b604051610353919061353b565b60405180910390f35b34801561036857600080fd5b50610371610a4d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612dcd565b610b85565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612faa565b610ba5565b005b3480156103d157600080fd5b506103da610c3b565b6040516103e791906133be565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612ff3565b610c4e565b6040516104249190613357565b60405180910390f35b34801561043957600080fd5b50610442610c64565b60405161044f91906133d9565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612d60565b610cf2565b60405161048c919061353b565b60405180910390f35b3480156104a157600080fd5b506104aa610dc2565b005b3480156104b857600080fd5b506104c1610e4a565b6040516104ce919061353b565b60405180910390f35b3480156104e357600080fd5b506104ec610e50565b6040516104f9919061353b565b60405180910390f35b34801561050e57600080fd5b50610517610e55565b6040516105249190613357565b60405180910390f35b34801561053957600080fd5b50610542610e7f565b60405161054f91906133d9565b60405180910390f35b34801561056457600080fd5b5061056d610f11565b60405161057a919061353b565b60405180910390f35b61059d60048036038101906105989190612ff3565b610f17565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ea3565b61115a565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612ff3565b6112d2565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e20565b611358565b005b34801561062657600080fd5b50610641600480360381019061063c9190612ff3565b6113d4565b60405161064e91906133d9565b60405180910390f35b34801561066357600080fd5b5061066c61147c565b6040516106799190613357565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612d8d565b611494565b6040516106b691906133be565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612d60565b611588565b005b3480156106f457600080fd5b506106fd611680565b60405161070a919061353b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107de57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ee57506107ed82611685565b5b9050919050565b6060600280546108049061381d565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061381d565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826116ef565b6108c8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090e82610c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099561173d565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c757506109c5816109c061173d565b611494565b155b156109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a09838383611745565b505050565b6000610a186117f7565b6001546000540303905090565b6000610a3082611800565b9050919050565b610a428383836118d0565b505050565b600a5481565b610a5561173d565b73ffffffffffffffffffffffffffffffffffffffff16610a73610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906134bb565b60405180910390fd5b60004790506000610ad861173d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610afb90613342565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b5050905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906134fb565b60405180910390fd5b5050565b610ba083838360405180602001604052806000815250611358565b505050565b610bad61173d565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906134bb565b60405180910390fd5b8060099080519060200190610c37929190612b1c565b5050565b600c60009054906101000a900460ff1681565b6000610c5982611dc1565b600001519050919050565b60098054610c719061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d9061381d565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dca61173d565b73ffffffffffffffffffffffffffffffffffffffff16610de8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906134bb565b60405180910390fd5b610e486000612050565b565b61015e81565b600581565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8e9061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba9061381d565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b5050505050905090565b600b5481565b6000600b549050600060149050600161015e610f339190613640565b83610f3c610a0e565b610f469190613640565b1015610f555760009150600590505b6000610f5f61173d565b9050600c60009054906101000a900460ff1615610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa8906133fb565b60405180910390fd5b83610fba610a0e565b610fc49190613640565b600a541015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff9061347b565b60405180910390fd5b6000841161104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061345b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061351b565b60405180910390fd5b838210156110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061343b565b60405180910390fd5b34838561110991906136c7565b111561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906134db565b60405180910390fd5b6111548185612116565b50505050565b61116261173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d461173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128161173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c691906133be565b60405180910390a35050565b6112da61173d565b73ffffffffffffffffffffffffffffffffffffffff166112f8610e55565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906134bb565b60405180910390fd5b80600a8190555050565b6113638484846118d0565b6113828373ffffffffffffffffffffffffffffffffffffffff16612134565b8015611397575061139584848484612157565b155b156113ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113df826116ef565b61141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061349b565b60405180910390fd5b60006009805461142d9061381d565b9050116114495760405180602001604052806000815250611475565b6009611454836122b7565b604051602001611465929190613313565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016114fe9190613357565b60206040518083038186803b15801561151657600080fd5b505afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190612f7d565b73ffffffffffffffffffffffffffffffffffffffff161415611574576001915050611582565b61157e8484612418565b9150505b92915050565b61159061173d565b73ffffffffffffffffffffffffffffffffffffffff166115ae610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906134bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061341b565b60405180910390fd5b61167d81612050565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116fa6117f7565b11158015611709575060005482105b8015611736575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611868576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006118db82611dc1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661190261173d565b73ffffffffffffffffffffffffffffffffffffffff1614806119355750611934826000015161192f61173d565b611494565b5b8061197a575061194361173d565b73ffffffffffffffffffffffffffffffffffffffff1661196284610887565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9085858560016124ac565b611aa06000848460000151611745565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5157600054811015611d505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba85858560016124b2565b5050505050565b611dc9612ba2565b600082905080611dd76117f7565b11158015611de6575060005481105b15612019576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efb57809250505061204b565b5b60011561201657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201157809250505061204b565b611efc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121308282604051806020016040528060008152506124b8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217d61173d565b8786866040518563ffffffff1660e01b815260040161219f9493929190613372565b602060405180830381600087803b1580156121b957600080fd5b505af19250505080156121ea57506040513d601f19601f820116820180604052508101906121e79190612f50565b60015b612264573d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5060008151141561225c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612413565b600082905060005b6000821461233157808061231a90613880565b915050600a8261232a9190613696565b9150612307565b60008167ffffffffffffffff81111561234d5761234c6139b6565b5b6040519080825280601f01601f19166020018201604052801561237f5781602001600182028036833780820191505090505b5090505b6000851461240c576001826123989190613721565b9150600a856123a791906138c9565b60306123b39190613640565b60f81b8183815181106123c9576123c8613987565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124059190613696565b9450612383565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6124c583838360016124ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612537576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f60008683876124ac565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061260c5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612656575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126a05750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126ea575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127345750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061277e575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127c8575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561280357600080600090505b615ecd8110156128005781806127ea90613880565b92505080806127f890613880565b9150506127d5565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129cd57506129cc8773ffffffffffffffffffffffffffffffffffffffff16612134565b5b15612a93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a426000888480600101955088612157565b612a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d3578260005414612a8e57600080fd5b612aff565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a94575b816000819055505050612b1560008683876124b2565b5050505050565b828054612b289061381d565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357805160ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578251825591602001919060010190612b75565b5b509050612b9e9190612be5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bfe576000816000905550600101612be6565b5090565b6000612c15612c108461357b565b613556565b905082815260208101848484011115612c3157612c306139ea565b5b612c3c8482856137db565b509392505050565b6000612c57612c52846135ac565b613556565b905082815260208101848484011115612c7357612c726139ea565b5b612c7e8482856137db565b509392505050565b600081359050612c9581613bf6565b92915050565b600081359050612caa81613c0d565b92915050565b600081359050612cbf81613c24565b92915050565b600081519050612cd481613c24565b92915050565b600082601f830112612cef57612cee6139e5565b5b8135612cff848260208601612c02565b91505092915050565b600081519050612d1781613c3b565b92915050565b600082601f830112612d3257612d316139e5565b5b8135612d42848260208601612c44565b91505092915050565b600081359050612d5a81613c52565b92915050565b600060208284031215612d7657612d756139f4565b5b6000612d8484828501612c86565b91505092915050565b60008060408385031215612da457612da36139f4565b5b6000612db285828601612c86565b9250506020612dc385828601612c86565b9150509250929050565b600080600060608486031215612de657612de56139f4565b5b6000612df486828701612c86565b9350506020612e0586828701612c86565b9250506040612e1686828701612d4b565b9150509250925092565b60008060008060808587031215612e3a57612e396139f4565b5b6000612e4887828801612c86565b9450506020612e5987828801612c86565b9350506040612e6a87828801612d4b565b925050606085013567ffffffffffffffff811115612e8b57612e8a6139ef565b5b612e9787828801612cda565b91505092959194509250565b60008060408385031215612eba57612eb96139f4565b5b6000612ec885828601612c86565b9250506020612ed985828601612c9b565b9150509250929050565b60008060408385031215612efa57612ef96139f4565b5b6000612f0885828601612c86565b9250506020612f1985828601612d4b565b9150509250929050565b600060208284031215612f3957612f386139f4565b5b6000612f4784828501612cb0565b91505092915050565b600060208284031215612f6657612f656139f4565b5b6000612f7484828501612cc5565b91505092915050565b600060208284031215612f9357612f926139f4565b5b6000612fa184828501612d08565b91505092915050565b600060208284031215612fc057612fbf6139f4565b5b600082013567ffffffffffffffff811115612fde57612fdd6139ef565b5b612fea84828501612d1d565b91505092915050565b600060208284031215613009576130086139f4565b5b600061301784828501612d4b565b91505092915050565b61302981613755565b82525050565b61303881613767565b82525050565b6000613049826135f2565b6130538185613608565b93506130638185602086016137ea565b61306c816139f9565b840191505092915050565b6000613082826135fd565b61308c8185613624565b935061309c8185602086016137ea565b6130a5816139f9565b840191505092915050565b60006130bb826135fd565b6130c58185613635565b93506130d58185602086016137ea565b80840191505092915050565b600081546130ee8161381d565b6130f88186613635565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856135dd565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316d600683613624565b915061317882613a0a565b602082019050919050565b6000613190602683613624565b915061319b82613a33565b604082019050919050565b60006131b3601183613624565b91506131be82613a82565b602082019050919050565b60006131d6600a83613624565b91506131e182613aab565b602082019050919050565b60006131f9601283613624565b915061320482613ad4565b602082019050919050565b600061321c601583613624565b915061322782613afd565b602082019050919050565b600061323f600583613635565b915061324a82613b26565b600582019050919050565b6000613262602083613624565b915061326d82613b4f565b602082019050919050565b6000613285601683613624565b915061329082613b78565b602082019050919050565b60006132a8600083613619565b91506132b382613ba1565b600082019050919050565b60006132cb600e83613624565b91506132d682613ba4565b602082019050919050565b60006132ee600c83613624565b91506132f982613bcd565b602082019050919050565b61330d816137d1565b82525050565b600061331f82856130e1565b915061332b82846130b0565b915061333682613232565b91508190509392505050565b600061334d8261329b565b9150819050919050565b600060208201905061336c6000830184613020565b92915050565b60006080820190506133876000830187613020565b6133946020830186613020565b6133a16040830185613304565b81810360608301526133b3818461303e565b905095945050505050565b60006020820190506133d3600083018461302f565b92915050565b600060208201905081810360008301526133f38184613077565b905092915050565b6000602082019050818103600083015261341481613160565b9050919050565b6000602082019050818103600083015261343481613183565b9050919050565b60006020820190508181036000830152613454816131a6565b9050919050565b60006020820190508181036000830152613474816131c9565b9050919050565b60006020820190508181036000830152613494816131ec565b9050919050565b600060208201905081810360008301526134b48161320f565b9050919050565b600060208201905081810360008301526134d481613255565b9050919050565b600060208201905081810360008301526134f481613278565b9050919050565b60006020820190508181036000830152613514816132be565b9050919050565b60006020820190508181036000830152613534816132e1565b9050919050565b60006020820190506135506000830184613304565b92915050565b6000613560613571565b905061356c828261384f565b919050565b6000604051905090565b600067ffffffffffffffff821115613596576135956139b6565b5b61359f826139f9565b9050602081019050919050565b600067ffffffffffffffff8211156135c7576135c66139b6565b5b6135d0826139f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364b826137d1565b9150613656836137d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368b5761368a6138fa565b5b828201905092915050565b60006136a1826137d1565b91506136ac836137d1565b9250826136bc576136bb613929565b5b828204905092915050565b60006136d2826137d1565b91506136dd836137d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613716576137156138fa565b5b828202905092915050565b600061372c826137d1565b9150613737836137d1565b92508282101561374a576137496138fa565b5b828203905092915050565b6000613760826137b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006137aa82613755565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138085780820151818401526020810190506137ed565b83811115613817576000848401525b50505050565b6000600282049050600182168061383557607f821691505b6020821081141561384957613848613958565b5b50919050565b613858826139f9565b810181811067ffffffffffffffff82111715613877576138766139b6565b5b80604052505050565b600061388b826137d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138be576138bd6138fa565b5b600182019050919050565b60006138d4826137d1565b91506138df836137d1565b9250826138ef576138ee613929565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bff81613755565b8114613c0a57600080fd5b50565b613c1681613767565b8114613c2157600080fd5b50565b613c2d81613773565b8114613c3857600080fd5b50565b613c448161379f565b8114613c4f57600080fd5b50565b613c5b816137d1565b8114613c6657600080fd5b5056fea2646970667358221220c136ab5768d709911663bd13f1a658ba58926cb34214b4e369bd34e264c78b7864736f6c63430008070033

Deployed Bytecode Sourcemap

46418:2678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28215:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31600:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33103:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32666:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27464:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48215:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33960:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46794:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48332:209;;;;;;;;;;;;;:::i;:::-;;34201:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48644:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46875:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31409:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46464:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28584:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2689:103;;;;;;;;;;;;;:::i;:::-;;46742:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46695:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2038:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31769:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46832:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46967:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33379:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48549:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34457:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48752:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46551:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47762:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2947:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46649:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28215:305;28317:4;28369:25;28354:40;;;:11;:40;;;;:105;;;;28426:33;28411:48;;;:11;:48;;;;28354:105;:158;;;;28476:36;28500:11;28476:23;:36::i;:::-;28354:158;28334:178;;28215:305;;;:::o;31600:100::-;31654:13;31687:5;31680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31600:100;:::o;33103:204::-;33171:7;33196:16;33204:7;33196;:16::i;:::-;33191:64;;33221:34;;;;;;;;;;;;;;33191:64;33275:15;:24;33291:7;33275:24;;;;;;;;;;;;;;;;;;;;;33268:31;;33103:204;;;:::o;32666:371::-;32739:13;32755:24;32771:7;32755:15;:24::i;:::-;32739:40;;32800:5;32794:11;;:2;:11;;;32790:48;;;32814:24;;;;;;;;;;;;;;32790:48;32871:5;32855:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32881:37;32898:5;32905:12;:10;:12::i;:::-;32881:16;:37::i;:::-;32880:38;32855:63;32851:138;;;32942:35;;;;;;;;;;;;;;32851:138;33001:28;33010:2;33014:7;33023:5;33001:8;:28::i;:::-;32728:309;32666:371;;:::o;27464:303::-;27508:7;27733:15;:13;:15::i;:::-;27718:12;;27702:13;;:28;:46;27695:53;;27464:303;:::o;48215:109::-;48268:7;48295:21;48309:6;48295:13;:21::i;:::-;48288:28;;48215:109;;;:::o;33960:170::-;34094:28;34104:4;34110:2;34114:7;34094:9;:28::i;:::-;33960:170;;;:::o;46794:31::-;;;;:::o;48332:209::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48382:15:::1;48400:21;48382:39;;48433:12;48451;:10;:12::i;:::-;:17;;48476:7;48451:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48432:56;;;48507:7;48499:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48371:170;;48332:209::o:0;34201:185::-;34339:39;34356:4;34362:2;34366:7;34339:39;;;;;;;;;;;;:16;:39::i;:::-;34201:185;;;:::o;48644:100::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48728:8:::1;48718:7;:18;;;;;;;;;;;;:::i;:::-;;48644:100:::0;:::o;46875:26::-;;;;;;;;;;;;;:::o;31409:124::-;31473:7;31500:20;31512:7;31500:11;:20::i;:::-;:25;;;31493:32;;31409:124;;;:::o;46464:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28584:206::-;28648:7;28689:1;28672:19;;:5;:19;;;28668:60;;;28700:28;;;;;;;;;;;;;;28668:60;28754:12;:19;28767:5;28754:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28746:36;;28739:43;;28584:206;;;:::o;2689:103::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2754:30:::1;2781:1;2754:18;:30::i;:::-;2689:103::o:0;46742:45::-;46784:3;46742:45;:::o;46695:40::-;46734:1;46695:40;:::o;2038:87::-;2084:7;2111:6;;;;;;;;;;;2104:13;;2038:87;:::o;31769:104::-;31825:13;31858:7;31851:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31769:104;:::o;46832:34::-;;;;:::o;46967:678::-;47032:9;47044:5;;47032:17;;47060:12;46686:2;47060:25;;47143:1;46784:3;47125:19;;;;:::i;:::-;47115:7;47099:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;47096:111;;;47168:1;47161:8;;47194:1;47184:11;;47096:111;47217:15;47235:12;:10;:12::i;:::-;47217:30;;47267:6;;;;;;;;;;;47266:7;47258:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47333:7;47317:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47303:10;;:37;;47295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47392:1;47382:7;:11;47374:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47440:7;47427:20;;:9;:20;;;47419:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47494:7;47483;:18;;47475:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47561:9;47553:4;47543:7;:14;;;;:::i;:::-;:27;;47535:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47610:27;47620:7;47629;47610:9;:27::i;:::-;47021:624;;;46967:678;:::o;33379:279::-;33482:12;:10;:12::i;:::-;33470:24;;:8;:24;;;33466:54;;;33503:17;;;;;;;;;;;;;;33466:54;33578:8;33533:18;:32;33552:12;:10;:12::i;:::-;33533:32;;;;;;;;;;;;;;;:42;33566:8;33533:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33631:8;33602:48;;33617:12;:10;:12::i;:::-;33602:48;;;33641:8;33602:48;;;;;;:::i;:::-;;;;;;;;33379:279;;:::o;48549:87::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48624:4:::1;48611:10;:17;;;;48549:87:::0;:::o;34457:369::-;34624:28;34634:4;34640:2;34644:7;34624:9;:28::i;:::-;34667:15;:2;:13;;;:15::i;:::-;:76;;;;;34687:56;34718:4;34724:2;34728:7;34737:5;34687:30;:56::i;:::-;34686:57;34667:76;34663:156;;;34767:40;;;;;;;;;;;;;;34663:156;34457:369;;;;:::o;48752:341::-;48818:13;48852:17;48860:8;48852:7;:17::i;:::-;48844:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48937:1;48919:7;48913:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;48995:7;49019:26;49036:8;49019:16;:26::i;:::-;48962:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48913:172;48906:179;;48752:341;;;:::o;46551:89::-;46598:42;46551:89;:::o;47762:445::-;47887:4;47972:27;46598:42;47972:65;;48093:8;48052:49;;48060:13;:21;;;48082:5;48060:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48052:49;;;48048:93;;;48125:4;48118:11;;;;;48048:93;48160:39;48183:5;48190:8;48160:22;:39::i;:::-;48153:46;;;47762:445;;;;;:::o;2947:201::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3056:1:::1;3036:22;;:8;:22;;;;3028:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3112:28;3131:8;3112:18;:28::i;:::-;2947:201:::0;:::o;46649:39::-;46686:2;46649:39;:::o;23596:157::-;23681:4;23720:25;23705:40;;;:11;:40;;;;23698:47;;23596:157;;;:::o;35081:187::-;35138:4;35181:7;35162:15;:13;:15::i;:::-;:26;;:53;;;;;35202:13;;35192:7;:23;35162:53;:98;;;;;35233:11;:20;35245:7;35233:20;;;;;;;;;;;:27;;;;;;;;;;;;35232:28;35162:98;35155:105;;35081:187;;;:::o;779:98::-;832:7;859:10;852:17;;779:98;:::o;43397:196::-;43539:2;43512:15;:24;43528:7;43512:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43577:7;43573:2;43557:28;;43566:5;43557:28;;;;;;;;;;;;43397:196;;;:::o;47653:101::-;47718:7;47745:1;47738:8;;47653:101;:::o;28872:207::-;28933:7;28974:1;28957:19;;:5;:19;;;28953:59;;;28985:27;;;;;;;;;;;;;;28953:59;29038:12;:19;29051:5;29038:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29030:41;;29023:48;;28872:207;;;:::o;38899:2112::-;39014:35;39052:20;39064:7;39052:11;:20::i;:::-;39014:58;;39085:22;39127:13;:18;;;39111:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39162:50;39179:13;:18;;;39199:12;:10;:12::i;:::-;39162:16;:50::i;:::-;39111:101;:154;;;;39253:12;:10;:12::i;:::-;39229:36;;:20;39241:7;39229:11;:20::i;:::-;:36;;;39111:154;39085:181;;39284:17;39279:66;;39310:35;;;;;;;;;;;;;;39279:66;39382:4;39360:26;;:13;:18;;;:26;;;39356:67;;39395:28;;;;;;;;;;;;;;39356:67;39452:1;39438:16;;:2;:16;;;39434:52;;;39463:23;;;;;;;;;;;;;;39434:52;39499:43;39521:4;39527:2;39531:7;39540:1;39499:21;:43::i;:::-;39607:49;39624:1;39628:7;39637:13;:18;;;39607:8;:49::i;:::-;39982:1;39952:12;:18;39965:4;39952:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40026:1;39998:12;:16;40011:2;39998:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40072:2;40044:11;:20;40056:7;40044:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40134:15;40089:11;:20;40101:7;40089:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40402:19;40434:1;40424:7;:11;40402:33;;40495:1;40454:43;;:11;:24;40466:11;40454:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40450:445;;;40679:13;;40665:11;:27;40661:219;;;40749:13;:18;;;40717:11;:24;40729:11;40717:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40832:13;:28;;;40790:11;:24;40802:11;40790:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40661:219;40450:445;39927:979;40942:7;40938:2;40923:27;;40932:4;40923:27;;;;;;;;;;;;40961:42;40982:4;40988:2;40992:7;41001:1;40961:20;:42::i;:::-;39003:2008;;38899:2112;;;:::o;30239:1108::-;30300:21;;:::i;:::-;30334:12;30349:7;30334:22;;30417:4;30398:15;:13;:15::i;:::-;:23;;:47;;;;;30432:13;;30425:4;:20;30398:47;30394:886;;;30466:31;30500:11;:17;30512:4;30500:17;;;;;;;;;;;30466:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30541:9;:16;;;30536:729;;30612:1;30586:28;;:9;:14;;;:28;;;30582:101;;30650:9;30643:16;;;;;;30582:101;30985:261;30992:4;30985:261;;;31025:6;;;;;;;;31070:11;:17;31082:4;31070:17;;;;;;;;;;;31058:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31144:1;31118:28;;:9;:14;;;:28;;;31114:109;;31186:9;31179:16;;;;;;31114:109;30985:261;;;30536:729;30447:833;30394:886;31308:31;;;;;;;;;;;;;;30239:1108;;;;:::o;3308:191::-;3382:16;3401:6;;;;;;;;;;;3382:25;;3427:8;3418:6;;:17;;;;;;;;;;;;;;;;;;3482:8;3451:40;;3472:8;3451:40;;;;;;;;;;;;3371:128;3308:191;:::o;35276:104::-;35345:27;35355:2;35359:8;35345:27;;;;;;;;;;;;:9;:27::i;:::-;35276:104;;:::o;13369:326::-;13429:4;13686:1;13664:7;:19;;;:23;13657:30;;13369:326;;;:::o;44085:667::-;44248:4;44285:2;44269:36;;;44306:12;:10;:12::i;:::-;44320:4;44326:7;44335:5;44269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44265:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44520:1;44503:6;:13;:18;44499:235;;;44549:40;;;;;;;;;;;;;;44499:235;44692:6;44686:13;44677:6;44673:2;44669:15;44662:38;44265:480;44398:45;;;44388:55;;;:6;:55;;;;44381:62;;;44085:667;;;;;;:::o;20989:723::-;21045:13;21275:1;21266:5;:10;21262:53;;;21293:10;;;;;;;;;;;;;;;;;;;;;21262:53;21325:12;21340:5;21325:20;;21356:14;21381:78;21396:1;21388:4;:9;21381:78;;21414:8;;;;;:::i;:::-;;;;21445:2;21437:10;;;;;:::i;:::-;;;21381:78;;;21469:19;21501:6;21491:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21469:39;;21519:154;21535:1;21526:5;:10;21519:154;;21563:1;21553:11;;;;;:::i;:::-;;;21630:2;21622:5;:10;;;;:::i;:::-;21609:2;:24;;;;:::i;:::-;21596:39;;21579:6;21586;21579:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21659:2;21650:11;;;;;:::i;:::-;;;21519:154;;;21697:6;21683:21;;;;;20989:723;;;;:::o;33729:164::-;33826:4;33850:18;:25;33869:5;33850:25;;;;;;;;;;;;;;;:35;33876:8;33850:35;;;;;;;;;;;;;;;;;;;;;;;;;33843:42;;33729:164;;;;:::o;45400:159::-;;;;;:::o;46218:158::-;;;;;:::o;35743:163::-;35866:32;35872:2;35876:8;35886:5;35893:4;35866:5;:32::i;:::-;35743:163;;;:::o;36165:2480::-;36304:20;36327:13;;36304:36;;36369:1;36355:16;;:2;:16;;;36351:48;;;36380:19;;;;;;;;;;;;;;36351:48;36426:1;36414:8;:13;36410:44;;;36436:18;;;;;;;;;;;;;;36410:44;36467:61;36497:1;36501:2;36505:12;36519:8;36467:21;:61::i;:::-;36594:42;36588:48;;:2;:48;;;:113;;;;36659:42;36653:48;;:2;:48;;;36588:113;:178;;;;36724:42;36718:48;;:2;:48;;;36588:178;:243;;;;36789:42;36783:48;;:2;:48;;;36588:243;:308;;;;36854:42;36848:48;;:2;:48;;;36588:308;:373;;;;36919:42;36913:48;;:2;:48;;;36588:373;:438;;;;36984:42;36978:48;;:2;:48;;;36588:438;:503;;;;37049:42;37043:48;;:2;:48;;;36588:503;36571:663;;;37117:15;37152:6;37161:1;37152:10;;37147:76;37168:5;37164:1;:9;37147:76;;;37198:9;;;;;:::i;:::-;;;;37175:3;;;;;:::i;:::-;;;;37147:76;;;;37102:132;36571:663;37545:8;37510:12;:16;37523:2;37510:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37609:8;37569:12;:16;37582:2;37569:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37668:2;37635:11;:25;37647:12;37635:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37735:15;37685:11;:25;37697:12;37685:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37768:20;37791:12;37768:35;;37818:11;37847:8;37832:12;:23;37818:37;;37876:4;:23;;;;;37884:15;:2;:13;;;:15::i;:::-;37876:23;37872:641;;;37920:314;37976:12;37972:2;37951:38;;37968:1;37951:38;;;;;;;;;;;;38017:69;38056:1;38060:2;38064:14;;;;;;38080:5;38017:30;:69::i;:::-;38012:174;;38122:40;;;;;;;;;;;;;;38012:174;38229:3;38213:12;:19;;37920:314;;38315:12;38298:13;;:29;38294:43;;38329:8;;;38294:43;37872:641;;;38378:120;38434:14;;;;;;38430:2;38409:40;;38426:1;38409:40;;;;;;;;;;;;38493:3;38477:12;:19;;38378:120;;37872:641;38543:12;38527:13;:28;;;;37485:1082;;38577:60;38606:1;38610:2;38614:12;38628:8;38577:20;:60::i;:::-;36293:2352;36165:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:327::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:52;6129:7;6120:6;6109:9;6105:22;6085:52;:::i;:::-;6075:62;;6031:116;5827:327;;;;:::o;6160:349::-;6229:6;6278:2;6266:9;6257:7;6253:23;6249:32;6246:119;;;6284:79;;:::i;:::-;6246:119;6404:1;6429:63;6484:7;6475:6;6464:9;6460:22;6429:63;:::i;:::-;6419:73;;6375:127;6160:349;;;;:::o;6515:409::-;6614:6;6663:2;6651:9;6642:7;6638:23;6634:32;6631:119;;;6669:79;;:::i;:::-;6631:119;6789:1;6814:93;6899:7;6890:6;6879:9;6875:22;6814:93;:::i;:::-;6804:103;;6760:157;6515:409;;;;:::o;6930:509::-;6999:6;7048:2;7036:9;7027:7;7023:23;7019:32;7016:119;;;7054:79;;:::i;:::-;7016:119;7202:1;7191:9;7187:17;7174:31;7232:18;7224:6;7221:30;7218:117;;;7254:79;;:::i;:::-;7218:117;7359:63;7414:7;7405:6;7394:9;7390:22;7359:63;:::i;:::-;7349:73;;7145:287;6930:509;;;;:::o;7445:329::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:53;7749:7;7740:6;7729:9;7725:22;7704:53;:::i;:::-;7694:63;;7650:117;7445:329;;;;:::o;7780:118::-;7867:24;7885:5;7867:24;:::i;:::-;7862:3;7855:37;7780:118;;:::o;7904:109::-;7985:21;8000:5;7985:21;:::i;:::-;7980:3;7973:34;7904:109;;:::o;8019:360::-;8105:3;8133:38;8165:5;8133:38;:::i;:::-;8187:70;8250:6;8245:3;8187:70;:::i;:::-;8180:77;;8266:52;8311:6;8306:3;8299:4;8292:5;8288:16;8266:52;:::i;:::-;8343:29;8365:6;8343:29;:::i;:::-;8338:3;8334:39;8327:46;;8109:270;8019:360;;;;:::o;8385:364::-;8473:3;8501:39;8534:5;8501:39;:::i;:::-;8556:71;8620:6;8615:3;8556:71;:::i;:::-;8549:78;;8636:52;8681:6;8676:3;8669:4;8662:5;8658:16;8636:52;:::i;:::-;8713:29;8735:6;8713:29;:::i;:::-;8708:3;8704:39;8697:46;;8477:272;8385:364;;;;:::o;8755:377::-;8861:3;8889:39;8922:5;8889:39;:::i;:::-;8944:89;9026:6;9021:3;8944:89;:::i;:::-;8937:96;;9042:52;9087:6;9082:3;9075:4;9068:5;9064:16;9042:52;:::i;:::-;9119:6;9114:3;9110:16;9103:23;;8865:267;8755:377;;;;:::o;9162:845::-;9265:3;9302:5;9296:12;9331:36;9357:9;9331:36;:::i;:::-;9383:89;9465:6;9460:3;9383:89;:::i;:::-;9376:96;;9503:1;9492:9;9488:17;9519:1;9514:137;;;;9665:1;9660:341;;;;9481:520;;9514:137;9598:4;9594:9;9583;9579:25;9574:3;9567:38;9634:6;9629:3;9625:16;9618:23;;9514:137;;9660:341;9727:38;9759:5;9727:38;:::i;:::-;9787:1;9801:154;9815:6;9812:1;9809:13;9801:154;;;9889:7;9883:14;9879:1;9874:3;9870:11;9863:35;9939:1;9930:7;9926:15;9915:26;;9837:4;9834:1;9830:12;9825:17;;9801:154;;;9984:6;9979:3;9975:16;9968:23;;9667:334;;9481:520;;9269:738;;9162:845;;;;:::o;10013:365::-;10155:3;10176:66;10240:1;10235:3;10176:66;:::i;:::-;10169:73;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;10013:365;;;:::o;10384:366::-;10526:3;10547:67;10611:2;10606:3;10547:67;:::i;:::-;10540:74;;10623:93;10712:3;10623:93;:::i;:::-;10741:2;10736:3;10732:12;10725:19;;10384:366;;;:::o;10756:::-;10898:3;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;10995:93;11084:3;10995:93;:::i;:::-;11113:2;11108:3;11104:12;11097:19;;10756:366;;;:::o;11128:::-;11270:3;11291:67;11355:2;11350:3;11291:67;:::i;:::-;11284:74;;11367:93;11456:3;11367:93;:::i;:::-;11485:2;11480:3;11476:12;11469:19;;11128:366;;;:::o;11500:::-;11642:3;11663:67;11727:2;11722:3;11663:67;:::i;:::-;11656:74;;11739:93;11828:3;11739:93;:::i;:::-;11857:2;11852:3;11848:12;11841:19;;11500:366;;;:::o;11872:::-;12014:3;12035:67;12099:2;12094:3;12035:67;:::i;:::-;12028:74;;12111:93;12200:3;12111:93;:::i;:::-;12229:2;12224:3;12220:12;12213:19;;11872:366;;;:::o;12244:400::-;12404:3;12425:84;12507:1;12502:3;12425:84;:::i;:::-;12418:91;;12518:93;12607:3;12518:93;:::i;:::-;12636:1;12631:3;12627:11;12620:18;;12244:400;;;:::o;12650:366::-;12792:3;12813:67;12877:2;12872:3;12813:67;:::i;:::-;12806:74;;12889:93;12978:3;12889:93;:::i;:::-;13007:2;13002:3;12998:12;12991:19;;12650:366;;;:::o;13022:::-;13164:3;13185:67;13249:2;13244:3;13185:67;:::i;:::-;13178:74;;13261:93;13350:3;13261:93;:::i;:::-;13379:2;13374:3;13370:12;13363:19;;13022:366;;;:::o;13394:398::-;13553:3;13574:83;13655:1;13650:3;13574:83;:::i;:::-;13567:90;;13666:93;13755:3;13666:93;:::i;:::-;13784:1;13779:3;13775:11;13768:18;;13394:398;;;:::o;13798:366::-;13940:3;13961:67;14025:2;14020:3;13961:67;:::i;:::-;13954:74;;14037:93;14126:3;14037:93;:::i;:::-;14155:2;14150:3;14146:12;14139:19;;13798:366;;;:::o;14170:::-;14312:3;14333:67;14397:2;14392:3;14333:67;:::i;:::-;14326:74;;14409:93;14498:3;14409:93;:::i;:::-;14527:2;14522:3;14518:12;14511:19;;14170:366;;;:::o;14542:118::-;14629:24;14647:5;14629:24;:::i;:::-;14624:3;14617:37;14542:118;;:::o;14666:695::-;14944:3;14966:92;15054:3;15045:6;14966:92;:::i;:::-;14959:99;;15075:95;15166:3;15157:6;15075:95;:::i;:::-;15068:102;;15187:148;15331:3;15187:148;:::i;:::-;15180:155;;15352:3;15345:10;;14666:695;;;;;:::o;15367:379::-;15551:3;15573:147;15716:3;15573:147;:::i;:::-;15566:154;;15737:3;15730:10;;15367:379;;;:::o;15752:222::-;15845:4;15883:2;15872:9;15868:18;15860:26;;15896:71;15964:1;15953:9;15949:17;15940:6;15896:71;:::i;:::-;15752:222;;;;:::o;15980:640::-;16175:4;16213:3;16202:9;16198:19;16190:27;;16227:71;16295:1;16284:9;16280:17;16271:6;16227:71;:::i;:::-;16308:72;16376:2;16365:9;16361:18;16352:6;16308:72;:::i;:::-;16390;16458:2;16447:9;16443:18;16434:6;16390:72;:::i;:::-;16509:9;16503:4;16499:20;16494:2;16483:9;16479:18;16472:48;16537:76;16608:4;16599:6;16537:76;:::i;:::-;16529:84;;15980:640;;;;;;;:::o;16626:210::-;16713:4;16751:2;16740:9;16736:18;16728:26;;16764:65;16826:1;16815:9;16811:17;16802:6;16764:65;:::i;:::-;16626:210;;;;:::o;16842:313::-;16955:4;16993:2;16982:9;16978:18;16970:26;;17042:9;17036:4;17032:20;17028:1;17017:9;17013:17;17006:47;17070:78;17143:4;17134:6;17070:78;:::i;:::-;17062:86;;16842:313;;;;:::o;17161:419::-;17327:4;17365:2;17354:9;17350:18;17342:26;;17414:9;17408:4;17404:20;17400:1;17389:9;17385:17;17378:47;17442:131;17568:4;17442:131;:::i;:::-;17434:139;;17161:419;;;:::o;17586:::-;17752:4;17790:2;17779:9;17775:18;17767:26;;17839:9;17833:4;17829:20;17825:1;17814:9;17810:17;17803:47;17867:131;17993:4;17867:131;:::i;:::-;17859:139;;17586:419;;;:::o;18011:::-;18177:4;18215:2;18204:9;18200:18;18192:26;;18264:9;18258:4;18254:20;18250:1;18239:9;18235:17;18228:47;18292:131;18418:4;18292:131;:::i;:::-;18284:139;;18011:419;;;:::o;18436:::-;18602:4;18640:2;18629:9;18625:18;18617:26;;18689:9;18683:4;18679:20;18675:1;18664:9;18660:17;18653:47;18717:131;18843:4;18717:131;:::i;:::-;18709:139;;18436:419;;;:::o;18861:::-;19027:4;19065:2;19054:9;19050:18;19042:26;;19114:9;19108:4;19104:20;19100:1;19089:9;19085:17;19078:47;19142:131;19268:4;19142:131;:::i;:::-;19134:139;;18861:419;;;:::o;19286:::-;19452:4;19490:2;19479:9;19475:18;19467:26;;19539:9;19533:4;19529:20;19525:1;19514:9;19510:17;19503:47;19567:131;19693:4;19567:131;:::i;:::-;19559:139;;19286:419;;;:::o;19711:::-;19877:4;19915:2;19904:9;19900:18;19892:26;;19964:9;19958:4;19954:20;19950:1;19939:9;19935:17;19928:47;19992:131;20118:4;19992:131;:::i;:::-;19984:139;;19711:419;;;:::o;20136:::-;20302:4;20340:2;20329:9;20325:18;20317:26;;20389:9;20383:4;20379:20;20375:1;20364:9;20360:17;20353:47;20417:131;20543:4;20417:131;:::i;:::-;20409:139;;20136:419;;;:::o;20561:::-;20727:4;20765:2;20754:9;20750:18;20742:26;;20814:9;20808:4;20804:20;20800:1;20789:9;20785:17;20778:47;20842:131;20968:4;20842:131;:::i;:::-;20834:139;;20561:419;;;:::o;20986:::-;21152:4;21190:2;21179:9;21175:18;21167:26;;21239:9;21233:4;21229:20;21225:1;21214:9;21210:17;21203:47;21267:131;21393:4;21267:131;:::i;:::-;21259:139;;20986:419;;;:::o;21411:222::-;21504:4;21542:2;21531:9;21527:18;21519:26;;21555:71;21623:1;21612:9;21608:17;21599:6;21555:71;:::i;:::-;21411:222;;;;:::o;21639:129::-;21673:6;21700:20;;:::i;:::-;21690:30;;21729:33;21757:4;21749:6;21729:33;:::i;:::-;21639:129;;;:::o;21774:75::-;21807:6;21840:2;21834:9;21824:19;;21774:75;:::o;21855:307::-;21916:4;22006:18;21998:6;21995:30;21992:56;;;22028:18;;:::i;:::-;21992:56;22066:29;22088:6;22066:29;:::i;:::-;22058:37;;22150:4;22144;22140:15;22132:23;;21855:307;;;:::o;22168:308::-;22230:4;22320:18;22312:6;22309:30;22306:56;;;22342:18;;:::i;:::-;22306:56;22380:29;22402:6;22380:29;:::i;:::-;22372:37;;22464:4;22458;22454:15;22446:23;;22168:308;;;:::o;22482:141::-;22531:4;22554:3;22546:11;;22577:3;22574:1;22567:14;22611:4;22608:1;22598:18;22590:26;;22482:141;;;:::o;22629:98::-;22680:6;22714:5;22708:12;22698:22;;22629:98;;;:::o;22733:99::-;22785:6;22819:5;22813:12;22803:22;;22733:99;;;:::o;22838:168::-;22921:11;22955:6;22950:3;22943:19;22995:4;22990:3;22986:14;22971:29;;22838:168;;;;:::o;23012:147::-;23113:11;23150:3;23135:18;;23012:147;;;;:::o;23165:169::-;23249:11;23283:6;23278:3;23271:19;23323:4;23318:3;23314:14;23299:29;;23165:169;;;;:::o;23340:148::-;23442:11;23479:3;23464:18;;23340:148;;;;:::o;23494:305::-;23534:3;23553:20;23571:1;23553:20;:::i;:::-;23548:25;;23587:20;23605:1;23587:20;:::i;:::-;23582:25;;23741:1;23673:66;23669:74;23666:1;23663:81;23660:107;;;23747:18;;:::i;:::-;23660:107;23791:1;23788;23784:9;23777:16;;23494:305;;;;:::o;23805:185::-;23845:1;23862:20;23880:1;23862:20;:::i;:::-;23857:25;;23896:20;23914:1;23896:20;:::i;:::-;23891:25;;23935:1;23925:35;;23940:18;;:::i;:::-;23925:35;23982:1;23979;23975:9;23970:14;;23805:185;;;;:::o;23996:348::-;24036:7;24059:20;24077:1;24059:20;:::i;:::-;24054:25;;24093:20;24111:1;24093:20;:::i;:::-;24088:25;;24281:1;24213:66;24209:74;24206:1;24203:81;24198:1;24191:9;24184:17;24180:105;24177:131;;;24288:18;;:::i;:::-;24177:131;24336:1;24333;24329:9;24318:20;;23996:348;;;;:::o;24350:191::-;24390:4;24410:20;24428:1;24410:20;:::i;:::-;24405:25;;24444:20;24462:1;24444:20;:::i;:::-;24439:25;;24483:1;24480;24477:8;24474:34;;;24488:18;;:::i;:::-;24474:34;24533:1;24530;24526:9;24518:17;;24350:191;;;;:::o;24547:96::-;24584:7;24613:24;24631:5;24613:24;:::i;:::-;24602:35;;24547:96;;;:::o;24649:90::-;24683:7;24726:5;24719:13;24712:21;24701:32;;24649:90;;;:::o;24745:149::-;24781:7;24821:66;24814:5;24810:78;24799:89;;24745:149;;;:::o;24900:125::-;24966:7;24995:24;25013:5;24995:24;:::i;:::-;24984:35;;24900:125;;;:::o;25031:126::-;25068:7;25108:42;25101:5;25097:54;25086:65;;25031:126;;;:::o;25163:77::-;25200:7;25229:5;25218:16;;25163:77;;;:::o;25246:154::-;25330:6;25325:3;25320;25307:30;25392:1;25383:6;25378:3;25374:16;25367:27;25246:154;;;:::o;25406:307::-;25474:1;25484:113;25498:6;25495:1;25492:13;25484:113;;;25583:1;25578:3;25574:11;25568:18;25564:1;25559:3;25555:11;25548:39;25520:2;25517:1;25513:10;25508:15;;25484:113;;;25615:6;25612:1;25609:13;25606:101;;;25695:1;25686:6;25681:3;25677:16;25670:27;25606:101;25455:258;25406:307;;;:::o;25719:320::-;25763:6;25800:1;25794:4;25790:12;25780:22;;25847:1;25841:4;25837:12;25868:18;25858:81;;25924:4;25916:6;25912:17;25902:27;;25858:81;25986:2;25978:6;25975:14;25955:18;25952:38;25949:84;;;26005:18;;:::i;:::-;25949:84;25770:269;25719:320;;;:::o;26045:281::-;26128:27;26150:4;26128:27;:::i;:::-;26120:6;26116:40;26258:6;26246:10;26243:22;26222:18;26210:10;26207:34;26204:62;26201:88;;;26269:18;;:::i;:::-;26201:88;26309:10;26305:2;26298:22;26088:238;26045:281;;:::o;26332:233::-;26371:3;26394:24;26412:5;26394:24;:::i;:::-;26385:33;;26440:66;26433:5;26430:77;26427:103;;;26510:18;;:::i;:::-;26427:103;26557:1;26550:5;26546:13;26539:20;;26332:233;;;:::o;26571:176::-;26603:1;26620:20;26638:1;26620:20;:::i;:::-;26615:25;;26654:20;26672:1;26654:20;:::i;:::-;26649:25;;26693:1;26683:35;;26698:18;;:::i;:::-;26683:35;26739:1;26736;26732:9;26727:14;;26571:176;;;;:::o;26753:180::-;26801:77;26798:1;26791:88;26898:4;26895:1;26888:15;26922:4;26919:1;26912:15;26939:180;26987:77;26984:1;26977:88;27084:4;27081:1;27074:15;27108:4;27105:1;27098:15;27125:180;27173:77;27170:1;27163:88;27270:4;27267:1;27260:15;27294:4;27291:1;27284:15;27311:180;27359:77;27356:1;27349:88;27456:4;27453:1;27446:15;27480:4;27477:1;27470:15;27497:180;27545:77;27542:1;27535:88;27642:4;27639:1;27632:15;27666:4;27663:1;27656:15;27683:117;27792:1;27789;27782:12;27806:117;27915:1;27912;27905:12;27929:117;28038:1;28035;28028:12;28052:117;28161:1;28158;28151:12;28175:102;28216:6;28267:2;28263:7;28258:2;28251:5;28247:14;28243:28;28233:38;;28175:102;;;:::o;28283:156::-;28423:8;28419:1;28411:6;28407:14;28400:32;28283:156;:::o;28445:225::-;28585:34;28581:1;28573:6;28569:14;28562:58;28654:8;28649:2;28641:6;28637:15;28630:33;28445:225;:::o;28676:167::-;28816:19;28812:1;28804:6;28800:14;28793:43;28676:167;:::o;28849:160::-;28989:12;28985:1;28977:6;28973:14;28966:36;28849:160;:::o;29015:168::-;29155:20;29151:1;29143:6;29139:14;29132:44;29015:168;:::o;29189:171::-;29329:23;29325:1;29317:6;29313:14;29306:47;29189:171;:::o;29366:155::-;29506:7;29502:1;29494:6;29490:14;29483:31;29366:155;:::o;29527:182::-;29667:34;29663:1;29655:6;29651:14;29644:58;29527:182;:::o;29715:172::-;29855:24;29851:1;29843:6;29839:14;29832:48;29715:172;:::o;29893:114::-;;:::o;30013:164::-;30153:16;30149:1;30141:6;30137:14;30130:40;30013:164;:::o;30183:162::-;30323:14;30319:1;30311:6;30307:14;30300:38;30183:162;:::o;30351:122::-;30424:24;30442:5;30424:24;:::i;:::-;30417:5;30414:35;30404:63;;30463:1;30460;30453:12;30404:63;30351:122;:::o;30479:116::-;30549:21;30564:5;30549:21;:::i;:::-;30542:5;30539:32;30529:60;;30585:1;30582;30575:12;30529:60;30479:116;:::o;30601:120::-;30673:23;30690:5;30673:23;:::i;:::-;30666:5;30663:34;30653:62;;30711:1;30708;30701:12;30653:62;30601:120;:::o;30727:180::-;30829:53;30876:5;30829:53;:::i;:::-;30822:5;30819:64;30809:92;;30897:1;30894;30887:12;30809:92;30727:180;:::o;30913:122::-;30986:24;31004:5;30986:24;:::i;:::-;30979:5;30976:35;30966:63;;31025:1;31022;31015:12;30966:63;30913:122;:::o

Swarm Source

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