ETH Price: $3,462.63 (+2.02%)
Gas: 15 Gwei

Token

Ethereum Famous Fox (FF)
 

Overview

Max Total Supply

5,554 FF

Holders

1,073

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 FF
0x05e5a014067a5f01cBc128ca99f631E91dEc2Fd9
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:
EthereumFamousFox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-22
*/

// File: contracts/ethfamousfox.sol



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

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

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

pragma solidity ^0.8.4;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/ethfamousfox.sol


contract EthereumFamousFox is ERC721A, Ownable {

    string public baseURI = "ipfs://QmQCMZt3kY5KoiPw64b8W15LyzpCcQm5G1NjVTbX5pD9Cr/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 4;
    uint256 public constant MAX_SUPPLY = 5554;
    uint256 public price = 0 ether;

    bool public paused = false;
    bool public revealed = true;

    constructor() ERC721A("Ethereum Famous Fox", "FF") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per tx");

        _safeMint(_caller, _amount);
    }
    function donate() external payable {
        // thank you
    }
    
    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

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

        return super.isApprovedForAll(owner, operator);
    }

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

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

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

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

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620041b160369139600990805190602001906200003592919062000232565b506000600a556000600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280601381526020017f457468657265756d2046616d6f757320466f78000000000000000000000000008152506040518060400160405280600281526020017f464600000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010392919062000232565b5080600390805190602001906200011c92919062000232565b506200012d6200015b60201b60201c565b600081905550505062000155620001496200016460201b60201c565b6200016c60201b60201c565b62000347565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e5a80620003576000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c0326146106ec578063e985e9c514610717578063ed88c68e14610754578063f2fde38b1461075e578063f43a22dc14610787576101f9565b8063a22cb46514610632578063b88d4fde1461065b578063c668286214610684578063c87b56dd146106af576101f9565b8063940cd05b116100dc578063940cd05b1461059757806395d89b41146105c0578063a035b1fe146105eb578063a0712d6814610616576101f9565b806370a08231146104ef578063715018a61461052c5780638da5cb5b1461054357806391b7f5ed1461056e576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461041c5780635c975abb146104455780636352211e14610470578063698982ba146104ad5780636c0360eb146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806351830227146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131ee565b6107b2565b6040516102329190613645565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906131c1565b610894565b005b34801561027057600080fd5b5061027961092d565b6040516102869190613660565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906132be565b6109bf565b6040516102c391906135de565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613181565b610a3b565b005b34801561030157600080fd5b5061030a610b46565b60405161031791906137a2565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612ffe565b610b5d565b60405161035491906137a2565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061306b565b610b6f565b005b34801561039257600080fd5b5061039b610b7f565b6040516103a891906137a2565b60405180910390f35b3480156103bd57600080fd5b506103c6610b85565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061306b565b610cbd565b005b3480156103fd57600080fd5b50610406610cdd565b6040516104139190613645565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613275565b610cf0565b005b34801561045157600080fd5b5061045a610d86565b6040516104679190613645565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906132be565b610d99565b6040516104a491906135de565b60405180910390f35b3480156104b957600080fd5b506104c2610daf565b005b3480156104d057600080fd5b506104d9610e3f565b6040516104e69190613660565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612ffe565b610ecd565b60405161052391906137a2565b60405180910390f35b34801561053857600080fd5b50610541610f9d565b005b34801561054f57600080fd5b50610558611025565b60405161056591906135de565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906132be565b61104f565b005b3480156105a357600080fd5b506105be60048036038101906105b991906131c1565b6110d5565b005b3480156105cc57600080fd5b506105d561116e565b6040516105e29190613660565b60405180910390f35b3480156105f757600080fd5b50610600611200565b60405161060d91906137a2565b60405180910390f35b610630600480360381019061062b91906132be565b611206565b005b34801561063e57600080fd5b5061065960048036038101906106549190613141565b6113bc565b005b34801561066757600080fd5b50610682600480360381019061067d91906130be565b611534565b005b34801561069057600080fd5b506106996115b0565b6040516106a69190613660565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906132be565b6115e9565b6040516106e39190613660565b60405180910390f35b3480156106f857600080fd5b50610701611718565b60405161070e91906135de565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061302b565b611730565b60405161074b9190613645565b60405180910390f35b61075c611824565b005b34801561076a57600080fd5b5061078560048036038101906107809190612ffe565b611826565b005b34801561079357600080fd5b5061079c61191e565b6040516107a991906137a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088d575061088c82611923565b5b9050919050565b61089c61198d565b73ffffffffffffffffffffffffffffffffffffffff166108ba611025565b73ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790613742565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461093c90613a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613a2a565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611995565b610a00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd61198d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aff5750610afd81610af861198d565b611730565b155b15610b36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b418383836119e3565b505050565b6000610b50611a95565b6001546000540303905090565b6000610b6882611a9e565b9050919050565b610b7a838383611b6e565b505050565b6115b281565b610b8d61198d565b73ffffffffffffffffffffffffffffffffffffffff16610bab611025565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613742565b60405180910390fd5b60004790506000610c1061198d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c33906135c9565b60006040518083038185875af1925050503d8060008114610c70576040519150601f19603f3d011682016040523d82523d6000602084013e610c75565b606091505b5050905080610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613762565b60405180910390fd5b5050565b610cd883838360405180602001604052806000815250611534565b505050565b600b60019054906101000a900460ff1681565b610cf861198d565b73ffffffffffffffffffffffffffffffffffffffff16610d16611025565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613742565b60405180910390fd5b8060099080519060200190610d82929190612dba565b5050565b600b60009054906101000a900460ff1681565b6000610da48261205f565b600001519050919050565b610db761198d565b73ffffffffffffffffffffffffffffffffffffffff16610dd5611025565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613742565b60405180910390fd5b610e3d610e3661198d565b60016122ee565b565b60098054610e4c90613a2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613a2a565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fa561198d565b73ffffffffffffffffffffffffffffffffffffffff16610fc3611025565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613742565b60405180910390fd5b611023600061230c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105761198d565b73ffffffffffffffffffffffffffffffffffffffff16611075611025565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613742565b60405180910390fd5b80600a8190555050565b6110dd61198d565b73ffffffffffffffffffffffffffffffffffffffff166110fb611025565b73ffffffffffffffffffffffffffffffffffffffff1614611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613742565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461117d90613a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546111a990613a2a565b80156111f65780601f106111cb576101008083540402835291602001916111f6565b820191906000526020600020905b8154815290600101906020018083116111d957829003601f168201915b5050505050905090565b600a5481565b600061121061198d565b9050600b60009054906101000a900460ff1615611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613682565b60405180910390fd5b8161126b610b46565b61127591906138a7565b6115b210156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613702565b60405180910390fd5b600082116112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f3906136e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613782565b60405180910390fd5b81600410156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906136c2565b60405180910390fd5b6113b881836122ee565b5050565b6113c461198d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611429576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143661198d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e361198d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115289190613645565b60405180910390a35050565b61153f848484611b6e565b61155e8373ffffffffffffffffffffffffffffffffffffffff166123d2565b80156115735750611571848484846123f5565b155b156115aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606115f482611995565b611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90613722565b60405180910390fd5b60006009805461164290613a2a565b90501161165e5760405180602001604052806000815250611711565b6009600b60019054906101000a900460ff166116af576040518060400160405280600b81526020017f706c616365686f6c6465720000000000000000000000000000000000000000008152506116b9565b6116b883612555565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161170193929190613598565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161179a91906135de565b60206040518083038186803b1580156117b257600080fd5b505afa1580156117c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ea9190613248565b73ffffffffffffffffffffffffffffffffffffffff16141561181057600191505061181e565b61181a84846126b6565b9150505b92915050565b565b61182e61198d565b73ffffffffffffffffffffffffffffffffffffffff1661184c611025565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990613742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906136a2565b60405180910390fd5b61191b8161230c565b50565b600481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119a0611a95565b111580156119af575060005482105b80156119dc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b798261205f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ba061198d565b73ffffffffffffffffffffffffffffffffffffffff161480611bd35750611bd28260000151611bcd61198d565b611730565b5b80611c185750611be161198d565b73ffffffffffffffffffffffffffffffffffffffff16611c00846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cba576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2e858585600161274a565b611d3e60008484600001516119e3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fef57600054811015611fee5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120588585856001612750565b5050505050565b612067612e40565b600082905080612075611a95565b11158015612084575060005481105b156122b7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122b557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121995780925050506122e9565b5b6001156122b457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122af5780925050506122e9565b61219a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612308828260405180602001604052806000815250612756565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241b61198d565b8786866040518563ffffffff1660e01b815260040161243d94939291906135f9565b602060405180830381600087803b15801561245757600080fd5b505af192505050801561248857506040513d601f19601f82011682018060405250810190612485919061321b565b60015b612502573d80600081146124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b506000815114156124fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561259d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b1565b600082905060005b600082146125cf5780806125b890613a8d565b915050600a826125c891906138fd565b91506125a5565b60008167ffffffffffffffff8111156125eb576125ea613bc3565b5b6040519080825280601f01601f19166020018201604052801561261d5781602001600182028036833780820191505090505b5090505b600085146126aa57600182612636919061392e565b9150600a856126459190613ad6565b603061265191906138a7565b60f81b81838151811061266757612666613b94565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a391906138fd565b9450612621565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6127638383836001612768565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612810576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61281d600086838761274a565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128aa5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128f4575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061293e5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612988575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129d25750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a1c575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a66575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612aa157600080600090505b615ecd811015612a9e578180612a8890613a8d565b9250508080612a9690613a8d565b915050612a73565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c6b5750612c6a8773ffffffffffffffffffffffffffffffffffffffff166123d2565b5b15612d31575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ce060008884806001019550886123f5565b612d16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c71578260005414612d2c57600080fd5b612d9d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d32575b816000819055505050612db36000868387612750565b5050505050565b828054612dc690613a2a565b90600052602060002090601f016020900481019282612de85760008555612e2f565b82601f10612e0157805160ff1916838001178555612e2f565b82800160010185558215612e2f579182015b82811115612e2e578251825591602001919060010190612e13565b5b509050612e3c9190612e83565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e9c576000816000905550600101612e84565b5090565b6000612eb3612eae846137e2565b6137bd565b905082815260208101848484011115612ecf57612ece613bf7565b5b612eda8482856139e8565b509392505050565b6000612ef5612ef084613813565b6137bd565b905082815260208101848484011115612f1157612f10613bf7565b5b612f1c8482856139e8565b509392505050565b600081359050612f3381613db1565b92915050565b600081359050612f4881613dc8565b92915050565b600081359050612f5d81613ddf565b92915050565b600081519050612f7281613ddf565b92915050565b600082601f830112612f8d57612f8c613bf2565b5b8135612f9d848260208601612ea0565b91505092915050565b600081519050612fb581613df6565b92915050565b600082601f830112612fd057612fcf613bf2565b5b8135612fe0848260208601612ee2565b91505092915050565b600081359050612ff881613e0d565b92915050565b60006020828403121561301457613013613c01565b5b600061302284828501612f24565b91505092915050565b6000806040838503121561304257613041613c01565b5b600061305085828601612f24565b925050602061306185828601612f24565b9150509250929050565b60008060006060848603121561308457613083613c01565b5b600061309286828701612f24565b93505060206130a386828701612f24565b92505060406130b486828701612fe9565b9150509250925092565b600080600080608085870312156130d8576130d7613c01565b5b60006130e687828801612f24565b94505060206130f787828801612f24565b935050604061310887828801612fe9565b925050606085013567ffffffffffffffff81111561312957613128613bfc565b5b61313587828801612f78565b91505092959194509250565b6000806040838503121561315857613157613c01565b5b600061316685828601612f24565b925050602061317785828601612f39565b9150509250929050565b6000806040838503121561319857613197613c01565b5b60006131a685828601612f24565b92505060206131b785828601612fe9565b9150509250929050565b6000602082840312156131d7576131d6613c01565b5b60006131e584828501612f39565b91505092915050565b60006020828403121561320457613203613c01565b5b600061321284828501612f4e565b91505092915050565b60006020828403121561323157613230613c01565b5b600061323f84828501612f63565b91505092915050565b60006020828403121561325e5761325d613c01565b5b600061326c84828501612fa6565b91505092915050565b60006020828403121561328b5761328a613c01565b5b600082013567ffffffffffffffff8111156132a9576132a8613bfc565b5b6132b584828501612fbb565b91505092915050565b6000602082840312156132d4576132d3613c01565b5b60006132e284828501612fe9565b91505092915050565b6132f481613962565b82525050565b61330381613974565b82525050565b600061331482613859565b61331e818561386f565b935061332e8185602086016139f7565b61333781613c06565b840191505092915050565b600061334d82613864565b613357818561388b565b93506133678185602086016139f7565b61337081613c06565b840191505092915050565b600061338682613864565b613390818561389c565b93506133a08185602086016139f7565b80840191505092915050565b600081546133b981613a2a565b6133c3818661389c565b945060018216600081146133de57600181146133ef57613422565b60ff19831686528186019350613422565b6133f885613844565b60005b8381101561341a578154818901526001820191506020810190506133fb565b838801955050505b50505092915050565b600061343860068361388b565b915061344382613c17565b602082019050919050565b600061345b60268361388b565b915061346682613c40565b604082019050919050565b600061347e60118361388b565b915061348982613c8f565b602082019050919050565b60006134a1600a8361388b565b91506134ac82613cb8565b602082019050919050565b60006134c460128361388b565b91506134cf82613ce1565b602082019050919050565b60006134e760158361388b565b91506134f282613d0a565b602082019050919050565b600061350a60208361388b565b915061351582613d33565b602082019050919050565b600061352d600083613880565b915061353882613d5c565b600082019050919050565b6000613550600e8361388b565b915061355b82613d5f565b602082019050919050565b6000613573600c8361388b565b915061357e82613d88565b602082019050919050565b613592816139de565b82525050565b60006135a482866133ac565b91506135b0828561337b565b91506135bc828461337b565b9150819050949350505050565b60006135d482613520565b9150819050919050565b60006020820190506135f360008301846132eb565b92915050565b600060808201905061360e60008301876132eb565b61361b60208301866132eb565b6136286040830185613589565b818103606083015261363a8184613309565b905095945050505050565b600060208201905061365a60008301846132fa565b92915050565b6000602082019050818103600083015261367a8184613342565b905092915050565b6000602082019050818103600083015261369b8161342b565b9050919050565b600060208201905081810360008301526136bb8161344e565b9050919050565b600060208201905081810360008301526136db81613471565b9050919050565b600060208201905081810360008301526136fb81613494565b9050919050565b6000602082019050818103600083015261371b816134b7565b9050919050565b6000602082019050818103600083015261373b816134da565b9050919050565b6000602082019050818103600083015261375b816134fd565b9050919050565b6000602082019050818103600083015261377b81613543565b9050919050565b6000602082019050818103600083015261379b81613566565b9050919050565b60006020820190506137b76000830184613589565b92915050565b60006137c76137d8565b90506137d38282613a5c565b919050565b6000604051905090565b600067ffffffffffffffff8211156137fd576137fc613bc3565b5b61380682613c06565b9050602081019050919050565b600067ffffffffffffffff82111561382e5761382d613bc3565b5b61383782613c06565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138b2826139de565b91506138bd836139de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f2576138f1613b07565b5b828201905092915050565b6000613908826139de565b9150613913836139de565b92508261392357613922613b36565b5b828204905092915050565b6000613939826139de565b9150613944836139de565b92508282101561395757613956613b07565b5b828203905092915050565b600061396d826139be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139b782613962565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a155780820151818401526020810190506139fa565b83811115613a24576000848401525b50505050565b60006002820490506001821680613a4257607f821691505b60208210811415613a5657613a55613b65565b5b50919050565b613a6582613c06565b810181811067ffffffffffffffff82111715613a8457613a83613bc3565b5b80604052505050565b6000613a98826139de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613acb57613aca613b07565b5b600182019050919050565b6000613ae1826139de565b9150613aec836139de565b925082613afc57613afb613b36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613dba81613962565b8114613dc557600080fd5b50565b613dd181613974565b8114613ddc57600080fd5b50565b613de881613980565b8114613df357600080fd5b50565b613dff816139ac565b8114613e0a57600080fd5b50565b613e16816139de565b8114613e2157600080fd5b5056fea2646970667358221220c2c77c9096c5c19a4633faf91521ccad8beb3df82e82b25d8d3c477166e3328964736f6c63430008070033697066733a2f2f516d51434d5a74336b59354b6f695077363462385731354c797a704363516d3547314e6a565462583570443943722f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c0326146106ec578063e985e9c514610717578063ed88c68e14610754578063f2fde38b1461075e578063f43a22dc14610787576101f9565b8063a22cb46514610632578063b88d4fde1461065b578063c668286214610684578063c87b56dd146106af576101f9565b8063940cd05b116100dc578063940cd05b1461059757806395d89b41146105c0578063a035b1fe146105eb578063a0712d6814610616576101f9565b806370a08231146104ef578063715018a61461052c5780638da5cb5b1461054357806391b7f5ed1461056e576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461041c5780635c975abb146104455780636352211e14610470578063698982ba146104ad5780636c0360eb146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806351830227146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906131ee565b6107b2565b6040516102329190613645565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d91906131c1565b610894565b005b34801561027057600080fd5b5061027961092d565b6040516102869190613660565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b191906132be565b6109bf565b6040516102c391906135de565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613181565b610a3b565b005b34801561030157600080fd5b5061030a610b46565b60405161031791906137a2565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612ffe565b610b5d565b60405161035491906137a2565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f919061306b565b610b6f565b005b34801561039257600080fd5b5061039b610b7f565b6040516103a891906137a2565b60405180910390f35b3480156103bd57600080fd5b506103c6610b85565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061306b565b610cbd565b005b3480156103fd57600080fd5b50610406610cdd565b6040516104139190613645565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613275565b610cf0565b005b34801561045157600080fd5b5061045a610d86565b6040516104679190613645565b60405180910390f35b34801561047c57600080fd5b50610497600480360381019061049291906132be565b610d99565b6040516104a491906135de565b60405180910390f35b3480156104b957600080fd5b506104c2610daf565b005b3480156104d057600080fd5b506104d9610e3f565b6040516104e69190613660565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612ffe565b610ecd565b60405161052391906137a2565b60405180910390f35b34801561053857600080fd5b50610541610f9d565b005b34801561054f57600080fd5b50610558611025565b60405161056591906135de565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906132be565b61104f565b005b3480156105a357600080fd5b506105be60048036038101906105b991906131c1565b6110d5565b005b3480156105cc57600080fd5b506105d561116e565b6040516105e29190613660565b60405180910390f35b3480156105f757600080fd5b50610600611200565b60405161060d91906137a2565b60405180910390f35b610630600480360381019061062b91906132be565b611206565b005b34801561063e57600080fd5b5061065960048036038101906106549190613141565b6113bc565b005b34801561066757600080fd5b50610682600480360381019061067d91906130be565b611534565b005b34801561069057600080fd5b506106996115b0565b6040516106a69190613660565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906132be565b6115e9565b6040516106e39190613660565b60405180910390f35b3480156106f857600080fd5b50610701611718565b60405161070e91906135de565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061302b565b611730565b60405161074b9190613645565b60405180910390f35b61075c611824565b005b34801561076a57600080fd5b5061078560048036038101906107809190612ffe565b611826565b005b34801561079357600080fd5b5061079c61191e565b6040516107a991906137a2565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088d575061088c82611923565b5b9050919050565b61089c61198d565b73ffffffffffffffffffffffffffffffffffffffff166108ba611025565b73ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790613742565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461093c90613a2a565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613a2a565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611995565b610a00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4682610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aae576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acd61198d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aff5750610afd81610af861198d565b611730565b155b15610b36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b418383836119e3565b505050565b6000610b50611a95565b6001546000540303905090565b6000610b6882611a9e565b9050919050565b610b7a838383611b6e565b505050565b6115b281565b610b8d61198d565b73ffffffffffffffffffffffffffffffffffffffff16610bab611025565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613742565b60405180910390fd5b60004790506000610c1061198d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c33906135c9565b60006040518083038185875af1925050503d8060008114610c70576040519150601f19603f3d011682016040523d82523d6000602084013e610c75565b606091505b5050905080610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613762565b60405180910390fd5b5050565b610cd883838360405180602001604052806000815250611534565b505050565b600b60019054906101000a900460ff1681565b610cf861198d565b73ffffffffffffffffffffffffffffffffffffffff16610d16611025565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613742565b60405180910390fd5b8060099080519060200190610d82929190612dba565b5050565b600b60009054906101000a900460ff1681565b6000610da48261205f565b600001519050919050565b610db761198d565b73ffffffffffffffffffffffffffffffffffffffff16610dd5611025565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613742565b60405180910390fd5b610e3d610e3661198d565b60016122ee565b565b60098054610e4c90613a2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7890613a2a565b8015610ec55780601f10610e9a57610100808354040283529160200191610ec5565b820191906000526020600020905b815481529060010190602001808311610ea857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f35576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fa561198d565b73ffffffffffffffffffffffffffffffffffffffff16610fc3611025565b73ffffffffffffffffffffffffffffffffffffffff1614611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613742565b60405180910390fd5b611023600061230c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105761198d565b73ffffffffffffffffffffffffffffffffffffffff16611075611025565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613742565b60405180910390fd5b80600a8190555050565b6110dd61198d565b73ffffffffffffffffffffffffffffffffffffffff166110fb611025565b73ffffffffffffffffffffffffffffffffffffffff1614611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613742565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b60606003805461117d90613a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546111a990613a2a565b80156111f65780601f106111cb576101008083540402835291602001916111f6565b820191906000526020600020905b8154815290600101906020018083116111d957829003601f168201915b5050505050905090565b600a5481565b600061121061198d565b9050600b60009054906101000a900460ff1615611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613682565b60405180910390fd5b8161126b610b46565b61127591906138a7565b6115b210156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613702565b60405180910390fd5b600082116112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f3906136e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613782565b60405180910390fd5b81600410156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906136c2565b60405180910390fd5b6113b881836122ee565b5050565b6113c461198d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611429576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143661198d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e361198d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115289190613645565b60405180910390a35050565b61153f848484611b6e565b61155e8373ffffffffffffffffffffffffffffffffffffffff166123d2565b80156115735750611571848484846123f5565b155b156115aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606115f482611995565b611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90613722565b60405180910390fd5b60006009805461164290613a2a565b90501161165e5760405180602001604052806000815250611711565b6009600b60019054906101000a900460ff166116af576040518060400160405280600b81526020017f706c616365686f6c6465720000000000000000000000000000000000000000008152506116b9565b6116b883612555565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161170193929190613598565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161179a91906135de565b60206040518083038186803b1580156117b257600080fd5b505afa1580156117c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ea9190613248565b73ffffffffffffffffffffffffffffffffffffffff16141561181057600191505061181e565b61181a84846126b6565b9150505b92915050565b565b61182e61198d565b73ffffffffffffffffffffffffffffffffffffffff1661184c611025565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990613742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906136a2565b60405180910390fd5b61191b8161230c565b50565b600481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119a0611a95565b111580156119af575060005482105b80156119dc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b798261205f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ba061198d565b73ffffffffffffffffffffffffffffffffffffffff161480611bd35750611bd28260000151611bcd61198d565b611730565b5b80611c185750611be161198d565b73ffffffffffffffffffffffffffffffffffffffff16611c00846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c51576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cba576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2e858585600161274a565b611d3e60008484600001516119e3565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fef57600054811015611fee5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120588585856001612750565b5050505050565b612067612e40565b600082905080612075611a95565b11158015612084575060005481105b156122b7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122b557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121995780925050506122e9565b5b6001156122b457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122af5780925050506122e9565b61219a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612308828260405180602001604052806000815250612756565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241b61198d565b8786866040518563ffffffff1660e01b815260040161243d94939291906135f9565b602060405180830381600087803b15801561245757600080fd5b505af192505050801561248857506040513d601f19601f82011682018060405250810190612485919061321b565b60015b612502573d80600081146124b8576040519150601f19603f3d011682016040523d82523d6000602084013e6124bd565b606091505b506000815114156124fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561259d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b1565b600082905060005b600082146125cf5780806125b890613a8d565b915050600a826125c891906138fd565b91506125a5565b60008167ffffffffffffffff8111156125eb576125ea613bc3565b5b6040519080825280601f01601f19166020018201604052801561261d5781602001600182028036833780820191505090505b5090505b600085146126aa57600182612636919061392e565b9150600a856126459190613ad6565b603061265191906138a7565b60f81b81838151811061266757612666613b94565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a391906138fd565b9450612621565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6127638383836001612768565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612810576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61281d600086838761274a565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128aa5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128f4575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061293e5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612988575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129d25750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a1c575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a66575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612aa157600080600090505b615ecd811015612a9e578180612a8890613a8d565b9250508080612a9690613a8d565b915050612a73565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c6b5750612c6a8773ffffffffffffffffffffffffffffffffffffffff166123d2565b5b15612d31575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ce060008884806001019550886123f5565b612d16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c71578260005414612d2c57600080fd5b612d9d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612d32575b816000819055505050612db36000868387612750565b5050505050565b828054612dc690613a2a565b90600052602060002090601f016020900481019282612de85760008555612e2f565b82601f10612e0157805160ff1916838001178555612e2f565b82800160010185558215612e2f579182015b82811115612e2e578251825591602001919060010190612e13565b5b509050612e3c9190612e83565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e9c576000816000905550600101612e84565b5090565b6000612eb3612eae846137e2565b6137bd565b905082815260208101848484011115612ecf57612ece613bf7565b5b612eda8482856139e8565b509392505050565b6000612ef5612ef084613813565b6137bd565b905082815260208101848484011115612f1157612f10613bf7565b5b612f1c8482856139e8565b509392505050565b600081359050612f3381613db1565b92915050565b600081359050612f4881613dc8565b92915050565b600081359050612f5d81613ddf565b92915050565b600081519050612f7281613ddf565b92915050565b600082601f830112612f8d57612f8c613bf2565b5b8135612f9d848260208601612ea0565b91505092915050565b600081519050612fb581613df6565b92915050565b600082601f830112612fd057612fcf613bf2565b5b8135612fe0848260208601612ee2565b91505092915050565b600081359050612ff881613e0d565b92915050565b60006020828403121561301457613013613c01565b5b600061302284828501612f24565b91505092915050565b6000806040838503121561304257613041613c01565b5b600061305085828601612f24565b925050602061306185828601612f24565b9150509250929050565b60008060006060848603121561308457613083613c01565b5b600061309286828701612f24565b93505060206130a386828701612f24565b92505060406130b486828701612fe9565b9150509250925092565b600080600080608085870312156130d8576130d7613c01565b5b60006130e687828801612f24565b94505060206130f787828801612f24565b935050604061310887828801612fe9565b925050606085013567ffffffffffffffff81111561312957613128613bfc565b5b61313587828801612f78565b91505092959194509250565b6000806040838503121561315857613157613c01565b5b600061316685828601612f24565b925050602061317785828601612f39565b9150509250929050565b6000806040838503121561319857613197613c01565b5b60006131a685828601612f24565b92505060206131b785828601612fe9565b9150509250929050565b6000602082840312156131d7576131d6613c01565b5b60006131e584828501612f39565b91505092915050565b60006020828403121561320457613203613c01565b5b600061321284828501612f4e565b91505092915050565b60006020828403121561323157613230613c01565b5b600061323f84828501612f63565b91505092915050565b60006020828403121561325e5761325d613c01565b5b600061326c84828501612fa6565b91505092915050565b60006020828403121561328b5761328a613c01565b5b600082013567ffffffffffffffff8111156132a9576132a8613bfc565b5b6132b584828501612fbb565b91505092915050565b6000602082840312156132d4576132d3613c01565b5b60006132e284828501612fe9565b91505092915050565b6132f481613962565b82525050565b61330381613974565b82525050565b600061331482613859565b61331e818561386f565b935061332e8185602086016139f7565b61333781613c06565b840191505092915050565b600061334d82613864565b613357818561388b565b93506133678185602086016139f7565b61337081613c06565b840191505092915050565b600061338682613864565b613390818561389c565b93506133a08185602086016139f7565b80840191505092915050565b600081546133b981613a2a565b6133c3818661389c565b945060018216600081146133de57600181146133ef57613422565b60ff19831686528186019350613422565b6133f885613844565b60005b8381101561341a578154818901526001820191506020810190506133fb565b838801955050505b50505092915050565b600061343860068361388b565b915061344382613c17565b602082019050919050565b600061345b60268361388b565b915061346682613c40565b604082019050919050565b600061347e60118361388b565b915061348982613c8f565b602082019050919050565b60006134a1600a8361388b565b91506134ac82613cb8565b602082019050919050565b60006134c460128361388b565b91506134cf82613ce1565b602082019050919050565b60006134e760158361388b565b91506134f282613d0a565b602082019050919050565b600061350a60208361388b565b915061351582613d33565b602082019050919050565b600061352d600083613880565b915061353882613d5c565b600082019050919050565b6000613550600e8361388b565b915061355b82613d5f565b602082019050919050565b6000613573600c8361388b565b915061357e82613d88565b602082019050919050565b613592816139de565b82525050565b60006135a482866133ac565b91506135b0828561337b565b91506135bc828461337b565b9150819050949350505050565b60006135d482613520565b9150819050919050565b60006020820190506135f360008301846132eb565b92915050565b600060808201905061360e60008301876132eb565b61361b60208301866132eb565b6136286040830185613589565b818103606083015261363a8184613309565b905095945050505050565b600060208201905061365a60008301846132fa565b92915050565b6000602082019050818103600083015261367a8184613342565b905092915050565b6000602082019050818103600083015261369b8161342b565b9050919050565b600060208201905081810360008301526136bb8161344e565b9050919050565b600060208201905081810360008301526136db81613471565b9050919050565b600060208201905081810360008301526136fb81613494565b9050919050565b6000602082019050818103600083015261371b816134b7565b9050919050565b6000602082019050818103600083015261373b816134da565b9050919050565b6000602082019050818103600083015261375b816134fd565b9050919050565b6000602082019050818103600083015261377b81613543565b9050919050565b6000602082019050818103600083015261379b81613566565b9050919050565b60006020820190506137b76000830184613589565b92915050565b60006137c76137d8565b90506137d38282613a5c565b919050565b6000604051905090565b600067ffffffffffffffff8211156137fd576137fc613bc3565b5b61380682613c06565b9050602081019050919050565b600067ffffffffffffffff82111561382e5761382d613bc3565b5b61383782613c06565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006138b2826139de565b91506138bd836139de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f2576138f1613b07565b5b828201905092915050565b6000613908826139de565b9150613913836139de565b92508261392357613922613b36565b5b828204905092915050565b6000613939826139de565b9150613944836139de565b92508282101561395757613956613b07565b5b828203905092915050565b600061396d826139be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139b782613962565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a155780820151818401526020810190506139fa565b83811115613a24576000848401525b50505050565b60006002820490506001821680613a4257607f821691505b60208210811415613a5657613a55613b65565b5b50919050565b613a6582613c06565b810181811067ffffffffffffffff82111715613a8457613a83613bc3565b5b80604052505050565b6000613a98826139de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613acb57613aca613b07565b5b600182019050919050565b6000613ae1826139de565b9150613aec836139de565b925082613afc57613afb613b36565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613dba81613962565b8114613dc557600080fd5b50565b613dd181613974565b8114613ddc57600080fd5b50565b613de881613980565b8114613df357600080fd5b50565b613dff816139ac565b8114613e0a57600080fd5b50565b613e16816139de565b8114613e2157600080fd5b5056fea2646970667358221220c2c77c9096c5c19a4633faf91521ccad8beb3df82e82b25d8d3c477166e3328964736f6c63430008070033

Deployed Bytecode Sourcemap

46436:2818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28226:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48573:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31611:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33114:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32677:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27475:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48054:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33971:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46775:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48171:209;;;;;;;;;;;;;:::i;:::-;;34212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46895:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48754:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46862:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31420:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48388:83;;;;;;;;;;;;;:::i;:::-;;46492:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28595:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2700:103;;;;;;;;;;;;;:::i;:::-;;2049:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48479:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48662:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31780:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46823:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46992:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33390:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34468:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46579:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48862:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46632:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47601:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47415:65;;;:::i;:::-;;2958:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46730:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28226:305;28328:4;28380:25;28365:40;;;:11;:40;;;;:105;;;;28437:33;28422:48;;;:11;:48;;;;28365:105;:158;;;;28487:36;28511:11;28487:23;:36::i;:::-;28365:158;28345:178;;28226:305;;;:::o;48573:81::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48640:6:::1;48631;;:15;;;;;;;;;;;;;;;;;;48573:81:::0;:::o;31611:100::-;31665:13;31698:5;31691:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31611:100;:::o;33114:204::-;33182:7;33207:16;33215:7;33207;:16::i;:::-;33202:64;;33232:34;;;;;;;;;;;;;;33202:64;33286:15;:24;33302:7;33286:24;;;;;;;;;;;;;;;;;;;;;33279:31;;33114:204;;;:::o;32677:371::-;32750:13;32766:24;32782:7;32766:15;:24::i;:::-;32750:40;;32811:5;32805:11;;:2;:11;;;32801:48;;;32825:24;;;;;;;;;;;;;;32801:48;32882:5;32866:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32892:37;32909:5;32916:12;:10;:12::i;:::-;32892:16;:37::i;:::-;32891:38;32866:63;32862:138;;;32953:35;;;;;;;;;;;;;;32862:138;33012:28;33021:2;33025:7;33034:5;33012:8;:28::i;:::-;32739:309;32677:371;;:::o;27475:303::-;27519:7;27744:15;:13;:15::i;:::-;27729:12;;27713:13;;:28;:46;27706:53;;27475:303;:::o;48054:109::-;48107:7;48134:21;48148:6;48134:13;:21::i;:::-;48127:28;;48054:109;;;:::o;33971:170::-;34105:28;34115:4;34121:2;34125:7;34105:9;:28::i;:::-;33971:170;;;:::o;46775:41::-;46812:4;46775:41;:::o;48171:209::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48221:15:::1;48239:21;48221:39;;48272:12;48290;:10;:12::i;:::-;:17;;48315:7;48290:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48271:56;;;48346:7;48338:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48210:170;;48171:209::o:0;34212:185::-;34350:39;34367:4;34373:2;34377:7;34350:39;;;;;;;;;;;;:16;:39::i;:::-;34212:185;;;:::o;46895:27::-;;;;;;;;;;;;;:::o;48754:100::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48838:8:::1;48828:7;:18;;;;;;;;;;;;:::i;:::-;;48754:100:::0;:::o;46862:26::-;;;;;;;;;;;;;:::o;31420:124::-;31484:7;31511:20;31523:7;31511:11;:20::i;:::-;:25;;;31504:32;;31420:124;;;:::o;48388:83::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48437:26:::1;48447:12;:10;:12::i;:::-;48461:1;48437:9;:26::i;:::-;48388:83::o:0;46492:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28595:206::-;28659:7;28700:1;28683:19;;:5;:19;;;28679:60;;;28711:28;;;;;;;;;;;;;;28679:60;28765:12;:19;28778:5;28765:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28757:36;;28750:43;;28595:206;;;:::o;2700:103::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2765:30:::1;2792:1;2765:18;:30::i;:::-;2700:103::o:0;2049:87::-;2095:7;2122:6;;;;;;;;;;;2115:13;;2049:87;:::o;48479:86::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48551:6:::1;48543:5;:14;;;;48479:86:::0;:::o;48662:84::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48732:6:::1;48721:8;;:17;;;;;;;;;;;;;;;;;;48662:84:::0;:::o;31780:104::-;31836:13;31869:7;31862:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31780:104;:::o;46823:30::-;;;;:::o;46992:417::-;47051:15;47069:12;:10;:12::i;:::-;47051:30;;47101:6;;;;;;;;;;;47100:7;47092:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47167:7;47151:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46812:4;47137:37;;47129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47226:1;47216:7;:11;47208:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47274:7;47261:20;;:9;:20;;;47253:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47331:7;46767:1;47317:21;;47309:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47374:27;47384:7;47393;47374:9;:27::i;:::-;47040:369;46992:417;:::o;33390:279::-;33493:12;:10;:12::i;:::-;33481:24;;:8;:24;;;33477:54;;;33514:17;;;;;;;;;;;;;;33477:54;33589:8;33544:18;:32;33563:12;:10;:12::i;:::-;33544:32;;;;;;;;;;;;;;;:42;33577:8;33544:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33642:8;33613:48;;33628:12;:10;:12::i;:::-;33613:48;;;33652:8;33613:48;;;;;;:::i;:::-;;;;;;;;33390:279;;:::o;34468:369::-;34635:28;34645:4;34651:2;34655:7;34635:9;:28::i;:::-;34678:15;:2;:13;;;:15::i;:::-;:76;;;;;34698:56;34729:4;34735:2;34739:7;34748:5;34698:30;:56::i;:::-;34697:57;34678:76;34674:156;;;34778:40;;;;;;;;;;;;;;34674:156;34468:369;;;;:::o;46579:46::-;;;;;;;;;;;;;;;;;;;:::o;48862:389::-;48928:13;48962:17;48970:8;48962:7;:17::i;:::-;48954:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49047:1;49029:7;49023:21;;;;;:::i;:::-;;;:25;:220;;;;;;;;;;;;;;;;;49105:7;49129:8;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;49140:26;49157:8;49140:16;:26::i;:::-;49129:53;49199:13;;;;;;;;;;;;;;;;;49072:155;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49023:220;49016:227;;48862:389;;;:::o;46632:89::-;46679:42;46632:89;:::o;47601:445::-;47726:4;47811:27;46679:42;47811:65;;47932:8;47891:49;;47899:13;:21;;;47921:5;47899:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47891:49;;;47887:93;;;47964:4;47957:11;;;;;47887:93;47999:39;48022:5;48029:8;47999:22;:39::i;:::-;47992:46;;;47601:445;;;;;:::o;47415:65::-;:::o;2958:201::-;2280:12;:10;:12::i;:::-;2269:23;;:7;:5;:7::i;:::-;:23;;;2261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3067:1:::1;3047:22;;:8;:22;;;;3039:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3123:28;3142:8;3123:18;:28::i;:::-;2958:201:::0;:::o;46730:38::-;46767:1;46730:38;:::o;23607:157::-;23692:4;23731:25;23716:40;;;:11;:40;;;;23709:47;;23607:157;;;:::o;790:98::-;843:7;870:10;863:17;;790:98;:::o;35092:187::-;35149:4;35192:7;35173:15;:13;:15::i;:::-;:26;;:53;;;;;35213:13;;35203:7;:23;35173:53;:98;;;;;35244:11;:20;35256:7;35244:20;;;;;;;;;;;:27;;;;;;;;;;;;35243:28;35173:98;35166:105;;35092:187;;;:::o;43408:196::-;43550:2;43523:15;:24;43539:7;43523:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43588:7;43584:2;43568:28;;43577:5;43568:28;;;;;;;;;;;;43408:196;;;:::o;47492:101::-;47557:7;47584:1;47577:8;;47492:101;:::o;28883:207::-;28944:7;28985:1;28968:19;;:5;:19;;;28964:59;;;28996:27;;;;;;;;;;;;;;28964:59;29049:12;:19;29062:5;29049:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29041:41;;29034:48;;28883:207;;;:::o;38910:2112::-;39025:35;39063:20;39075:7;39063:11;:20::i;:::-;39025:58;;39096:22;39138:13;:18;;;39122:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39173:50;39190:13;:18;;;39210:12;:10;:12::i;:::-;39173:16;:50::i;:::-;39122:101;:154;;;;39264:12;:10;:12::i;:::-;39240:36;;:20;39252:7;39240:11;:20::i;:::-;:36;;;39122:154;39096:181;;39295:17;39290:66;;39321:35;;;;;;;;;;;;;;39290:66;39393:4;39371:26;;:13;:18;;;:26;;;39367:67;;39406:28;;;;;;;;;;;;;;39367:67;39463:1;39449:16;;:2;:16;;;39445:52;;;39474:23;;;;;;;;;;;;;;39445:52;39510:43;39532:4;39538:2;39542:7;39551:1;39510:21;:43::i;:::-;39618:49;39635:1;39639:7;39648:13;:18;;;39618:8;:49::i;:::-;39993:1;39963:12;:18;39976:4;39963:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40037:1;40009:12;:16;40022:2;40009:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40083:2;40055:11;:20;40067:7;40055:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40145:15;40100:11;:20;40112:7;40100:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40413:19;40445:1;40435:7;:11;40413:33;;40506:1;40465:43;;:11;:24;40477:11;40465:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40461:445;;;40690:13;;40676:11;:27;40672:219;;;40760:13;:18;;;40728:11;:24;40740:11;40728:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40843:13;:28;;;40801:11;:24;40813:11;40801:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40672:219;40461:445;39938:979;40953:7;40949:2;40934:27;;40943:4;40934:27;;;;;;;;;;;;40972:42;40993:4;40999:2;41003:7;41012:1;40972:20;:42::i;:::-;39014:2008;;38910:2112;;;:::o;30250:1108::-;30311:21;;:::i;:::-;30345:12;30360:7;30345:22;;30428:4;30409:15;:13;:15::i;:::-;:23;;:47;;;;;30443:13;;30436:4;:20;30409:47;30405:886;;;30477:31;30511:11;:17;30523:4;30511:17;;;;;;;;;;;30477:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30552:9;:16;;;30547:729;;30623:1;30597:28;;:9;:14;;;:28;;;30593:101;;30661:9;30654:16;;;;;;30593:101;30996:261;31003:4;30996:261;;;31036:6;;;;;;;;31081:11;:17;31093:4;31081:17;;;;;;;;;;;31069:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31155:1;31129:28;;:9;:14;;;:28;;;31125:109;;31197:9;31190:16;;;;;;31125:109;30996:261;;;30547:729;30458:833;30405:886;31319:31;;;;;;;;;;;;;;30250:1108;;;;:::o;35287:104::-;35356:27;35366:2;35370:8;35356:27;;;;;;;;;;;;:9;:27::i;:::-;35287:104;;:::o;3319:191::-;3393:16;3412:6;;;;;;;;;;;3393:25;;3438:8;3429:6;;:17;;;;;;;;;;;;;;;;;;3493:8;3462:40;;3483:8;3462:40;;;;;;;;;;;;3382:128;3319:191;:::o;13380:326::-;13440:4;13697:1;13675:7;:19;;;:23;13668:30;;13380:326;;;:::o;44096:667::-;44259:4;44296:2;44280:36;;;44317:12;:10;:12::i;:::-;44331:4;44337:7;44346:5;44280:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44276:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44531:1;44514:6;:13;:18;44510:235;;;44560:40;;;;;;;;;;;;;;44510:235;44703:6;44697:13;44688:6;44684:2;44680:15;44673:38;44276:480;44409:45;;;44399:55;;;:6;:55;;;;44392:62;;;44096:667;;;;;;:::o;21000:723::-;21056:13;21286:1;21277:5;:10;21273:53;;;21304:10;;;;;;;;;;;;;;;;;;;;;21273:53;21336:12;21351:5;21336:20;;21367:14;21392:78;21407:1;21399:4;:9;21392:78;;21425:8;;;;;:::i;:::-;;;;21456:2;21448:10;;;;;:::i;:::-;;;21392:78;;;21480:19;21512:6;21502:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21480:39;;21530:154;21546:1;21537:5;:10;21530:154;;21574:1;21564:11;;;;;:::i;:::-;;;21641:2;21633:5;:10;;;;:::i;:::-;21620:2;:24;;;;:::i;:::-;21607:39;;21590:6;21597;21590:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21670:2;21661:11;;;;;:::i;:::-;;;21530:154;;;21708:6;21694:21;;;;;21000:723;;;;:::o;33740:164::-;33837:4;33861:18;:25;33880:5;33861:25;;;;;;;;;;;;;;;:35;33887:8;33861:35;;;;;;;;;;;;;;;;;;;;;;;;;33854:42;;33740:164;;;;:::o;45411:159::-;;;;;:::o;46229:158::-;;;;;:::o;35754:163::-;35877:32;35883:2;35887:8;35897:5;35904:4;35877:5;:32::i;:::-;35754:163;;;:::o;36176:2480::-;36315:20;36338:13;;36315:36;;36380:1;36366:16;;:2;:16;;;36362:48;;;36391:19;;;;;;;;;;;;;;36362:48;36437:1;36425:8;:13;36421:44;;;36447:18;;;;;;;;;;;;;;36421:44;36478:61;36508:1;36512:2;36516:12;36530:8;36478:21;:61::i;:::-;36605:42;36599:48;;:2;:48;;;:113;;;;36670:42;36664:48;;:2;:48;;;36599:113;:178;;;;36735:42;36729:48;;:2;:48;;;36599:178;:243;;;;36800:42;36794:48;;:2;:48;;;36599:243;:308;;;;36865:42;36859:48;;:2;:48;;;36599:308;:373;;;;36930:42;36924:48;;:2;:48;;;36599:373;:438;;;;36995:42;36989:48;;:2;:48;;;36599:438;:503;;;;37060:42;37054:48;;:2;:48;;;36599:503;36582:663;;;37128:15;37163:6;37172:1;37163:10;;37158:76;37179:5;37175:1;:9;37158:76;;;37209:9;;;;;:::i;:::-;;;;37186:3;;;;;:::i;:::-;;;;37158:76;;;;37113:132;36582:663;37556:8;37521:12;:16;37534:2;37521:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37620:8;37580:12;:16;37593:2;37580:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37679:2;37646:11;:25;37658:12;37646:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37746:15;37696:11;:25;37708:12;37696:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37779:20;37802:12;37779:35;;37829:11;37858:8;37843:12;:23;37829:37;;37887:4;:23;;;;;37895:15;:2;:13;;;:15::i;:::-;37887:23;37883:641;;;37931:314;37987:12;37983:2;37962:38;;37979:1;37962:38;;;;;;;;;;;;38028:69;38067:1;38071:2;38075:14;;;;;;38091:5;38028:30;:69::i;:::-;38023:174;;38133:40;;;;;;;;;;;;;;38023:174;38240:3;38224:12;:19;;37931:314;;38326:12;38309:13;;:29;38305:43;;38340:8;;;38305:43;37883:641;;;38389:120;38445:14;;;;;;38441:2;38420:40;;38437:1;38420:40;;;;;;;;;;;;38504:3;38488:12;:19;;38389:120;;37883:641;38554:12;38538:13;:28;;;;37496:1082;;38588:60;38617:1;38621:2;38625:12;38639:8;38588:20;:60::i;:::-;36304:2352;36176:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:398::-;13104:3;13125:83;13206:1;13201:3;13125:83;:::i;:::-;13118:90;;13217:93;13306:3;13217:93;:::i;:::-;13335:1;13330:3;13326:11;13319:18;;12945:398;;;:::o;13349:366::-;13491:3;13512:67;13576:2;13571:3;13512:67;:::i;:::-;13505:74;;13588:93;13677:3;13588:93;:::i;:::-;13706:2;13701:3;13697:12;13690:19;;13349:366;;;:::o;13721:::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:118::-;14180:24;14198:5;14180:24;:::i;:::-;14175:3;14168:37;14093:118;;:::o;14217:589::-;14442:3;14464:92;14552:3;14543:6;14464:92;:::i;:::-;14457:99;;14573:95;14664:3;14655:6;14573:95;:::i;:::-;14566:102;;14685:95;14776:3;14767:6;14685:95;:::i;:::-;14678:102;;14797:3;14790:10;;14217:589;;;;;;:::o;14812:379::-;14996:3;15018:147;15161:3;15018:147;:::i;:::-;15011:154;;15182:3;15175:10;;14812:379;;;:::o;15197:222::-;15290:4;15328:2;15317:9;15313:18;15305:26;;15341:71;15409:1;15398:9;15394:17;15385:6;15341:71;:::i;:::-;15197:222;;;;:::o;15425:640::-;15620:4;15658:3;15647:9;15643:19;15635:27;;15672:71;15740:1;15729:9;15725:17;15716:6;15672:71;:::i;:::-;15753:72;15821:2;15810:9;15806:18;15797:6;15753:72;:::i;:::-;15835;15903:2;15892:9;15888:18;15879:6;15835:72;:::i;:::-;15954:9;15948:4;15944:20;15939:2;15928:9;15924:18;15917:48;15982:76;16053:4;16044:6;15982:76;:::i;:::-;15974:84;;15425:640;;;;;;;:::o;16071:210::-;16158:4;16196:2;16185:9;16181:18;16173:26;;16209:65;16271:1;16260:9;16256:17;16247:6;16209:65;:::i;:::-;16071:210;;;;:::o;16287:313::-;16400:4;16438:2;16427:9;16423:18;16415:26;;16487:9;16481:4;16477:20;16473:1;16462:9;16458:17;16451:47;16515:78;16588:4;16579:6;16515:78;:::i;:::-;16507:86;;16287:313;;;;:::o;16606:419::-;16772:4;16810:2;16799:9;16795:18;16787:26;;16859:9;16853:4;16849:20;16845:1;16834:9;16830:17;16823:47;16887:131;17013:4;16887:131;:::i;:::-;16879:139;;16606:419;;;:::o;17031:::-;17197:4;17235:2;17224:9;17220:18;17212:26;;17284:9;17278:4;17274:20;17270:1;17259:9;17255:17;17248:47;17312:131;17438:4;17312:131;:::i;:::-;17304:139;;17031:419;;;:::o;17456:::-;17622:4;17660:2;17649:9;17645:18;17637:26;;17709:9;17703:4;17699:20;17695:1;17684:9;17680:17;17673:47;17737:131;17863:4;17737:131;:::i;:::-;17729:139;;17456:419;;;:::o;17881:::-;18047:4;18085:2;18074:9;18070:18;18062:26;;18134:9;18128:4;18124:20;18120:1;18109:9;18105:17;18098:47;18162:131;18288:4;18162:131;:::i;:::-;18154:139;;17881:419;;;:::o;18306:::-;18472:4;18510:2;18499:9;18495:18;18487:26;;18559:9;18553:4;18549:20;18545:1;18534:9;18530:17;18523:47;18587:131;18713:4;18587:131;:::i;:::-;18579:139;;18306:419;;;:::o;18731:::-;18897:4;18935:2;18924:9;18920:18;18912:26;;18984:9;18978:4;18974:20;18970:1;18959:9;18955:17;18948:47;19012:131;19138:4;19012:131;:::i;:::-;19004:139;;18731:419;;;:::o;19156:::-;19322:4;19360:2;19349:9;19345:18;19337:26;;19409:9;19403:4;19399:20;19395:1;19384:9;19380:17;19373:47;19437:131;19563:4;19437:131;:::i;:::-;19429:139;;19156:419;;;:::o;19581:::-;19747:4;19785:2;19774:9;19770:18;19762:26;;19834:9;19828:4;19824:20;19820:1;19809:9;19805:17;19798:47;19862:131;19988:4;19862:131;:::i;:::-;19854:139;;19581:419;;;:::o;20006:::-;20172:4;20210:2;20199:9;20195:18;20187:26;;20259:9;20253:4;20249:20;20245:1;20234:9;20230:17;20223:47;20287:131;20413:4;20287:131;:::i;:::-;20279:139;;20006:419;;;:::o;20431:222::-;20524:4;20562:2;20551:9;20547:18;20539:26;;20575:71;20643:1;20632:9;20628:17;20619:6;20575:71;:::i;:::-;20431:222;;;;:::o;20659:129::-;20693:6;20720:20;;:::i;:::-;20710:30;;20749:33;20777:4;20769:6;20749:33;:::i;:::-;20659:129;;;:::o;20794:75::-;20827:6;20860:2;20854:9;20844:19;;20794:75;:::o;20875:307::-;20936:4;21026:18;21018:6;21015:30;21012:56;;;21048:18;;:::i;:::-;21012:56;21086:29;21108:6;21086:29;:::i;:::-;21078:37;;21170:4;21164;21160:15;21152:23;;20875:307;;;:::o;21188:308::-;21250:4;21340:18;21332:6;21329:30;21326:56;;;21362:18;;:::i;:::-;21326:56;21400:29;21422:6;21400:29;:::i;:::-;21392:37;;21484:4;21478;21474:15;21466:23;;21188:308;;;:::o;21502:141::-;21551:4;21574:3;21566:11;;21597:3;21594:1;21587:14;21631:4;21628:1;21618:18;21610:26;;21502:141;;;:::o;21649:98::-;21700:6;21734:5;21728:12;21718:22;;21649:98;;;:::o;21753:99::-;21805:6;21839:5;21833:12;21823:22;;21753:99;;;:::o;21858:168::-;21941:11;21975:6;21970:3;21963:19;22015:4;22010:3;22006:14;21991:29;;21858:168;;;;:::o;22032:147::-;22133:11;22170:3;22155:18;;22032:147;;;;:::o;22185:169::-;22269:11;22303:6;22298:3;22291:19;22343:4;22338:3;22334:14;22319:29;;22185:169;;;;:::o;22360:148::-;22462:11;22499:3;22484:18;;22360:148;;;;:::o;22514:305::-;22554:3;22573:20;22591:1;22573:20;:::i;:::-;22568:25;;22607:20;22625:1;22607:20;:::i;:::-;22602:25;;22761:1;22693:66;22689:74;22686:1;22683:81;22680:107;;;22767:18;;:::i;:::-;22680:107;22811:1;22808;22804:9;22797:16;;22514:305;;;;:::o;22825:185::-;22865:1;22882:20;22900:1;22882:20;:::i;:::-;22877:25;;22916:20;22934:1;22916:20;:::i;:::-;22911:25;;22955:1;22945:35;;22960:18;;:::i;:::-;22945:35;23002:1;22999;22995:9;22990:14;;22825:185;;;;:::o;23016:191::-;23056:4;23076:20;23094:1;23076:20;:::i;:::-;23071:25;;23110:20;23128:1;23110:20;:::i;:::-;23105:25;;23149:1;23146;23143:8;23140:34;;;23154:18;;:::i;:::-;23140:34;23199:1;23196;23192:9;23184:17;;23016:191;;;;:::o;23213:96::-;23250:7;23279:24;23297:5;23279:24;:::i;:::-;23268:35;;23213:96;;;:::o;23315:90::-;23349:7;23392:5;23385:13;23378:21;23367:32;;23315:90;;;:::o;23411:149::-;23447:7;23487:66;23480:5;23476:78;23465:89;;23411:149;;;:::o;23566:125::-;23632:7;23661:24;23679:5;23661:24;:::i;:::-;23650:35;;23566:125;;;:::o;23697:126::-;23734:7;23774:42;23767:5;23763:54;23752:65;;23697:126;;;:::o;23829:77::-;23866:7;23895:5;23884:16;;23829:77;;;:::o;23912:154::-;23996:6;23991:3;23986;23973:30;24058:1;24049:6;24044:3;24040:16;24033:27;23912:154;;;:::o;24072:307::-;24140:1;24150:113;24164:6;24161:1;24158:13;24150:113;;;24249:1;24244:3;24240:11;24234:18;24230:1;24225:3;24221:11;24214:39;24186:2;24183:1;24179:10;24174:15;;24150:113;;;24281:6;24278:1;24275:13;24272:101;;;24361:1;24352:6;24347:3;24343:16;24336:27;24272:101;24121:258;24072:307;;;:::o;24385:320::-;24429:6;24466:1;24460:4;24456:12;24446:22;;24513:1;24507:4;24503:12;24534:18;24524:81;;24590:4;24582:6;24578:17;24568:27;;24524:81;24652:2;24644:6;24641:14;24621:18;24618:38;24615:84;;;24671:18;;:::i;:::-;24615:84;24436:269;24385:320;;;:::o;24711:281::-;24794:27;24816:4;24794:27;:::i;:::-;24786:6;24782:40;24924:6;24912:10;24909:22;24888:18;24876:10;24873:34;24870:62;24867:88;;;24935:18;;:::i;:::-;24867:88;24975:10;24971:2;24964:22;24754:238;24711:281;;:::o;24998:233::-;25037:3;25060:24;25078:5;25060:24;:::i;:::-;25051:33;;25106:66;25099:5;25096:77;25093:103;;;25176:18;;:::i;:::-;25093:103;25223:1;25216:5;25212:13;25205:20;;24998:233;;;:::o;25237:176::-;25269:1;25286:20;25304:1;25286:20;:::i;:::-;25281:25;;25320:20;25338:1;25320:20;:::i;:::-;25315:25;;25359:1;25349:35;;25364:18;;:::i;:::-;25349:35;25405:1;25402;25398:9;25393:14;;25237:176;;;;:::o;25419:180::-;25467:77;25464:1;25457:88;25564:4;25561:1;25554:15;25588:4;25585:1;25578:15;25605:180;25653:77;25650:1;25643:88;25750:4;25747:1;25740:15;25774:4;25771:1;25764:15;25791:180;25839:77;25836:1;25829:88;25936:4;25933:1;25926:15;25960:4;25957:1;25950:15;25977:180;26025:77;26022:1;26015:88;26122:4;26119:1;26112:15;26146:4;26143:1;26136:15;26163:180;26211:77;26208:1;26201:88;26308:4;26305:1;26298:15;26332:4;26329:1;26322:15;26349:117;26458:1;26455;26448:12;26472:117;26581:1;26578;26571:12;26595:117;26704:1;26701;26694:12;26718:117;26827:1;26824;26817:12;26841:102;26882:6;26933:2;26929:7;26924:2;26917:5;26913:14;26909:28;26899:38;;26841:102;;;:::o;26949:156::-;27089:8;27085:1;27077:6;27073:14;27066:32;26949:156;:::o;27111:225::-;27251:34;27247:1;27239:6;27235:14;27228:58;27320:8;27315:2;27307:6;27303:15;27296:33;27111:225;:::o;27342:167::-;27482:19;27478:1;27470:6;27466:14;27459:43;27342:167;:::o;27515:160::-;27655:12;27651:1;27643:6;27639:14;27632:36;27515:160;:::o;27681:168::-;27821:20;27817:1;27809:6;27805:14;27798:44;27681:168;:::o;27855:171::-;27995:23;27991:1;27983:6;27979:14;27972:47;27855:171;:::o;28032:182::-;28172:34;28168:1;28160:6;28156:14;28149:58;28032:182;:::o;28220:114::-;;:::o;28340:164::-;28480:16;28476:1;28468:6;28464:14;28457:40;28340:164;:::o;28510:162::-;28650:14;28646:1;28638:6;28634:14;28627:38;28510:162;:::o;28678:122::-;28751:24;28769:5;28751:24;:::i;:::-;28744:5;28741:35;28731:63;;28790:1;28787;28780:12;28731:63;28678:122;:::o;28806:116::-;28876:21;28891:5;28876:21;:::i;:::-;28869:5;28866:32;28856:60;;28912:1;28909;28902:12;28856:60;28806:116;:::o;28928:120::-;29000:23;29017:5;29000:23;:::i;:::-;28993:5;28990:34;28980:62;;29038:1;29035;29028:12;28980:62;28928:120;:::o;29054:180::-;29156:53;29203:5;29156:53;:::i;:::-;29149:5;29146:64;29136:92;;29224:1;29221;29214:12;29136:92;29054:180;:::o;29240:122::-;29313:24;29331:5;29313:24;:::i;:::-;29306:5;29303:35;29293:63;;29352:1;29349;29342:12;29293:63;29240:122;:::o

Swarm Source

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