ETH Price: $2,286.18 (-2.46%)

Token

Woeld Patronus (WP)
 

Overview

Max Total Supply

444 WP

Holders

271

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WP
0x77F48fC60E38B30f20a51Cf9cCcBfF03CA0aa571
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:
Patronus

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: ceshi.sol


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

// File: contracts/NATURE.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
        ){
            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/NATURE.sol


contract Patronus is ERC721A, Ownable {

    string public baseURI = "https://neonghosts.fantomized.art/patronus/";
    address public constant proxyRegistryAddress = 0xa753FbC11d67D13D0eEadcDA3cB99FAC4a63746e;

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_PER_FREE = 1;
    uint256 public constant FREE_MAX_SUPPLY = 100;
    uint256 public MAX_SUPPLY = 444;
    uint256 public price = 0.01 ether;

    bool public paused = false;

    constructor() ERC721A("Woeld Patronus", "WP") {}

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

        _safeMint(_caller, _amount);
    }

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

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

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

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

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

    function pause(bool _state) external onlyOwner {
        paused = _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,
              Strings.toString(_tokenId), ".json"
            )
        ) : "";
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"Ownermint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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"}]

60806040526040518060600160405280602b8152602001620040aa602b9139600990805190602001906200003592919062000223565b506101bc600a55662386f26fc10000600b556000600c60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040518060400160405280600e81526020017f576f656c6420506174726f6e75730000000000000000000000000000000000008152506040518060400160405280600281526020017f57500000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f492919062000223565b5080600390805190602001906200010d92919062000223565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000337565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002319062000302565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031b57607f821691505b602082108103620003315762000330620002d3565b5b50919050565b613d6380620003476000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060d578063a22cb46514610629578063b88d4fde14610652578063c6119f301461067b576101ee565b80638da5cb5b116100dc5780638da5cb5b1461056357806391b7f5ed1461058e57806395d89b41146105b7578063a035b1fe146105e2576101ee565b806370a08231146104b9578063715018a6146104f65780638069876d1461050d57806381511e2314610538576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb1461040f5780636352211e1461043a578063698982ba146104775780636c0360eb1461048e576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d07565b61079d565b6040516102279190612d4f565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d96565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b9190612e5c565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612eb4565b6109aa565b6040516102b89190612f22565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f69565b610a26565b005b3480156102f657600080fd5b506102ff610b30565b60405161030c9190612fb8565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612fd3565b610b47565b6040516103499190612fb8565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613000565b610b59565b005b34801561038757600080fd5b50610390610b69565b60405161039d9190612fb8565b60405180910390f35b3480156103b257600080fd5b506103bb610b6f565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613000565b610ca7565b005b3480156103f257600080fd5b5061040d60048036038101906104089190613188565b610cc7565b005b34801561041b57600080fd5b50610424610d5d565b6040516104319190612d4f565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612eb4565b610d70565b60405161046e9190612f22565b60405180910390f35b34801561048357600080fd5b5061048c610d86565b005b34801561049a57600080fd5b506104a3610e16565b6040516104b09190612e5c565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612fd3565b610ea4565b6040516104ed9190612fb8565b60405180910390f35b34801561050257600080fd5b5061050b610f73565b005b34801561051957600080fd5b50610522610ffb565b60405161052f9190612fb8565b60405180910390f35b34801561054457600080fd5b5061054d611000565b60405161055a9190612fb8565b60405180910390f35b34801561056f57600080fd5b50610578611005565b6040516105859190612f22565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb4565b61102f565b005b3480156105c357600080fd5b506105cc6110b5565b6040516105d99190612e5c565b60405180910390f35b3480156105ee57600080fd5b506105f7611147565b6040516106049190612fb8565b60405180910390f35b61062760048036038101906106229190612eb4565b61114d565b005b34801561063557600080fd5b50610650600480360381019061064b91906131d1565b61138f565b005b34801561065e57600080fd5b50610679600480360381019061067491906132b2565b611506565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612eb4565b611582565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612eb4565b611608565b6040516106d89190612e5c565b60405180910390f35b3480156106ed57600080fd5b506106f66116b0565b6040516107039190612f22565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613335565b6116c8565b6040516107409190612d4f565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fd3565b6117ac565b005b34801561077e57600080fd5b506107876118a3565b6040516107949190612fb8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826118a8565b5b9050919050565b610887611912565b73ffffffffffffffffffffffffffffffffffffffff166108a5611005565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906133c1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461092790613410565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613410565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b58261191a565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611912565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae95750610ae781610ae2611912565b6116c8565b155b15610b20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2b838383611968565b505050565b6000610b3a611a1a565b6001546000540303905090565b6000610b5282611a23565b9050919050565b610b64838383611af2565b505050565b600a5481565b610b77611912565b73ffffffffffffffffffffffffffffffffffffffff16610b95611005565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906133c1565b60405180910390fd5b60004790506000610bfa611912565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1d90613472565b60006040518083038185875af1925050503d8060008114610c5a576040519150601f19603f3d011682016040523d82523d6000602084013e610c5f565b606091505b5050905080610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906134d3565b60405180910390fd5b5050565b610cc283838360405180602001604052806000815250611506565b505050565b610ccf611912565b73ffffffffffffffffffffffffffffffffffffffff16610ced611005565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906133c1565b60405180910390fd5b8060099080519060200190610d59929190612bb5565b5050565b600c60009054906101000a900460ff1681565b6000610d7b82611fe1565b600001519050919050565b610d8e611912565b73ffffffffffffffffffffffffffffffffffffffff16610dac611005565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133c1565b60405180910390fd5b610e14610e0d611912565b6001612270565b565b60098054610e2390613410565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613410565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f7b611912565b73ffffffffffffffffffffffffffffffffffffffff16610f99611005565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906133c1565b60405180910390fd5b610ff9600061228e565b565b606481565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611037611912565b73ffffffffffffffffffffffffffffffffffffffff16611055611005565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906133c1565b60405180910390fd5b80600b8190555050565b6060600380546110c490613410565b80601f01602080910402602001604051908101604052809291908181526020018280546110f090613410565b801561113d5780601f106111125761010080835404028352916020019161113d565b820191906000526020600020905b81548152906001019060200180831161112057829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a9050600160646111689190613522565b83611171610b30565b61117b9190613522565b101561118a5760009150600590505b6000611194611912565b9050600c60009054906101000a900460ff16156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906135c4565b60405180910390fd5b836111ef610b30565b6111f99190613522565b600a54101561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613630565b60405180910390fd5b60008411611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112779061369c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613708565b60405180910390fd5b83821015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613774565b60405180910390fd5b34838561133e9190613794565b111561137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061383a565b60405180910390fd5b6113898185612270565b50505050565b611397611912565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611408611912565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b5611912565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fa9190612d4f565b60405180910390a35050565b611511848484611af2565b6115308373ffffffffffffffffffffffffffffffffffffffff16612354565b8015611545575061154384848484612377565b155b1561157c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61158a611912565b73ffffffffffffffffffffffffffffffffffffffff166115a8611005565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906133c1565b60405180910390fd5b80600a8190555050565b60606116138261191a565b611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906138a6565b60405180910390fd5b60006009805461166190613410565b90501161167d57604051806020016040528060008152506116a9565b6009611688836124c7565b6040516020016116999291906139e2565b6040516020818303038152906040525b9050919050565b73a753fbc11d67d13d0eeadcda3cb99fac4a63746e81565b60008073a753fbc11d67d13d0eeadcda3cb99fac4a63746e90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117329190612f22565b602060405180830381865afa15801561174f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117739190613a4f565b73ffffffffffffffffffffffffffffffffffffffff16036117985760019150506117a6565b6117a28484612627565b9150505b92915050565b6117b4611912565b73ffffffffffffffffffffffffffffffffffffffff166117d2611005565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613aee565b60405180910390fd5b6118a08161228e565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611925611a1a565b11158015611934575060005482105b8015611961575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8a576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611afd82611fe1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b24611912565b73ffffffffffffffffffffffffffffffffffffffff161480611b575750611b568260000151611b51611912565b6116c8565b5b80611b9c5750611b65611912565b73ffffffffffffffffffffffffffffffffffffffff16611b84846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb185858560016126bb565b611cc16000848460000151611968565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f7157600054811015611f705782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda85858560016126c1565b5050505050565b611fe9612c3b565b600082905080611ff7611a1a565b11158015612006575060005481105b15612239576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211b57809250505061226b565b5b60011561223657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223157809250505061226b565b61211c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61228a8282604051806020016040528060008152506126c7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239d611912565b8786866040518563ffffffff1660e01b81526004016123bf9493929190613b63565b6020604051808303816000875af19250505080156123fb57506040513d601f19601f820116820180604052508101906123f89190613bc4565b60015b612474573d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b50600081510361246c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361250e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612622565b600082905060005b6000821461254057808061252990613bf1565b915050600a826125399190613c68565b9150612516565b60008167ffffffffffffffff81111561255c5761255b61305d565b5b6040519080825280601f01601f19166020018201604052801561258e5781602001600182028036833780820191505090505b5090505b6000851461261b576001826125a79190613c99565b9150600a856125b69190613ccd565b60306125c29190613522565b60f81b8183815181106125d8576125d7613cfe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126149190613c68565b9450612592565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126d483838360016126d9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612745576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361277f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278c60008683876126bb565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128195750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612863575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561289e57600080600090505b615ecd81101561289b57818061288590613bf1565b925050808061289390613bf1565b915050612870565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a685750612a678773ffffffffffffffffffffffffffffffffffffffff16612354565b5b15612b2d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612add6000888480600101955088612377565b612b13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a6e578260005414612b2857600080fd5b612b98565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b2e575b816000819055505050612bae60008683876126c1565b5050505050565b828054612bc190613410565b90600052602060002090601f016020900481019282612be35760008555612c2a565b82601f10612bfc57805160ff1916838001178555612c2a565b82800160010185558215612c2a579182015b82811115612c29578251825591602001919060010190612c0e565b5b509050612c379190612c7e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c97576000816000905550600101612c7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce481612caf565b8114612cef57600080fd5b50565b600081359050612d0181612cdb565b92915050565b600060208284031215612d1d57612d1c612ca5565b5b6000612d2b84828501612cf2565b91505092915050565b60008115159050919050565b612d4981612d34565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d34565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b600060208284031215612dac57612dab612ca5565b5b6000612dba84828501612d81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dfd578082015181840152602081019050612de2565b83811115612e0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2e82612dc3565b612e388185612dce565b9350612e48818560208601612ddf565b612e5181612e12565b840191505092915050565b60006020820190508181036000830152612e768184612e23565b905092915050565b6000819050919050565b612e9181612e7e565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b600060208284031215612eca57612ec9612ca5565b5b6000612ed884828501612e9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0c82612ee1565b9050919050565b612f1c81612f01565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612f01565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ca5565b5b6000612f8e85828601612f54565b9250506020612f9f85828601612e9f565b9150509250929050565b612fb281612e7e565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b600060208284031215612fe957612fe8612ca5565b5b6000612ff784828501612f54565b91505092915050565b60008060006060848603121561301957613018612ca5565b5b600061302786828701612f54565b935050602061303886828701612f54565b925050604061304986828701612e9f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309582612e12565b810181811067ffffffffffffffff821117156130b4576130b361305d565b5b80604052505050565b60006130c7612c9b565b90506130d3828261308c565b919050565b600067ffffffffffffffff8211156130f3576130f261305d565b5b6130fc82612e12565b9050602081019050919050565b82818337600083830152505050565b600061312b613126846130d8565b6130bd565b90508281526020810184848401111561314757613146613058565b5b613152848285613109565b509392505050565b600082601f83011261316f5761316e613053565b5b813561317f848260208601613118565b91505092915050565b60006020828403121561319e5761319d612ca5565b5b600082013567ffffffffffffffff8111156131bc576131bb612caa565b5b6131c88482850161315a565b91505092915050565b600080604083850312156131e8576131e7612ca5565b5b60006131f685828601612f54565b925050602061320785828601612d81565b9150509250929050565b600067ffffffffffffffff82111561322c5761322b61305d565b5b61323582612e12565b9050602081019050919050565b600061325561325084613211565b6130bd565b90508281526020810184848401111561327157613270613058565b5b61327c848285613109565b509392505050565b600082601f83011261329957613298613053565b5b81356132a9848260208601613242565b91505092915050565b600080600080608085870312156132cc576132cb612ca5565b5b60006132da87828801612f54565b94505060206132eb87828801612f54565b93505060406132fc87828801612e9f565b925050606085013567ffffffffffffffff81111561331d5761331c612caa565b5b61332987828801613284565b91505092959194509250565b6000806040838503121561334c5761334b612ca5565b5b600061335a85828601612f54565b925050602061336b85828601612f54565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ab602083612dce565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342857607f821691505b60208210810361343b5761343a6133e1565b5b50919050565b600081905092915050565b50565b600061345c600083613441565b91506134678261344c565b600082019050919050565b600061347d8261344f565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134bd600e83612dce565b91506134c882613487565b602082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352d82612e7e565b915061353883612e7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356d5761356c6134f3565b5b828201905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135ae600683612dce565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061361a601283612dce565b9150613625826135e4565b602082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613686600a83612dce565b915061369182613650565b602082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006136f2600c83612dce565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b600061375e601183612dce565b915061376982613728565b602082019050919050565b6000602082019050818103600083015261378d81613751565b9050919050565b600061379f82612e7e565b91506137aa83612e7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e3576137e26134f3565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613824601683612dce565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613890601583612dce565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f381613410565b6138fd81866138c6565b9450600182166000811461391857600181146139295761395c565b60ff1983168652818601935061395c565b613932856138d1565b60005b8381101561395457815481890152600182019150602081019050613935565b838801955050505b50505092915050565b600061397082612dc3565b61397a81856138c6565b935061398a818560208601612ddf565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139cc6005836138c6565b91506139d782613996565b600582019050919050565b60006139ee82856138e6565b91506139fa8284613965565b9150613a05826139bf565b91508190509392505050565b6000613a1c82612f01565b9050919050565b613a2c81613a11565b8114613a3757600080fd5b50565b600081519050613a4981613a23565b92915050565b600060208284031215613a6557613a64612ca5565b5b6000613a7384828501613a3a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ad8602683612dce565b9150613ae382613a7c565b604082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3582613b0e565b613b3f8185613b19565b9350613b4f818560208601612ddf565b613b5881612e12565b840191505092915050565b6000608082019050613b786000830187612f13565b613b856020830186612f13565b613b926040830185612fa9565b8181036060830152613ba48184613b2a565b905095945050505050565b600081519050613bbe81612cdb565b92915050565b600060208284031215613bda57613bd9612ca5565b5b6000613be884828501613baf565b91505092915050565b6000613bfc82612e7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c2e57613c2d6134f3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7382612e7e565b9150613c7e83612e7e565b925082613c8e57613c8d613c39565b5b828204905092915050565b6000613ca482612e7e565b9150613caf83612e7e565b925082821015613cc257613cc16134f3565b5b828203905092915050565b6000613cd882612e7e565b9150613ce383612e7e565b925082613cf357613cf2613c39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122030c280ab5c2d3f13c7e00b867c9c4e72f6d9bc670e65f2201274fd741eb93abd64736f6c634300080d003368747470733a2f2f6e656f6e67686f7374732e66616e746f6d697a65642e6172742f706174726f6e75732f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060d578063a22cb46514610629578063b88d4fde14610652578063c6119f301461067b576101ee565b80638da5cb5b116100dc5780638da5cb5b1461056357806391b7f5ed1461058e57806395d89b41146105b7578063a035b1fe146105e2576101ee565b806370a08231146104b9578063715018a6146104f65780638069876d1461050d57806381511e2314610538576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb1461040f5780636352211e1461043a578063698982ba146104775780636c0360eb1461048e576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d07565b61079d565b6040516102279190612d4f565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d96565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b9190612e5c565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612eb4565b6109aa565b6040516102b89190612f22565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f69565b610a26565b005b3480156102f657600080fd5b506102ff610b30565b60405161030c9190612fb8565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612fd3565b610b47565b6040516103499190612fb8565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613000565b610b59565b005b34801561038757600080fd5b50610390610b69565b60405161039d9190612fb8565b60405180910390f35b3480156103b257600080fd5b506103bb610b6f565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613000565b610ca7565b005b3480156103f257600080fd5b5061040d60048036038101906104089190613188565b610cc7565b005b34801561041b57600080fd5b50610424610d5d565b6040516104319190612d4f565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612eb4565b610d70565b60405161046e9190612f22565b60405180910390f35b34801561048357600080fd5b5061048c610d86565b005b34801561049a57600080fd5b506104a3610e16565b6040516104b09190612e5c565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612fd3565b610ea4565b6040516104ed9190612fb8565b60405180910390f35b34801561050257600080fd5b5061050b610f73565b005b34801561051957600080fd5b50610522610ffb565b60405161052f9190612fb8565b60405180910390f35b34801561054457600080fd5b5061054d611000565b60405161055a9190612fb8565b60405180910390f35b34801561056f57600080fd5b50610578611005565b6040516105859190612f22565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb4565b61102f565b005b3480156105c357600080fd5b506105cc6110b5565b6040516105d99190612e5c565b60405180910390f35b3480156105ee57600080fd5b506105f7611147565b6040516106049190612fb8565b60405180910390f35b61062760048036038101906106229190612eb4565b61114d565b005b34801561063557600080fd5b50610650600480360381019061064b91906131d1565b61138f565b005b34801561065e57600080fd5b50610679600480360381019061067491906132b2565b611506565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612eb4565b611582565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612eb4565b611608565b6040516106d89190612e5c565b60405180910390f35b3480156106ed57600080fd5b506106f66116b0565b6040516107039190612f22565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613335565b6116c8565b6040516107409190612d4f565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fd3565b6117ac565b005b34801561077e57600080fd5b506107876118a3565b6040516107949190612fb8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826118a8565b5b9050919050565b610887611912565b73ffffffffffffffffffffffffffffffffffffffff166108a5611005565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906133c1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461092790613410565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613410565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b58261191a565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611912565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae95750610ae781610ae2611912565b6116c8565b155b15610b20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2b838383611968565b505050565b6000610b3a611a1a565b6001546000540303905090565b6000610b5282611a23565b9050919050565b610b64838383611af2565b505050565b600a5481565b610b77611912565b73ffffffffffffffffffffffffffffffffffffffff16610b95611005565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906133c1565b60405180910390fd5b60004790506000610bfa611912565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1d90613472565b60006040518083038185875af1925050503d8060008114610c5a576040519150601f19603f3d011682016040523d82523d6000602084013e610c5f565b606091505b5050905080610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906134d3565b60405180910390fd5b5050565b610cc283838360405180602001604052806000815250611506565b505050565b610ccf611912565b73ffffffffffffffffffffffffffffffffffffffff16610ced611005565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906133c1565b60405180910390fd5b8060099080519060200190610d59929190612bb5565b5050565b600c60009054906101000a900460ff1681565b6000610d7b82611fe1565b600001519050919050565b610d8e611912565b73ffffffffffffffffffffffffffffffffffffffff16610dac611005565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133c1565b60405180910390fd5b610e14610e0d611912565b6001612270565b565b60098054610e2390613410565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613410565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f7b611912565b73ffffffffffffffffffffffffffffffffffffffff16610f99611005565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906133c1565b60405180910390fd5b610ff9600061228e565b565b606481565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611037611912565b73ffffffffffffffffffffffffffffffffffffffff16611055611005565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a2906133c1565b60405180910390fd5b80600b8190555050565b6060600380546110c490613410565b80601f01602080910402602001604051908101604052809291908181526020018280546110f090613410565b801561113d5780601f106111125761010080835404028352916020019161113d565b820191906000526020600020905b81548152906001019060200180831161112057829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a9050600160646111689190613522565b83611171610b30565b61117b9190613522565b101561118a5760009150600590505b6000611194611912565b9050600c60009054906101000a900460ff16156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906135c4565b60405180910390fd5b836111ef610b30565b6111f99190613522565b600a54101561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613630565b60405180910390fd5b60008411611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112779061369c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590613708565b60405180910390fd5b83821015611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613774565b60405180910390fd5b34838561133e9190613794565b111561137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061383a565b60405180910390fd5b6113898185612270565b50505050565b611397611912565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611408611912565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b5611912565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fa9190612d4f565b60405180910390a35050565b611511848484611af2565b6115308373ffffffffffffffffffffffffffffffffffffffff16612354565b8015611545575061154384848484612377565b155b1561157c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61158a611912565b73ffffffffffffffffffffffffffffffffffffffff166115a8611005565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906133c1565b60405180910390fd5b80600a8190555050565b60606116138261191a565b611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906138a6565b60405180910390fd5b60006009805461166190613410565b90501161167d57604051806020016040528060008152506116a9565b6009611688836124c7565b6040516020016116999291906139e2565b6040516020818303038152906040525b9050919050565b73a753fbc11d67d13d0eeadcda3cb99fac4a63746e81565b60008073a753fbc11d67d13d0eeadcda3cb99fac4a63746e90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117329190612f22565b602060405180830381865afa15801561174f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117739190613a4f565b73ffffffffffffffffffffffffffffffffffffffff16036117985760019150506117a6565b6117a28484612627565b9150505b92915050565b6117b4611912565b73ffffffffffffffffffffffffffffffffffffffff166117d2611005565b73ffffffffffffffffffffffffffffffffffffffff1614611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e90613aee565b60405180910390fd5b6118a08161228e565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611925611a1a565b11158015611934575060005482105b8015611961575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8a576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611afd82611fe1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b24611912565b73ffffffffffffffffffffffffffffffffffffffff161480611b575750611b568260000151611b51611912565b6116c8565b5b80611b9c5750611b65611912565b73ffffffffffffffffffffffffffffffffffffffff16611b84846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bd5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb185858560016126bb565b611cc16000848460000151611968565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f7157600054811015611f705782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda85858560016126c1565b5050505050565b611fe9612c3b565b600082905080611ff7611a1a565b11158015612006575060005481105b15612239576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211b57809250505061226b565b5b60011561223657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223157809250505061226b565b61211c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61228a8282604051806020016040528060008152506126c7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239d611912565b8786866040518563ffffffff1660e01b81526004016123bf9493929190613b63565b6020604051808303816000875af19250505080156123fb57506040513d601f19601f820116820180604052508101906123f89190613bc4565b60015b612474573d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b50600081510361246c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361250e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612622565b600082905060005b6000821461254057808061252990613bf1565b915050600a826125399190613c68565b9150612516565b60008167ffffffffffffffff81111561255c5761255b61305d565b5b6040519080825280601f01601f19166020018201604052801561258e5781602001600182028036833780820191505090505b5090505b6000851461261b576001826125a79190613c99565b9150600a856125b69190613ccd565b60306125c29190613522565b60f81b8183815181106125d8576125d7613cfe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126149190613c68565b9450612592565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126d483838360016126d9565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612745576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361277f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278c60008683876126bb565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128195750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612863575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561289e57600080600090505b615ecd81101561289b57818061288590613bf1565b925050808061289390613bf1565b915050612870565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a685750612a678773ffffffffffffffffffffffffffffffffffffffff16612354565b5b15612b2d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612add6000888480600101955088612377565b612b13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a6e578260005414612b2857600080fd5b612b98565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b2e575b816000819055505050612bae60008683876126c1565b5050505050565b828054612bc190613410565b90600052602060002090601f016020900481019282612be35760008555612c2a565b82601f10612bfc57805160ff1916838001178555612c2a565b82800160010185558215612c2a579182015b82811115612c29578251825591602001919060010190612c0e565b5b509050612c379190612c7e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c97576000816000905550600101612c7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce481612caf565b8114612cef57600080fd5b50565b600081359050612d0181612cdb565b92915050565b600060208284031215612d1d57612d1c612ca5565b5b6000612d2b84828501612cf2565b91505092915050565b60008115159050919050565b612d4981612d34565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d34565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b600060208284031215612dac57612dab612ca5565b5b6000612dba84828501612d81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dfd578082015181840152602081019050612de2565b83811115612e0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2e82612dc3565b612e388185612dce565b9350612e48818560208601612ddf565b612e5181612e12565b840191505092915050565b60006020820190508181036000830152612e768184612e23565b905092915050565b6000819050919050565b612e9181612e7e565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b600060208284031215612eca57612ec9612ca5565b5b6000612ed884828501612e9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0c82612ee1565b9050919050565b612f1c81612f01565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612f01565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ca5565b5b6000612f8e85828601612f54565b9250506020612f9f85828601612e9f565b9150509250929050565b612fb281612e7e565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b600060208284031215612fe957612fe8612ca5565b5b6000612ff784828501612f54565b91505092915050565b60008060006060848603121561301957613018612ca5565b5b600061302786828701612f54565b935050602061303886828701612f54565b925050604061304986828701612e9f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309582612e12565b810181811067ffffffffffffffff821117156130b4576130b361305d565b5b80604052505050565b60006130c7612c9b565b90506130d3828261308c565b919050565b600067ffffffffffffffff8211156130f3576130f261305d565b5b6130fc82612e12565b9050602081019050919050565b82818337600083830152505050565b600061312b613126846130d8565b6130bd565b90508281526020810184848401111561314757613146613058565b5b613152848285613109565b509392505050565b600082601f83011261316f5761316e613053565b5b813561317f848260208601613118565b91505092915050565b60006020828403121561319e5761319d612ca5565b5b600082013567ffffffffffffffff8111156131bc576131bb612caa565b5b6131c88482850161315a565b91505092915050565b600080604083850312156131e8576131e7612ca5565b5b60006131f685828601612f54565b925050602061320785828601612d81565b9150509250929050565b600067ffffffffffffffff82111561322c5761322b61305d565b5b61323582612e12565b9050602081019050919050565b600061325561325084613211565b6130bd565b90508281526020810184848401111561327157613270613058565b5b61327c848285613109565b509392505050565b600082601f83011261329957613298613053565b5b81356132a9848260208601613242565b91505092915050565b600080600080608085870312156132cc576132cb612ca5565b5b60006132da87828801612f54565b94505060206132eb87828801612f54565b93505060406132fc87828801612e9f565b925050606085013567ffffffffffffffff81111561331d5761331c612caa565b5b61332987828801613284565b91505092959194509250565b6000806040838503121561334c5761334b612ca5565b5b600061335a85828601612f54565b925050602061336b85828601612f54565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ab602083612dce565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342857607f821691505b60208210810361343b5761343a6133e1565b5b50919050565b600081905092915050565b50565b600061345c600083613441565b91506134678261344c565b600082019050919050565b600061347d8261344f565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134bd600e83612dce565b91506134c882613487565b602082019050919050565b600060208201905081810360008301526134ec816134b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352d82612e7e565b915061353883612e7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356d5761356c6134f3565b5b828201905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135ae600683612dce565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061361a601283612dce565b9150613625826135e4565b602082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613686600a83612dce565b915061369182613650565b602082019050919050565b600060208201905081810360008301526136b581613679565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006136f2600c83612dce565b91506136fd826136bc565b602082019050919050565b60006020820190508181036000830152613721816136e5565b9050919050565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b600061375e601183612dce565b915061376982613728565b602082019050919050565b6000602082019050818103600083015261378d81613751565b9050919050565b600061379f82612e7e565b91506137aa83612e7e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e3576137e26134f3565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613824601683612dce565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613890601583612dce565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f381613410565b6138fd81866138c6565b9450600182166000811461391857600181146139295761395c565b60ff1983168652818601935061395c565b613932856138d1565b60005b8381101561395457815481890152600182019150602081019050613935565b838801955050505b50505092915050565b600061397082612dc3565b61397a81856138c6565b935061398a818560208601612ddf565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139cc6005836138c6565b91506139d782613996565b600582019050919050565b60006139ee82856138e6565b91506139fa8284613965565b9150613a05826139bf565b91508190509392505050565b6000613a1c82612f01565b9050919050565b613a2c81613a11565b8114613a3757600080fd5b50565b600081519050613a4981613a23565b92915050565b600060208284031215613a6557613a64612ca5565b5b6000613a7384828501613a3a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ad8602683612dce565b9150613ae382613a7c565b604082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3582613b0e565b613b3f8185613b19565b9350613b4f818560208601612ddf565b613b5881612e12565b840191505092915050565b6000608082019050613b786000830187612f13565b613b856020830186612f13565b613b926040830185612fa9565b8181036060830152613ba48184613b2a565b905095945050505050565b600081519050613bbe81612cdb565b92915050565b600060208284031215613bda57613bd9612ca5565b5b6000613be884828501613baf565b91505092915050565b6000613bfc82612e7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c2e57613c2d6134f3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7382612e7e565b9150613c7e83612e7e565b925082613c8e57613c8d613c39565b5b828204905092915050565b6000613ca482612e7e565b9150613caf83612e7e565b925082821015613cc257613cc16134f3565b5b828203905092915050565b6000613cd882612e7e565b9150613ce383612e7e565b925082613cf357613cf2613c39565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122030c280ab5c2d3f13c7e00b867c9c4e72f6d9bc670e65f2201274fd741eb93abd64736f6c634300080d0033

Deployed Bytecode Sourcemap

46190:2941:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28311:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48590:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31696:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33199:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32762:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27560:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47975:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34056:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46556:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48092:209;;;;;;;;;;;;;:::i;:::-;;34297:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48679:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46636:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31505:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48309:83;;;;;;;;;;;;;:::i;:::-;;46237:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28680:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2785:103;;;;;;;;;;;;;:::i;:::-;;46504:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46457:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2134:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48496:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31865:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46594:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46727:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33475:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34553:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48400:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48787:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46313:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47522:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3043:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46411:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28311:305;28413:4;28465:25;28450:40;;;:11;:40;;;;:105;;;;28522:33;28507:48;;;:11;:48;;;;28450:105;:158;;;;28572:36;28596:11;28572:23;:36::i;:::-;28450:158;28430:178;;28311:305;;;:::o;48590:81::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48657:6:::1;48648;;:15;;;;;;;;;;;;;;;;;;48590:81:::0;:::o;31696:100::-;31750:13;31783:5;31776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31696:100;:::o;33199:204::-;33267:7;33292:16;33300:7;33292;:16::i;:::-;33287:64;;33317:34;;;;;;;;;;;;;;33287:64;33371:15;:24;33387:7;33371:24;;;;;;;;;;;;;;;;;;;;;33364:31;;33199:204;;;:::o;32762:371::-;32835:13;32851:24;32867:7;32851:15;:24::i;:::-;32835:40;;32896:5;32890:11;;:2;:11;;;32886:48;;32910:24;;;;;;;;;;;;;;32886:48;32967:5;32951:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32977:37;32994:5;33001:12;:10;:12::i;:::-;32977:16;:37::i;:::-;32976:38;32951:63;32947:138;;;33038:35;;;;;;;;;;;;;;32947:138;33097:28;33106:2;33110:7;33119:5;33097:8;:28::i;:::-;32824:309;32762:371;;:::o;27560:303::-;27604:7;27829:15;:13;:15::i;:::-;27814:12;;27798:13;;:28;:46;27791:53;;27560:303;:::o;47975:109::-;48028:7;48055:21;48069:6;48055:13;:21::i;:::-;48048:28;;47975:109;;;:::o;34056:170::-;34190:28;34200:4;34206:2;34210:7;34190:9;:28::i;:::-;34056:170;;;:::o;46556:31::-;;;;:::o;48092:209::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48142:15:::1;48160:21;48142:39;;48193:12;48211;:10;:12::i;:::-;:17;;48236:7;48211:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48192:56;;;48267:7;48259:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48131:170;;48092:209::o:0;34297:185::-;34435:39;34452:4;34458:2;34462:7;34435:39;;;;;;;;;;;;:16;:39::i;:::-;34297:185;;;:::o;48679:100::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48763:8:::1;48753:7;:18;;;;;;;;;;;;:::i;:::-;;48679:100:::0;:::o;46636:26::-;;;;;;;;;;;;;:::o;31505:124::-;31569:7;31596:20;31608:7;31596:11;:20::i;:::-;:25;;;31589:32;;31505:124;;;:::o;48309:83::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48358:26:::1;48368:12;:10;:12::i;:::-;48382:1;48358:9;:26::i;:::-;48309:83::o:0;46237:69::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28680:206::-;28744:7;28785:1;28768:19;;:5;:19;;;28764:60;;28796:28;;;;;;;;;;;;;;28764:60;28850:12;:19;28863:5;28850:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28842:36;;28835:43;;28680:206;;;:::o;2785:103::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2850:30:::1;2877:1;2850:18;:30::i;:::-;2785:103::o:0;46504:45::-;46546:3;46504:45;:::o;46457:40::-;46496:1;46457:40;:::o;2134:87::-;2180:7;2207:6;;;;;;;;;;;2200:13;;2134:87;:::o;48496:86::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48568:6:::1;48560:5;:14;;;;48496:86:::0;:::o;31865:104::-;31921:13;31954:7;31947:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31865:104;:::o;46594:33::-;;;;:::o;46727:678::-;46792:9;46804:5;;46792:17;;46820:12;46448:2;46820:25;;46903:1;46546:3;46885:19;;;;:::i;:::-;46875:7;46859:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;46856:111;;;46928:1;46921:8;;46954:1;46944:11;;46856:111;46977:15;46995:12;:10;:12::i;:::-;46977:30;;47027:6;;;;;;;;;;;47026:7;47018:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47093:7;47077:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47063:10;;:37;;47055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47152:1;47142:7;:11;47134:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47200:7;47187:20;;:9;:20;;;47179:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47254:7;47243;:18;;47235:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47321:9;47313:4;47303:7;:14;;;;:::i;:::-;:27;;47295:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47370:27;47380:7;47389;47370:9;:27::i;:::-;46781:624;;;46727:678;:::o;33475:279::-;33578:12;:10;:12::i;:::-;33566:24;;:8;:24;;;33562:54;;33599:17;;;;;;;;;;;;;;33562:54;33674:8;33629:18;:32;33648:12;:10;:12::i;:::-;33629:32;;;;;;;;;;;;;;;:42;33662:8;33629:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33727:8;33698:48;;33713:12;:10;:12::i;:::-;33698:48;;;33737:8;33698:48;;;;;;:::i;:::-;;;;;;;;33475:279;;:::o;34553:369::-;34720:28;34730:4;34736:2;34740:7;34720:9;:28::i;:::-;34763:15;:2;:13;;;:15::i;:::-;:76;;;;;34783:56;34814:4;34820:2;34824:7;34833:5;34783:30;:56::i;:::-;34782:57;34763:76;34759:156;;;34863:40;;;;;;;;;;;;;;34759:156;34553:369;;;;:::o;48400:88::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48476:4:::1;48463:10;:17;;;;48400:88:::0;:::o;48787:341::-;48853:13;48887:17;48895:8;48887:7;:17::i;:::-;48879:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48972:1;48954:7;48948:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;49030:7;49054:26;49071:8;49054:16;:26::i;:::-;48997:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48948:172;48941:179;;48787:341;;;:::o;46313:89::-;46360:42;46313:89;:::o;47522:445::-;47647:4;47732:27;46360:42;47732:65;;47853:8;47812:49;;47820:13;:21;;;47842:5;47820:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47812:49;;;47808:93;;47885:4;47878:11;;;;;47808:93;47920:39;47943:5;47950:8;47920:22;:39::i;:::-;47913:46;;;47522:445;;;;;:::o;3043:201::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3152:1:::1;3132:22;;:8;:22;;::::0;3124:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3208:28;3227:8;3208:18;:28::i;:::-;3043:201:::0;:::o;46411:39::-;46448:2;46411:39;:::o;23692:157::-;23777:4;23816:25;23801:40;;;:11;:40;;;;23794:47;;23692:157;;;:::o;875:98::-;928:7;955:10;948:17;;875:98;:::o;35177:187::-;35234:4;35277:7;35258:15;:13;:15::i;:::-;:26;;:53;;;;;35298:13;;35288:7;:23;35258:53;:98;;;;;35329:11;:20;35341:7;35329:20;;;;;;;;;;;:27;;;;;;;;;;;;35328:28;35258:98;35251:105;;35177:187;;;:::o;43168:196::-;43310:2;43283:15;:24;43299:7;43283:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43348:7;43344:2;43328:28;;43337:5;43328:28;;;;;;;;;;;;43168:196;;;:::o;47413:101::-;47478:7;47505:1;47498:8;;47413:101;:::o;28968:207::-;29029:7;29070:1;29053:19;;:5;:19;;;29049:59;;29081:27;;;;;;;;;;;;;;29049:59;29134:12;:19;29147:5;29134:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29126:41;;29119:48;;28968:207;;;:::o;38670:2112::-;38785:35;38823:20;38835:7;38823:11;:20::i;:::-;38785:58;;38856:22;38898:13;:18;;;38882:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38933:50;38950:13;:18;;;38970:12;:10;:12::i;:::-;38933:16;:50::i;:::-;38882:101;:154;;;;39024:12;:10;:12::i;:::-;39000:36;;:20;39012:7;39000:11;:20::i;:::-;:36;;;38882:154;38856:181;;39055:17;39050:66;;39081:35;;;;;;;;;;;;;;39050:66;39153:4;39131:26;;:13;:18;;;:26;;;39127:67;;39166:28;;;;;;;;;;;;;;39127:67;39223:1;39209:16;;:2;:16;;;39205:52;;39234:23;;;;;;;;;;;;;;39205:52;39270:43;39292:4;39298:2;39302:7;39311:1;39270:21;:43::i;:::-;39378:49;39395:1;39399:7;39408:13;:18;;;39378:8;:49::i;:::-;39753:1;39723:12;:18;39736:4;39723:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39797:1;39769:12;:16;39782:2;39769:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39843:2;39815:11;:20;39827:7;39815:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39905:15;39860:11;:20;39872:7;39860:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40173:19;40205:1;40195:7;:11;40173:33;;40266:1;40225:43;;:11;:24;40237:11;40225:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40221:445;;40450:13;;40436:11;:27;40432:219;;;40520:13;:18;;;40488:11;:24;40500:11;40488:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40603:13;:28;;;40561:11;:24;40573:11;40561:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40432:219;40221:445;39698:979;40713:7;40709:2;40694:27;;40703:4;40694:27;;;;;;;;;;;;40732:42;40753:4;40759:2;40763:7;40772:1;40732:20;:42::i;:::-;38774:2008;;38670:2112;;;:::o;30335:1108::-;30396:21;;:::i;:::-;30430:12;30445:7;30430:22;;30513:4;30494:15;:13;:15::i;:::-;:23;;:47;;;;;30528:13;;30521:4;:20;30494:47;30490:886;;;30562:31;30596:11;:17;30608:4;30596:17;;;;;;;;;;;30562:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30637:9;:16;;;30632:729;;30708:1;30682:28;;:9;:14;;;:28;;;30678:101;;30746:9;30739:16;;;;;;30678:101;31081:261;31088:4;31081:261;;;31121:6;;;;;;;;31166:11;:17;31178:4;31166:17;;;;;;;;;;;31154:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31240:1;31214:28;;:9;:14;;;:28;;;31210:109;;31282:9;31275:16;;;;;;31210:109;31081:261;;;30632:729;30543:833;30490:886;31404:31;;;;;;;;;;;;;;30335:1108;;;;:::o;35372:104::-;35441:27;35451:2;35455:8;35441:27;;;;;;;;;;;;:9;:27::i;:::-;35372:104;;:::o;3404:191::-;3478:16;3497:6;;;;;;;;;;;3478:25;;3523:8;3514:6;;:17;;;;;;;;;;;;;;;;;;3578:8;3547:40;;3568:8;3547:40;;;;;;;;;;;;3467:128;3404:191;:::o;13465:326::-;13525:4;13782:1;13760:7;:19;;;:23;13753:30;;13465:326;;;:::o;43856:667::-;44019:4;44056:2;44040:36;;;44077:12;:10;:12::i;:::-;44091:4;44097:7;44106:5;44040:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44036:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44291:1;44274:6;:13;:18;44270:235;;44320:40;;;;;;;;;;;;;;44270:235;44463:6;44457:13;44448:6;44444:2;44440:15;44433:38;44036:480;44169:45;;;44159:55;;;:6;:55;;;;44152:62;;;43856:667;;;;;;:::o;21085:723::-;21141:13;21371:1;21362:5;:10;21358:53;;21389:10;;;;;;;;;;;;;;;;;;;;;21358:53;21421:12;21436:5;21421:20;;21452:14;21477:78;21492:1;21484:4;:9;21477:78;;21510:8;;;;;:::i;:::-;;;;21541:2;21533:10;;;;;:::i;:::-;;;21477:78;;;21565:19;21597:6;21587:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21565:39;;21615:154;21631:1;21622:5;:10;21615:154;;21659:1;21649:11;;;;;:::i;:::-;;;21726:2;21718:5;:10;;;;:::i;:::-;21705:2;:24;;;;:::i;:::-;21692:39;;21675:6;21682;21675:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21755:2;21746:11;;;;;:::i;:::-;;;21615:154;;;21793:6;21779:21;;;;;21085:723;;;;:::o;33825:164::-;33922:4;33946:18;:25;33965:5;33946:25;;;;;;;;;;;;;;;:35;33972:8;33946:35;;;;;;;;;;;;;;;;;;;;;;;;;33939:42;;33825:164;;;;:::o;45171:159::-;;;;;:::o;45989:158::-;;;;;:::o;35839:163::-;35962:32;35968:2;35972:8;35982:5;35989:4;35962:5;:32::i;:::-;35839:163;;;:::o;36261:2155::-;36400:20;36423:13;;36400:36;;36465:1;36451:16;;:2;:16;;;36447:48;;36476:19;;;;;;;;;;;;;;36447:48;36522:1;36510:8;:13;36506:44;;36532:18;;;;;;;;;;;;;;36506:44;36563:61;36593:1;36597:2;36601:12;36615:8;36563:21;:61::i;:::-;36690:42;36684:48;;:2;:48;;;:113;;;;36755:42;36749:48;;:2;:48;;;36684:113;:178;;;;36820:42;36814:48;;:2;:48;;;36684:178;36667:338;;;36888:15;36923:6;36932:1;36923:10;;36918:76;36939:5;36935:1;:9;36918:76;;;36969:9;;;;;:::i;:::-;;;;36946:3;;;;;:::i;:::-;;;;36918:76;;;;36873:132;36667:338;37316:8;37281:12;:16;37294:2;37281:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37380:8;37340:12;:16;37353:2;37340:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37439:2;37406:11;:25;37418:12;37406:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37506:15;37456:11;:25;37468:12;37456:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37539:20;37562:12;37539:35;;37589:11;37618:8;37603:12;:23;37589:37;;37647:4;:23;;;;;37655:15;:2;:13;;;:15::i;:::-;37647:23;37643:641;;;37691:314;37747:12;37743:2;37722:38;;37739:1;37722:38;;;;;;;;;;;;37788:69;37827:1;37831:2;37835:14;;;;;;37851:5;37788:30;:69::i;:::-;37783:174;;37893:40;;;;;;;;;;;;;;37783:174;38000:3;37984:12;:19;37691:314;;38086:12;38069:13;;:29;38065:43;;38100:8;;;38065:43;37643:641;;;38149:120;38205:14;;;;;;38201:2;38180:40;;38197:1;38180:40;;;;;;;;;;;;38264:3;38248:12;:19;38149:120;;37643:641;38314:12;38298:13;:28;;;;37256:1082;;38348:60;38377:1;38381:2;38385:12;38399:8;38348:20;:60::i;:::-;36389:2027;36261:2155;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:180::-;16024:77;16021:1;16014:88;16121:4;16118:1;16111:15;16145:4;16142:1;16135:15;16162:305;16202:3;16221:20;16239:1;16221:20;:::i;:::-;16216:25;;16255:20;16273:1;16255:20;:::i;:::-;16250:25;;16409:1;16341:66;16337:74;16334:1;16331:81;16328:107;;;16415:18;;:::i;:::-;16328:107;16459:1;16456;16452:9;16445:16;;16162:305;;;;:::o;16473:156::-;16613:8;16609:1;16601:6;16597:14;16590:32;16473:156;:::o;16635:365::-;16777:3;16798:66;16862:1;16857:3;16798:66;:::i;:::-;16791:73;;16873:93;16962:3;16873:93;:::i;:::-;16991:2;16986:3;16982:12;16975:19;;16635:365;;;:::o;17006:419::-;17172:4;17210:2;17199:9;17195:18;17187:26;;17259:9;17253:4;17249:20;17245:1;17234:9;17230:17;17223:47;17287:131;17413:4;17287:131;:::i;:::-;17279:139;;17006:419;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:167::-;20470:19;20466:1;20458:6;20454:14;20447:43;20330:167;:::o;20503:366::-;20645:3;20666:67;20730:2;20725:3;20666:67;:::i;:::-;20659:74;;20742:93;20831:3;20742:93;:::i;:::-;20860:2;20855:3;20851:12;20844:19;;20503:366;;;:::o;20875:419::-;21041:4;21079:2;21068:9;21064:18;21056:26;;21128:9;21122:4;21118:20;21114:1;21103:9;21099:17;21092:47;21156:131;21282:4;21156:131;:::i;:::-;21148:139;;20875:419;;;:::o;21300:348::-;21340:7;21363:20;21381:1;21363:20;:::i;:::-;21358:25;;21397:20;21415:1;21397:20;:::i;:::-;21392:25;;21585:1;21517:66;21513:74;21510:1;21507:81;21502:1;21495:9;21488:17;21484:105;21481:131;;;21592:18;;:::i;:::-;21481:131;21640:1;21637;21633:9;21622:20;;21300:348;;;;:::o;21654:172::-;21794:24;21790:1;21782:6;21778:14;21771:48;21654:172;:::o;21832:366::-;21974:3;21995:67;22059:2;22054:3;21995:67;:::i;:::-;21988:74;;22071:93;22160:3;22071:93;:::i;:::-;22189:2;22184:3;22180:12;22173:19;;21832:366;;;:::o;22204:419::-;22370:4;22408:2;22397:9;22393:18;22385:26;;22457:9;22451:4;22447:20;22443:1;22432:9;22428:17;22421:47;22485:131;22611:4;22485:131;:::i;:::-;22477:139;;22204:419;;;:::o;22629:171::-;22769:23;22765:1;22757:6;22753:14;22746:47;22629:171;:::o;22806:366::-;22948:3;22969:67;23033:2;23028:3;22969:67;:::i;:::-;22962:74;;23045:93;23134:3;23045:93;:::i;:::-;23163:2;23158:3;23154:12;23147:19;;22806:366;;;:::o;23178:419::-;23344:4;23382:2;23371:9;23367:18;23359:26;;23431:9;23425:4;23421:20;23417:1;23406:9;23402:17;23395:47;23459:131;23585:4;23459:131;:::i;:::-;23451:139;;23178:419;;;:::o;23603:148::-;23705:11;23742:3;23727:18;;23603:148;;;;:::o;23757:141::-;23806:4;23829:3;23821:11;;23852:3;23849:1;23842:14;23886:4;23883:1;23873:18;23865:26;;23757:141;;;:::o;23928:845::-;24031:3;24068:5;24062:12;24097:36;24123:9;24097:36;:::i;:::-;24149:89;24231:6;24226:3;24149:89;:::i;:::-;24142:96;;24269:1;24258:9;24254:17;24285:1;24280:137;;;;24431:1;24426:341;;;;24247:520;;24280:137;24364:4;24360:9;24349;24345:25;24340:3;24333:38;24400:6;24395:3;24391:16;24384:23;;24280:137;;24426:341;24493:38;24525:5;24493:38;:::i;:::-;24553:1;24567:154;24581:6;24578:1;24575:13;24567:154;;;24655:7;24649:14;24645:1;24640:3;24636:11;24629:35;24705:1;24696:7;24692:15;24681:26;;24603:4;24600:1;24596:12;24591:17;;24567:154;;;24750:6;24745:3;24741:16;24734:23;;24433:334;;24247:520;;24035:738;;23928:845;;;;:::o;24779:377::-;24885:3;24913:39;24946:5;24913:39;:::i;:::-;24968:89;25050:6;25045:3;24968:89;:::i;:::-;24961:96;;25066:52;25111:6;25106:3;25099:4;25092:5;25088:16;25066:52;:::i;:::-;25143:6;25138:3;25134:16;25127:23;;24889:267;24779:377;;;;:::o;25162:155::-;25302:7;25298:1;25290:6;25286:14;25279:31;25162:155;:::o;25323:400::-;25483:3;25504:84;25586:1;25581:3;25504:84;:::i;:::-;25497:91;;25597:93;25686:3;25597:93;:::i;:::-;25715:1;25710:3;25706:11;25699:18;;25323:400;;;:::o;25729:695::-;26007:3;26029:92;26117:3;26108:6;26029:92;:::i;:::-;26022:99;;26138:95;26229:3;26220:6;26138:95;:::i;:::-;26131:102;;26250:148;26394:3;26250:148;:::i;:::-;26243:155;;26415:3;26408:10;;25729:695;;;;;:::o;26430:125::-;26496:7;26525:24;26543:5;26525:24;:::i;:::-;26514:35;;26430:125;;;:::o;26561:180::-;26663:53;26710:5;26663:53;:::i;:::-;26656:5;26653:64;26643:92;;26731:1;26728;26721:12;26643:92;26561:180;:::o;26747:201::-;26833:5;26864:6;26858:13;26849:22;;26880:62;26936:5;26880:62;:::i;:::-;26747:201;;;;:::o;26954:409::-;27053:6;27102:2;27090:9;27081:7;27077:23;27073:32;27070:119;;;27108:79;;:::i;:::-;27070:119;27228:1;27253:93;27338:7;27329:6;27318:9;27314:22;27253:93;:::i;:::-;27243:103;;27199:157;26954:409;;;;:::o;27369:225::-;27509:34;27505:1;27497:6;27493:14;27486:58;27578:8;27573:2;27565:6;27561:15;27554:33;27369:225;:::o;27600:366::-;27742:3;27763:67;27827:2;27822:3;27763:67;:::i;:::-;27756:74;;27839:93;27928:3;27839:93;:::i;:::-;27957:2;27952:3;27948:12;27941:19;;27600:366;;;:::o;27972:419::-;28138:4;28176:2;28165:9;28161:18;28153:26;;28225:9;28219:4;28215:20;28211:1;28200:9;28196:17;28189:47;28253:131;28379:4;28253:131;:::i;:::-;28245:139;;27972:419;;;:::o;28397:98::-;28448:6;28482:5;28476:12;28466:22;;28397:98;;;:::o;28501:168::-;28584:11;28618:6;28613:3;28606:19;28658:4;28653:3;28649:14;28634:29;;28501:168;;;;:::o;28675:360::-;28761:3;28789:38;28821:5;28789:38;:::i;:::-;28843:70;28906:6;28901:3;28843:70;:::i;:::-;28836:77;;28922:52;28967:6;28962:3;28955:4;28948:5;28944:16;28922:52;:::i;:::-;28999:29;29021:6;28999:29;:::i;:::-;28994:3;28990:39;28983:46;;28765:270;28675:360;;;;:::o;29041:640::-;29236:4;29274:3;29263:9;29259:19;29251:27;;29288:71;29356:1;29345:9;29341:17;29332:6;29288:71;:::i;:::-;29369:72;29437:2;29426:9;29422:18;29413:6;29369:72;:::i;:::-;29451;29519:2;29508:9;29504:18;29495:6;29451:72;:::i;:::-;29570:9;29564:4;29560:20;29555:2;29544:9;29540:18;29533:48;29598:76;29669:4;29660:6;29598:76;:::i;:::-;29590:84;;29041:640;;;;;;;:::o;29687:141::-;29743:5;29774:6;29768:13;29759:22;;29790:32;29816:5;29790:32;:::i;:::-;29687:141;;;;:::o;29834:349::-;29903:6;29952:2;29940:9;29931:7;29927:23;29923:32;29920:119;;;29958:79;;:::i;:::-;29920:119;30078:1;30103:63;30158:7;30149:6;30138:9;30134:22;30103:63;:::i;:::-;30093:73;;30049:127;29834:349;;;;:::o;30189:233::-;30228:3;30251:24;30269:5;30251:24;:::i;:::-;30242:33;;30297:66;30290:5;30287:77;30284:103;;30367:18;;:::i;:::-;30284:103;30414:1;30407:5;30403:13;30396:20;;30189:233;;;:::o;30428:180::-;30476:77;30473:1;30466:88;30573:4;30570:1;30563:15;30597:4;30594:1;30587:15;30614:185;30654:1;30671:20;30689:1;30671:20;:::i;:::-;30666:25;;30705:20;30723:1;30705:20;:::i;:::-;30700:25;;30744:1;30734:35;;30749:18;;:::i;:::-;30734:35;30791:1;30788;30784:9;30779:14;;30614:185;;;;:::o;30805:191::-;30845:4;30865:20;30883:1;30865:20;:::i;:::-;30860:25;;30899:20;30917:1;30899:20;:::i;:::-;30894:25;;30938:1;30935;30932:8;30929:34;;;30943:18;;:::i;:::-;30929:34;30988:1;30985;30981:9;30973:17;;30805:191;;;;:::o;31002:176::-;31034:1;31051:20;31069:1;31051:20;:::i;:::-;31046:25;;31085:20;31103:1;31085:20;:::i;:::-;31080:25;;31124:1;31114:35;;31129:18;;:::i;:::-;31114:35;31170:1;31167;31163:9;31158:14;;31002:176;;;;:::o;31184:180::-;31232:77;31229:1;31222:88;31329:4;31326:1;31319:15;31353:4;31350:1;31343:15

Swarm Source

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