ETH Price: $3,073.05 (-6.84%)
 

Overview

Max Total Supply

977 NHT

Holders

832

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NHT
0x962228f791E745273700024D54e3F9897A3E822e
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:
TombOfHackers

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-28
*/

// SPDX-License-Identifier: MIT      
// If you don't know how to contract mint, dont fk play here, just crying bed with mom.
// Tomb of Motherfuckers                                                             
pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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();

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(owner0) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

    address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(owner0) + uint160(tokenId));
                    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);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

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

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

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

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

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

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

    function _m1nt(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) return;

        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;
        }
    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex));

            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += 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/nft.sol


contract TombOfHackers  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://bafybeifilel3e36kbdzdvqlteawvdxr7anuz6azhxani32so2e5oze5lk4/";

    uint256 public immutable mintPrice = 0.02 ether;
    uint256 public immutable minFeel = 0.003 ether;
    uint32 public immutable maxSupply = 999;
    uint32 public immutable maxPerTx = 5;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("Blur Hacker Tombs", "NHT") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(msg.value > minFeel, "insufficient");
        if (totalSupply() + amount <= maxSupply) {
            require(totalSupply() + amount <= maxSupply, "sold out");
            if (msg.value >= mintPrice * amount) {
                _safeMint(msg.sender, amount);
            }
        }
    }

    function safeMintToWhiteList(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minFeel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61012060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060405180608001604052806043815260200162003dc36043913960099081620000769190620004ea565b5066470de4df82000060a090815250660aa87bee53800060c0908152506103e763ffffffff1660e09063ffffffff16815250600563ffffffff166101009063ffffffff16815250348015620000ca57600080fd5b506040518060400160405280601181526020017f426c7572204861636b657220546f6d62730000000000000000000000000000008152506040518060400160405280600381526020017f4e485400000000000000000000000000000000000000000000000000000000008152508160029081620001489190620004ea565b5080600390816200015a9190620004ea565b506200016b6200019960201b60201c565b60008190555050506200019362000187620001a260201b60201c565b620001aa60201b60201c565b620005d1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f257607f821691505b602082108103620003085762000307620002aa565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000333565b6200037e868362000333565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003cb620003c5620003bf8462000396565b620003a0565b62000396565b9050919050565b6000819050919050565b620003e783620003aa565b620003ff620003f682620003d2565b84845462000340565b825550505050565b600090565b6200041662000407565b62000423818484620003dc565b505050565b5b818110156200044b576200043f6000826200040c565b60018101905062000429565b5050565b601f8211156200049a5762000464816200030e565b6200046f8462000323565b810160208510156200047f578190505b620004976200048e8562000323565b83018262000428565b50505b505050565b600082821c905092915050565b6000620004bf600019846008026200049f565b1980831691505092915050565b6000620004da8383620004ac565b9150826002028217905092915050565b620004f58262000270565b67ffffffffffffffff8111156200051157620005106200027b565b5b6200051d8254620002d9565b6200052a8282856200044f565b600060209050601f8311600181146200056257600084156200054d578287015190505b620005598582620004cc565b865550620005c9565b601f19841662000572866200030e565b60005b828110156200059c5784890151825560018201915060208501945060208101905062000575565b86831015620005bc5784890151620005b8601f891682620004ac565b8355505b6001600288020188555050505b505050505050565b60805160a05160c05160e0516101005161377c6200064760003960006112e10152600081816109ca01528181610a0901526111a60152600081816109680152610baa015260008181610a850152610c86015260008181610de401528181611c77015281816121ae0152612237015261377c6000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461051b578063e985e9c514610546578063f2fde38b14610583578063f968adbe146105ac57610166565b8063a22cb4651461048c578063b88d4fde146104b5578063c87b56dd146104de57610166565b80636352211e146103685780636817c76c146103a557806370a08231146103d05780638da5cb5b1461040d57806395d89b41146104385780639b642de11461046357610166565b80632db11544116101235780632db115441461028d5780633ccfd60b146102a957806342842e0e146102c057806356991d12146102e95780635fd228401461031457806362b99ad41461033d57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d919061274e565b6105d7565b60405161019f9190612796565b60405180910390f35b3480156101b457600080fd5b506101bd6106b9565b6040516101ca9190612841565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612899565b61074b565b6040516102079190612907565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061294e565b6107c7565b005b34801561024557600080fd5b5061024e6108d1565b60405161025b919061299d565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906129b8565b6108e8565b005b6102a760048036038101906102a29190612899565b6108f8565b005b3480156102b557600080fd5b506102be610ac3565b005b3480156102cc57600080fd5b506102e760048036038101906102e291906129b8565b610b88565b005b3480156102f557600080fd5b506102fe610ba8565b60405161030b919061299d565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612899565b610bcc565b005b34801561034957600080fd5b50610352610be0565b60405161035f9190612841565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612899565b610c6e565b60405161039c9190612907565b60405180910390f35b3480156103b157600080fd5b506103ba610c84565b6040516103c7919061299d565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612a0b565b610ca8565b604051610404919061299d565b60405180910390f35b34801561041957600080fd5b50610422610e3c565b60405161042f9190612907565b60405180910390f35b34801561044457600080fd5b5061044d610e66565b60405161045a9190612841565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612b6d565b610ef8565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612be2565b610f13565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612cc3565b61108a565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612899565b611106565b6040516105129190612841565b60405180910390f35b34801561052757600080fd5b506105306111a4565b60405161053d9190612d65565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612d80565b6111c8565b60405161057a9190612796565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612a0b565b61125c565b005b3480156105b857600080fd5b506105c16112df565b6040516105ce9190612d65565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b257506106b182611303565b5b9050919050565b6060600280546106c890612def565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490612def565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b60006107568261136d565b61078c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610839576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108586113bb565b73ffffffffffffffffffffffffffffffffffffffff161415801561088a5750610888816108836113bb565b6111c8565b155b156108c1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cc8383836113c3565b505050565b60006108db611475565b6001546000540303905090565b6108f383838361147e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612e6c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000034116109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90612ed8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16816109f86108d1565b610a029190612f27565b11610ac0577f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610a376108d1565b610a419190612f27565b1115610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612fa7565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610aae9190612fc7565b3410610abf57610abe338261196d565b5b5b50565b610acb61198b565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610afb9061303a565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b50508091505080610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061309b565b60405180910390fd5b505050565b610ba38383836040518060200160405280600081525061108a565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610bd461198b565b610bdd81611a09565b50565b60098054610bed90612def565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1990612def565b8015610c665780601f10610c3b57610100808354040283529160200191610c66565b820191906000526020600020905b815481529060010190602001808311610c4957829003601f168201915b505050505081565b6000610c7982611a15565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610ddf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e37565b6000547f000000000000000000000000000000000000000000000000000000000000000083610e0e91906130bb565b73ffffffffffffffffffffffffffffffffffffffff1611610e325760019050610e37565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e7590612def565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190612def565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b5050505050905090565b610f0061198b565b8060099081610f0f91906132af565b5050565b610f1b6113bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f8c6113bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110396113bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161107e9190612796565b60405180910390a35050565b61109584848461147e565b6110b48373ffffffffffffffffffffffffffffffffffffffff16611d12565b80156110c957506110c784848484611d35565b155b15611100576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606111118261136d565b611147576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611151611e85565b90506000815103611171576040518060200160405280600081525061119c565b8061117b84611f17565b60405160200161118c9291906133bd565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126461198b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613453565b60405180910390fd5b6112dc81612077565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611378611475565b11158015611387575060005482105b80156113b4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061148982611a15565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166114b06113bb565b73ffffffffffffffffffffffffffffffffffffffff1614806114e357506114e282600001516114dd6113bb565b6111c8565b5b8061152857506114f16113bb565b73ffffffffffffffffffffffffffffffffffffffff166115108461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611561576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115ca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611630576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61163d858585600161213d565b61164d60008484600001516113c3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118fd576000548110156118fc5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119668585856001612143565b5050505050565b611987828260405180602001604052806000815250612149565b5050565b6119936113bb565b73ffffffffffffffffffffffffffffffffffffffff166119b1610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906134bf565b60405180910390fd5b565b611a128161215b565b50565b611a1d61269f565b600082905080611a2b611475565b11158015611a3a575060005481105b15611cdb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cd957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b4f578092505050611d0d565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c6557819350505050611d0d565b6000816001900391508111611b5657847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d0d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5b6113bb565b8786866040518563ffffffff1660e01b8152600401611d7d9493929190613534565b6020604051808303816000875af1925050508015611db957506040513d601f19601f82011682018060405250810190611db69190613595565b60015b611e32573d8060008114611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b506000815103611e2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e9490612def565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec090612def565b8015611f0d5780601f10611ee257610100808354040283529160200191611f0d565b820191906000526020600020905b815481529060010190602001808311611ef057829003601f168201915b5050505050905090565b606060008203611f5e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612072565b600082905060005b60008214611f90578080611f79906135c2565b915050600a82611f899190613639565b9150611f66565b60008167ffffffffffffffff811115611fac57611fab612a42565b5b6040519080825280601f01601f191660200182016040528015611fde5781602001600182028036833780820191505090505b5090505b6000851461206b57600182611ff7919061366a565b9150600a85612006919061369e565b60306120129190612f27565b60f81b818381518110612028576120276136cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120649190613639565b9450611fe2565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61215683838360016122d5565b505050565b60008103612195576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826121a99190612f27565b9050817f00000000000000000000000000000000000000000000000000000000000000006121d791906136fe565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361222d57826000808282546122c99190612f27565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612341576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361237b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612388600086838761213d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561255257506125518773ffffffffffffffffffffffffffffffffffffffff16611d12565b5b15612617575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c76000888480600101955088611d35565b6125fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361255857826000541461261257600080fd5b612682565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612618575b8160008190555050506126986000868387612143565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61272b816126f6565b811461273657600080fd5b50565b60008135905061274881612722565b92915050565b600060208284031215612764576127636126ec565b5b600061277284828501612739565b91505092915050565b60008115159050919050565b6127908161277b565b82525050565b60006020820190506127ab6000830184612787565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127eb5780820151818401526020810190506127d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612813826127b1565b61281d81856127bc565b935061282d8185602086016127cd565b612836816127f7565b840191505092915050565b6000602082019050818103600083015261285b8184612808565b905092915050565b6000819050919050565b61287681612863565b811461288157600080fd5b50565b6000813590506128938161286d565b92915050565b6000602082840312156128af576128ae6126ec565b5b60006128bd84828501612884565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f1826128c6565b9050919050565b612901816128e6565b82525050565b600060208201905061291c60008301846128f8565b92915050565b61292b816128e6565b811461293657600080fd5b50565b60008135905061294881612922565b92915050565b60008060408385031215612965576129646126ec565b5b600061297385828601612939565b925050602061298485828601612884565b9150509250929050565b61299781612863565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6000806000606084860312156129d1576129d06126ec565b5b60006129df86828701612939565b93505060206129f086828701612939565b9250506040612a0186828701612884565b9150509250925092565b600060208284031215612a2157612a206126ec565b5b6000612a2f84828501612939565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a7a826127f7565b810181811067ffffffffffffffff82111715612a9957612a98612a42565b5b80604052505050565b6000612aac6126e2565b9050612ab88282612a71565b919050565b600067ffffffffffffffff821115612ad857612ad7612a42565b5b612ae1826127f7565b9050602081019050919050565b82818337600083830152505050565b6000612b10612b0b84612abd565b612aa2565b905082815260208101848484011115612b2c57612b2b612a3d565b5b612b37848285612aee565b509392505050565b600082601f830112612b5457612b53612a38565b5b8135612b64848260208601612afd565b91505092915050565b600060208284031215612b8357612b826126ec565b5b600082013567ffffffffffffffff811115612ba157612ba06126f1565b5b612bad84828501612b3f565b91505092915050565b612bbf8161277b565b8114612bca57600080fd5b50565b600081359050612bdc81612bb6565b92915050565b60008060408385031215612bf957612bf86126ec565b5b6000612c0785828601612939565b9250506020612c1885828601612bcd565b9150509250929050565b600067ffffffffffffffff821115612c3d57612c3c612a42565b5b612c46826127f7565b9050602081019050919050565b6000612c66612c6184612c22565b612aa2565b905082815260208101848484011115612c8257612c81612a3d565b5b612c8d848285612aee565b509392505050565b600082601f830112612caa57612ca9612a38565b5b8135612cba848260208601612c53565b91505092915050565b60008060008060808587031215612cdd57612cdc6126ec565b5b6000612ceb87828801612939565b9450506020612cfc87828801612939565b9350506040612d0d87828801612884565b925050606085013567ffffffffffffffff811115612d2e57612d2d6126f1565b5b612d3a87828801612c95565b91505092959194509250565b600063ffffffff82169050919050565b612d5f81612d46565b82525050565b6000602082019050612d7a6000830184612d56565b92915050565b60008060408385031215612d9757612d966126ec565b5b6000612da585828601612939565b9250506020612db685828601612939565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0757607f821691505b602082108103612e1a57612e19612dc0565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e56601e836127bc565b9150612e6182612e20565b602082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b6000612ec2600c836127bc565b9150612ecd82612e8c565b602082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f3282612863565b9150612f3d83612863565b9250828201905080821115612f5557612f54612ef8565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612f916008836127bc565b9150612f9c82612f5b565b602082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b6000612fd282612863565b9150612fdd83612863565b9250828202612feb81612863565b9150828204841483151761300257613001612ef8565b5b5092915050565b600081905092915050565b50565b6000613024600083613009565b915061302f82613014565b600082019050919050565b600061304582613017565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006130856018836127bc565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b60006130c6826128c6565b91506130d1836128c6565b9250828203905073ffffffffffffffffffffffffffffffffffffffff8111156130fd576130fc612ef8565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613128565b61316f8683613128565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131ac6131a76131a284612863565b613187565b612863565b9050919050565b6000819050919050565b6131c683613191565b6131da6131d2826131b3565b848454613135565b825550505050565b600090565b6131ef6131e2565b6131fa8184846131bd565b505050565b5b8181101561321e576132136000826131e7565b600181019050613200565b5050565b601f8211156132635761323481613103565b61323d84613118565b8101602085101561324c578190505b61326061325885613118565b8301826131ff565b50505b505050565b600082821c905092915050565b600061328660001984600802613268565b1980831691505092915050565b600061329f8383613275565b9150826002028217905092915050565b6132b8826127b1565b67ffffffffffffffff8111156132d1576132d0612a42565b5b6132db8254612def565b6132e6828285613222565b600060209050601f8311600181146133195760008415613307578287015190505b6133118582613293565b865550613379565b601f19841661332786613103565b60005b8281101561334f5784890151825560018201915060208501945060208101905061332a565b8683101561336c5784890151613368601f891682613275565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613397826127b1565b6133a18185613381565b93506133b18185602086016127cd565b80840191505092915050565b60006133c9828561338c565b91506133d5828461338c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061343d6026836127bc565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a96020836127bc565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613506826134df565b61351081856134ea565b93506135208185602086016127cd565b613529816127f7565b840191505092915050565b600060808201905061354960008301876128f8565b61355660208301866128f8565b613563604083018561298e565b818103606083015261357581846134fb565b905095945050505050565b60008151905061358f81612722565b92915050565b6000602082840312156135ab576135aa6126ec565b5b60006135b984828501613580565b91505092915050565b60006135cd82612863565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135ff576135fe612ef8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364482612863565b915061364f83612863565b92508261365f5761365e61360a565b5b828204905092915050565b600061367582612863565b915061368083612863565b925082820390508181111561369857613697612ef8565b5b92915050565b60006136a982612863565b91506136b483612863565b9250826136c4576136c361360a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613709826128c6565b9150613714836128c6565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156137405761373f612ef8565b5b9291505056fea26469706673582212209e2b10d05047ff075b040d4397644b13486574812cd2a0eacbe4902be9ac1f3464736f6c63430008110033697066733a2f2f6261667962656966696c656c336533366b62647a6476716c746561777664787237616e757a36617a6878616e693332736f3265356f7a65356c6b342f

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461051b578063e985e9c514610546578063f2fde38b14610583578063f968adbe146105ac57610166565b8063a22cb4651461048c578063b88d4fde146104b5578063c87b56dd146104de57610166565b80636352211e146103685780636817c76c146103a557806370a08231146103d05780638da5cb5b1461040d57806395d89b41146104385780639b642de11461046357610166565b80632db11544116101235780632db115441461028d5780633ccfd60b146102a957806342842e0e146102c057806356991d12146102e95780635fd228401461031457806362b99ad41461033d57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461023957806323b872dd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d919061274e565b6105d7565b60405161019f9190612796565b60405180910390f35b3480156101b457600080fd5b506101bd6106b9565b6040516101ca9190612841565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612899565b61074b565b6040516102079190612907565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061294e565b6107c7565b005b34801561024557600080fd5b5061024e6108d1565b60405161025b919061299d565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906129b8565b6108e8565b005b6102a760048036038101906102a29190612899565b6108f8565b005b3480156102b557600080fd5b506102be610ac3565b005b3480156102cc57600080fd5b506102e760048036038101906102e291906129b8565b610b88565b005b3480156102f557600080fd5b506102fe610ba8565b60405161030b919061299d565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612899565b610bcc565b005b34801561034957600080fd5b50610352610be0565b60405161035f9190612841565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190612899565b610c6e565b60405161039c9190612907565b60405180910390f35b3480156103b157600080fd5b506103ba610c84565b6040516103c7919061299d565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612a0b565b610ca8565b604051610404919061299d565b60405180910390f35b34801561041957600080fd5b50610422610e3c565b60405161042f9190612907565b60405180910390f35b34801561044457600080fd5b5061044d610e66565b60405161045a9190612841565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612b6d565b610ef8565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612be2565b610f13565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190612cc3565b61108a565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612899565b611106565b6040516105129190612841565b60405180910390f35b34801561052757600080fd5b506105306111a4565b60405161053d9190612d65565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612d80565b6111c8565b60405161057a9190612796565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612a0b565b61125c565b005b3480156105b857600080fd5b506105c16112df565b6040516105ce9190612d65565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b257506106b182611303565b5b9050919050565b6060600280546106c890612def565b80601f01602080910402602001604051908101604052809291908181526020018280546106f490612def565b80156107415780601f1061071657610100808354040283529160200191610741565b820191906000526020600020905b81548152906001019060200180831161072457829003601f168201915b5050505050905090565b60006107568261136d565b61078c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d282610c6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610839576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108586113bb565b73ffffffffffffffffffffffffffffffffffffffff161415801561088a5750610888816108836113bb565b6111c8565b155b156108c1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108cc8383836113c3565b505050565b60006108db611475565b6001546000540303905090565b6108f383838361147e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612e6c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000aa87bee53800034116109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf90612ed8565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e763ffffffff16816109f86108d1565b610a029190612f27565b11610ac0577f00000000000000000000000000000000000000000000000000000000000003e763ffffffff1681610a376108d1565b610a419190612f27565b1115610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990612fa7565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000470de4df820000610aae9190612fc7565b3410610abf57610abe338261196d565b5b5b50565b610acb61198b565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610afb9061303a565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b50508091505080610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061309b565b60405180910390fd5b505050565b610ba38383836040518060200160405280600081525061108a565b505050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b610bd461198b565b610bdd81611a09565b50565b60098054610bed90612def565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1990612def565b8015610c665780601f10610c3b57610100808354040283529160200191610c66565b820191906000526020600020905b815481529060010190602001808311610c4957829003601f168201915b505050505081565b6000610c7982611a15565b600001519050919050565b7f00000000000000000000000000000000000000000000000000470de4df82000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610ddf57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e37565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610e0e91906130bb565b73ffffffffffffffffffffffffffffffffffffffff1611610e325760019050610e37565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e7590612def565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190612def565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b5050505050905090565b610f0061198b565b8060099081610f0f91906132af565b5050565b610f1b6113bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f8c6113bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110396113bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161107e9190612796565b60405180910390a35050565b61109584848461147e565b6110b48373ffffffffffffffffffffffffffffffffffffffff16611d12565b80156110c957506110c784848484611d35565b155b15611100576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606111118261136d565b611147576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611151611e85565b90506000815103611171576040518060200160405280600081525061119c565b8061117b84611f17565b60405160200161118c9291906133bd565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000003e781565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126461198b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613453565b60405180910390fd5b6112dc81612077565b50565b7f000000000000000000000000000000000000000000000000000000000000000581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611378611475565b11158015611387575060005482105b80156113b4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061148982611a15565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166114b06113bb565b73ffffffffffffffffffffffffffffffffffffffff1614806114e357506114e282600001516114dd6113bb565b6111c8565b5b8061152857506114f16113bb565b73ffffffffffffffffffffffffffffffffffffffff166115108461074b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611561576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115ca576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611630576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61163d858585600161213d565b61164d60008484600001516113c3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036118fd576000548110156118fc5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119668585856001612143565b5050505050565b611987828260405180602001604052806000815250612149565b5050565b6119936113bb565b73ffffffffffffffffffffffffffffffffffffffff166119b1610e3c565b73ffffffffffffffffffffffffffffffffffffffff1614611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe906134bf565b60405180910390fd5b565b611a128161215b565b50565b611a1d61269f565b600082905080611a2b611475565b11158015611a3a575060005481105b15611cdb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cd957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b4f578092505050611d0d565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c6557819350505050611d0d565b6000816001900391508111611b5657847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d0d565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5b6113bb565b8786866040518563ffffffff1660e01b8152600401611d7d9493929190613534565b6020604051808303816000875af1925050508015611db957506040513d601f19601f82011682018060405250810190611db69190613595565b60015b611e32573d8060008114611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b506000815103611e2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e9490612def565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec090612def565b8015611f0d5780601f10611ee257610100808354040283529160200191611f0d565b820191906000526020600020905b815481529060010190602001808311611ef057829003601f168201915b5050505050905090565b606060008203611f5e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612072565b600082905060005b60008214611f90578080611f79906135c2565b915050600a82611f899190613639565b9150611f66565b60008167ffffffffffffffff811115611fac57611fab612a42565b5b6040519080825280601f01601f191660200182016040528015611fde5781602001600182028036833780820191505090505b5090505b6000851461206b57600182611ff7919061366a565b9150600a85612006919061369e565b60306120129190612f27565b60f81b818381518110612028576120276136cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120649190613639565b9450611fe2565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b61215683838360016122d5565b505050565b60008103612195576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826121a99190612f27565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e81986121d791906136fe565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361222d57826000808282546122c99190612f27565b92505081905550505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612341576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361237b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612388600086838761213d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561255257506125518773ffffffffffffffffffffffffffffffffffffffff16611d12565b5b15612617575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c76000888480600101955088611d35565b6125fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361255857826000541461261257600080fd5b612682565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612618575b8160008190555050506126986000868387612143565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61272b816126f6565b811461273657600080fd5b50565b60008135905061274881612722565b92915050565b600060208284031215612764576127636126ec565b5b600061277284828501612739565b91505092915050565b60008115159050919050565b6127908161277b565b82525050565b60006020820190506127ab6000830184612787565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127eb5780820151818401526020810190506127d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000612813826127b1565b61281d81856127bc565b935061282d8185602086016127cd565b612836816127f7565b840191505092915050565b6000602082019050818103600083015261285b8184612808565b905092915050565b6000819050919050565b61287681612863565b811461288157600080fd5b50565b6000813590506128938161286d565b92915050565b6000602082840312156128af576128ae6126ec565b5b60006128bd84828501612884565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128f1826128c6565b9050919050565b612901816128e6565b82525050565b600060208201905061291c60008301846128f8565b92915050565b61292b816128e6565b811461293657600080fd5b50565b60008135905061294881612922565b92915050565b60008060408385031215612965576129646126ec565b5b600061297385828601612939565b925050602061298485828601612884565b9150509250929050565b61299781612863565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6000806000606084860312156129d1576129d06126ec565b5b60006129df86828701612939565b93505060206129f086828701612939565b9250506040612a0186828701612884565b9150509250925092565b600060208284031215612a2157612a206126ec565b5b6000612a2f84828501612939565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a7a826127f7565b810181811067ffffffffffffffff82111715612a9957612a98612a42565b5b80604052505050565b6000612aac6126e2565b9050612ab88282612a71565b919050565b600067ffffffffffffffff821115612ad857612ad7612a42565b5b612ae1826127f7565b9050602081019050919050565b82818337600083830152505050565b6000612b10612b0b84612abd565b612aa2565b905082815260208101848484011115612b2c57612b2b612a3d565b5b612b37848285612aee565b509392505050565b600082601f830112612b5457612b53612a38565b5b8135612b64848260208601612afd565b91505092915050565b600060208284031215612b8357612b826126ec565b5b600082013567ffffffffffffffff811115612ba157612ba06126f1565b5b612bad84828501612b3f565b91505092915050565b612bbf8161277b565b8114612bca57600080fd5b50565b600081359050612bdc81612bb6565b92915050565b60008060408385031215612bf957612bf86126ec565b5b6000612c0785828601612939565b9250506020612c1885828601612bcd565b9150509250929050565b600067ffffffffffffffff821115612c3d57612c3c612a42565b5b612c46826127f7565b9050602081019050919050565b6000612c66612c6184612c22565b612aa2565b905082815260208101848484011115612c8257612c81612a3d565b5b612c8d848285612aee565b509392505050565b600082601f830112612caa57612ca9612a38565b5b8135612cba848260208601612c53565b91505092915050565b60008060008060808587031215612cdd57612cdc6126ec565b5b6000612ceb87828801612939565b9450506020612cfc87828801612939565b9350506040612d0d87828801612884565b925050606085013567ffffffffffffffff811115612d2e57612d2d6126f1565b5b612d3a87828801612c95565b91505092959194509250565b600063ffffffff82169050919050565b612d5f81612d46565b82525050565b6000602082019050612d7a6000830184612d56565b92915050565b60008060408385031215612d9757612d966126ec565b5b6000612da585828601612939565b9250506020612db685828601612939565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0757607f821691505b602082108103612e1a57612e19612dc0565b5b50919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e56601e836127bc565b9150612e6182612e20565b602082019050919050565b60006020820190508181036000830152612e8581612e49565b9050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b6000612ec2600c836127bc565b9150612ecd82612e8c565b602082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f3282612863565b9150612f3d83612863565b9250828201905080821115612f5557612f54612ef8565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612f916008836127bc565b9150612f9c82612f5b565b602082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b6000612fd282612863565b9150612fdd83612863565b9250828202612feb81612863565b9150828204841483151761300257613001612ef8565b5b5092915050565b600081905092915050565b50565b6000613024600083613009565b915061302f82613014565b600082019050919050565b600061304582613017565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006130856018836127bc565b91506130908261304f565b602082019050919050565b600060208201905081810360008301526130b481613078565b9050919050565b60006130c6826128c6565b91506130d1836128c6565b9250828203905073ffffffffffffffffffffffffffffffffffffffff8111156130fd576130fc612ef8565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613128565b61316f8683613128565b95508019841693508086168417925050509392505050565b6000819050919050565b60006131ac6131a76131a284612863565b613187565b612863565b9050919050565b6000819050919050565b6131c683613191565b6131da6131d2826131b3565b848454613135565b825550505050565b600090565b6131ef6131e2565b6131fa8184846131bd565b505050565b5b8181101561321e576132136000826131e7565b600181019050613200565b5050565b601f8211156132635761323481613103565b61323d84613118565b8101602085101561324c578190505b61326061325885613118565b8301826131ff565b50505b505050565b600082821c905092915050565b600061328660001984600802613268565b1980831691505092915050565b600061329f8383613275565b9150826002028217905092915050565b6132b8826127b1565b67ffffffffffffffff8111156132d1576132d0612a42565b5b6132db8254612def565b6132e6828285613222565b600060209050601f8311600181146133195760008415613307578287015190505b6133118582613293565b865550613379565b601f19841661332786613103565b60005b8281101561334f5784890151825560018201915060208501945060208101905061332a565b8683101561336c5784890151613368601f891682613275565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613397826127b1565b6133a18185613381565b93506133b18185602086016127cd565b80840191505092915050565b60006133c9828561338c565b91506133d5828461338c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061343d6026836127bc565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134a96020836127bc565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613506826134df565b61351081856134ea565b93506135208185602086016127cd565b613529816127f7565b840191505092915050565b600060808201905061354960008301876128f8565b61355660208301866128f8565b613563604083018561298e565b818103606083015261357581846134fb565b905095945050505050565b60008151905061358f81612722565b92915050565b6000602082840312156135ab576135aa6126ec565b5b60006135b984828501613580565b91505092915050565b60006135cd82612863565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135ff576135fe612ef8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364482612863565b915061364f83612863565b92508261365f5761365e61360a565b5b828204905092915050565b600061367582612863565b915061368083612863565b925082820390508181111561369857613697612ef8565b5b92915050565b60006136a982612863565b91506136b483612863565b9250826136c4576136c361360a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613709826128c6565b9150613714836128c6565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156137405761373f612ef8565b5b9291505056fea26469706673582212209e2b10d05047ff075b040d4397644b13486574812cd2a0eacbe4902be9ac1f3464736f6c63430008110033

Deployed Bytecode Sourcemap

48594:1659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32367:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33870:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33433:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27775:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34727:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49482:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49968:278;;;;;;;;;;;;;:::i;:::-;;34968:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48806:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49865:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48647:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32176:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48752:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28897:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4713:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32536:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49270:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34146:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35224:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32711:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48859:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34496:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5165:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48905:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28526:305;28628:4;28680:25;28665:40;;;:11;:40;;;;:105;;;;28737:33;28722:48;;;:11;:48;;;;28665:105;:158;;;;28787:36;28811:11;28787:23;:36::i;:::-;28665:158;28645:178;;28526:305;;;:::o;32367:100::-;32421:13;32454:5;32447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32367:100;:::o;33870:204::-;33938:7;33963:16;33971:7;33963;:16::i;:::-;33958:64;;33988:34;;;;;;;;;;;;;;33958:64;34042:15;:24;34058:7;34042:24;;;;;;;;;;;;;;;;;;;;;34035:31;;33870:204;;;:::o;33433:371::-;33506:13;33522:24;33538:7;33522:15;:24::i;:::-;33506:40;;33567:5;33561:11;;:2;:11;;;33557:48;;33581:24;;;;;;;;;;;;;;33557:48;33638:5;33622:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33648:37;33665:5;33672:12;:10;:12::i;:::-;33648:16;:37::i;:::-;33647:38;33622:63;33618:138;;;33709:35;;;;;;;;;;;;;;33618:138;33768:28;33777:2;33781:7;33790:5;33768:8;:28::i;:::-;33495:309;33433:371;;:::o;27775:303::-;27819:7;28044:15;:13;:15::i;:::-;28029:12;;28013:13;;:28;:46;28006:53;;27775:303;:::o;34727:170::-;34861:28;34871:4;34877:2;34881:7;34861:9;:28::i;:::-;34727:170;;;:::o;49482:375::-;49006:10;48993:23;;:9;:23;;;48985:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49576:7:::1;49564:9;:19;49556:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49641:9;49615:35;;49631:6;49615:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;49611:239;;49701:9;49675:35;;49691:6;49675:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49667:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49767:6;49755:9;:18;;;;:::i;:::-;49742:9;:31;49738:101;;49794:29;49804:10;49816:6;49794:9;:29::i;:::-;49738:101;49611:239;49482:375:::0;:::o;49968:278::-;4599:13;:11;:13::i;:::-;50016:18:::1;50037:21;50016:42;;50071:9;50091:10;50071:31;;50115:12;50154:1;:6;;50168:10;50154:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50140:43;;;;;50202:7;50194:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50005:241;;;49968:278::o:0;34968:185::-;35106:39;35123:4;35129:2;35133:7;35106:39;;;;;;;;;;;;:16;:39::i;:::-;34968:185;;;:::o;48806:46::-;;;:::o;49865:95::-;4599:13;:11;:13::i;:::-;49938:14:::1;49945:6;49938;:14::i;:::-;49865:95:::0;:::o;48647:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32176:124::-;32240:7;32267:20;32279:7;32267:11;:20::i;:::-;:25;;;32260:32;;32176:124;;;:::o;48752:47::-;;;:::o;28897:395::-;28961:7;29002:1;28985:19;;:5;:19;;;28981:60;;29013:28;;;;;;;;;;;;;;28981:60;29089:1;29058:12;:19;29071:5;29058:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29054:108;;29122:12;:19;29135:5;29122:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29114:36;;29107:43;;;;29054:108;29214:13;;29203:6;29186:5;29178:32;;;;:::i;:::-;:49;;;29174:90;;29251:1;29244:8;;;;29174:90;29283:1;29276:8;;28897:395;;;;:::o;4713:87::-;4759:7;4786:6;;;;;;;;;;;4779:13;;4713:87;:::o;32536:104::-;32592:13;32625:7;32618:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32536:104;:::o;49270:86::-;4599:13;:11;:13::i;:::-;49345:3:::1;49333:9;:15;;;;;;:::i;:::-;;49270:86:::0;:::o;34146:279::-;34249:12;:10;:12::i;:::-;34237:24;;:8;:24;;;34233:54;;34270:17;;;;;;;;;;;;;;34233:54;34345:8;34300:18;:32;34319:12;:10;:12::i;:::-;34300:32;;;;;;;;;;;;;;;:42;34333:8;34300:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34398:8;34369:48;;34384:12;:10;:12::i;:::-;34369:48;;;34408:8;34369:48;;;;;;:::i;:::-;;;;;;;;34146:279;;:::o;35224:369::-;35391:28;35401:4;35407:2;35411:7;35391:9;:28::i;:::-;35434:15;:2;:13;;;:15::i;:::-;:76;;;;;35454:56;35485:4;35491:2;35495:7;35504:5;35454:30;:56::i;:::-;35453:57;35434:76;35430:156;;;35534:40;;;;;;;;;;;;;;35430:156;35224:369;;;;:::o;32711:318::-;32784:13;32815:16;32823:7;32815;:16::i;:::-;32810:59;;32840:29;;;;;;;;;;;;;;32810:59;32882:21;32906:10;:8;:10::i;:::-;32882:34;;32959:1;32940:7;32934:21;:26;:87;;;;;;;;;;;;;;;;;32987:7;32996:18;:7;:16;:18::i;:::-;32970:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32934:87;32927:94;;;32711:318;;;:::o;48859:39::-;;;:::o;34496:164::-;34593:4;34617:18;:25;34636:5;34617:25;;;;;;;;;;;;;;;:35;34643:8;34617:35;;;;;;;;;;;;;;;;;;;;;;;;;34610:42;;34496:164;;;;:::o;5165:201::-;4599:13;:11;:13::i;:::-;5274:1:::1;5254:22;;:8;:22;;::::0;5246:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5330:28;5349:8;5330:18;:28::i;:::-;5165:201:::0;:::o;48905:36::-;;;:::o;17113:157::-;17198:4;17237:25;17222:40;;;:11;:40;;;;17215:47;;17113:157;;;:::o;35848:187::-;35905:4;35948:7;35929:15;:13;:15::i;:::-;:26;;:53;;;;;35969:13;;35959:7;:23;35929:53;:98;;;;;36000:11;:20;36012:7;36000:20;;;;;;;;;;;:27;;;;;;;;;;;;35999:28;35929:98;35922:105;;35848:187;;;:::o;3264:98::-;3317:7;3344:10;3337:17;;3264:98;:::o;45578:196::-;45720:2;45693:15;:24;45709:7;45693:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45758:7;45754:2;45738:28;;45747:5;45738:28;;;;;;;;;;;;45578:196;;;:::o;49364:110::-;49438:7;49465:1;49458:8;;49364:110;:::o;41080:2112::-;41195:35;41233:20;41245:7;41233:11;:20::i;:::-;41195:58;;41266:22;41308:13;:18;;;41292:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41343:50;41360:13;:18;;;41380:12;:10;:12::i;:::-;41343:16;:50::i;:::-;41292:101;:154;;;;41434:12;:10;:12::i;:::-;41410:36;;:20;41422:7;41410:11;:20::i;:::-;:36;;;41292:154;41266:181;;41465:17;41460:66;;41491:35;;;;;;;;;;;;;;41460:66;41563:4;41541:26;;:13;:18;;;:26;;;41537:67;;41576:28;;;;;;;;;;;;;;41537:67;41633:1;41619:16;;:2;:16;;;41615:52;;41644:23;;;;;;;;;;;;;;41615:52;41680:43;41702:4;41708:2;41712:7;41721:1;41680:21;:43::i;:::-;41788:49;41805:1;41809:7;41818:13;:18;;;41788:8;:49::i;:::-;42163:1;42133:12;:18;42146:4;42133:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42207:1;42179:12;:16;42192:2;42179:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42253:2;42225:11;:20;42237:7;42225:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42315:15;42270:11;:20;42282:7;42270:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42583:19;42615:1;42605:7;:11;42583:33;;42676:1;42635:43;;:11;:24;42647:11;42635:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42631:445;;42860:13;;42846:11;:27;42842:219;;;42930:13;:18;;;42898:11;:24;42910:11;42898:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;43013:13;:28;;;42971:11;:24;42983:11;42971:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42842:219;42631:445;42108:979;43123:7;43119:2;43104:27;;43113:4;43104:27;;;;;;;;;;;;43142:42;43163:4;43169:2;43173:7;43182:1;43142:20;:42::i;:::-;41184:2008;;41080:2112;;;:::o;36043:104::-;36112:27;36122:2;36126:8;36112:27;;;;;;;;;;;;:9;:27::i;:::-;36043:104;;:::o;4878:132::-;4953:12;:10;:12::i;:::-;4942:23;;:7;:5;:7::i;:::-;:23;;;4934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4878:132::o;36681:113::-;36763:19;36773:8;36763:9;:19::i;:::-;36681:113;:::o;30827:1287::-;30888:21;;:::i;:::-;30922:12;30937:7;30922:22;;31005:4;30986:15;:13;:15::i;:::-;:23;;:47;;;;;31020:13;;31013:4;:20;30986:47;30982:1065;;;31054:31;31088:11;:17;31100:4;31088:17;;;;;;;;;;;31054:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31129:9;:16;;;31124:904;;31200:1;31174:28;;:9;:14;;;:28;;;31170:101;;31238:9;31231:16;;;;;;31170:101;31575:13;31591:1;31575:17;;31615:270;31644:6;;;;;;;;31689:11;:17;31701:4;31689:17;;;;;;;;;;;31677:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31763:1;31737:28;;:9;:14;;;:28;;;31733:109;;31805:9;31798:16;;;;;;;31733:109;31882:1;31872:7;;;;;;;:11;31615:270;;31960:7;31942:6;31934:34;31909:9;:14;;:60;;;;;;;;;;;31999:9;31992:16;;;;;;;31124:904;31035:1012;30982:1065;32075:31;;;;;;;;;;;;;;30827:1287;;;;:::o;6957:326::-;7017:4;7274:1;7252:7;:19;;;:23;7245:30;;6957:326;;;:::o;46266:667::-;46429:4;46466:2;46450:36;;;46487:12;:10;:12::i;:::-;46501:4;46507:7;46516:5;46450:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46446:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46701:1;46684:6;:13;:18;46680:235;;46730:40;;;;;;;;;;;;;;46680:235;46873:6;46867:13;46858:6;46854:2;46850:15;46843:38;46446:480;46579:45;;;46569:55;;;:6;:55;;;;46562:62;;;46266:667;;;;;;:::o;49151:111::-;49212:13;49245:9;49238:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49151:111;:::o;518:723::-;574:13;804:1;795:5;:10;791:53;;822:10;;;;;;;;;;;;;;;;;;;;;791:53;854:12;869:5;854:20;;885:14;910:78;925:1;917:4;:9;910:78;;943:8;;;;;:::i;:::-;;;;974:2;966:10;;;;;:::i;:::-;;;910:78;;;998:19;1030:6;1020:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;998:39;;1048:154;1064:1;1055:5;:10;1048:154;;1092:1;1082:11;;;;;:::i;:::-;;;1159:2;1151:5;:10;;;;:::i;:::-;1138:2;:24;;;;:::i;:::-;1125:39;;1108:6;1115;1108:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1188:2;1179:11;;;;;:::i;:::-;;;1048:154;;;1226:6;1212:21;;;;;518:723;;;;:::o;5526:191::-;5600:16;5619:6;;;;;;;;;;;5600:25;;5645:8;5636:6;;:17;;;;;;;;;;;;;;;;;;5700:8;5669:40;;5690:8;5669:40;;;;;;;;;;;;5589:128;5526:191;:::o;47581:159::-;;;;;:::o;48399:158::-;;;;;:::o;36510:163::-;36633:32;36639:2;36643:8;36653:5;36660:4;36633:5;:32::i;:::-;36510:163;;;:::o;40219:607::-;40320:1;40308:8;:13;40304:44;;40330:18;;;;;;;;;;;;;;40304:44;40365:20;40388:13;;40365:36;;40416:11;40445:8;40430:12;:23;;;;:::i;:::-;40416:37;;40536:12;40518:6;40510:39;;;;:::i;:::-;40468:11;:26;40480:13;;40468:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40596:166;40698:14;;;;;;40682:12;40664:6;40656:39;40627:86;;40644:1;40627:86;;;;;;;;;;;;40757:3;40741:12;:19;40596:166;;40808:8;40791:13;;:25;;;;;;;:::i;:::-;;;;;;;;40289:537;;40219:607;:::o;37054:1775::-;37193:20;37216:13;;37193:36;;37258:1;37244:16;;:2;:16;;;37240:48;;37269:19;;;;;;;;;;;;;;37240:48;37315:1;37303:8;:13;37299:44;;37325:18;;;;;;;;;;;;;;37299:44;37356:61;37386:1;37390:2;37394:12;37408:8;37356:21;:61::i;:::-;37729:8;37694:12;:16;37707:2;37694:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37793:8;37753:12;:16;37766:2;37753:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37852:2;37819:11;:25;37831:12;37819:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37919:15;37869:11;:25;37881:12;37869:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37952:20;37975:12;37952:35;;38002:11;38031:8;38016:12;:23;38002:37;;38060:4;:23;;;;;38068:15;:2;:13;;;:15::i;:::-;38060:23;38056:641;;;38104:314;38160:12;38156:2;38135:38;;38152:1;38135:38;;;;;;;;;;;;38201:69;38240:1;38244:2;38248:14;;;;;;38264:5;38201:30;:69::i;:::-;38196:174;;38306:40;;;;;;;;;;;;;;38196:174;38413:3;38397:12;:19;38104:314;;38499:12;38482:13;;:29;38478:43;;38513:8;;;38478:43;38056:641;;;38562:120;38618:14;;;;;;38614:2;38593:40;;38610:1;38593:40;;;;;;;;;;;;38677:3;38661:12;:19;38562:120;;38056:641;38727:12;38711:13;:28;;;;37669:1082;;38761:60;38790:1;38794:2;38798:12;38812:8;38761:20;:60::i;:::-;37182:1647;37054:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:93::-;11647:7;11687:10;11680:5;11676:22;11665:33;;11611:93;;;:::o;11710:115::-;11795:23;11812:5;11795:23;:::i;:::-;11790:3;11783:36;11710:115;;:::o;11831:218::-;11922:4;11960:2;11949:9;11945:18;11937:26;;11973:69;12039:1;12028:9;12024:17;12015:6;11973:69;:::i;:::-;11831:218;;;;:::o;12055:474::-;12123:6;12131;12180:2;12168:9;12159:7;12155:23;12151:32;12148:119;;;12186:79;;:::i;:::-;12148:119;12306:1;12331:53;12376:7;12367:6;12356:9;12352:22;12331:53;:::i;:::-;12321:63;;12277:117;12433:2;12459:53;12504:7;12495:6;12484:9;12480:22;12459:53;:::i;:::-;12449:63;;12404:118;12055:474;;;;;:::o;12535:180::-;12583:77;12580:1;12573:88;12680:4;12677:1;12670:15;12704:4;12701:1;12694:15;12721:320;12765:6;12802:1;12796:4;12792:12;12782:22;;12849:1;12843:4;12839:12;12870:18;12860:81;;12926:4;12918:6;12914:17;12904:27;;12860:81;12988:2;12980:6;12977:14;12957:18;12954:38;12951:84;;13007:18;;:::i;:::-;12951:84;12772:269;12721:320;;;:::o;13047:180::-;13187:32;13183:1;13175:6;13171:14;13164:56;13047:180;:::o;13233:366::-;13375:3;13396:67;13460:2;13455:3;13396:67;:::i;:::-;13389:74;;13472:93;13561:3;13472:93;:::i;:::-;13590:2;13585:3;13581:12;13574:19;;13233:366;;;:::o;13605:419::-;13771:4;13809:2;13798:9;13794:18;13786:26;;13858:9;13852:4;13848:20;13844:1;13833:9;13829:17;13822:47;13886:131;14012:4;13886:131;:::i;:::-;13878:139;;13605:419;;;:::o;14030:162::-;14170:14;14166:1;14158:6;14154:14;14147:38;14030:162;:::o;14198:366::-;14340:3;14361:67;14425:2;14420:3;14361:67;:::i;:::-;14354:74;;14437:93;14526:3;14437:93;:::i;:::-;14555:2;14550:3;14546:12;14539:19;;14198:366;;;:::o;14570:419::-;14736:4;14774:2;14763:9;14759:18;14751:26;;14823:9;14817:4;14813:20;14809:1;14798:9;14794:17;14787:47;14851:131;14977:4;14851:131;:::i;:::-;14843:139;;14570:419;;;:::o;14995:180::-;15043:77;15040:1;15033:88;15140:4;15137:1;15130:15;15164:4;15161:1;15154:15;15181:191;15221:3;15240:20;15258:1;15240:20;:::i;:::-;15235:25;;15274:20;15292:1;15274:20;:::i;:::-;15269:25;;15317:1;15314;15310:9;15303:16;;15338:3;15335:1;15332:10;15329:36;;;15345:18;;:::i;:::-;15329:36;15181:191;;;;:::o;15378:158::-;15518:10;15514:1;15506:6;15502:14;15495:34;15378:158;:::o;15542:365::-;15684:3;15705:66;15769:1;15764:3;15705:66;:::i;:::-;15698:73;;15780:93;15869:3;15780:93;:::i;:::-;15898:2;15893:3;15889:12;15882:19;;15542:365;;;:::o;15913:419::-;16079:4;16117:2;16106:9;16102:18;16094:26;;16166:9;16160:4;16156:20;16152:1;16141:9;16137:17;16130:47;16194:131;16320:4;16194:131;:::i;:::-;16186:139;;15913:419;;;:::o;16338:410::-;16378:7;16401:20;16419:1;16401:20;:::i;:::-;16396:25;;16435:20;16453:1;16435:20;:::i;:::-;16430:25;;16490:1;16487;16483:9;16512:30;16530:11;16512:30;:::i;:::-;16501:41;;16691:1;16682:7;16678:15;16675:1;16672:22;16652:1;16645:9;16625:83;16602:139;;16721:18;;:::i;:::-;16602:139;16386:362;16338:410;;;;:::o;16754:147::-;16855:11;16892:3;16877:18;;16754:147;;;;:::o;16907:114::-;;:::o;17027:398::-;17186:3;17207:83;17288:1;17283:3;17207:83;:::i;:::-;17200:90;;17299:93;17388:3;17299:93;:::i;:::-;17417:1;17412:3;17408:11;17401:18;;17027:398;;;:::o;17431:379::-;17615:3;17637:147;17780:3;17637:147;:::i;:::-;17630:154;;17801:3;17794:10;;17431:379;;;:::o;17816:174::-;17956:26;17952:1;17944:6;17940:14;17933:50;17816:174;:::o;17996:366::-;18138:3;18159:67;18223:2;18218:3;18159:67;:::i;:::-;18152:74;;18235:93;18324:3;18235:93;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;17996:366;;;:::o;18368:419::-;18534:4;18572:2;18561:9;18557:18;18549:26;;18621:9;18615:4;18611:20;18607:1;18596:9;18592:17;18585:47;18649:131;18775:4;18649:131;:::i;:::-;18641:139;;18368:419;;;:::o;18793:235::-;18833:4;18853:20;18871:1;18853:20;:::i;:::-;18848:25;;18887:20;18905:1;18887:20;:::i;:::-;18882:25;;18931:1;18928;18924:9;18916:17;;18955:42;18949:4;18946:52;18943:78;;;19001:18;;:::i;:::-;18943:78;18793:235;;;;:::o;19034:141::-;19083:4;19106:3;19098:11;;19129:3;19126:1;19119:14;19163:4;19160:1;19150:18;19142:26;;19034:141;;;:::o;19181:93::-;19218:6;19265:2;19260;19253:5;19249:14;19245:23;19235:33;;19181:93;;;:::o;19280:107::-;19324:8;19374:5;19368:4;19364:16;19343:37;;19280:107;;;;:::o;19393:393::-;19462:6;19512:1;19500:10;19496:18;19535:97;19565:66;19554:9;19535:97;:::i;:::-;19653:39;19683:8;19672:9;19653:39;:::i;:::-;19641:51;;19725:4;19721:9;19714:5;19710:21;19701:30;;19774:4;19764:8;19760:19;19753:5;19750:30;19740:40;;19469:317;;19393:393;;;;;:::o;19792:60::-;19820:3;19841:5;19834:12;;19792:60;;;:::o;19858:142::-;19908:9;19941:53;19959:34;19968:24;19986:5;19968:24;:::i;:::-;19959:34;:::i;:::-;19941:53;:::i;:::-;19928:66;;19858:142;;;:::o;20006:75::-;20049:3;20070:5;20063:12;;20006:75;;;:::o;20087:269::-;20197:39;20228:7;20197:39;:::i;:::-;20258:91;20307:41;20331:16;20307:41;:::i;:::-;20299:6;20292:4;20286:11;20258:91;:::i;:::-;20252:4;20245:105;20163:193;20087:269;;;:::o;20362:73::-;20407:3;20362:73;:::o;20441:189::-;20518:32;;:::i;:::-;20559:65;20617:6;20609;20603:4;20559:65;:::i;:::-;20494:136;20441:189;;:::o;20636:186::-;20696:120;20713:3;20706:5;20703:14;20696:120;;;20767:39;20804:1;20797:5;20767:39;:::i;:::-;20740:1;20733:5;20729:13;20720:22;;20696:120;;;20636:186;;:::o;20828:543::-;20929:2;20924:3;20921:11;20918:446;;;20963:38;20995:5;20963:38;:::i;:::-;21047:29;21065:10;21047:29;:::i;:::-;21037:8;21033:44;21230:2;21218:10;21215:18;21212:49;;;21251:8;21236:23;;21212:49;21274:80;21330:22;21348:3;21330:22;:::i;:::-;21320:8;21316:37;21303:11;21274:80;:::i;:::-;20933:431;;20918:446;20828:543;;;:::o;21377:117::-;21431:8;21481:5;21475:4;21471:16;21450:37;;21377:117;;;;:::o;21500:169::-;21544:6;21577:51;21625:1;21621:6;21613:5;21610:1;21606:13;21577:51;:::i;:::-;21573:56;21658:4;21652;21648:15;21638:25;;21551:118;21500:169;;;;:::o;21674:295::-;21750:4;21896:29;21921:3;21915:4;21896:29;:::i;:::-;21888:37;;21958:3;21955:1;21951:11;21945:4;21942:21;21934:29;;21674:295;;;;:::o;21974:1395::-;22091:37;22124:3;22091:37;:::i;:::-;22193:18;22185:6;22182:30;22179:56;;;22215:18;;:::i;:::-;22179:56;22259:38;22291:4;22285:11;22259:38;:::i;:::-;22344:67;22404:6;22396;22390:4;22344:67;:::i;:::-;22438:1;22462:4;22449:17;;22494:2;22486:6;22483:14;22511:1;22506:618;;;;23168:1;23185:6;23182:77;;;23234:9;23229:3;23225:19;23219:26;23210:35;;23182:77;23285:67;23345:6;23338:5;23285:67;:::i;:::-;23279:4;23272:81;23141:222;22476:887;;22506:618;22558:4;22554:9;22546:6;22542:22;22592:37;22624:4;22592:37;:::i;:::-;22651:1;22665:208;22679:7;22676:1;22673:14;22665:208;;;22758:9;22753:3;22749:19;22743:26;22735:6;22728:42;22809:1;22801:6;22797:14;22787:24;;22856:2;22845:9;22841:18;22828:31;;22702:4;22699:1;22695:12;22690:17;;22665:208;;;22901:6;22892:7;22889:19;22886:179;;;22959:9;22954:3;22950:19;22944:26;23002:48;23044:4;23036:6;23032:17;23021:9;23002:48;:::i;:::-;22994:6;22987:64;22909:156;22886:179;23111:1;23107;23099:6;23095:14;23091:22;23085:4;23078:36;22513:611;;;22476:887;;22066:1303;;;21974:1395;;:::o;23375:148::-;23477:11;23514:3;23499:18;;23375:148;;;;:::o;23529:390::-;23635:3;23663:39;23696:5;23663:39;:::i;:::-;23718:89;23800:6;23795:3;23718:89;:::i;:::-;23711:96;;23816:65;23874:6;23869:3;23862:4;23855:5;23851:16;23816:65;:::i;:::-;23906:6;23901:3;23897:16;23890:23;;23639:280;23529:390;;;;:::o;23925:435::-;24105:3;24127:95;24218:3;24209:6;24127:95;:::i;:::-;24120:102;;24239:95;24330:3;24321:6;24239:95;:::i;:::-;24232:102;;24351:3;24344:10;;23925:435;;;;;:::o;24366:225::-;24506:34;24502:1;24494:6;24490:14;24483:58;24575:8;24570:2;24562:6;24558:15;24551:33;24366:225;:::o;24597:366::-;24739:3;24760:67;24824:2;24819:3;24760:67;:::i;:::-;24753:74;;24836:93;24925:3;24836:93;:::i;:::-;24954:2;24949:3;24945:12;24938:19;;24597:366;;;:::o;24969:419::-;25135:4;25173:2;25162:9;25158:18;25150:26;;25222:9;25216:4;25212:20;25208:1;25197:9;25193:17;25186:47;25250:131;25376:4;25250:131;:::i;:::-;25242:139;;24969:419;;;:::o;25394:182::-;25534:34;25530:1;25522:6;25518:14;25511:58;25394:182;:::o;25582:366::-;25724:3;25745:67;25809:2;25804:3;25745:67;:::i;:::-;25738:74;;25821:93;25910:3;25821:93;:::i;:::-;25939:2;25934:3;25930:12;25923:19;;25582:366;;;:::o;25954:419::-;26120:4;26158:2;26147:9;26143:18;26135:26;;26207:9;26201:4;26197:20;26193:1;26182:9;26178:17;26171:47;26235:131;26361:4;26235:131;:::i;:::-;26227:139;;25954:419;;;:::o;26379:98::-;26430:6;26464:5;26458:12;26448:22;;26379:98;;;:::o;26483:168::-;26566:11;26600:6;26595:3;26588:19;26640:4;26635:3;26631:14;26616:29;;26483:168;;;;:::o;26657:373::-;26743:3;26771:38;26803:5;26771:38;:::i;:::-;26825:70;26888:6;26883:3;26825:70;:::i;:::-;26818:77;;26904:65;26962:6;26957:3;26950:4;26943:5;26939:16;26904:65;:::i;:::-;26994:29;27016:6;26994:29;:::i;:::-;26989:3;26985:39;26978:46;;26747:283;26657:373;;;;:::o;27036:640::-;27231:4;27269:3;27258:9;27254:19;27246:27;;27283:71;27351:1;27340:9;27336:17;27327:6;27283:71;:::i;:::-;27364:72;27432:2;27421:9;27417:18;27408:6;27364:72;:::i;:::-;27446;27514:2;27503:9;27499:18;27490:6;27446:72;:::i;:::-;27565:9;27559:4;27555:20;27550:2;27539:9;27535:18;27528:48;27593:76;27664:4;27655:6;27593:76;:::i;:::-;27585:84;;27036:640;;;;;;;:::o;27682:141::-;27738:5;27769:6;27763:13;27754:22;;27785:32;27811:5;27785:32;:::i;:::-;27682:141;;;;:::o;27829:349::-;27898:6;27947:2;27935:9;27926:7;27922:23;27918:32;27915:119;;;27953:79;;:::i;:::-;27915:119;28073:1;28098:63;28153:7;28144:6;28133:9;28129:22;28098:63;:::i;:::-;28088:73;;28044:127;27829:349;;;;:::o;28184:233::-;28223:3;28246:24;28264:5;28246:24;:::i;:::-;28237:33;;28292:66;28285:5;28282:77;28279:103;;28362:18;;:::i;:::-;28279:103;28409:1;28402:5;28398:13;28391:20;;28184:233;;;:::o;28423:180::-;28471:77;28468:1;28461:88;28568:4;28565:1;28558:15;28592:4;28589:1;28582:15;28609:185;28649:1;28666:20;28684:1;28666:20;:::i;:::-;28661:25;;28700:20;28718:1;28700:20;:::i;:::-;28695:25;;28739:1;28729:35;;28744:18;;:::i;:::-;28729:35;28786:1;28783;28779:9;28774:14;;28609:185;;;;:::o;28800:194::-;28840:4;28860:20;28878:1;28860:20;:::i;:::-;28855:25;;28894:20;28912:1;28894:20;:::i;:::-;28889:25;;28938:1;28935;28931:9;28923:17;;28962:1;28956:4;28953:11;28950:37;;;28967:18;;:::i;:::-;28950:37;28800:194;;;;:::o;29000:176::-;29032:1;29049:20;29067:1;29049:20;:::i;:::-;29044:25;;29083:20;29101:1;29083:20;:::i;:::-;29078:25;;29122:1;29112:35;;29127:18;;:::i;:::-;29112:35;29168:1;29165;29161:9;29156:14;;29000:176;;;;:::o;29182:180::-;29230:77;29227:1;29220:88;29327:4;29324:1;29317:15;29351:4;29348:1;29341:15;29368:232;29408:3;29427:20;29445:1;29427:20;:::i;:::-;29422:25;;29461:20;29479:1;29461:20;:::i;:::-;29456:25;;29504:1;29501;29497:9;29490:16;;29527:42;29522:3;29519:51;29516:77;;;29573:18;;:::i;:::-;29516:77;29368:232;;;;:::o

Swarm Source

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