ETH Price: $3,283.35 (+0.11%)
Gas: 15 Gwei

Token

tiny moonbirds (TMB)
 

Overview

Max Total Supply

999 TMB

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 TMB
0xe4b4abd64d32e657629db8fb52c873b328e38299
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:
tinymoonbirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-18
*/

// File: contracts/tinymoonbirds.sol

/**
 *Submitted for verification at Etherscan.io on 2022-04-16
*/

// SPDX-License-Identifier: MIT

// 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
        ){
            uint256 counter;
            for (uint i = 0; i < 4269; 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/MoonBirbs.sol


contract tinymoonbirds is ERC721A, Ownable {

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

    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 200;
    uint256 public constant MAX_SUPPLY = 999;
    uint256 public price = 0.0025 ether;
    mapping(address => uint256) public freeMinted;

    bool public paused = false;

    constructor() ERC721A("tiny moonbirds", "TMB") {}

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

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= freeMinted[_caller] + _amount, "Excess max per free wallet");
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
            freeMinted[_caller] += _amount;
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == 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 withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

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

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

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    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),
              baseExtension
            )
        ) : "";
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620042f96036913960099080519060200190620000359291906200024f565b506040518060600160405280603581526020016200432f60359139600a9080519060200190620000679291906200024f565b506608e1bc9bf04000600b556000600d60006101000a81548160ff0219169083151502179055503480156200009b57600080fd5b506040518060400160405280600e81526020017f74696e79206d6f6f6e62697264730000000000000000000000000000000000008152506040518060400160405280600381526020017f544d4200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001209291906200024f565b508060039080519060200190620001399291906200024f565b506200014a6200017860201b60201c565b600081905550505062000172620001666200018160201b60201c565b6200018960201b60201c565b62000364565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025d90620002ff565b90600052602060002090601f016020900481019282620002815760008555620002cd565b82601f106200029c57805160ff1916838001178555620002cd565b82800160010185558215620002cd579182015b82811115620002cc578251825591602001919060010190620002af565b5b509050620002dc9190620002e0565b5090565b5b80821115620002fb576000816000905550600101620002e1565b5090565b600060028204905060018216806200031857607f821691505b602082108114156200032f576200032e62000335565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f8580620003746000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610722578063e8a3d4851461074d578063e985e9c514610778578063f2fde38b146107b5578063f43a22dc146107de57610204565b8063a22cb46514610668578063b88d4fde14610691578063c6682862146106ba578063c87b56dd146106e557610204565b806391b7f5ed116100e757806391b7f5ed146105a4578063938e3d7b146105cd57806395d89b41146105f6578063a035b1fe14610621578063a0712d681461064c57610204565b806370a08231146104fa578063715018a6146105375780638069876d1461054e5780638da5cb5b1461057957610204565b8063389fcf061161019b57806355f804b31161016a57806355f804b3146104275780635c975abb146104505780636352211e1461047b578063698982ba146104b85780636c0360eb146104cf57610204565b8063389fcf061461037f5780633ccfd60b146103bc57806342842e0e146103d3578063463fff79146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061317b565b610809565b60405161023d919061363b565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061314e565b6108eb565b005b34801561027b57600080fd5b50610284610984565b6040516102919190613656565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061324b565b610a16565b6040516102ce91906135d4565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061310e565b610a92565b005b34801561030c57600080fd5b50610315610b9d565b60405161032291906137f8565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612ff8565b610bb4565b005b34801561036057600080fd5b50610369610bc4565b60405161037691906137f8565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612f8b565b610bca565b6040516103b391906137f8565b60405180910390f35b3480156103c857600080fd5b506103d1610be2565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612ff8565b610d1a565b005b34801561040857600080fd5b50610411610d3a565b60405161041e91906137f8565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613202565b610d3f565b005b34801561045c57600080fd5b50610465610dd5565b604051610472919061363b565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d919061324b565b610de8565b6040516104af91906135d4565b60405180910390f35b3480156104c457600080fd5b506104cd610dfe565b005b3480156104db57600080fd5b506104e4610e8e565b6040516104f19190613656565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612f8b565b610f1c565b60405161052e91906137f8565b60405180910390f35b34801561054357600080fd5b5061054c610fec565b005b34801561055a57600080fd5b50610563611074565b60405161057091906137f8565b60405180910390f35b34801561058557600080fd5b5061058e611079565b60405161059b91906135d4565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c6919061324b565b6110a3565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190613202565b611129565b005b34801561060257600080fd5b5061060b6111bf565b6040516106189190613656565b60405180910390f35b34801561062d57600080fd5b50610636611251565b60405161064391906137f8565b60405180910390f35b6106666004803603810190610661919061324b565b611257565b005b34801561067457600080fd5b5061068f600480360381019061068a91906130ce565b611599565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061304b565b611711565b005b3480156106c657600080fd5b506106cf61178d565b6040516106dc9190613656565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061324b565b6117c6565b6040516107199190613656565b60405180910390f35b34801561072e57600080fd5b506107376118a5565b60405161074491906135d4565b60405180910390f35b34801561075957600080fd5b506107626118bd565b60405161076f9190613656565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612fb8565b61194b565b6040516107ac919061363b565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d79190612f8b565b611a3f565b005b3480156107ea57600080fd5b506107f3611b37565b60405161080091906137f8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e457506108e382611b3c565b5b9050919050565b6108f3611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610911611079565b73ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90613778565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606002805461099390613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90613ada565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a2182611bae565b610a57576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9d82610de8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b05576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b24611ba6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b565750610b5481610b4f611ba6565b61194b565b155b15610b8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b98838383611bfc565b505050565b6000610ba7611cae565b6001546000540303905090565b610bbf838383611cb7565b505050565b6103e781565b600c6020528060005260406000206000915090505481565b610bea611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610c08611079565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613778565b60405180910390fd5b60004790506000610c6d611ba6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c90906135bf565b60006040518083038185875af1925050503d8060008114610ccd576040519150601f19603f3d011682016040523d82523d6000602084013e610cd2565b606091505b5050905080610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906137b8565b60405180910390fd5b5050565b610d3583838360405180602001604052806000815250611711565b505050565b600381565b610d47611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610d65611079565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613778565b60405180910390fd5b8060099080519060200190610dd1929190612d47565b5050565b600d60009054906101000a900460ff1681565b6000610df3826121a8565b600001519050919050565b610e06611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610e24611079565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613778565b60405180910390fd5b610e8c610e85611ba6565b6001612437565b565b60098054610e9b90613ada565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790613ada565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff4611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611012611079565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613778565b60405180910390fd5b6110726000612455565b565b60c881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ab611ba6565b73ffffffffffffffffffffffffffffffffffffffff166110c9611079565b73ffffffffffffffffffffffffffffffffffffffff161461111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613778565b60405180910390fd5b80600b8190555050565b611131611ba6565b73ffffffffffffffffffffffffffffffffffffffff1661114f611079565b73ffffffffffffffffffffffffffffffffffffffff16146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90613778565b60405180910390fd5b80600a90805190602001906111bb929190612d47565b5050565b6060600380546111ce90613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613ada565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b600b5481565b6000611261611ba6565b9050600d60009054906101000a900460ff16156112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90613678565b60405180910390fd5b816112bc610b9d565b6112c691906138fd565b6103e7101561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613738565b60405180910390fd5b6000821161134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906136b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906137d8565b60405180910390fd5b6113c3610b9d565b60c8106114f75781600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141591906138fd565b60031015611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906136f8565b60405180910390fd5b816003101561149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613718565b60405180910390fd5b81600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114eb91906138fd565b9250508190555061158b565b81600a101561153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906136d8565b60405180910390fd5b34600b548361154a9190613984565b1461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613798565b60405180910390fd5b5b6115958183612437565b5050565b6115a1611ba6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611613611ba6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c0611ba6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611705919061363b565b60405180910390a35050565b61171c848484611cb7565b61173b8373ffffffffffffffffffffffffffffffffffffffff1661251b565b8015611750575061174e8484848461253e565b155b15611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117d182611bae565b611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613758565b60405180910390fd5b60006009805461181f90613ada565b90501161183b576040518060200160405280600081525061189e565b60096118468361269e565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161188e9392919061358e565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600a80546118ca90613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546118f690613ada565b80156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119b591906135d4565b60206040518083038186803b1580156119cd57600080fd5b505afa1580156119e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0591906131d5565b73ffffffffffffffffffffffffffffffffffffffff161415611a2b576001915050611a39565b611a3584846127ff565b9150505b92915050565b611a47611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611a65611079565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613778565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613698565b60405180910390fd5b611b3481612455565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bb9611cae565b11158015611bc8575060005482105b8015611bf5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611cc2826121a8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ce9611ba6565b73ffffffffffffffffffffffffffffffffffffffff161480611d1c5750611d1b8260000151611d16611ba6565b61194b565b5b80611d615750611d2a611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611d4984610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e6a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e778585856001612893565b611e876000848460000151611bfc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612138576000548110156121375782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a18585856001612899565b5050505050565b6121b0612dcd565b6000829050806121be611cae565b111580156121cd575060005481105b15612400576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123fe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e2578092505050612432565b5b6001156123fd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123f8578092505050612432565b6122e3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61245182826040518060200160405280600081525061289f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612564611ba6565b8786866040518563ffffffff1660e01b815260040161258694939291906135ef565b602060405180830381600087803b1580156125a057600080fd5b505af19250505080156125d157506040513d601f19601f820116820180604052508101906125ce91906131a8565b60015b61264b573d8060008114612601576040519150601f19603f3d011682016040523d82523d6000602084013e612606565b606091505b50600081511415612643576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156126e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fa565b600082905060005b6000821461271857808061270190613b3d565b915050600a826127119190613953565b91506126ee565b60008167ffffffffffffffff81111561273457612733613c73565b5b6040519080825280601f01601f1916602001820160405280156127665781602001600182028036833780820191505090505b5090505b600085146127f35760018261277f91906139de565b9150600a8561278e9190613b86565b603061279a91906138fd565b60f81b8183815181106127b0576127af613c44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ec9190613953565b945061276a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6128ac83838360016128b1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612959576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129666000868387612893565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129f35750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a2e57600080600090505b6110ad811015612a2b578180612a1590613b3d565b9250508080612a2390613b3d565b915050612a00565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bf85750612bf78773ffffffffffffffffffffffffffffffffffffffff1661251b565b5b15612cbe575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6d600088848060010195508861253e565b612ca3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bfe578260005414612cb957600080fd5b612d2a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cbf575b816000819055505050612d406000868387612899565b5050505050565b828054612d5390613ada565b90600052602060002090601f016020900481019282612d755760008555612dbc565b82601f10612d8e57805160ff1916838001178555612dbc565b82800160010185558215612dbc579182015b82811115612dbb578251825591602001919060010190612da0565b5b509050612dc99190612e10565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e29576000816000905550600101612e11565b5090565b6000612e40612e3b84613838565b613813565b905082815260208101848484011115612e5c57612e5b613ca7565b5b612e67848285613a98565b509392505050565b6000612e82612e7d84613869565b613813565b905082815260208101848484011115612e9e57612e9d613ca7565b5b612ea9848285613a98565b509392505050565b600081359050612ec081613edc565b92915050565b600081359050612ed581613ef3565b92915050565b600081359050612eea81613f0a565b92915050565b600081519050612eff81613f0a565b92915050565b600082601f830112612f1a57612f19613ca2565b5b8135612f2a848260208601612e2d565b91505092915050565b600081519050612f4281613f21565b92915050565b600082601f830112612f5d57612f5c613ca2565b5b8135612f6d848260208601612e6f565b91505092915050565b600081359050612f8581613f38565b92915050565b600060208284031215612fa157612fa0613cb1565b5b6000612faf84828501612eb1565b91505092915050565b60008060408385031215612fcf57612fce613cb1565b5b6000612fdd85828601612eb1565b9250506020612fee85828601612eb1565b9150509250929050565b60008060006060848603121561301157613010613cb1565b5b600061301f86828701612eb1565b935050602061303086828701612eb1565b925050604061304186828701612f76565b9150509250925092565b6000806000806080858703121561306557613064613cb1565b5b600061307387828801612eb1565b945050602061308487828801612eb1565b935050604061309587828801612f76565b925050606085013567ffffffffffffffff8111156130b6576130b5613cac565b5b6130c287828801612f05565b91505092959194509250565b600080604083850312156130e5576130e4613cb1565b5b60006130f385828601612eb1565b925050602061310485828601612ec6565b9150509250929050565b6000806040838503121561312557613124613cb1565b5b600061313385828601612eb1565b925050602061314485828601612f76565b9150509250929050565b60006020828403121561316457613163613cb1565b5b600061317284828501612ec6565b91505092915050565b60006020828403121561319157613190613cb1565b5b600061319f84828501612edb565b91505092915050565b6000602082840312156131be576131bd613cb1565b5b60006131cc84828501612ef0565b91505092915050565b6000602082840312156131eb576131ea613cb1565b5b60006131f984828501612f33565b91505092915050565b60006020828403121561321857613217613cb1565b5b600082013567ffffffffffffffff81111561323657613235613cac565b5b61324284828501612f48565b91505092915050565b60006020828403121561326157613260613cb1565b5b600061326f84828501612f76565b91505092915050565b61328181613a12565b82525050565b61329081613a24565b82525050565b60006132a1826138af565b6132ab81856138c5565b93506132bb818560208601613aa7565b6132c481613cb6565b840191505092915050565b60006132da826138ba565b6132e481856138e1565b93506132f4818560208601613aa7565b6132fd81613cb6565b840191505092915050565b6000613313826138ba565b61331d81856138f2565b935061332d818560208601613aa7565b80840191505092915050565b6000815461334681613ada565b61335081866138f2565b9450600182166000811461336b576001811461337c576133af565b60ff198316865281860193506133af565b6133858561389a565b60005b838110156133a757815481890152600182019150602081019050613388565b838801955050505b50505092915050565b60006133c56006836138e1565b91506133d082613cc7565b602082019050919050565b60006133e86026836138e1565b91506133f382613cf0565b604082019050919050565b600061340b600a836138e1565b915061341682613d3f565b602082019050919050565b600061342e6016836138e1565b915061343982613d68565b602082019050919050565b6000613451601a836138e1565b915061345c82613d91565b602082019050919050565b60006134746016836138e1565b915061347f82613dba565b602082019050919050565b60006134976012836138e1565b91506134a282613de3565b602082019050919050565b60006134ba6015836138e1565b91506134c582613e0c565b602082019050919050565b60006134dd6020836138e1565b91506134e882613e35565b602082019050919050565b60006135006016836138e1565b915061350b82613e5e565b602082019050919050565b60006135236000836138d6565b915061352e82613e87565b600082019050919050565b6000613546600e836138e1565b915061355182613e8a565b602082019050919050565b6000613569600c836138e1565b915061357482613eb3565b602082019050919050565b61358881613a8e565b82525050565b600061359a8286613339565b91506135a68285613308565b91506135b28284613308565b9150819050949350505050565b60006135ca82613516565b9150819050919050565b60006020820190506135e96000830184613278565b92915050565b60006080820190506136046000830187613278565b6136116020830186613278565b61361e604083018561357f565b81810360608301526136308184613296565b905095945050505050565b60006020820190506136506000830184613287565b92915050565b6000602082019050818103600083015261367081846132cf565b905092915050565b60006020820190508181036000830152613691816133b8565b9050919050565b600060208201905081810360008301526136b1816133db565b9050919050565b600060208201905081810360008301526136d1816133fe565b9050919050565b600060208201905081810360008301526136f181613421565b9050919050565b6000602082019050818103600083015261371181613444565b9050919050565b6000602082019050818103600083015261373181613467565b9050919050565b600060208201905081810360008301526137518161348a565b9050919050565b60006020820190508181036000830152613771816134ad565b9050919050565b60006020820190508181036000830152613791816134d0565b9050919050565b600060208201905081810360008301526137b1816134f3565b9050919050565b600060208201905081810360008301526137d181613539565b9050919050565b600060208201905081810360008301526137f18161355c565b9050919050565b600060208201905061380d600083018461357f565b92915050565b600061381d61382e565b90506138298282613b0c565b919050565b6000604051905090565b600067ffffffffffffffff82111561385357613852613c73565b5b61385c82613cb6565b9050602081019050919050565b600067ffffffffffffffff82111561388457613883613c73565b5b61388d82613cb6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061390882613a8e565b915061391383613a8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394857613947613bb7565b5b828201905092915050565b600061395e82613a8e565b915061396983613a8e565b92508261397957613978613be6565b5b828204905092915050565b600061398f82613a8e565b915061399a83613a8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139d3576139d2613bb7565b5b828202905092915050565b60006139e982613a8e565b91506139f483613a8e565b925082821015613a0757613a06613bb7565b5b828203905092915050565b6000613a1d82613a6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a6782613a12565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac5578082015181840152602081019050613aaa565b83811115613ad4576000848401525b50505050565b60006002820490506001821680613af257607f821691505b60208210811415613b0657613b05613c15565b5b50919050565b613b1582613cb6565b810181811067ffffffffffffffff82111715613b3457613b33613c73565b5b80604052505050565b6000613b4882613a8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7b57613b7a613bb7565b5b600182019050919050565b6000613b9182613a8e565b9150613b9c83613a8e565b925082613bac57613bab613be6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613ee581613a12565b8114613ef057600080fd5b50565b613efc81613a24565b8114613f0757600080fd5b50565b613f1381613a30565b8114613f1e57600080fd5b50565b613f2a81613a5c565b8114613f3557600080fd5b50565b613f4181613a8e565b8114613f4c57600080fd5b5056fea2646970667358221220fdf79c7faa887fa7f0902e1709b8fe0ab3ad898dfd520ea48e99c7a39932651064736f6c63430008070033697066733a2f2f516d6468623661396e6f5866717434576437533634417671356437693472474a76347459795476414268794157772f697066733a2f2f516d646743785146456f566f377a554241524d67554770716966364266553743746f627536526f6b6677576f6731

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610722578063e8a3d4851461074d578063e985e9c514610778578063f2fde38b146107b5578063f43a22dc146107de57610204565b8063a22cb46514610668578063b88d4fde14610691578063c6682862146106ba578063c87b56dd146106e557610204565b806391b7f5ed116100e757806391b7f5ed146105a4578063938e3d7b146105cd57806395d89b41146105f6578063a035b1fe14610621578063a0712d681461064c57610204565b806370a08231146104fa578063715018a6146105375780638069876d1461054e5780638da5cb5b1461057957610204565b8063389fcf061161019b57806355f804b31161016a57806355f804b3146104275780635c975abb146104505780636352211e1461047b578063698982ba146104b85780636c0360eb146104cf57610204565b8063389fcf061461037f5780633ccfd60b146103bc57806342842e0e146103d3578063463fff79146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061317b565b610809565b60405161023d919061363b565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061314e565b6108eb565b005b34801561027b57600080fd5b50610284610984565b6040516102919190613656565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061324b565b610a16565b6040516102ce91906135d4565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061310e565b610a92565b005b34801561030c57600080fd5b50610315610b9d565b60405161032291906137f8565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612ff8565b610bb4565b005b34801561036057600080fd5b50610369610bc4565b60405161037691906137f8565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612f8b565b610bca565b6040516103b391906137f8565b60405180910390f35b3480156103c857600080fd5b506103d1610be2565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612ff8565b610d1a565b005b34801561040857600080fd5b50610411610d3a565b60405161041e91906137f8565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190613202565b610d3f565b005b34801561045c57600080fd5b50610465610dd5565b604051610472919061363b565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d919061324b565b610de8565b6040516104af91906135d4565b60405180910390f35b3480156104c457600080fd5b506104cd610dfe565b005b3480156104db57600080fd5b506104e4610e8e565b6040516104f19190613656565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612f8b565b610f1c565b60405161052e91906137f8565b60405180910390f35b34801561054357600080fd5b5061054c610fec565b005b34801561055a57600080fd5b50610563611074565b60405161057091906137f8565b60405180910390f35b34801561058557600080fd5b5061058e611079565b60405161059b91906135d4565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c6919061324b565b6110a3565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190613202565b611129565b005b34801561060257600080fd5b5061060b6111bf565b6040516106189190613656565b60405180910390f35b34801561062d57600080fd5b50610636611251565b60405161064391906137f8565b60405180910390f35b6106666004803603810190610661919061324b565b611257565b005b34801561067457600080fd5b5061068f600480360381019061068a91906130ce565b611599565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061304b565b611711565b005b3480156106c657600080fd5b506106cf61178d565b6040516106dc9190613656565b60405180910390f35b3480156106f157600080fd5b5061070c6004803603810190610707919061324b565b6117c6565b6040516107199190613656565b60405180910390f35b34801561072e57600080fd5b506107376118a5565b60405161074491906135d4565b60405180910390f35b34801561075957600080fd5b506107626118bd565b60405161076f9190613656565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190612fb8565b61194b565b6040516107ac919061363b565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d79190612f8b565b611a3f565b005b3480156107ea57600080fd5b506107f3611b37565b60405161080091906137f8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e457506108e382611b3c565b5b9050919050565b6108f3611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610911611079565b73ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90613778565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60606002805461099390613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90613ada565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a2182611bae565b610a57576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9d82610de8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b05576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b24611ba6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b565750610b5481610b4f611ba6565b61194b565b155b15610b8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b98838383611bfc565b505050565b6000610ba7611cae565b6001546000540303905090565b610bbf838383611cb7565b505050565b6103e781565b600c6020528060005260406000206000915090505481565b610bea611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610c08611079565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5590613778565b60405180910390fd5b60004790506000610c6d611ba6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c90906135bf565b60006040518083038185875af1925050503d8060008114610ccd576040519150601f19603f3d011682016040523d82523d6000602084013e610cd2565b606091505b5050905080610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906137b8565b60405180910390fd5b5050565b610d3583838360405180602001604052806000815250611711565b505050565b600381565b610d47611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610d65611079565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613778565b60405180910390fd5b8060099080519060200190610dd1929190612d47565b5050565b600d60009054906101000a900460ff1681565b6000610df3826121a8565b600001519050919050565b610e06611ba6565b73ffffffffffffffffffffffffffffffffffffffff16610e24611079565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613778565b60405180910390fd5b610e8c610e85611ba6565b6001612437565b565b60098054610e9b90613ada565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec790613ada565b8015610f145780601f10610ee957610100808354040283529160200191610f14565b820191906000526020600020905b815481529060010190602001808311610ef757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff4611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611012611079565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613778565b60405180910390fd5b6110726000612455565b565b60c881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ab611ba6565b73ffffffffffffffffffffffffffffffffffffffff166110c9611079565b73ffffffffffffffffffffffffffffffffffffffff161461111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690613778565b60405180910390fd5b80600b8190555050565b611131611ba6565b73ffffffffffffffffffffffffffffffffffffffff1661114f611079565b73ffffffffffffffffffffffffffffffffffffffff16146111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90613778565b60405180910390fd5b80600a90805190602001906111bb929190612d47565b5050565b6060600380546111ce90613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613ada565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b600b5481565b6000611261611ba6565b9050600d60009054906101000a900460ff16156112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90613678565b60405180910390fd5b816112bc610b9d565b6112c691906138fd565b6103e7101561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613738565b60405180910390fd5b6000821161134d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611344906136b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b2906137d8565b60405180910390fd5b6113c3610b9d565b60c8106114f75781600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461141591906138fd565b60031015611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f906136f8565b60405180910390fd5b816003101561149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613718565b60405180910390fd5b81600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114eb91906138fd565b9250508190555061158b565b81600a101561153b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611532906136d8565b60405180910390fd5b34600b548361154a9190613984565b1461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613798565b60405180910390fd5b5b6115958183612437565b5050565b6115a1611ba6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611606576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611613611ba6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c0611ba6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611705919061363b565b60405180910390a35050565b61171c848484611cb7565b61173b8373ffffffffffffffffffffffffffffffffffffffff1661251b565b8015611750575061174e8484848461253e565b155b15611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117d182611bae565b611810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180790613758565b60405180910390fd5b60006009805461181f90613ada565b90501161183b576040518060200160405280600081525061189e565b60096118468361269e565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161188e9392919061358e565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600a80546118ca90613ada565b80601f01602080910402602001604051908101604052809291908181526020018280546118f690613ada565b80156119435780601f1061191857610100808354040283529160200191611943565b820191906000526020600020905b81548152906001019060200180831161192657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119b591906135d4565b60206040518083038186803b1580156119cd57600080fd5b505afa1580156119e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0591906131d5565b73ffffffffffffffffffffffffffffffffffffffff161415611a2b576001915050611a39565b611a3584846127ff565b9150505b92915050565b611a47611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611a65611079565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613778565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290613698565b60405180910390fd5b611b3481612455565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611bb9611cae565b11158015611bc8575060005482105b8015611bf5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611cc2826121a8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ce9611ba6565b73ffffffffffffffffffffffffffffffffffffffff161480611d1c5750611d1b8260000151611d16611ba6565b61194b565b5b80611d615750611d2a611ba6565b73ffffffffffffffffffffffffffffffffffffffff16611d4984610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d9a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e03576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e6a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e778585856001612893565b611e876000848460000151611bfc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612138576000548110156121375782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a18585856001612899565b5050505050565b6121b0612dcd565b6000829050806121be611cae565b111580156121cd575060005481105b15612400576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123fe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e2578092505050612432565b5b6001156123fd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123f8578092505050612432565b6122e3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61245182826040518060200160405280600081525061289f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612564611ba6565b8786866040518563ffffffff1660e01b815260040161258694939291906135ef565b602060405180830381600087803b1580156125a057600080fd5b505af19250505080156125d157506040513d601f19601f820116820180604052508101906125ce91906131a8565b60015b61264b573d8060008114612601576040519150601f19603f3d011682016040523d82523d6000602084013e612606565b606091505b50600081511415612643576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156126e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127fa565b600082905060005b6000821461271857808061270190613b3d565b915050600a826127119190613953565b91506126ee565b60008167ffffffffffffffff81111561273457612733613c73565b5b6040519080825280601f01601f1916602001820160405280156127665781602001600182028036833780820191505090505b5090505b600085146127f35760018261277f91906139de565b9150600a8561278e9190613b86565b603061279a91906138fd565b60f81b8183815181106127b0576127af613c44565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127ec9190613953565b945061276a565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6128ac83838360016128b1565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561291e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612959576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129666000868387612893565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129f35750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a2e57600080600090505b6110ad811015612a2b578180612a1590613b3d565b9250508080612a2390613b3d565b915050612a00565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bf85750612bf78773ffffffffffffffffffffffffffffffffffffffff1661251b565b5b15612cbe575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6d600088848060010195508861253e565b612ca3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bfe578260005414612cb957600080fd5b612d2a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cbf575b816000819055505050612d406000868387612899565b5050505050565b828054612d5390613ada565b90600052602060002090601f016020900481019282612d755760008555612dbc565b82601f10612d8e57805160ff1916838001178555612dbc565b82800160010185558215612dbc579182015b82811115612dbb578251825591602001919060010190612da0565b5b509050612dc99190612e10565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e29576000816000905550600101612e11565b5090565b6000612e40612e3b84613838565b613813565b905082815260208101848484011115612e5c57612e5b613ca7565b5b612e67848285613a98565b509392505050565b6000612e82612e7d84613869565b613813565b905082815260208101848484011115612e9e57612e9d613ca7565b5b612ea9848285613a98565b509392505050565b600081359050612ec081613edc565b92915050565b600081359050612ed581613ef3565b92915050565b600081359050612eea81613f0a565b92915050565b600081519050612eff81613f0a565b92915050565b600082601f830112612f1a57612f19613ca2565b5b8135612f2a848260208601612e2d565b91505092915050565b600081519050612f4281613f21565b92915050565b600082601f830112612f5d57612f5c613ca2565b5b8135612f6d848260208601612e6f565b91505092915050565b600081359050612f8581613f38565b92915050565b600060208284031215612fa157612fa0613cb1565b5b6000612faf84828501612eb1565b91505092915050565b60008060408385031215612fcf57612fce613cb1565b5b6000612fdd85828601612eb1565b9250506020612fee85828601612eb1565b9150509250929050565b60008060006060848603121561301157613010613cb1565b5b600061301f86828701612eb1565b935050602061303086828701612eb1565b925050604061304186828701612f76565b9150509250925092565b6000806000806080858703121561306557613064613cb1565b5b600061307387828801612eb1565b945050602061308487828801612eb1565b935050604061309587828801612f76565b925050606085013567ffffffffffffffff8111156130b6576130b5613cac565b5b6130c287828801612f05565b91505092959194509250565b600080604083850312156130e5576130e4613cb1565b5b60006130f385828601612eb1565b925050602061310485828601612ec6565b9150509250929050565b6000806040838503121561312557613124613cb1565b5b600061313385828601612eb1565b925050602061314485828601612f76565b9150509250929050565b60006020828403121561316457613163613cb1565b5b600061317284828501612ec6565b91505092915050565b60006020828403121561319157613190613cb1565b5b600061319f84828501612edb565b91505092915050565b6000602082840312156131be576131bd613cb1565b5b60006131cc84828501612ef0565b91505092915050565b6000602082840312156131eb576131ea613cb1565b5b60006131f984828501612f33565b91505092915050565b60006020828403121561321857613217613cb1565b5b600082013567ffffffffffffffff81111561323657613235613cac565b5b61324284828501612f48565b91505092915050565b60006020828403121561326157613260613cb1565b5b600061326f84828501612f76565b91505092915050565b61328181613a12565b82525050565b61329081613a24565b82525050565b60006132a1826138af565b6132ab81856138c5565b93506132bb818560208601613aa7565b6132c481613cb6565b840191505092915050565b60006132da826138ba565b6132e481856138e1565b93506132f4818560208601613aa7565b6132fd81613cb6565b840191505092915050565b6000613313826138ba565b61331d81856138f2565b935061332d818560208601613aa7565b80840191505092915050565b6000815461334681613ada565b61335081866138f2565b9450600182166000811461336b576001811461337c576133af565b60ff198316865281860193506133af565b6133858561389a565b60005b838110156133a757815481890152600182019150602081019050613388565b838801955050505b50505092915050565b60006133c56006836138e1565b91506133d082613cc7565b602082019050919050565b60006133e86026836138e1565b91506133f382613cf0565b604082019050919050565b600061340b600a836138e1565b915061341682613d3f565b602082019050919050565b600061342e6016836138e1565b915061343982613d68565b602082019050919050565b6000613451601a836138e1565b915061345c82613d91565b602082019050919050565b60006134746016836138e1565b915061347f82613dba565b602082019050919050565b60006134976012836138e1565b91506134a282613de3565b602082019050919050565b60006134ba6015836138e1565b91506134c582613e0c565b602082019050919050565b60006134dd6020836138e1565b91506134e882613e35565b602082019050919050565b60006135006016836138e1565b915061350b82613e5e565b602082019050919050565b60006135236000836138d6565b915061352e82613e87565b600082019050919050565b6000613546600e836138e1565b915061355182613e8a565b602082019050919050565b6000613569600c836138e1565b915061357482613eb3565b602082019050919050565b61358881613a8e565b82525050565b600061359a8286613339565b91506135a68285613308565b91506135b28284613308565b9150819050949350505050565b60006135ca82613516565b9150819050919050565b60006020820190506135e96000830184613278565b92915050565b60006080820190506136046000830187613278565b6136116020830186613278565b61361e604083018561357f565b81810360608301526136308184613296565b905095945050505050565b60006020820190506136506000830184613287565b92915050565b6000602082019050818103600083015261367081846132cf565b905092915050565b60006020820190508181036000830152613691816133b8565b9050919050565b600060208201905081810360008301526136b1816133db565b9050919050565b600060208201905081810360008301526136d1816133fe565b9050919050565b600060208201905081810360008301526136f181613421565b9050919050565b6000602082019050818103600083015261371181613444565b9050919050565b6000602082019050818103600083015261373181613467565b9050919050565b600060208201905081810360008301526137518161348a565b9050919050565b60006020820190508181036000830152613771816134ad565b9050919050565b60006020820190508181036000830152613791816134d0565b9050919050565b600060208201905081810360008301526137b1816134f3565b9050919050565b600060208201905081810360008301526137d181613539565b9050919050565b600060208201905081810360008301526137f18161355c565b9050919050565b600060208201905061380d600083018461357f565b92915050565b600061381d61382e565b90506138298282613b0c565b919050565b6000604051905090565b600067ffffffffffffffff82111561385357613852613c73565b5b61385c82613cb6565b9050602081019050919050565b600067ffffffffffffffff82111561388457613883613c73565b5b61388d82613cb6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061390882613a8e565b915061391383613a8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561394857613947613bb7565b5b828201905092915050565b600061395e82613a8e565b915061396983613a8e565b92508261397957613978613be6565b5b828204905092915050565b600061398f82613a8e565b915061399a83613a8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139d3576139d2613bb7565b5b828202905092915050565b60006139e982613a8e565b91506139f483613a8e565b925082821015613a0757613a06613bb7565b5b828203905092915050565b6000613a1d82613a6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a6782613a12565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac5578082015181840152602081019050613aaa565b83811115613ad4576000848401525b50505050565b60006002820490506001821680613af257607f821691505b60208210811415613b0657613b05613c15565b5b50919050565b613b1582613cb6565b810181811067ffffffffffffffff82111715613b3457613b33613c73565b5b80604052505050565b6000613b4882613a8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b7b57613b7a613bb7565b5b600182019050919050565b6000613b9182613a8e565b9150613b9c83613a8e565b925082613bac57613bab613be6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613ee581613a12565b8114613ef057600080fd5b50565b613efc81613a24565b8114613f0757600080fd5b50565b613f1381613a30565b8114613f1e57600080fd5b50565b613f2a81613a5c565b8114613f3557600080fd5b50565b613f4181613a8e565b8114613f4c57600080fd5b5056fea2646970667358221220fdf79c7faa887fa7f0902e1709b8fe0ab3ad898dfd520ea48e99c7a39932651064736f6c63430008070033

Deployed Bytecode Sourcemap

46145:3225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28329:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48684:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31714:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33217:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32780:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27578:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34074:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46673:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46762:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48282:209;;;;;;;;;;;;;:::i;:::-;;34315:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46525:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48773:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46816:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31523:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48499:83;;;;;;;;;;;;;:::i;:::-;;46197:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28698:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2803:103;;;;;;;;;;;;;:::i;:::-;;46621:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2152:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48590:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48881:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31883:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46720:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46908:804;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33493:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34571:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46374:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49005:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46427:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46284:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47829:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3061:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46575:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28329:305;28431:4;28483:25;28468:40;;;:11;:40;;;;:105;;;;28540:33;28525:48;;;:11;:48;;;;28468:105;:158;;;;28590:36;28614:11;28590:23;:36::i;:::-;28468:158;28448:178;;28329:305;;;:::o;48684:81::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48751:6:::1;48742;;:15;;;;;;;;;;;;;;;;;;48684:81:::0;:::o;31714:100::-;31768:13;31801:5;31794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31714:100;:::o;33217:204::-;33285:7;33310:16;33318:7;33310;:16::i;:::-;33305:64;;33335:34;;;;;;;;;;;;;;33305:64;33389:15;:24;33405:7;33389:24;;;;;;;;;;;;;;;;;;;;;33382:31;;33217:204;;;:::o;32780:371::-;32853:13;32869:24;32885:7;32869:15;:24::i;:::-;32853:40;;32914:5;32908:11;;:2;:11;;;32904:48;;;32928:24;;;;;;;;;;;;;;32904:48;32985:5;32969:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32995:37;33012:5;33019:12;:10;:12::i;:::-;32995:16;:37::i;:::-;32994:38;32969:63;32965:138;;;33056:35;;;;;;;;;;;;;;32965:138;33115:28;33124:2;33128:7;33137:5;33115:8;:28::i;:::-;32842:309;32780:371;;:::o;27578:303::-;27622:7;27847:15;:13;:15::i;:::-;27832:12;;27816:13;;:28;:46;27809:53;;27578:303;:::o;34074:170::-;34208:28;34218:4;34224:2;34228:7;34208:9;:28::i;:::-;34074:170;;;:::o;46673:40::-;46710:3;46673:40;:::o;46762:45::-;;;;;;;;;;;;;;;;;:::o;48282:209::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48332:15:::1;48350:21;48332:39;;48383:12;48401;:10;:12::i;:::-;:17;;48426:7;48401:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48382:56;;;48457:7;48449:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48321:170;;48282:209::o:0;34315:185::-;34453:39;34470:4;34476:2;34480:7;34453:39;;;;;;;;;;;;:16;:39::i;:::-;34315:185;;;:::o;46525:43::-;46567:1;46525:43;:::o;48773:100::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48857:8:::1;48847:7;:18;;;;;;;;;;;;:::i;:::-;;48773:100:::0;:::o;46816:26::-;;;;;;;;;;;;;:::o;31523:124::-;31587:7;31614:20;31626:7;31614:11;:20::i;:::-;:25;;;31607:32;;31523:124;;;:::o;48499:83::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48548:26:::1;48558:12;:10;:12::i;:::-;48572:1;48548:9;:26::i;:::-;48499:83::o:0;46197:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28698:206::-;28762:7;28803:1;28786:19;;:5;:19;;;28782:60;;;28814:28;;;;;;;;;;;;;;28782:60;28868:12;:19;28881:5;28868:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28860:36;;28853:43;;28698:206;;;:::o;2803:103::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2868:30:::1;2895:1;2868:18;:30::i;:::-;2803:103::o:0;46621:45::-;46663:3;46621:45;:::o;2152:87::-;2198:7;2225:6;;;;;;;;;;;2218:13;;2152:87;:::o;48590:86::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48662:6:::1;48654:5;:14;;;;48590:86:::0;:::o;48881:116::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48977:12:::1;48963:11;:26;;;;;;;;;;;;:::i;:::-;;48881:116:::0;:::o;31883:104::-;31939:13;31972:7;31965:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31883:104;:::o;46720:35::-;;;;:::o;46908:804::-;46967:15;46985:12;:10;:12::i;:::-;46967:30;;47017:6;;;;;;;;;;;47016:7;47008:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47083:7;47067:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46710:3;47053:37;;47045:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47142:1;47132:7;:11;47124:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47190:7;47177:20;;:9;:20;;;47169:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47249:13;:11;:13::i;:::-;46663:3;47230:32;47227:438;;47327:7;47305:10;:19;47316:7;47305:19;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;46567:1;47286:48;;47278:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;47407:7;46567:1;47388:26;;47380:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47480:7;47457:10;:19;47468:7;47457:19;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;47227:438;;;47540:7;46612:2;47526:21;;47518:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47617:9;47608:5;;47598:7;:15;;;;:::i;:::-;:28;47590:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47227:438;47677:27;47687:7;47696;47677:9;:27::i;:::-;46956:756;46908:804;:::o;33493:279::-;33596:12;:10;:12::i;:::-;33584:24;;:8;:24;;;33580:54;;;33617:17;;;;;;;;;;;;;;33580:54;33692:8;33647:18;:32;33666:12;:10;:12::i;:::-;33647:32;;;;;;;;;;;;;;;:42;33680:8;33647:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33745:8;33716:48;;33731:12;:10;:12::i;:::-;33716:48;;;33755:8;33716:48;;;;;;:::i;:::-;;;;;;;;33493:279;;:::o;34571:369::-;34738:28;34748:4;34754:2;34758:7;34738:9;:28::i;:::-;34781:15;:2;:13;;;:15::i;:::-;:76;;;;;34801:56;34832:4;34838:2;34842:7;34851:5;34801:30;:56::i;:::-;34800:57;34781:76;34777:156;;;34881:40;;;;;;;;;;;;;;34777:156;34571:369;;;;:::o;46374:46::-;;;;;;;;;;;;;;;;;;;:::o;49005:362::-;49071:13;49105:17;49113:8;49105:7;:17::i;:::-;49097:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49190:1;49172:7;49166:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49248:7;49272:26;49289:8;49272:16;:26::i;:::-;49315:13;;;;;;;;;;;;;;;;;49215:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49166:193;49159:200;;49005:362;;;:::o;46427:89::-;46474:42;46427:89;:::o;46284:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47829:445::-;47954:4;48039:27;46474:42;48039:65;;48160:8;48119:49;;48127:13;:21;;;48149:5;48127:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48119:49;;;48115:93;;;48192:4;48185:11;;;;;48115:93;48227:39;48250:5;48257:8;48227:22;:39::i;:::-;48220:46;;;47829:445;;;;;:::o;3061:201::-;2383:12;:10;:12::i;:::-;2372:23;;:7;:5;:7::i;:::-;:23;;;2364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3170:1:::1;3150:22;;:8;:22;;;;3142:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3226:28;3245:8;3226:18;:28::i;:::-;3061:201:::0;:::o;46575:39::-;46612:2;46575:39;:::o;23710:157::-;23795:4;23834:25;23819:40;;;:11;:40;;;;23812:47;;23710:157;;;:::o;893:98::-;946:7;973:10;966:17;;893:98;:::o;35195:187::-;35252:4;35295:7;35276:15;:13;:15::i;:::-;:26;;:53;;;;;35316:13;;35306:7;:23;35276:53;:98;;;;;35347:11;:20;35359:7;35347:20;;;;;;;;;;;:27;;;;;;;;;;;;35346:28;35276:98;35269:105;;35195:187;;;:::o;43120:196::-;43262:2;43235:15;:24;43251:7;43235:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43300:7;43296:2;43280:28;;43289:5;43280:28;;;;;;;;;;;;43120:196;;;:::o;47720:101::-;47785:7;47812:1;47805:8;;47720:101;:::o;38622:2112::-;38737:35;38775:20;38787:7;38775:11;:20::i;:::-;38737:58;;38808:22;38850:13;:18;;;38834:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38885:50;38902:13;:18;;;38922:12;:10;:12::i;:::-;38885:16;:50::i;:::-;38834:101;:154;;;;38976:12;:10;:12::i;:::-;38952:36;;:20;38964:7;38952:11;:20::i;:::-;:36;;;38834:154;38808:181;;39007:17;39002:66;;39033:35;;;;;;;;;;;;;;39002:66;39105:4;39083:26;;:13;:18;;;:26;;;39079:67;;39118:28;;;;;;;;;;;;;;39079:67;39175:1;39161:16;;:2;:16;;;39157:52;;;39186:23;;;;;;;;;;;;;;39157:52;39222:43;39244:4;39250:2;39254:7;39263:1;39222:21;:43::i;:::-;39330:49;39347:1;39351:7;39360:13;:18;;;39330:8;:49::i;:::-;39705:1;39675:12;:18;39688:4;39675:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39749:1;39721:12;:16;39734:2;39721:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39795:2;39767:11;:20;39779:7;39767:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39857:15;39812:11;:20;39824:7;39812:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40125:19;40157:1;40147:7;:11;40125:33;;40218:1;40177:43;;:11;:24;40189:11;40177:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40173:445;;;40402:13;;40388:11;:27;40384:219;;;40472:13;:18;;;40440:11;:24;40452:11;40440:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40555:13;:28;;;40513:11;:24;40525:11;40513:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40384:219;40173:445;39650:979;40665:7;40661:2;40646:27;;40655:4;40646:27;;;;;;;;;;;;40684:42;40705:4;40711:2;40715:7;40724:1;40684:20;:42::i;:::-;38726:2008;;38622:2112;;;:::o;30353:1108::-;30414:21;;:::i;:::-;30448:12;30463:7;30448:22;;30531:4;30512:15;:13;:15::i;:::-;:23;;:47;;;;;30546:13;;30539:4;:20;30512:47;30508:886;;;30580:31;30614:11;:17;30626:4;30614:17;;;;;;;;;;;30580:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30655:9;:16;;;30650:729;;30726:1;30700:28;;:9;:14;;;:28;;;30696:101;;30764:9;30757:16;;;;;;30696:101;31099:261;31106:4;31099:261;;;31139:6;;;;;;;;31184:11;:17;31196:4;31184:17;;;;;;;;;;;31172:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31258:1;31232:28;;:9;:14;;;:28;;;31228:109;;31300:9;31293:16;;;;;;31228:109;31099:261;;;30650:729;30561:833;30508:886;31422:31;;;;;;;;;;;;;;30353:1108;;;;:::o;35390:104::-;35459:27;35469:2;35473:8;35459:27;;;;;;;;;;;;:9;:27::i;:::-;35390:104;;:::o;3422:191::-;3496:16;3515:6;;;;;;;;;;;3496:25;;3541:8;3532:6;;:17;;;;;;;;;;;;;;;;;;3596:8;3565:40;;3586:8;3565:40;;;;;;;;;;;;3485:128;3422:191;:::o;13483:326::-;13543:4;13800:1;13778:7;:19;;;:23;13771:30;;13483:326;;;:::o;43808:667::-;43971:4;44008:2;43992:36;;;44029:12;:10;:12::i;:::-;44043:4;44049:7;44058:5;43992:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43988:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44243:1;44226:6;:13;:18;44222:235;;;44272:40;;;;;;;;;;;;;;44222:235;44415:6;44409:13;44400:6;44396:2;44392:15;44385:38;43988:480;44121:45;;;44111:55;;;:6;:55;;;;44104:62;;;43808:667;;;;;;:::o;21103:723::-;21159:13;21389:1;21380:5;:10;21376:53;;;21407:10;;;;;;;;;;;;;;;;;;;;;21376:53;21439:12;21454:5;21439:20;;21470:14;21495:78;21510:1;21502:4;:9;21495:78;;21528:8;;;;;:::i;:::-;;;;21559:2;21551:10;;;;;:::i;:::-;;;21495:78;;;21583:19;21615:6;21605:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21583:39;;21633:154;21649:1;21640:5;:10;21633:154;;21677:1;21667:11;;;;;:::i;:::-;;;21744:2;21736:5;:10;;;;:::i;:::-;21723:2;:24;;;;:::i;:::-;21710:39;;21693:6;21700;21693:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21773:2;21764:11;;;;;:::i;:::-;;;21633:154;;;21811:6;21797:21;;;;;21103:723;;;;:::o;33843:164::-;33940:4;33964:18;:25;33983:5;33964:25;;;;;;;;;;;;;;;:35;33990:8;33964:35;;;;;;;;;;;;;;;;;;;;;;;;;33957:42;;33843:164;;;;:::o;45123:159::-;;;;;:::o;45941:158::-;;;;;:::o;35857:163::-;35980:32;35986:2;35990:8;36000:5;36007:4;35980:5;:32::i;:::-;35857:163;;;:::o;36279:2089::-;36418:20;36441:13;;36418:36;;36483:1;36469:16;;:2;:16;;;36465:48;;;36494:19;;;;;;;;;;;;;;36465:48;36540:1;36528:8;:13;36524:44;;;36550:18;;;;;;;;;;;;;;36524:44;36581:61;36611:1;36615:2;36619:12;36633:8;36581:21;:61::i;:::-;36708:42;36702:48;;:2;:48;;;:113;;;;36773:42;36767:48;;:2;:48;;;36702:113;36685:272;;;36841:15;36876:6;36885:1;36876:10;;36871:75;36892:4;36888:1;:8;36871:75;;;36921:9;;;;;:::i;:::-;;;;36898:3;;;;;:::i;:::-;;;;36871:75;;;;36826:131;36685:272;37268:8;37233:12;:16;37246:2;37233:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37332:8;37292:12;:16;37305:2;37292:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37391:2;37358:11;:25;37370:12;37358:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37458:15;37408:11;:25;37420:12;37408:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37491:20;37514:12;37491:35;;37541:11;37570:8;37555:12;:23;37541:37;;37599:4;:23;;;;;37607:15;:2;:13;;;:15::i;:::-;37599:23;37595:641;;;37643:314;37699:12;37695:2;37674:38;;37691:1;37674:38;;;;;;;;;;;;37740:69;37779:1;37783:2;37787:14;;;;;;37803:5;37740:30;:69::i;:::-;37735:174;;37845:40;;;;;;;;;;;;;;37735:174;37952:3;37936:12;:19;;37643:314;;38038:12;38021:13;;:29;38017:43;;38052:8;;;38017:43;37595:641;;;38101:120;38157:14;;;;;;38153:2;38132:40;;38149:1;38132:40;;;;;;;;;;;;38216:3;38200:12;:19;;38101:120;;37595:641;38266:12;38250:13;:28;;;;37208:1082;;38300:60;38329:1;38333:2;38337:12;38351:8;38300:20;:60::i;:::-;36407:1961;36279:2089;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:398::-;14220:3;14241:83;14322:1;14317:3;14241:83;:::i;:::-;14234:90;;14333:93;14422:3;14333:93;:::i;:::-;14451:1;14446:3;14442:11;14435:18;;14061:398;;;:::o;14465:366::-;14607:3;14628:67;14692:2;14687:3;14628:67;:::i;:::-;14621:74;;14704:93;14793:3;14704:93;:::i;:::-;14822:2;14817:3;14813:12;14806:19;;14465:366;;;:::o;14837:::-;14979:3;15000:67;15064:2;15059:3;15000:67;:::i;:::-;14993:74;;15076:93;15165:3;15076:93;:::i;:::-;15194:2;15189:3;15185:12;15178:19;;14837:366;;;:::o;15209:118::-;15296:24;15314:5;15296:24;:::i;:::-;15291:3;15284:37;15209:118;;:::o;15333:589::-;15558:3;15580:92;15668:3;15659:6;15580:92;:::i;:::-;15573:99;;15689:95;15780:3;15771:6;15689:95;:::i;:::-;15682:102;;15801:95;15892:3;15883:6;15801:95;:::i;:::-;15794:102;;15913:3;15906:10;;15333:589;;;;;;:::o;15928:379::-;16112:3;16134:147;16277:3;16134:147;:::i;:::-;16127:154;;16298:3;16291:10;;15928:379;;;:::o;16313:222::-;16406:4;16444:2;16433:9;16429:18;16421:26;;16457:71;16525:1;16514:9;16510:17;16501:6;16457:71;:::i;:::-;16313:222;;;;:::o;16541:640::-;16736:4;16774:3;16763:9;16759:19;16751:27;;16788:71;16856:1;16845:9;16841:17;16832:6;16788:71;:::i;:::-;16869:72;16937:2;16926:9;16922:18;16913:6;16869:72;:::i;:::-;16951;17019:2;17008:9;17004:18;16995:6;16951:72;:::i;:::-;17070:9;17064:4;17060:20;17055:2;17044:9;17040:18;17033:48;17098:76;17169:4;17160:6;17098:76;:::i;:::-;17090:84;;16541:640;;;;;;;:::o;17187:210::-;17274:4;17312:2;17301:9;17297:18;17289:26;;17325:65;17387:1;17376:9;17372:17;17363:6;17325:65;:::i;:::-;17187:210;;;;:::o;17403:313::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:78;17704:4;17695:6;17631:78;:::i;:::-;17623:86;;17403:313;;;;:::o;17722:419::-;17888:4;17926:2;17915:9;17911:18;17903:26;;17975:9;17969:4;17965:20;17961:1;17950:9;17946:17;17939:47;18003:131;18129:4;18003:131;:::i;:::-;17995:139;;17722:419;;;:::o;18147:::-;18313:4;18351:2;18340:9;18336:18;18328:26;;18400:9;18394:4;18390:20;18386:1;18375:9;18371:17;18364:47;18428:131;18554:4;18428:131;:::i;:::-;18420:139;;18147:419;;;:::o;18572:::-;18738:4;18776:2;18765:9;18761:18;18753:26;;18825:9;18819:4;18815:20;18811:1;18800:9;18796:17;18789:47;18853:131;18979:4;18853:131;:::i;:::-;18845:139;;18572:419;;;:::o;18997:::-;19163:4;19201:2;19190:9;19186:18;19178:26;;19250:9;19244:4;19240:20;19236:1;19225:9;19221:17;19214:47;19278:131;19404:4;19278:131;:::i;:::-;19270:139;;18997:419;;;:::o;19422:::-;19588:4;19626:2;19615:9;19611:18;19603:26;;19675:9;19669:4;19665:20;19661:1;19650:9;19646:17;19639:47;19703:131;19829:4;19703:131;:::i;:::-;19695:139;;19422:419;;;:::o;19847:::-;20013:4;20051:2;20040:9;20036:18;20028:26;;20100:9;20094:4;20090:20;20086:1;20075:9;20071:17;20064:47;20128:131;20254:4;20128:131;:::i;:::-;20120:139;;19847:419;;;:::o;20272:::-;20438:4;20476:2;20465:9;20461:18;20453:26;;20525:9;20519:4;20515:20;20511:1;20500:9;20496:17;20489:47;20553:131;20679:4;20553:131;:::i;:::-;20545:139;;20272:419;;;:::o;20697:::-;20863:4;20901:2;20890:9;20886:18;20878:26;;20950:9;20944:4;20940:20;20936:1;20925:9;20921:17;20914:47;20978:131;21104:4;20978:131;:::i;:::-;20970:139;;20697:419;;;:::o;21122:::-;21288:4;21326:2;21315:9;21311:18;21303:26;;21375:9;21369:4;21365:20;21361:1;21350:9;21346:17;21339:47;21403:131;21529:4;21403:131;:::i;:::-;21395:139;;21122:419;;;:::o;21547:::-;21713:4;21751:2;21740:9;21736:18;21728:26;;21800:9;21794:4;21790:20;21786:1;21775:9;21771:17;21764:47;21828:131;21954:4;21828:131;:::i;:::-;21820:139;;21547:419;;;:::o;21972:::-;22138:4;22176:2;22165:9;22161:18;22153:26;;22225:9;22219:4;22215:20;22211:1;22200:9;22196:17;22189:47;22253:131;22379:4;22253:131;:::i;:::-;22245:139;;21972:419;;;:::o;22397:::-;22563:4;22601:2;22590:9;22586:18;22578:26;;22650:9;22644:4;22640:20;22636:1;22625:9;22621:17;22614:47;22678:131;22804:4;22678:131;:::i;:::-;22670:139;;22397:419;;;:::o;22822:222::-;22915:4;22953:2;22942:9;22938:18;22930:26;;22966:71;23034:1;23023:9;23019:17;23010:6;22966:71;:::i;:::-;22822:222;;;;:::o;23050:129::-;23084:6;23111:20;;:::i;:::-;23101:30;;23140:33;23168:4;23160:6;23140:33;:::i;:::-;23050:129;;;:::o;23185:75::-;23218:6;23251:2;23245:9;23235:19;;23185:75;:::o;23266:307::-;23327:4;23417:18;23409:6;23406:30;23403:56;;;23439:18;;:::i;:::-;23403:56;23477:29;23499:6;23477:29;:::i;:::-;23469:37;;23561:4;23555;23551:15;23543:23;;23266:307;;;:::o;23579:308::-;23641:4;23731:18;23723:6;23720:30;23717:56;;;23753:18;;:::i;:::-;23717:56;23791:29;23813:6;23791:29;:::i;:::-;23783:37;;23875:4;23869;23865:15;23857:23;;23579:308;;;:::o;23893:141::-;23942:4;23965:3;23957:11;;23988:3;23985:1;23978:14;24022:4;24019:1;24009:18;24001:26;;23893:141;;;:::o;24040:98::-;24091:6;24125:5;24119:12;24109:22;;24040:98;;;:::o;24144:99::-;24196:6;24230:5;24224:12;24214:22;;24144:99;;;:::o;24249:168::-;24332:11;24366:6;24361:3;24354:19;24406:4;24401:3;24397:14;24382:29;;24249:168;;;;:::o;24423:147::-;24524:11;24561:3;24546:18;;24423:147;;;;:::o;24576:169::-;24660:11;24694:6;24689:3;24682:19;24734:4;24729:3;24725:14;24710:29;;24576:169;;;;:::o;24751:148::-;24853:11;24890:3;24875:18;;24751:148;;;;:::o;24905:305::-;24945:3;24964:20;24982:1;24964:20;:::i;:::-;24959:25;;24998:20;25016:1;24998:20;:::i;:::-;24993:25;;25152:1;25084:66;25080:74;25077:1;25074:81;25071:107;;;25158:18;;:::i;:::-;25071:107;25202:1;25199;25195:9;25188:16;;24905:305;;;;:::o;25216:185::-;25256:1;25273:20;25291:1;25273:20;:::i;:::-;25268:25;;25307:20;25325:1;25307:20;:::i;:::-;25302:25;;25346:1;25336:35;;25351:18;;:::i;:::-;25336:35;25393:1;25390;25386:9;25381:14;;25216:185;;;;:::o;25407:348::-;25447:7;25470:20;25488:1;25470:20;:::i;:::-;25465:25;;25504:20;25522:1;25504:20;:::i;:::-;25499:25;;25692:1;25624:66;25620:74;25617:1;25614:81;25609:1;25602:9;25595:17;25591:105;25588:131;;;25699:18;;:::i;:::-;25588:131;25747:1;25744;25740:9;25729:20;;25407:348;;;;:::o;25761:191::-;25801:4;25821:20;25839:1;25821:20;:::i;:::-;25816:25;;25855:20;25873:1;25855:20;:::i;:::-;25850:25;;25894:1;25891;25888:8;25885:34;;;25899:18;;:::i;:::-;25885:34;25944:1;25941;25937:9;25929:17;;25761:191;;;;:::o;25958:96::-;25995:7;26024:24;26042:5;26024:24;:::i;:::-;26013:35;;25958:96;;;:::o;26060:90::-;26094:7;26137:5;26130:13;26123:21;26112:32;;26060:90;;;:::o;26156:149::-;26192:7;26232:66;26225:5;26221:78;26210:89;;26156:149;;;:::o;26311:125::-;26377:7;26406:24;26424:5;26406:24;:::i;:::-;26395:35;;26311:125;;;:::o;26442:126::-;26479:7;26519:42;26512:5;26508:54;26497:65;;26442:126;;;:::o;26574:77::-;26611:7;26640:5;26629:16;;26574:77;;;:::o;26657:154::-;26741:6;26736:3;26731;26718:30;26803:1;26794:6;26789:3;26785:16;26778:27;26657:154;;;:::o;26817:307::-;26885:1;26895:113;26909:6;26906:1;26903:13;26895:113;;;26994:1;26989:3;26985:11;26979:18;26975:1;26970:3;26966:11;26959:39;26931:2;26928:1;26924:10;26919:15;;26895:113;;;27026:6;27023:1;27020:13;27017:101;;;27106:1;27097:6;27092:3;27088:16;27081:27;27017:101;26866:258;26817:307;;;:::o;27130:320::-;27174:6;27211:1;27205:4;27201:12;27191:22;;27258:1;27252:4;27248:12;27279:18;27269:81;;27335:4;27327:6;27323:17;27313:27;;27269:81;27397:2;27389:6;27386:14;27366:18;27363:38;27360:84;;;27416:18;;:::i;:::-;27360:84;27181:269;27130:320;;;:::o;27456:281::-;27539:27;27561:4;27539:27;:::i;:::-;27531:6;27527:40;27669:6;27657:10;27654:22;27633:18;27621:10;27618:34;27615:62;27612:88;;;27680:18;;:::i;:::-;27612:88;27720:10;27716:2;27709:22;27499:238;27456:281;;:::o;27743:233::-;27782:3;27805:24;27823:5;27805:24;:::i;:::-;27796:33;;27851:66;27844:5;27841:77;27838:103;;;27921:18;;:::i;:::-;27838:103;27968:1;27961:5;27957:13;27950:20;;27743:233;;;:::o;27982:176::-;28014:1;28031:20;28049:1;28031:20;:::i;:::-;28026:25;;28065:20;28083:1;28065:20;:::i;:::-;28060:25;;28104:1;28094:35;;28109:18;;:::i;:::-;28094:35;28150:1;28147;28143:9;28138:14;;27982:176;;;;:::o;28164:180::-;28212:77;28209:1;28202:88;28309:4;28306:1;28299:15;28333:4;28330:1;28323:15;28350:180;28398:77;28395:1;28388:88;28495:4;28492:1;28485:15;28519:4;28516:1;28509:15;28536:180;28584:77;28581:1;28574:88;28681:4;28678:1;28671:15;28705:4;28702:1;28695:15;28722:180;28770:77;28767:1;28760:88;28867:4;28864:1;28857:15;28891:4;28888:1;28881:15;28908:180;28956:77;28953:1;28946:88;29053:4;29050:1;29043:15;29077:4;29074:1;29067:15;29094:117;29203:1;29200;29193:12;29217:117;29326:1;29323;29316:12;29340:117;29449:1;29446;29439:12;29463:117;29572:1;29569;29562:12;29586:102;29627:6;29678:2;29674:7;29669:2;29662:5;29658:14;29654:28;29644:38;;29586:102;;;:::o;29694:156::-;29834:8;29830:1;29822:6;29818:14;29811:32;29694:156;:::o;29856:225::-;29996:34;29992:1;29984:6;29980:14;29973:58;30065:8;30060:2;30052:6;30048:15;30041:33;29856:225;:::o;30087:160::-;30227:12;30223:1;30215:6;30211:14;30204:36;30087:160;:::o;30253:172::-;30393:24;30389:1;30381:6;30377:14;30370:48;30253:172;:::o;30431:176::-;30571:28;30567:1;30559:6;30555:14;30548:52;30431:176;:::o;30613:172::-;30753:24;30749:1;30741:6;30737:14;30730:48;30613:172;:::o;30791:168::-;30931:20;30927:1;30919:6;30915:14;30908:44;30791:168;:::o;30965:171::-;31105:23;31101:1;31093:6;31089:14;31082:47;30965:171;:::o;31142:182::-;31282:34;31278:1;31270:6;31266:14;31259:58;31142:182;:::o;31330:172::-;31470:24;31466:1;31458:6;31454:14;31447:48;31330:172;:::o;31508:114::-;;:::o;31628:164::-;31768:16;31764:1;31756:6;31752:14;31745:40;31628:164;:::o;31798:162::-;31938:14;31934:1;31926:6;31922:14;31915:38;31798:162;:::o;31966:122::-;32039:24;32057:5;32039:24;:::i;:::-;32032:5;32029:35;32019:63;;32078:1;32075;32068:12;32019:63;31966:122;:::o;32094:116::-;32164:21;32179:5;32164:21;:::i;:::-;32157:5;32154:32;32144:60;;32200:1;32197;32190:12;32144:60;32094:116;:::o;32216:120::-;32288:23;32305:5;32288:23;:::i;:::-;32281:5;32278:34;32268:62;;32326:1;32323;32316:12;32268:62;32216:120;:::o;32342:180::-;32444:53;32491:5;32444:53;:::i;:::-;32437:5;32434:64;32424:92;;32512:1;32509;32502:12;32424:92;32342:180;:::o;32528:122::-;32601:24;32619:5;32601:24;:::i;:::-;32594:5;32591:35;32581:63;;32640:1;32637;32630:12;32581:63;32528:122;:::o

Swarm Source

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