ETH Price: $3,107.24 (+1.25%)
Gas: 6 Gwei

Token

Poetry (Hua)
 

Overview

Max Total Supply

505 Hua

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 Hua
0x222b03d5fb1faa40b03a46a72cc4aabc63481bed
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:
Poetry

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/poetry.sol

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

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

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

pragma solidity ^0.8.4;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/poetry.sol


contract Poetry is ERC721A, Ownable {

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

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_PER_FREE = 4;
    uint256 public constant FREE_MAX_SUPPLY = 500;
    uint256 public MAX_SUPPLY = 1111;
    uint256 public price = 0.004 ether;

    bool public paused = false;

    constructor() ERC721A("Poetry", "Hua") {}

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

        _safeMint(_caller, _amount);
    }

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

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

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

608060405260405180606001604052806036815260200162003fe760369139600990805190602001906200003592919062000223565b50610457600a55660e35fa931a0000600b556000600c60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040518060400160405280600681526020017f506f6574727900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48756100000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f492919062000223565b5080600390805190602001906200010d92919062000223565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000338565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023190620002d3565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b60006002820490506001821680620002ec57607f821691505b6020821081141562000303576200030262000309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c9f80620003486000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c032614610657578063e985e9c514610682578063f2fde38b146106bf578063f43a22dc146106e8576101cd565b8063a22cb4651461059f578063b359a41c146105c8578063b88d4fde146105f1578063c87b56dd1461061a576101cd565b80638da5cb5b116100d15780638da5cb5b1461050257806395d89b411461052d578063a035b1fe14610558578063a0712d6814610583576101cd565b8063715018a6146104955780638069876d146104ac57806381511e23146104d7576101cd565b806332cb6b0c1161016f5780635c975abb1161013e5780635c975abb146103c55780636352211e146103f05780636c0360eb1461042d57806370a0823114610458576101cd565b806332cb6b0c146103315780633ccfd60b1461035c57806342842e0e1461037357806355f804b31461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631e7269c5146102cb57806323b872dd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612f23565b610713565b60405161020691906133be565b60405180910390f35b34801561021b57600080fd5b506102246107f5565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ff3565b610887565b60405161026e9190613357565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ee3565b610903565b005b3480156102ac57600080fd5b506102b5610a0e565b6040516102c2919061353b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d60565b610a25565b6040516102ff919061353b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612dcd565b610a37565b005b34801561033d57600080fd5b50610346610a47565b604051610353919061353b565b60405180910390f35b34801561036857600080fd5b50610371610a4d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612dcd565b610b85565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612faa565b610ba5565b005b3480156103d157600080fd5b506103da610c3b565b6040516103e791906133be565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612ff3565b610c4e565b6040516104249190613357565b60405180910390f35b34801561043957600080fd5b50610442610c64565b60405161044f91906133d9565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612d60565b610cf2565b60405161048c919061353b565b60405180910390f35b3480156104a157600080fd5b506104aa610dc2565b005b3480156104b857600080fd5b506104c1610e4a565b6040516104ce919061353b565b60405180910390f35b3480156104e357600080fd5b506104ec610e50565b6040516104f9919061353b565b60405180910390f35b34801561050e57600080fd5b50610517610e55565b6040516105249190613357565b60405180910390f35b34801561053957600080fd5b50610542610e7f565b60405161054f91906133d9565b60405180910390f35b34801561056457600080fd5b5061056d610f11565b60405161057a919061353b565b60405180910390f35b61059d60048036038101906105989190612ff3565b610f17565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ea3565b61115a565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612ff3565b6112d2565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e20565b611358565b005b34801561062657600080fd5b50610641600480360381019061063c9190612ff3565b6113d4565b60405161064e91906133d9565b60405180910390f35b34801561066357600080fd5b5061066c61147c565b6040516106799190613357565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612d8d565b611494565b6040516106b691906133be565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612d60565b611588565b005b3480156106f457600080fd5b506106fd611680565b60405161070a919061353b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107de57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ee57506107ed82611685565b5b9050919050565b6060600280546108049061381d565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061381d565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826116ef565b6108c8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090e82610c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099561173d565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c757506109c5816109c061173d565b611494565b155b156109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a09838383611745565b505050565b6000610a186117f7565b6001546000540303905090565b6000610a3082611800565b9050919050565b610a428383836118d0565b505050565b600a5481565b610a5561173d565b73ffffffffffffffffffffffffffffffffffffffff16610a73610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906134bb565b60405180910390fd5b60004790506000610ad861173d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610afb90613342565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b5050905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906134fb565b60405180910390fd5b5050565b610ba083838360405180602001604052806000815250611358565b505050565b610bad61173d565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906134bb565b60405180910390fd5b8060099080519060200190610c37929190612b1c565b5050565b600c60009054906101000a900460ff1681565b6000610c5982611dc1565b600001519050919050565b60098054610c719061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d9061381d565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dca61173d565b73ffffffffffffffffffffffffffffffffffffffff16610de8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906134bb565b60405180910390fd5b610e486000612050565b565b6101f481565b600481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8e9061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba9061381d565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a905060016101f4610f339190613640565b83610f3c610a0e565b610f469190613640565b1015610f555760009150600490505b6000610f5f61173d565b9050600c60009054906101000a900460ff1615610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa8906133fb565b60405180910390fd5b83610fba610a0e565b610fc49190613640565b600a541015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff9061347b565b60405180910390fd5b6000841161104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061345b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061351b565b60405180910390fd5b838210156110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061343b565b60405180910390fd5b34838561110991906136c7565b111561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906134db565b60405180910390fd5b6111548185612116565b50505050565b61116261173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d461173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128161173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c691906133be565b60405180910390a35050565b6112da61173d565b73ffffffffffffffffffffffffffffffffffffffff166112f8610e55565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906134bb565b60405180910390fd5b80600a8190555050565b6113638484846118d0565b6113828373ffffffffffffffffffffffffffffffffffffffff16612134565b8015611397575061139584848484612157565b155b156113ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113df826116ef565b61141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061349b565b60405180910390fd5b60006009805461142d9061381d565b9050116114495760405180602001604052806000815250611475565b6009611454836122b7565b604051602001611465929190613313565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016114fe9190613357565b60206040518083038186803b15801561151657600080fd5b505afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190612f7d565b73ffffffffffffffffffffffffffffffffffffffff161415611574576001915050611582565b61157e8484612418565b9150505b92915050565b61159061173d565b73ffffffffffffffffffffffffffffffffffffffff166115ae610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906134bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061341b565b60405180910390fd5b61167d81612050565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116fa6117f7565b11158015611709575060005482105b8015611736575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611868576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006118db82611dc1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661190261173d565b73ffffffffffffffffffffffffffffffffffffffff1614806119355750611934826000015161192f61173d565b611494565b5b8061197a575061194361173d565b73ffffffffffffffffffffffffffffffffffffffff1661196284610887565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9085858560016124ac565b611aa06000848460000151611745565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5157600054811015611d505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba85858560016124b2565b5050505050565b611dc9612ba2565b600082905080611dd76117f7565b11158015611de6575060005481105b15612019576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efb57809250505061204b565b5b60011561201657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201157809250505061204b565b611efc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121308282604051806020016040528060008152506124b8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217d61173d565b8786866040518563ffffffff1660e01b815260040161219f9493929190613372565b602060405180830381600087803b1580156121b957600080fd5b505af19250505080156121ea57506040513d601f19601f820116820180604052508101906121e79190612f50565b60015b612264573d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5060008151141561225c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612413565b600082905060005b6000821461233157808061231a90613880565b915050600a8261232a9190613696565b9150612307565b60008167ffffffffffffffff81111561234d5761234c6139b6565b5b6040519080825280601f01601f19166020018201604052801561237f5781602001600182028036833780820191505090505b5090505b6000851461240c576001826123989190613721565b9150600a856123a791906138c9565b60306123b39190613640565b60f81b8183815181106123c9576123c8613987565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124059190613696565b9450612383565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6124c583838360016124ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612537576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f60008683876124ac565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061260c5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612656575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126a05750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126ea575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127345750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061277e575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127c8575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561280357600080600090505b615ecd8110156128005781806127ea90613880565b92505080806127f890613880565b9150506127d5565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129cd57506129cc8773ffffffffffffffffffffffffffffffffffffffff16612134565b5b15612a93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a426000888480600101955088612157565b612a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d3578260005414612a8e57600080fd5b612aff565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a94575b816000819055505050612b1560008683876124b2565b5050505050565b828054612b289061381d565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357805160ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578251825591602001919060010190612b75565b5b509050612b9e9190612be5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bfe576000816000905550600101612be6565b5090565b6000612c15612c108461357b565b613556565b905082815260208101848484011115612c3157612c306139ea565b5b612c3c8482856137db565b509392505050565b6000612c57612c52846135ac565b613556565b905082815260208101848484011115612c7357612c726139ea565b5b612c7e8482856137db565b509392505050565b600081359050612c9581613bf6565b92915050565b600081359050612caa81613c0d565b92915050565b600081359050612cbf81613c24565b92915050565b600081519050612cd481613c24565b92915050565b600082601f830112612cef57612cee6139e5565b5b8135612cff848260208601612c02565b91505092915050565b600081519050612d1781613c3b565b92915050565b600082601f830112612d3257612d316139e5565b5b8135612d42848260208601612c44565b91505092915050565b600081359050612d5a81613c52565b92915050565b600060208284031215612d7657612d756139f4565b5b6000612d8484828501612c86565b91505092915050565b60008060408385031215612da457612da36139f4565b5b6000612db285828601612c86565b9250506020612dc385828601612c86565b9150509250929050565b600080600060608486031215612de657612de56139f4565b5b6000612df486828701612c86565b9350506020612e0586828701612c86565b9250506040612e1686828701612d4b565b9150509250925092565b60008060008060808587031215612e3a57612e396139f4565b5b6000612e4887828801612c86565b9450506020612e5987828801612c86565b9350506040612e6a87828801612d4b565b925050606085013567ffffffffffffffff811115612e8b57612e8a6139ef565b5b612e9787828801612cda565b91505092959194509250565b60008060408385031215612eba57612eb96139f4565b5b6000612ec885828601612c86565b9250506020612ed985828601612c9b565b9150509250929050565b60008060408385031215612efa57612ef96139f4565b5b6000612f0885828601612c86565b9250506020612f1985828601612d4b565b9150509250929050565b600060208284031215612f3957612f386139f4565b5b6000612f4784828501612cb0565b91505092915050565b600060208284031215612f6657612f656139f4565b5b6000612f7484828501612cc5565b91505092915050565b600060208284031215612f9357612f926139f4565b5b6000612fa184828501612d08565b91505092915050565b600060208284031215612fc057612fbf6139f4565b5b600082013567ffffffffffffffff811115612fde57612fdd6139ef565b5b612fea84828501612d1d565b91505092915050565b600060208284031215613009576130086139f4565b5b600061301784828501612d4b565b91505092915050565b61302981613755565b82525050565b61303881613767565b82525050565b6000613049826135f2565b6130538185613608565b93506130638185602086016137ea565b61306c816139f9565b840191505092915050565b6000613082826135fd565b61308c8185613624565b935061309c8185602086016137ea565b6130a5816139f9565b840191505092915050565b60006130bb826135fd565b6130c58185613635565b93506130d58185602086016137ea565b80840191505092915050565b600081546130ee8161381d565b6130f88186613635565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856135dd565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316d600683613624565b915061317882613a0a565b602082019050919050565b6000613190602683613624565b915061319b82613a33565b604082019050919050565b60006131b3601183613624565b91506131be82613a82565b602082019050919050565b60006131d6600a83613624565b91506131e182613aab565b602082019050919050565b60006131f9601283613624565b915061320482613ad4565b602082019050919050565b600061321c601583613624565b915061322782613afd565b602082019050919050565b600061323f600583613635565b915061324a82613b26565b600582019050919050565b6000613262602083613624565b915061326d82613b4f565b602082019050919050565b6000613285601683613624565b915061329082613b78565b602082019050919050565b60006132a8600083613619565b91506132b382613ba1565b600082019050919050565b60006132cb600e83613624565b91506132d682613ba4565b602082019050919050565b60006132ee600c83613624565b91506132f982613bcd565b602082019050919050565b61330d816137d1565b82525050565b600061331f82856130e1565b915061332b82846130b0565b915061333682613232565b91508190509392505050565b600061334d8261329b565b9150819050919050565b600060208201905061336c6000830184613020565b92915050565b60006080820190506133876000830187613020565b6133946020830186613020565b6133a16040830185613304565b81810360608301526133b3818461303e565b905095945050505050565b60006020820190506133d3600083018461302f565b92915050565b600060208201905081810360008301526133f38184613077565b905092915050565b6000602082019050818103600083015261341481613160565b9050919050565b6000602082019050818103600083015261343481613183565b9050919050565b60006020820190508181036000830152613454816131a6565b9050919050565b60006020820190508181036000830152613474816131c9565b9050919050565b60006020820190508181036000830152613494816131ec565b9050919050565b600060208201905081810360008301526134b48161320f565b9050919050565b600060208201905081810360008301526134d481613255565b9050919050565b600060208201905081810360008301526134f481613278565b9050919050565b60006020820190508181036000830152613514816132be565b9050919050565b60006020820190508181036000830152613534816132e1565b9050919050565b60006020820190506135506000830184613304565b92915050565b6000613560613571565b905061356c828261384f565b919050565b6000604051905090565b600067ffffffffffffffff821115613596576135956139b6565b5b61359f826139f9565b9050602081019050919050565b600067ffffffffffffffff8211156135c7576135c66139b6565b5b6135d0826139f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364b826137d1565b9150613656836137d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368b5761368a6138fa565b5b828201905092915050565b60006136a1826137d1565b91506136ac836137d1565b9250826136bc576136bb613929565b5b828204905092915050565b60006136d2826137d1565b91506136dd836137d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613716576137156138fa565b5b828202905092915050565b600061372c826137d1565b9150613737836137d1565b92508282101561374a576137496138fa565b5b828203905092915050565b6000613760826137b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006137aa82613755565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138085780820151818401526020810190506137ed565b83811115613817576000848401525b50505050565b6000600282049050600182168061383557607f821691505b6020821081141561384957613848613958565b5b50919050565b613858826139f9565b810181811067ffffffffffffffff82111715613877576138766139b6565b5b80604052505050565b600061388b826137d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138be576138bd6138fa565b5b600182019050919050565b60006138d4826137d1565b91506138df836137d1565b9250826138ef576138ee613929565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bff81613755565b8114613c0a57600080fd5b50565b613c1681613767565b8114613c2157600080fd5b50565b613c2d81613773565b8114613c3857600080fd5b50565b613c448161379f565b8114613c4f57600080fd5b50565b613c5b816137d1565b8114613c6657600080fd5b5056fea2646970667358221220176bc3a2b538c3687ade2f7254df6402c292f7f036f94cfea8b0b138b24d2b7464736f6c63430008070033697066733a2f2f516d5a7976706b4e346b5359677832774566514b387337703162617070635531644c784b754245317943613946482f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c032614610657578063e985e9c514610682578063f2fde38b146106bf578063f43a22dc146106e8576101cd565b8063a22cb4651461059f578063b359a41c146105c8578063b88d4fde146105f1578063c87b56dd1461061a576101cd565b80638da5cb5b116100d15780638da5cb5b1461050257806395d89b411461052d578063a035b1fe14610558578063a0712d6814610583576101cd565b8063715018a6146104955780638069876d146104ac57806381511e23146104d7576101cd565b806332cb6b0c1161016f5780635c975abb1161013e5780635c975abb146103c55780636352211e146103f05780636c0360eb1461042d57806370a0823114610458576101cd565b806332cb6b0c146103315780633ccfd60b1461035c57806342842e0e1461037357806355f804b31461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a05780631e7269c5146102cb57806323b872dd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612f23565b610713565b60405161020691906133be565b60405180910390f35b34801561021b57600080fd5b506102246107f5565b60405161023191906133d9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ff3565b610887565b60405161026e9190613357565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ee3565b610903565b005b3480156102ac57600080fd5b506102b5610a0e565b6040516102c2919061353b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612d60565b610a25565b6040516102ff919061353b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612dcd565b610a37565b005b34801561033d57600080fd5b50610346610a47565b604051610353919061353b565b60405180910390f35b34801561036857600080fd5b50610371610a4d565b005b34801561037f57600080fd5b5061039a60048036038101906103959190612dcd565b610b85565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612faa565b610ba5565b005b3480156103d157600080fd5b506103da610c3b565b6040516103e791906133be565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612ff3565b610c4e565b6040516104249190613357565b60405180910390f35b34801561043957600080fd5b50610442610c64565b60405161044f91906133d9565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612d60565b610cf2565b60405161048c919061353b565b60405180910390f35b3480156104a157600080fd5b506104aa610dc2565b005b3480156104b857600080fd5b506104c1610e4a565b6040516104ce919061353b565b60405180910390f35b3480156104e357600080fd5b506104ec610e50565b6040516104f9919061353b565b60405180910390f35b34801561050e57600080fd5b50610517610e55565b6040516105249190613357565b60405180910390f35b34801561053957600080fd5b50610542610e7f565b60405161054f91906133d9565b60405180910390f35b34801561056457600080fd5b5061056d610f11565b60405161057a919061353b565b60405180910390f35b61059d60048036038101906105989190612ff3565b610f17565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190612ea3565b61115a565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612ff3565b6112d2565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612e20565b611358565b005b34801561062657600080fd5b50610641600480360381019061063c9190612ff3565b6113d4565b60405161064e91906133d9565b60405180910390f35b34801561066357600080fd5b5061066c61147c565b6040516106799190613357565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612d8d565b611494565b6040516106b691906133be565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612d60565b611588565b005b3480156106f457600080fd5b506106fd611680565b60405161070a919061353b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107de57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ee57506107ed82611685565b5b9050919050565b6060600280546108049061381d565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061381d565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826116ef565b6108c8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090e82610c4e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099561173d565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c757506109c5816109c061173d565b611494565b155b156109fe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a09838383611745565b505050565b6000610a186117f7565b6001546000540303905090565b6000610a3082611800565b9050919050565b610a428383836118d0565b505050565b600a5481565b610a5561173d565b73ffffffffffffffffffffffffffffffffffffffff16610a73610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac0906134bb565b60405180910390fd5b60004790506000610ad861173d565b73ffffffffffffffffffffffffffffffffffffffff1682604051610afb90613342565b60006040518083038185875af1925050503d8060008114610b38576040519150601f19603f3d011682016040523d82523d6000602084013e610b3d565b606091505b5050905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906134fb565b60405180910390fd5b5050565b610ba083838360405180602001604052806000815250611358565b505050565b610bad61173d565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906134bb565b60405180910390fd5b8060099080519060200190610c37929190612b1c565b5050565b600c60009054906101000a900460ff1681565b6000610c5982611dc1565b600001519050919050565b60098054610c719061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d9061381d565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610dca61173d565b73ffffffffffffffffffffffffffffffffffffffff16610de8610e55565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906134bb565b60405180910390fd5b610e486000612050565b565b6101f481565b600481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e8e9061381d565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba9061381d565b8015610f075780601f10610edc57610100808354040283529160200191610f07565b820191906000526020600020905b815481529060010190602001808311610eea57829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a905060016101f4610f339190613640565b83610f3c610a0e565b610f469190613640565b1015610f555760009150600490505b6000610f5f61173d565b9050600c60009054906101000a900460ff1615610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa8906133fb565b60405180910390fd5b83610fba610a0e565b610fc49190613640565b600a541015611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff9061347b565b60405180910390fd5b6000841161104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061345b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b09061351b565b60405180910390fd5b838210156110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39061343b565b60405180910390fd5b34838561110991906136c7565b111561114a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611141906134db565b60405180910390fd5b6111548185612116565b50505050565b61116261173d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d461173d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128161173d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c691906133be565b60405180910390a35050565b6112da61173d565b73ffffffffffffffffffffffffffffffffffffffff166112f8610e55565b73ffffffffffffffffffffffffffffffffffffffff161461134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906134bb565b60405180910390fd5b80600a8190555050565b6113638484846118d0565b6113828373ffffffffffffffffffffffffffffffffffffffff16612134565b8015611397575061139584848484612157565b155b156113ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113df826116ef565b61141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061349b565b60405180910390fd5b60006009805461142d9061381d565b9050116114495760405180602001604052806000815250611475565b6009611454836122b7565b604051602001611465929190613313565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016114fe9190613357565b60206040518083038186803b15801561151657600080fd5b505afa15801561152a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154e9190612f7d565b73ffffffffffffffffffffffffffffffffffffffff161415611574576001915050611582565b61157e8484612418565b9150505b92915050565b61159061173d565b73ffffffffffffffffffffffffffffffffffffffff166115ae610e55565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906134bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061341b565b60405180910390fd5b61167d81612050565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116fa6117f7565b11158015611709575060005482105b8015611736575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611868576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006118db82611dc1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661190261173d565b73ffffffffffffffffffffffffffffffffffffffff1614806119355750611934826000015161192f61173d565b611494565b5b8061197a575061194361173d565b73ffffffffffffffffffffffffffffffffffffffff1661196284610887565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806119b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a9085858560016124ac565b611aa06000848460000151611745565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d5157600054811015611d505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba85858560016124b2565b5050505050565b611dc9612ba2565b600082905080611dd76117f7565b11158015611de6575060005481105b15612019576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161201757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611efb57809250505061204b565b5b60011561201657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201157809250505061204b565b611efc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121308282604051806020016040528060008152506124b8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261217d61173d565b8786866040518563ffffffff1660e01b815260040161219f9493929190613372565b602060405180830381600087803b1580156121b957600080fd5b505af19250505080156121ea57506040513d601f19601f820116820180604052508101906121e79190612f50565b60015b612264573d806000811461221a576040519150601f19603f3d011682016040523d82523d6000602084013e61221f565b606091505b5060008151141561225c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612413565b600082905060005b6000821461233157808061231a90613880565b915050600a8261232a9190613696565b9150612307565b60008167ffffffffffffffff81111561234d5761234c6139b6565b5b6040519080825280601f01601f19166020018201604052801561237f5781602001600182028036833780820191505090505b5090505b6000851461240c576001826123989190613721565b9150600a856123a791906138c9565b60306123b39190613640565b60f81b8183815181106123c9576123c8613987565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124059190613696565b9450612383565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6124c583838360016124ca565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612537576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612572576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61257f60008683876124ac565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061260c5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612656575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126a05750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806126ea575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127345750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061277e575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806127c8575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561280357600080600090505b615ecd8110156128005781806127ea90613880565b92505080806127f890613880565b9150506127d5565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129cd57506129cc8773ffffffffffffffffffffffffffffffffffffffff16612134565b5b15612a93575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a426000888480600101955088612157565b612a78576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129d3578260005414612a8e57600080fd5b612aff565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a94575b816000819055505050612b1560008683876124b2565b5050505050565b828054612b289061381d565b90600052602060002090601f016020900481019282612b4a5760008555612b91565b82601f10612b6357805160ff1916838001178555612b91565b82800160010185558215612b91579182015b82811115612b90578251825591602001919060010190612b75565b5b509050612b9e9190612be5565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bfe576000816000905550600101612be6565b5090565b6000612c15612c108461357b565b613556565b905082815260208101848484011115612c3157612c306139ea565b5b612c3c8482856137db565b509392505050565b6000612c57612c52846135ac565b613556565b905082815260208101848484011115612c7357612c726139ea565b5b612c7e8482856137db565b509392505050565b600081359050612c9581613bf6565b92915050565b600081359050612caa81613c0d565b92915050565b600081359050612cbf81613c24565b92915050565b600081519050612cd481613c24565b92915050565b600082601f830112612cef57612cee6139e5565b5b8135612cff848260208601612c02565b91505092915050565b600081519050612d1781613c3b565b92915050565b600082601f830112612d3257612d316139e5565b5b8135612d42848260208601612c44565b91505092915050565b600081359050612d5a81613c52565b92915050565b600060208284031215612d7657612d756139f4565b5b6000612d8484828501612c86565b91505092915050565b60008060408385031215612da457612da36139f4565b5b6000612db285828601612c86565b9250506020612dc385828601612c86565b9150509250929050565b600080600060608486031215612de657612de56139f4565b5b6000612df486828701612c86565b9350506020612e0586828701612c86565b9250506040612e1686828701612d4b565b9150509250925092565b60008060008060808587031215612e3a57612e396139f4565b5b6000612e4887828801612c86565b9450506020612e5987828801612c86565b9350506040612e6a87828801612d4b565b925050606085013567ffffffffffffffff811115612e8b57612e8a6139ef565b5b612e9787828801612cda565b91505092959194509250565b60008060408385031215612eba57612eb96139f4565b5b6000612ec885828601612c86565b9250506020612ed985828601612c9b565b9150509250929050565b60008060408385031215612efa57612ef96139f4565b5b6000612f0885828601612c86565b9250506020612f1985828601612d4b565b9150509250929050565b600060208284031215612f3957612f386139f4565b5b6000612f4784828501612cb0565b91505092915050565b600060208284031215612f6657612f656139f4565b5b6000612f7484828501612cc5565b91505092915050565b600060208284031215612f9357612f926139f4565b5b6000612fa184828501612d08565b91505092915050565b600060208284031215612fc057612fbf6139f4565b5b600082013567ffffffffffffffff811115612fde57612fdd6139ef565b5b612fea84828501612d1d565b91505092915050565b600060208284031215613009576130086139f4565b5b600061301784828501612d4b565b91505092915050565b61302981613755565b82525050565b61303881613767565b82525050565b6000613049826135f2565b6130538185613608565b93506130638185602086016137ea565b61306c816139f9565b840191505092915050565b6000613082826135fd565b61308c8185613624565b935061309c8185602086016137ea565b6130a5816139f9565b840191505092915050565b60006130bb826135fd565b6130c58185613635565b93506130d58185602086016137ea565b80840191505092915050565b600081546130ee8161381d565b6130f88186613635565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856135dd565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316d600683613624565b915061317882613a0a565b602082019050919050565b6000613190602683613624565b915061319b82613a33565b604082019050919050565b60006131b3601183613624565b91506131be82613a82565b602082019050919050565b60006131d6600a83613624565b91506131e182613aab565b602082019050919050565b60006131f9601283613624565b915061320482613ad4565b602082019050919050565b600061321c601583613624565b915061322782613afd565b602082019050919050565b600061323f600583613635565b915061324a82613b26565b600582019050919050565b6000613262602083613624565b915061326d82613b4f565b602082019050919050565b6000613285601683613624565b915061329082613b78565b602082019050919050565b60006132a8600083613619565b91506132b382613ba1565b600082019050919050565b60006132cb600e83613624565b91506132d682613ba4565b602082019050919050565b60006132ee600c83613624565b91506132f982613bcd565b602082019050919050565b61330d816137d1565b82525050565b600061331f82856130e1565b915061332b82846130b0565b915061333682613232565b91508190509392505050565b600061334d8261329b565b9150819050919050565b600060208201905061336c6000830184613020565b92915050565b60006080820190506133876000830187613020565b6133946020830186613020565b6133a16040830185613304565b81810360608301526133b3818461303e565b905095945050505050565b60006020820190506133d3600083018461302f565b92915050565b600060208201905081810360008301526133f38184613077565b905092915050565b6000602082019050818103600083015261341481613160565b9050919050565b6000602082019050818103600083015261343481613183565b9050919050565b60006020820190508181036000830152613454816131a6565b9050919050565b60006020820190508181036000830152613474816131c9565b9050919050565b60006020820190508181036000830152613494816131ec565b9050919050565b600060208201905081810360008301526134b48161320f565b9050919050565b600060208201905081810360008301526134d481613255565b9050919050565b600060208201905081810360008301526134f481613278565b9050919050565b60006020820190508181036000830152613514816132be565b9050919050565b60006020820190508181036000830152613534816132e1565b9050919050565b60006020820190506135506000830184613304565b92915050565b6000613560613571565b905061356c828261384f565b919050565b6000604051905090565b600067ffffffffffffffff821115613596576135956139b6565b5b61359f826139f9565b9050602081019050919050565b600067ffffffffffffffff8211156135c7576135c66139b6565b5b6135d0826139f9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061364b826137d1565b9150613656836137d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561368b5761368a6138fa565b5b828201905092915050565b60006136a1826137d1565b91506136ac836137d1565b9250826136bc576136bb613929565b5b828204905092915050565b60006136d2826137d1565b91506136dd836137d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613716576137156138fa565b5b828202905092915050565b600061372c826137d1565b9150613737836137d1565b92508282101561374a576137496138fa565b5b828203905092915050565b6000613760826137b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006137aa82613755565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138085780820151818401526020810190506137ed565b83811115613817576000848401525b50505050565b6000600282049050600182168061383557607f821691505b6020821081141561384957613848613958565b5b50919050565b613858826139f9565b810181811067ffffffffffffffff82111715613877576138766139b6565b5b80604052505050565b600061388b826137d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138be576138bd6138fa565b5b600182019050919050565b60006138d4826137d1565b91506138df836137d1565b9250826138ef576138ee613929565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bff81613755565b8114613c0a57600080fd5b50565b613c1681613767565b8114613c2157600080fd5b50565b613c2d81613773565b8114613c3857600080fd5b50565b613c448161379f565b8114613c4f57600080fd5b50565b613c5b816137d1565b8114613c6657600080fd5b5056fea2646970667358221220176bc3a2b538c3687ade2f7254df6402c292f7f036f94cfea8b0b138b24d2b7464736f6c63430008070033

Deployed Bytecode Sourcemap

46420:2670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28216:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31601:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33104:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32667:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27465:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48209:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33961:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46795:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48326:209;;;;;;;;;;;;;:::i;:::-;;34202:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48638:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46877:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31410:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46465:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28585:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2690:103;;;;;;;;;;;;;:::i;:::-;;46743:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46696:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2039:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31770:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46834:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46961:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33380:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48543:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34458:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48746:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46552:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47756:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2948:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46650:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28216:305;28318:4;28370:25;28355:40;;;:11;:40;;;;:105;;;;28427:33;28412:48;;;:11;:48;;;;28355:105;:158;;;;28477:36;28501:11;28477:23;:36::i;:::-;28355:158;28335:178;;28216:305;;;:::o;31601:100::-;31655:13;31688:5;31681:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31601:100;:::o;33104:204::-;33172:7;33197:16;33205:7;33197;:16::i;:::-;33192:64;;33222:34;;;;;;;;;;;;;;33192:64;33276:15;:24;33292:7;33276:24;;;;;;;;;;;;;;;;;;;;;33269:31;;33104:204;;;:::o;32667:371::-;32740:13;32756:24;32772:7;32756:15;:24::i;:::-;32740:40;;32801:5;32795:11;;:2;:11;;;32791:48;;;32815:24;;;;;;;;;;;;;;32791:48;32872:5;32856:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32882:37;32899:5;32906:12;:10;:12::i;:::-;32882:16;:37::i;:::-;32881:38;32856:63;32852:138;;;32943:35;;;;;;;;;;;;;;32852:138;33002:28;33011:2;33015:7;33024:5;33002:8;:28::i;:::-;32729:309;32667:371;;:::o;27465:303::-;27509:7;27734:15;:13;:15::i;:::-;27719:12;;27703:13;;:28;:46;27696:53;;27465:303;:::o;48209:109::-;48262:7;48289:21;48303:6;48289:13;:21::i;:::-;48282:28;;48209:109;;;:::o;33961:170::-;34095:28;34105:4;34111:2;34115:7;34095:9;:28::i;:::-;33961:170;;;:::o;46795:32::-;;;;:::o;48326:209::-;2270:12;:10;:12::i;:::-;2259:23;;:7;:5;:7::i;:::-;:23;;;2251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48376:15:::1;48394:21;48376:39;;48427:12;48445;:10;:12::i;:::-;:17;;48470:7;48445:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48426:56;;;48501:7;48493:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48365:170;;48326:209::o:0;34202:185::-;34340:39;34357:4;34363:2;34367:7;34340:39;;;;;;;;;;;;:16;:39::i;:::-;34202:185;;;:::o;48638:100::-;2270:12;:10;:12::i;:::-;2259:23;;:7;:5;:7::i;:::-;:23;;;2251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48722:8:::1;48712:7;:18;;;;;;;;;;;;:::i;:::-;;48638:100:::0;:::o;46877:26::-;;;;;;;;;;;;;:::o;31410:124::-;31474:7;31501:20;31513:7;31501:11;:20::i;:::-;:25;;;31494:32;;31410:124;;;:::o;46465:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28585:206::-;28649:7;28690:1;28673:19;;:5;:19;;;28669:60;;;28701:28;;;;;;;;;;;;;;28669:60;28755:12;:19;28768:5;28755:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28747:36;;28740:43;;28585:206;;;:::o;2690:103::-;2270:12;:10;:12::i;:::-;2259:23;;:7;:5;:7::i;:::-;:23;;;2251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2755:30:::1;2782:1;2755:18;:30::i;:::-;2690:103::o:0;46743:45::-;46785:3;46743:45;:::o;46696:40::-;46735:1;46696:40;:::o;2039:87::-;2085:7;2112:6;;;;;;;;;;;2105:13;;2039:87;:::o;31770:104::-;31826:13;31859:7;31852:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31770:104;:::o;46834:34::-;;;;:::o;46961:678::-;47026:9;47038:5;;47026:17;;47054:12;46687:2;47054:25;;47137:1;46785:3;47119:19;;;;:::i;:::-;47109:7;47093:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;47090:111;;;47162:1;47155:8;;47188:1;47178:11;;47090:111;47211:15;47229:12;:10;:12::i;:::-;47211:30;;47261:6;;;;;;;;;;;47260:7;47252:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47327:7;47311:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47297:10;;:37;;47289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47386:1;47376:7;:11;47368:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47434:7;47421:20;;:9;:20;;;47413:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47488:7;47477;:18;;47469:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47555:9;47547:4;47537:7;:14;;;;:::i;:::-;:27;;47529:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47604:27;47614:7;47623;47604:9;:27::i;:::-;47015:624;;;46961:678;:::o;33380:279::-;33483:12;:10;:12::i;:::-;33471:24;;:8;:24;;;33467:54;;;33504:17;;;;;;;;;;;;;;33467:54;33579:8;33534:18;:32;33553:12;:10;:12::i;:::-;33534:32;;;;;;;;;;;;;;;:42;33567:8;33534:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33632:8;33603:48;;33618:12;:10;:12::i;:::-;33603:48;;;33642:8;33603:48;;;;;;:::i;:::-;;;;;;;;33380:279;;:::o;48543:87::-;2270:12;:10;:12::i;:::-;2259:23;;:7;:5;:7::i;:::-;:23;;;2251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48618:4:::1;48605:10;:17;;;;48543:87:::0;:::o;34458:369::-;34625:28;34635:4;34641:2;34645:7;34625:9;:28::i;:::-;34668:15;:2;:13;;;:15::i;:::-;:76;;;;;34688:56;34719:4;34725:2;34729:7;34738:5;34688:30;:56::i;:::-;34687:57;34668:76;34664:156;;;34768:40;;;;;;;;;;;;;;34664:156;34458:369;;;;:::o;48746:341::-;48812:13;48846:17;48854:8;48846:7;:17::i;:::-;48838:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48931:1;48913:7;48907:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;48989:7;49013:26;49030:8;49013:16;:26::i;:::-;48956:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48907:172;48900:179;;48746:341;;;:::o;46552:89::-;46599:42;46552:89;:::o;47756:445::-;47881:4;47966:27;46599:42;47966:65;;48087:8;48046:49;;48054:13;:21;;;48076:5;48054:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48046:49;;;48042:93;;;48119:4;48112:11;;;;;48042:93;48154:39;48177:5;48184:8;48154:22;:39::i;:::-;48147:46;;;47756:445;;;;;:::o;2948:201::-;2270:12;:10;:12::i;:::-;2259:23;;:7;:5;:7::i;:::-;:23;;;2251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3057:1:::1;3037:22;;:8;:22;;;;3029:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3113:28;3132:8;3113:18;:28::i;:::-;2948:201:::0;:::o;46650:39::-;46687:2;46650:39;:::o;23597:157::-;23682:4;23721:25;23706:40;;;:11;:40;;;;23699:47;;23597:157;;;:::o;35082:187::-;35139:4;35182:7;35163:15;:13;:15::i;:::-;:26;;:53;;;;;35203:13;;35193:7;:23;35163:53;:98;;;;;35234:11;:20;35246:7;35234:20;;;;;;;;;;;:27;;;;;;;;;;;;35233:28;35163:98;35156:105;;35082:187;;;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;43398:196::-;43540:2;43513:15;:24;43529:7;43513:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43578:7;43574:2;43558:28;;43567:5;43558:28;;;;;;;;;;;;43398:196;;;:::o;47647:101::-;47712:7;47739:1;47732:8;;47647:101;:::o;28873:207::-;28934:7;28975:1;28958:19;;:5;:19;;;28954:59;;;28986:27;;;;;;;;;;;;;;28954:59;29039:12;:19;29052:5;29039:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29031:41;;29024:48;;28873:207;;;:::o;38900:2112::-;39015:35;39053:20;39065:7;39053:11;:20::i;:::-;39015:58;;39086:22;39128:13;:18;;;39112:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39163:50;39180:13;:18;;;39200:12;:10;:12::i;:::-;39163:16;:50::i;:::-;39112:101;:154;;;;39254:12;:10;:12::i;:::-;39230:36;;:20;39242:7;39230:11;:20::i;:::-;:36;;;39112:154;39086:181;;39285:17;39280:66;;39311:35;;;;;;;;;;;;;;39280:66;39383:4;39361:26;;:13;:18;;;:26;;;39357:67;;39396:28;;;;;;;;;;;;;;39357:67;39453:1;39439:16;;:2;:16;;;39435:52;;;39464:23;;;;;;;;;;;;;;39435:52;39500:43;39522:4;39528:2;39532:7;39541:1;39500:21;:43::i;:::-;39608:49;39625:1;39629:7;39638:13;:18;;;39608:8;:49::i;:::-;39983:1;39953:12;:18;39966:4;39953:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40027:1;39999:12;:16;40012:2;39999:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40073:2;40045:11;:20;40057:7;40045:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40135:15;40090:11;:20;40102:7;40090:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40403:19;40435:1;40425:7;:11;40403:33;;40496:1;40455:43;;:11;:24;40467:11;40455:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40451:445;;;40680:13;;40666:11;:27;40662:219;;;40750:13;:18;;;40718:11;:24;40730:11;40718:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40833:13;:28;;;40791:11;:24;40803:11;40791:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40662:219;40451:445;39928:979;40943:7;40939:2;40924:27;;40933:4;40924:27;;;;;;;;;;;;40962:42;40983:4;40989:2;40993:7;41002:1;40962:20;:42::i;:::-;39004:2008;;38900:2112;;;:::o;30240:1108::-;30301:21;;:::i;:::-;30335:12;30350:7;30335:22;;30418:4;30399:15;:13;:15::i;:::-;:23;;:47;;;;;30433:13;;30426:4;:20;30399:47;30395:886;;;30467:31;30501:11;:17;30513:4;30501:17;;;;;;;;;;;30467:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30542:9;:16;;;30537:729;;30613:1;30587:28;;:9;:14;;;:28;;;30583:101;;30651:9;30644:16;;;;;;30583:101;30986:261;30993:4;30986:261;;;31026:6;;;;;;;;31071:11;:17;31083:4;31071:17;;;;;;;;;;;31059:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31145:1;31119:28;;:9;:14;;;:28;;;31115:109;;31187:9;31180:16;;;;;;31115:109;30986:261;;;30537:729;30448:833;30395:886;31309:31;;;;;;;;;;;;;;30240:1108;;;;:::o;3309:191::-;3383:16;3402:6;;;;;;;;;;;3383:25;;3428:8;3419:6;;:17;;;;;;;;;;;;;;;;;;3483:8;3452:40;;3473:8;3452:40;;;;;;;;;;;;3372:128;3309:191;:::o;35277:104::-;35346:27;35356:2;35360:8;35346:27;;;;;;;;;;;;:9;:27::i;:::-;35277:104;;:::o;13370:326::-;13430:4;13687:1;13665:7;:19;;;:23;13658:30;;13370:326;;;:::o;44086:667::-;44249:4;44286:2;44270:36;;;44307:12;:10;:12::i;:::-;44321:4;44327:7;44336:5;44270:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44266:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44521:1;44504:6;:13;:18;44500:235;;;44550:40;;;;;;;;;;;;;;44500:235;44693:6;44687:13;44678:6;44674:2;44670:15;44663:38;44266:480;44399:45;;;44389:55;;;:6;:55;;;;44382:62;;;44086:667;;;;;;:::o;20990:723::-;21046:13;21276:1;21267:5;:10;21263:53;;;21294:10;;;;;;;;;;;;;;;;;;;;;21263:53;21326:12;21341:5;21326:20;;21357:14;21382:78;21397:1;21389:4;:9;21382:78;;21415:8;;;;;:::i;:::-;;;;21446:2;21438:10;;;;;:::i;:::-;;;21382:78;;;21470:19;21502:6;21492:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21470:39;;21520:154;21536:1;21527:5;:10;21520:154;;21564:1;21554:11;;;;;:::i;:::-;;;21631:2;21623:5;:10;;;;:::i;:::-;21610:2;:24;;;;:::i;:::-;21597:39;;21580:6;21587;21580:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21660:2;21651:11;;;;;:::i;:::-;;;21520:154;;;21698:6;21684:21;;;;;20990:723;;;;:::o;33730:164::-;33827:4;33851:18;:25;33870:5;33851:25;;;;;;;;;;;;;;;:35;33877:8;33851:35;;;;;;;;;;;;;;;;;;;;;;;;;33844:42;;33730:164;;;;:::o;45401:159::-;;;;;:::o;46219:158::-;;;;;:::o;35744:163::-;35867:32;35873:2;35877:8;35887:5;35894:4;35867:5;:32::i;:::-;35744:163;;;:::o;36166:2480::-;36305:20;36328:13;;36305:36;;36370:1;36356:16;;:2;:16;;;36352:48;;;36381:19;;;;;;;;;;;;;;36352:48;36427:1;36415:8;:13;36411:44;;;36437:18;;;;;;;;;;;;;;36411:44;36468:61;36498:1;36502:2;36506:12;36520:8;36468:21;:61::i;:::-;36595:42;36589:48;;:2;:48;;;:113;;;;36660:42;36654:48;;:2;:48;;;36589:113;:178;;;;36725:42;36719:48;;:2;:48;;;36589:178;:243;;;;36790:42;36784:48;;:2;:48;;;36589:243;:308;;;;36855:42;36849:48;;:2;:48;;;36589:308;:373;;;;36920:42;36914:48;;:2;:48;;;36589:373;:438;;;;36985:42;36979:48;;:2;:48;;;36589:438;:503;;;;37050:42;37044:48;;:2;:48;;;36589:503;36572:663;;;37118:15;37153:6;37162:1;37153:10;;37148:76;37169:5;37165:1;:9;37148:76;;;37199:9;;;;;:::i;:::-;;;;37176:3;;;;;:::i;:::-;;;;37148:76;;;;37103:132;36572:663;37546:8;37511:12;:16;37524:2;37511:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37610:8;37570:12;:16;37583:2;37570:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37669:2;37636:11;:25;37648:12;37636:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37736:15;37686:11;:25;37698:12;37686:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37769:20;37792:12;37769:35;;37819:11;37848:8;37833:12;:23;37819:37;;37877:4;:23;;;;;37885:15;:2;:13;;;:15::i;:::-;37877:23;37873:641;;;37921:314;37977:12;37973:2;37952:38;;37969:1;37952:38;;;;;;;;;;;;38018:69;38057:1;38061:2;38065:14;;;;;;38081:5;38018:30;:69::i;:::-;38013:174;;38123:40;;;;;;;;;;;;;;38013:174;38230:3;38214:12;:19;;37921:314;;38316:12;38299:13;;:29;38295:43;;38330:8;;;38295:43;37873:641;;;38379:120;38435:14;;;;;;38431:2;38410:40;;38427:1;38410:40;;;;;;;;;;;;38494:3;38478:12;:19;;38379:120;;37873:641;38544:12;38528:13;:28;;;;37486:1082;;38578:60;38607:1;38611:2;38615:12;38629:8;38578:20;:60::i;:::-;36294:2352;36166:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:327::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:52;6129:7;6120:6;6109:9;6105:22;6085:52;:::i;:::-;6075:62;;6031:116;5827:327;;;;:::o;6160:349::-;6229:6;6278:2;6266:9;6257:7;6253:23;6249:32;6246:119;;;6284:79;;:::i;:::-;6246:119;6404:1;6429:63;6484:7;6475:6;6464:9;6460:22;6429:63;:::i;:::-;6419:73;;6375:127;6160:349;;;;:::o;6515:409::-;6614:6;6663:2;6651:9;6642:7;6638:23;6634:32;6631:119;;;6669:79;;:::i;:::-;6631:119;6789:1;6814:93;6899:7;6890:6;6879:9;6875:22;6814:93;:::i;:::-;6804:103;;6760:157;6515:409;;;;:::o;6930:509::-;6999:6;7048:2;7036:9;7027:7;7023:23;7019:32;7016:119;;;7054:79;;:::i;:::-;7016:119;7202:1;7191:9;7187:17;7174:31;7232:18;7224:6;7221:30;7218:117;;;7254:79;;:::i;:::-;7218:117;7359:63;7414:7;7405:6;7394:9;7390:22;7359:63;:::i;:::-;7349:73;;7145:287;6930:509;;;;:::o;7445:329::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:53;7749:7;7740:6;7729:9;7725:22;7704:53;:::i;:::-;7694:63;;7650:117;7445:329;;;;:::o;7780:118::-;7867:24;7885:5;7867:24;:::i;:::-;7862:3;7855:37;7780:118;;:::o;7904:109::-;7985:21;8000:5;7985:21;:::i;:::-;7980:3;7973:34;7904:109;;:::o;8019:360::-;8105:3;8133:38;8165:5;8133:38;:::i;:::-;8187:70;8250:6;8245:3;8187:70;:::i;:::-;8180:77;;8266:52;8311:6;8306:3;8299:4;8292:5;8288:16;8266:52;:::i;:::-;8343:29;8365:6;8343:29;:::i;:::-;8338:3;8334:39;8327:46;;8109:270;8019:360;;;;:::o;8385:364::-;8473:3;8501:39;8534:5;8501:39;:::i;:::-;8556:71;8620:6;8615:3;8556:71;:::i;:::-;8549:78;;8636:52;8681:6;8676:3;8669:4;8662:5;8658:16;8636:52;:::i;:::-;8713:29;8735:6;8713:29;:::i;:::-;8708:3;8704:39;8697:46;;8477:272;8385:364;;;;:::o;8755:377::-;8861:3;8889:39;8922:5;8889:39;:::i;:::-;8944:89;9026:6;9021:3;8944:89;:::i;:::-;8937:96;;9042:52;9087:6;9082:3;9075:4;9068:5;9064:16;9042:52;:::i;:::-;9119:6;9114:3;9110:16;9103:23;;8865:267;8755:377;;;;:::o;9162:845::-;9265:3;9302:5;9296:12;9331:36;9357:9;9331:36;:::i;:::-;9383:89;9465:6;9460:3;9383:89;:::i;:::-;9376:96;;9503:1;9492:9;9488:17;9519:1;9514:137;;;;9665:1;9660:341;;;;9481:520;;9514:137;9598:4;9594:9;9583;9579:25;9574:3;9567:38;9634:6;9629:3;9625:16;9618:23;;9514:137;;9660:341;9727:38;9759:5;9727:38;:::i;:::-;9787:1;9801:154;9815:6;9812:1;9809:13;9801:154;;;9889:7;9883:14;9879:1;9874:3;9870:11;9863:35;9939:1;9930:7;9926:15;9915:26;;9837:4;9834:1;9830:12;9825:17;;9801:154;;;9984:6;9979:3;9975:16;9968:23;;9667:334;;9481:520;;9269:738;;9162:845;;;;:::o;10013:365::-;10155:3;10176:66;10240:1;10235:3;10176:66;:::i;:::-;10169:73;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;10013:365;;;:::o;10384:366::-;10526:3;10547:67;10611:2;10606:3;10547:67;:::i;:::-;10540:74;;10623:93;10712:3;10623:93;:::i;:::-;10741:2;10736:3;10732:12;10725:19;;10384:366;;;:::o;10756:::-;10898:3;10919:67;10983:2;10978:3;10919:67;:::i;:::-;10912:74;;10995:93;11084:3;10995:93;:::i;:::-;11113:2;11108:3;11104:12;11097:19;;10756:366;;;:::o;11128:::-;11270:3;11291:67;11355:2;11350:3;11291:67;:::i;:::-;11284:74;;11367:93;11456:3;11367:93;:::i;:::-;11485:2;11480:3;11476:12;11469:19;;11128:366;;;:::o;11500:::-;11642:3;11663:67;11727:2;11722:3;11663:67;:::i;:::-;11656:74;;11739:93;11828:3;11739:93;:::i;:::-;11857:2;11852:3;11848:12;11841:19;;11500:366;;;:::o;11872:::-;12014:3;12035:67;12099:2;12094:3;12035:67;:::i;:::-;12028:74;;12111:93;12200:3;12111:93;:::i;:::-;12229:2;12224:3;12220:12;12213:19;;11872:366;;;:::o;12244:400::-;12404:3;12425:84;12507:1;12502:3;12425:84;:::i;:::-;12418:91;;12518:93;12607:3;12518:93;:::i;:::-;12636:1;12631:3;12627:11;12620:18;;12244:400;;;:::o;12650:366::-;12792:3;12813:67;12877:2;12872:3;12813:67;:::i;:::-;12806:74;;12889:93;12978:3;12889:93;:::i;:::-;13007:2;13002:3;12998:12;12991:19;;12650:366;;;:::o;13022:::-;13164:3;13185:67;13249:2;13244:3;13185:67;:::i;:::-;13178:74;;13261:93;13350:3;13261:93;:::i;:::-;13379:2;13374:3;13370:12;13363:19;;13022:366;;;:::o;13394:398::-;13553:3;13574:83;13655:1;13650:3;13574:83;:::i;:::-;13567:90;;13666:93;13755:3;13666:93;:::i;:::-;13784:1;13779:3;13775:11;13768:18;;13394:398;;;:::o;13798:366::-;13940:3;13961:67;14025:2;14020:3;13961:67;:::i;:::-;13954:74;;14037:93;14126:3;14037:93;:::i;:::-;14155:2;14150:3;14146:12;14139:19;;13798:366;;;:::o;14170:::-;14312:3;14333:67;14397:2;14392:3;14333:67;:::i;:::-;14326:74;;14409:93;14498:3;14409:93;:::i;:::-;14527:2;14522:3;14518:12;14511:19;;14170:366;;;:::o;14542:118::-;14629:24;14647:5;14629:24;:::i;:::-;14624:3;14617:37;14542:118;;:::o;14666:695::-;14944:3;14966:92;15054:3;15045:6;14966:92;:::i;:::-;14959:99;;15075:95;15166:3;15157:6;15075:95;:::i;:::-;15068:102;;15187:148;15331:3;15187:148;:::i;:::-;15180:155;;15352:3;15345:10;;14666:695;;;;;:::o;15367:379::-;15551:3;15573:147;15716:3;15573:147;:::i;:::-;15566:154;;15737:3;15730:10;;15367:379;;;:::o;15752:222::-;15845:4;15883:2;15872:9;15868:18;15860:26;;15896:71;15964:1;15953:9;15949:17;15940:6;15896:71;:::i;:::-;15752:222;;;;:::o;15980:640::-;16175:4;16213:3;16202:9;16198:19;16190:27;;16227:71;16295:1;16284:9;16280:17;16271:6;16227:71;:::i;:::-;16308:72;16376:2;16365:9;16361:18;16352:6;16308:72;:::i;:::-;16390;16458:2;16447:9;16443:18;16434:6;16390:72;:::i;:::-;16509:9;16503:4;16499:20;16494:2;16483:9;16479:18;16472:48;16537:76;16608:4;16599:6;16537:76;:::i;:::-;16529:84;;15980:640;;;;;;;:::o;16626:210::-;16713:4;16751:2;16740:9;16736:18;16728:26;;16764:65;16826:1;16815:9;16811:17;16802:6;16764:65;:::i;:::-;16626:210;;;;:::o;16842:313::-;16955:4;16993:2;16982:9;16978:18;16970:26;;17042:9;17036:4;17032:20;17028:1;17017:9;17013:17;17006:47;17070:78;17143:4;17134:6;17070:78;:::i;:::-;17062:86;;16842:313;;;;:::o;17161:419::-;17327:4;17365:2;17354:9;17350:18;17342:26;;17414:9;17408:4;17404:20;17400:1;17389:9;17385:17;17378:47;17442:131;17568:4;17442:131;:::i;:::-;17434:139;;17161:419;;;:::o;17586:::-;17752:4;17790:2;17779:9;17775:18;17767:26;;17839:9;17833:4;17829:20;17825:1;17814:9;17810:17;17803:47;17867:131;17993:4;17867:131;:::i;:::-;17859:139;;17586:419;;;:::o;18011:::-;18177:4;18215:2;18204:9;18200:18;18192:26;;18264:9;18258:4;18254:20;18250:1;18239:9;18235:17;18228:47;18292:131;18418:4;18292:131;:::i;:::-;18284:139;;18011:419;;;:::o;18436:::-;18602:4;18640:2;18629:9;18625:18;18617:26;;18689:9;18683:4;18679:20;18675:1;18664:9;18660:17;18653:47;18717:131;18843:4;18717:131;:::i;:::-;18709:139;;18436:419;;;:::o;18861:::-;19027:4;19065:2;19054:9;19050:18;19042:26;;19114:9;19108:4;19104:20;19100:1;19089:9;19085:17;19078:47;19142:131;19268:4;19142:131;:::i;:::-;19134:139;;18861:419;;;:::o;19286:::-;19452:4;19490:2;19479:9;19475:18;19467:26;;19539:9;19533:4;19529:20;19525:1;19514:9;19510:17;19503:47;19567:131;19693:4;19567:131;:::i;:::-;19559:139;;19286:419;;;:::o;19711:::-;19877:4;19915:2;19904:9;19900:18;19892:26;;19964:9;19958:4;19954:20;19950:1;19939:9;19935:17;19928:47;19992:131;20118:4;19992:131;:::i;:::-;19984:139;;19711:419;;;:::o;20136:::-;20302:4;20340:2;20329:9;20325:18;20317:26;;20389:9;20383:4;20379:20;20375:1;20364:9;20360:17;20353:47;20417:131;20543:4;20417:131;:::i;:::-;20409:139;;20136:419;;;:::o;20561:::-;20727:4;20765:2;20754:9;20750:18;20742:26;;20814:9;20808:4;20804:20;20800:1;20789:9;20785:17;20778:47;20842:131;20968:4;20842:131;:::i;:::-;20834:139;;20561:419;;;:::o;20986:::-;21152:4;21190:2;21179:9;21175:18;21167:26;;21239:9;21233:4;21229:20;21225:1;21214:9;21210:17;21203:47;21267:131;21393:4;21267:131;:::i;:::-;21259:139;;20986:419;;;:::o;21411:222::-;21504:4;21542:2;21531:9;21527:18;21519:26;;21555:71;21623:1;21612:9;21608:17;21599:6;21555:71;:::i;:::-;21411:222;;;;:::o;21639:129::-;21673:6;21700:20;;:::i;:::-;21690:30;;21729:33;21757:4;21749:6;21729:33;:::i;:::-;21639:129;;;:::o;21774:75::-;21807:6;21840:2;21834:9;21824:19;;21774:75;:::o;21855:307::-;21916:4;22006:18;21998:6;21995:30;21992:56;;;22028:18;;:::i;:::-;21992:56;22066:29;22088:6;22066:29;:::i;:::-;22058:37;;22150:4;22144;22140:15;22132:23;;21855:307;;;:::o;22168:308::-;22230:4;22320:18;22312:6;22309:30;22306:56;;;22342:18;;:::i;:::-;22306:56;22380:29;22402:6;22380:29;:::i;:::-;22372:37;;22464:4;22458;22454:15;22446:23;;22168:308;;;:::o;22482:141::-;22531:4;22554:3;22546:11;;22577:3;22574:1;22567:14;22611:4;22608:1;22598:18;22590:26;;22482:141;;;:::o;22629:98::-;22680:6;22714:5;22708:12;22698:22;;22629:98;;;:::o;22733:99::-;22785:6;22819:5;22813:12;22803:22;;22733:99;;;:::o;22838:168::-;22921:11;22955:6;22950:3;22943:19;22995:4;22990:3;22986:14;22971:29;;22838:168;;;;:::o;23012:147::-;23113:11;23150:3;23135:18;;23012:147;;;;:::o;23165:169::-;23249:11;23283:6;23278:3;23271:19;23323:4;23318:3;23314:14;23299:29;;23165:169;;;;:::o;23340:148::-;23442:11;23479:3;23464:18;;23340:148;;;;:::o;23494:305::-;23534:3;23553:20;23571:1;23553:20;:::i;:::-;23548:25;;23587:20;23605:1;23587:20;:::i;:::-;23582:25;;23741:1;23673:66;23669:74;23666:1;23663:81;23660:107;;;23747:18;;:::i;:::-;23660:107;23791:1;23788;23784:9;23777:16;;23494:305;;;;:::o;23805:185::-;23845:1;23862:20;23880:1;23862:20;:::i;:::-;23857:25;;23896:20;23914:1;23896:20;:::i;:::-;23891:25;;23935:1;23925:35;;23940:18;;:::i;:::-;23925:35;23982:1;23979;23975:9;23970:14;;23805:185;;;;:::o;23996:348::-;24036:7;24059:20;24077:1;24059:20;:::i;:::-;24054:25;;24093:20;24111:1;24093:20;:::i;:::-;24088:25;;24281:1;24213:66;24209:74;24206:1;24203:81;24198:1;24191:9;24184:17;24180:105;24177:131;;;24288:18;;:::i;:::-;24177:131;24336:1;24333;24329:9;24318:20;;23996:348;;;;:::o;24350:191::-;24390:4;24410:20;24428:1;24410:20;:::i;:::-;24405:25;;24444:20;24462:1;24444:20;:::i;:::-;24439:25;;24483:1;24480;24477:8;24474:34;;;24488:18;;:::i;:::-;24474:34;24533:1;24530;24526:9;24518:17;;24350:191;;;;:::o;24547:96::-;24584:7;24613:24;24631:5;24613:24;:::i;:::-;24602:35;;24547:96;;;:::o;24649:90::-;24683:7;24726:5;24719:13;24712:21;24701:32;;24649:90;;;:::o;24745:149::-;24781:7;24821:66;24814:5;24810:78;24799:89;;24745:149;;;:::o;24900:125::-;24966:7;24995:24;25013:5;24995:24;:::i;:::-;24984:35;;24900:125;;;:::o;25031:126::-;25068:7;25108:42;25101:5;25097:54;25086:65;;25031:126;;;:::o;25163:77::-;25200:7;25229:5;25218:16;;25163:77;;;:::o;25246:154::-;25330:6;25325:3;25320;25307:30;25392:1;25383:6;25378:3;25374:16;25367:27;25246:154;;;:::o;25406:307::-;25474:1;25484:113;25498:6;25495:1;25492:13;25484:113;;;25583:1;25578:3;25574:11;25568:18;25564:1;25559:3;25555:11;25548:39;25520:2;25517:1;25513:10;25508:15;;25484:113;;;25615:6;25612:1;25609:13;25606:101;;;25695:1;25686:6;25681:3;25677:16;25670:27;25606:101;25455:258;25406:307;;;:::o;25719:320::-;25763:6;25800:1;25794:4;25790:12;25780:22;;25847:1;25841:4;25837:12;25868:18;25858:81;;25924:4;25916:6;25912:17;25902:27;;25858:81;25986:2;25978:6;25975:14;25955:18;25952:38;25949:84;;;26005:18;;:::i;:::-;25949:84;25770:269;25719:320;;;:::o;26045:281::-;26128:27;26150:4;26128:27;:::i;:::-;26120:6;26116:40;26258:6;26246:10;26243:22;26222:18;26210:10;26207:34;26204:62;26201:88;;;26269:18;;:::i;:::-;26201:88;26309:10;26305:2;26298:22;26088:238;26045:281;;:::o;26332:233::-;26371:3;26394:24;26412:5;26394:24;:::i;:::-;26385:33;;26440:66;26433:5;26430:77;26427:103;;;26510:18;;:::i;:::-;26427:103;26557:1;26550:5;26546:13;26539:20;;26332:233;;;:::o;26571:176::-;26603:1;26620:20;26638:1;26620:20;:::i;:::-;26615:25;;26654:20;26672:1;26654:20;:::i;:::-;26649:25;;26693:1;26683:35;;26698:18;;:::i;:::-;26683:35;26739:1;26736;26732:9;26727:14;;26571:176;;;;:::o;26753:180::-;26801:77;26798:1;26791:88;26898:4;26895:1;26888:15;26922:4;26919:1;26912:15;26939:180;26987:77;26984:1;26977:88;27084:4;27081:1;27074:15;27108:4;27105:1;27098:15;27125:180;27173:77;27170:1;27163:88;27270:4;27267:1;27260:15;27294:4;27291:1;27284:15;27311:180;27359:77;27356:1;27349:88;27456:4;27453:1;27446:15;27480:4;27477:1;27470:15;27497:180;27545:77;27542:1;27535:88;27642:4;27639:1;27632:15;27666:4;27663:1;27656:15;27683:117;27792:1;27789;27782:12;27806:117;27915:1;27912;27905:12;27929:117;28038:1;28035;28028:12;28052:117;28161:1;28158;28151:12;28175:102;28216:6;28267:2;28263:7;28258:2;28251:5;28247:14;28243:28;28233:38;;28175:102;;;:::o;28283:156::-;28423:8;28419:1;28411:6;28407:14;28400:32;28283:156;:::o;28445:225::-;28585:34;28581:1;28573:6;28569:14;28562:58;28654:8;28649:2;28641:6;28637:15;28630:33;28445:225;:::o;28676:167::-;28816:19;28812:1;28804:6;28800:14;28793:43;28676:167;:::o;28849:160::-;28989:12;28985:1;28977:6;28973:14;28966:36;28849:160;:::o;29015:168::-;29155:20;29151:1;29143:6;29139:14;29132:44;29015:168;:::o;29189:171::-;29329:23;29325:1;29317:6;29313:14;29306:47;29189:171;:::o;29366:155::-;29506:7;29502:1;29494:6;29490:14;29483:31;29366:155;:::o;29527:182::-;29667:34;29663:1;29655:6;29651:14;29644:58;29527:182;:::o;29715:172::-;29855:24;29851:1;29843:6;29839:14;29832:48;29715:172;:::o;29893:114::-;;:::o;30013:164::-;30153:16;30149:1;30141:6;30137:14;30130:40;30013:164;:::o;30183:162::-;30323:14;30319:1;30311:6;30307:14;30300:38;30183:162;:::o;30351:122::-;30424:24;30442:5;30424:24;:::i;:::-;30417:5;30414:35;30404:63;;30463:1;30460;30453:12;30404:63;30351:122;:::o;30479:116::-;30549:21;30564:5;30549:21;:::i;:::-;30542:5;30539:32;30529:60;;30585:1;30582;30575:12;30529:60;30479:116;:::o;30601:120::-;30673:23;30690:5;30673:23;:::i;:::-;30666:5;30663:34;30653:62;;30711:1;30708;30701:12;30653:62;30601:120;:::o;30727:180::-;30829:53;30876:5;30829:53;:::i;:::-;30822:5;30819:64;30809:92;;30897:1;30894;30887:12;30809:92;30727:180;:::o;30913:122::-;30986:24;31004:5;30986:24;:::i;:::-;30979:5;30976:35;30966:63;;31025:1;31022;31015:12;30966:63;30913:122;:::o

Swarm Source

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