ETH Price: $2,365.71 (+1.62%)

Token

PiratesParty (PP)
 

Overview

Max Total Supply

244 PP

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PP
0x936aaa90060d9aef9faae07f2bfda031e0bf729d
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:
PiratesParty

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @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/Context.sol


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}
// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) {
        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) {
        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) {
        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 {
        _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) if (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) if(!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 virtual 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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

            if (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 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) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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: github/niclin/nic_meta/contracts/nic_meta_nft.sol



pragma solidity ^0.8.7;



contract PiratesParty is ERC721A, Ownable {
    uint public constant MAX_PER_WALLET_FREE = 1;
    uint public constant MAX_PER_TX = 10;
    uint public MAX_SUPPLY = 5000;
    uint public price = 0.002 ether;
    string public baseURI;
    string public constant baseExtension = ".json";
    string public notRevealedUri = "ipfs://QmRi4ePsyvVTNmzyyR92JjwNprQ6dKk8ya9xDJWs67Sd3J";

    mapping(uint256 => string) private _tokenURIs;

    bool public _revealed = false;
    bool public paused = false;
    bool public _live = false;
    

    constructor() ERC721A("PiratesParty", "PP") {}
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
     function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    

    function Mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Sale is Not active");
        require(_live, "Sale is Not active");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Over Maxsupply");
        require(_amount > 0, "OHNO");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Over Max per paid tx");
        
        if(_numberMinted(msg.sender) >= MAX_PER_WALLET_FREE) {
            require(msg.value >= _amount * price, "Invalid funds provided");
        } else{
            uint count = _numberMinted(msg.sender) + _amount;
            if(count > MAX_PER_WALLET_FREE){
                require(msg.value >= (count - MAX_PER_WALLET_FREE) * price , "Insufficient funds");
            } 
        }
        _safeMint(_caller, _amount);
    }

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

    

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

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

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

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

    function live(bool _state) external onlyOwner {
        _live = _state;
    }

    function setCost(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function tokenURI(uint256 _tokenId) 
    public 
    view 
    override 
    returns (string memory) 
    {
        require(
            _exists(_tokenId),
             "Token does not exist."
             );

            if (_revealed == false) {
            return notRevealedUri;
          }  

        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension

               

            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET_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":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"_state","type":"bool"}],"name":"live","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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"}]

608060405261138860095566071afd498d0000600a556040518060600160405280603581526020016200413d60359139600c90805190602001906200004692919062000259565b506000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff021916908315150217905550348015620000a557600080fd5b506040518060400160405280600c81526020017f50697261746573506172747900000000000000000000000000000000000000008152506040518060400160405280600281526020017f505000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012a92919062000259565b5080600390805190602001906200014392919062000259565b50620001546200018260201b60201c565b60008190555050506200017c620001706200018b60201b60201c565b6200019360201b60201c565b6200036e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002679062000309565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600060028204905060018216806200032257607f821691505b602082108114156200033957620003386200033f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613dbf806200037e6000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063e985e9c514610729578063f2c4ce1e14610766578063f2fde38b1461078f578063f43a22dc146107b857610204565b8063a035b1fe14610644578063a22cb4651461066f578063b88d4fde14610698578063c6682862146106c157610204565b806370a08231116100e757806370a0823114610583578063715018a6146105c05780638129fc1c146105d75780638da5cb5b146105ee57806395d89b411461061957610204565b80635c975abb146104c55780636352211e146104f05780636c0360eb1461052d5780636ebeac851461055857610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e146103f657806344a0d68a1461041f57806355f804b31461044857806356e0ec72146104715780635c6e7f601461049c57610204565b806332cb6b0c1461037257806334bb95dc1461039d5780633b84d9c6146103c85780633ccfd60b146103df57610204565b8063081c8c44116101d7578063081c8c44146102ca578063095ea7b3146102f557806318160ddd1461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806306fdde03146102465780630788370314610271578063081812fc1461028d575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613077565b6107e3565b60405161023d91906134e7565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b6040516102689190613502565b60405180910390f35b61028b6004803603810190610286919061311a565b610957565b005b34801561029957600080fd5b506102b460048036038101906102af919061311a565b610c41565b6040516102c19190613480565b60405180910390f35b3480156102d657600080fd5b506102df610cbd565b6040516102ec9190613502565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061300a565b610d4b565b005b34801561032a57600080fd5b50610333610e50565b6040516103409190613684565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612ef4565b610e67565b005b34801561037e57600080fd5b50610387610e77565b6040516103949190613684565b60405180910390f35b3480156103a957600080fd5b506103b2610e7d565b6040516103bf9190613684565b60405180910390f35b3480156103d457600080fd5b506103dd610e82565b005b3480156103eb57600080fd5b506103f4610f2a565b005b34801561040257600080fd5b5061041d60048036038101906104189190612ef4565b611062565b005b34801561042b57600080fd5b506104466004803603810190610441919061311a565b611082565b005b34801561045457600080fd5b5061046f600480360381019061046a91906130d1565b611108565b005b34801561047d57600080fd5b5061048661119e565b60405161049391906134e7565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061304a565b6111b1565b005b3480156104d157600080fd5b506104da61124a565b6040516104e791906134e7565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061311a565b61125d565b6040516105249190613480565b60405180910390f35b34801561053957600080fd5b50610542611273565b60405161054f9190613502565b60405180910390f35b34801561056457600080fd5b5061056d611301565b60405161057a91906134e7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612e87565b611314565b6040516105b79190613684565b60405180910390f35b3480156105cc57600080fd5b506105d56113e4565b005b3480156105e357600080fd5b506105ec61146c565b005b3480156105fa57600080fd5b506106036114fc565b6040516106109190613480565b60405180910390f35b34801561062557600080fd5b5061062e611526565b60405161063b9190613502565b60405180910390f35b34801561065057600080fd5b506106596115b8565b6040516106669190613684565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612fca565b6115be565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612f47565b611736565b005b3480156106cd57600080fd5b506106d66117ae565b6040516106e39190613502565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e919061311a565b6117e7565b6040516107209190613502565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612eb4565b611975565b60405161075d91906134e7565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906130d1565b611a09565b005b34801561079b57600080fd5b506107b660048036038101906107b19190612e87565b611a9f565b005b3480156107c457600080fd5b506107cd611b97565b6040516107da9190613684565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611b9c565b5b9050919050565b6060600280546108d490613954565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613954565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610961611c06565b9050600e60019054906101000a900460ff16156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90613584565b60405180910390fd5b600e60029054906101000a900460ff16610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613584565b60405180910390fd5b81610a0b610e50565b610a159190613789565b6009541015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613564565b60405180910390fd5b60008211610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390613544565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613664565b60405180910390fd5b81600a1015610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590613624565b60405180910390fd5b6001610b5933611c0e565b10610bb357600a5482610b6c9190613810565b341015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613604565b60405180910390fd5b610c33565b600082610bbf33611c0e565b610bc99190613789565b90506001811115610c3157600a54600182610be4919061386a565b610bee9190613810565b341015610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906135a4565b60405180910390fd5b5b505b610c3d8183611c78565b5050565b6000610c4c82611c96565b610c82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610cca90613954565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf690613954565b8015610d435780601f10610d1857610100808354040283529160200191610d43565b820191906000526020600020905b815481529060010190602001808311610d2657829003601f168201915b505050505081565b6000610d568261125d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ddd611c06565b73ffffffffffffffffffffffffffffffffffffffff1614610e4057610e0981610e04611c06565b611975565b610e3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e4b838383611ce4565b505050565b6000610e5a611d96565b6001546000540303905090565b610e72838383611d9f565b505050565b60095481565b600181565b610e8a611c06565b73ffffffffffffffffffffffffffffffffffffffff16610ea86114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906135e4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610f32611c06565b73ffffffffffffffffffffffffffffffffffffffff16610f506114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906135e4565b60405180910390fd5b60004790506000610fb5611c06565b73ffffffffffffffffffffffffffffffffffffffff1682604051610fd89061346b565b60006040518083038185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b505090508061105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613644565b60405180910390fd5b5050565b61107d83838360405180602001604052806000815250611736565b505050565b61108a611c06565b73ffffffffffffffffffffffffffffffffffffffff166110a86114fc565b73ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f5906135e4565b60405180910390fd5b80600a8190555050565b611110611c06565b73ffffffffffffffffffffffffffffffffffffffff1661112e6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906135e4565b60405180910390fd5b80600b908051906020019061119a929190612c58565b5050565b600e60029054906101000a900460ff1681565b6111b9611c06565b73ffffffffffffffffffffffffffffffffffffffff166111d76114fc565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906135e4565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b600061126882612255565b600001519050919050565b600b805461128090613954565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac90613954565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113ec611c06565b73ffffffffffffffffffffffffffffffffffffffff1661140a6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906135e4565b60405180910390fd5b61146a60006124e0565b565b611474611c06565b73ffffffffffffffffffffffffffffffffffffffff166114926114fc565b73ffffffffffffffffffffffffffffffffffffffff16146114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906135e4565b60405180910390fd5b6114fa6114f3611c06565b6001611c78565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153590613954565b80601f016020809104026020016040519081016040528092919081815260200182805461156190613954565b80156115ae5780601f10611583576101008083540402835291602001916115ae565b820191906000526020600020905b81548152906001019060200180831161159157829003601f168201915b5050505050905090565b600a5481565b6115c6611c06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611638611c06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e5611c06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172a91906134e7565b60405180910390a35050565b611741848484611d9f565b6117608373ffffffffffffffffffffffffffffffffffffffff166125a6565b156117a857611771848484846125c9565b6117a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117f282611c96565b611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906135c4565b60405180910390fd5b60001515600e60009054906101000a900460ff16151514156118df57600c805461185a90613954565b80601f016020809104026020016040519081016040528092919081815260200182805461188690613954565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b50505050509050611970565b6000600b80546118ee90613954565b90501161190a576040518060200160405280600081525061196d565b600b61191583612729565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161195d9392919061343a565b6040516020818303038152906040525b90505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a11611c06565b73ffffffffffffffffffffffffffffffffffffffff16611a2f6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906135e4565b60405180910390fd5b80600c9080519060200190611a9b929190612c58565b5050565b611aa7611c06565b73ffffffffffffffffffffffffffffffffffffffff16611ac56114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613524565b60405180910390fd5b611b94816124e0565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c9282826040518060200160405280600081525061288a565b5050565b600081611ca1611d96565b11158015611cb0575060005482105b8015611cdd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611daa82612255565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e15576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e36611c06565b73ffffffffffffffffffffffffffffffffffffffff161480611e655750611e6485611e5f611c06565b611975565b5b80611eaa5750611e73611c06565b73ffffffffffffffffffffffffffffffffffffffff16611e9284610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ee3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f578585856001612c4c565b611f6360008487611ce4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121e35760005482146121e257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224e8585856001612c52565b5050505050565b61225d612cde565b60008290508061226b611d96565b116124a9576000548110156124a8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238a5780925050506124db565b5b6001156124a557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124a05780925050506124db565b61238b565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ef611c06565b8786866040518563ffffffff1660e01b8152600401612611949392919061349b565b602060405180830381600087803b15801561262b57600080fd5b505af192505050801561265c57506040513d601f19601f8201168201806040525081019061265991906130a4565b60015b6126d6573d806000811461268c576040519150601f19603f3d011682016040523d82523d6000602084013e612691565b606091505b506000815114156126ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612771576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612885565b600082905060005b600082146127a357808061278c906139b7565b915050600a8261279c91906137df565b9150612779565b60008167ffffffffffffffff8111156127bf576127be613aed565b5b6040519080825280601f01601f1916602001820160405280156127f15781602001600182028036833780820191505090505b5090505b6000851461287e5760018261280a919061386a565b9150600a856128199190613a00565b60306128259190613789565b60f81b81838151811061283b5761283a613abe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287791906137df565b94506127f5565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612932576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61293f6000858386612c4c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612b008673ffffffffffffffffffffffffffffffffffffffff166125a6565b15612bc5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7560008784806001019550876125c9565b612bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b06578260005414612bc057600080fd5b612c30565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bc6575b816000819055505050612c466000858386612c52565b50505050565b50505050565b50505050565b828054612c6490613954565b90600052602060002090601f016020900481019282612c865760008555612ccd565b82601f10612c9f57805160ff1916838001178555612ccd565b82800160010185558215612ccd579182015b82811115612ccc578251825591602001919060010190612cb1565b5b509050612cda9190612d21565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d3a576000816000905550600101612d22565b5090565b6000612d51612d4c846136c4565b61369f565b905082815260208101848484011115612d6d57612d6c613b21565b5b612d78848285613912565b509392505050565b6000612d93612d8e846136f5565b61369f565b905082815260208101848484011115612daf57612dae613b21565b5b612dba848285613912565b509392505050565b600081359050612dd181613d2d565b92915050565b600081359050612de681613d44565b92915050565b600081359050612dfb81613d5b565b92915050565b600081519050612e1081613d5b565b92915050565b600082601f830112612e2b57612e2a613b1c565b5b8135612e3b848260208601612d3e565b91505092915050565b600082601f830112612e5957612e58613b1c565b5b8135612e69848260208601612d80565b91505092915050565b600081359050612e8181613d72565b92915050565b600060208284031215612e9d57612e9c613b2b565b5b6000612eab84828501612dc2565b91505092915050565b60008060408385031215612ecb57612eca613b2b565b5b6000612ed985828601612dc2565b9250506020612eea85828601612dc2565b9150509250929050565b600080600060608486031215612f0d57612f0c613b2b565b5b6000612f1b86828701612dc2565b9350506020612f2c86828701612dc2565b9250506040612f3d86828701612e72565b9150509250925092565b60008060008060808587031215612f6157612f60613b2b565b5b6000612f6f87828801612dc2565b9450506020612f8087828801612dc2565b9350506040612f9187828801612e72565b925050606085013567ffffffffffffffff811115612fb257612fb1613b26565b5b612fbe87828801612e16565b91505092959194509250565b60008060408385031215612fe157612fe0613b2b565b5b6000612fef85828601612dc2565b925050602061300085828601612dd7565b9150509250929050565b6000806040838503121561302157613020613b2b565b5b600061302f85828601612dc2565b925050602061304085828601612e72565b9150509250929050565b6000602082840312156130605761305f613b2b565b5b600061306e84828501612dd7565b91505092915050565b60006020828403121561308d5761308c613b2b565b5b600061309b84828501612dec565b91505092915050565b6000602082840312156130ba576130b9613b2b565b5b60006130c884828501612e01565b91505092915050565b6000602082840312156130e7576130e6613b2b565b5b600082013567ffffffffffffffff81111561310557613104613b26565b5b61311184828501612e44565b91505092915050565b6000602082840312156131305761312f613b2b565b5b600061313e84828501612e72565b91505092915050565b6131508161389e565b82525050565b61315f816138b0565b82525050565b60006131708261373b565b61317a8185613751565b935061318a818560208601613921565b61319381613b30565b840191505092915050565b60006131a982613746565b6131b3818561376d565b93506131c3818560208601613921565b6131cc81613b30565b840191505092915050565b60006131e282613746565b6131ec818561377e565b93506131fc818560208601613921565b80840191505092915050565b6000815461321581613954565b61321f818661377e565b9450600182166000811461323a576001811461324b5761327e565b60ff1983168652818601935061327e565b61325485613726565b60005b8381101561327657815481890152600182019150602081019050613257565b838801955050505b50505092915050565b600061329460268361376d565b915061329f82613b41565b604082019050919050565b60006132b760048361376d565b91506132c282613b90565b602082019050919050565b60006132da600e8361376d565b91506132e582613bb9565b602082019050919050565b60006132fd60128361376d565b915061330882613be2565b602082019050919050565b600061332060128361376d565b915061332b82613c0b565b602082019050919050565b600061334360158361376d565b915061334e82613c34565b602082019050919050565b600061336660208361376d565b915061337182613c5d565b602082019050919050565b600061338960168361376d565b915061339482613c86565b602082019050919050565b60006133ac600083613762565b91506133b782613caf565b600082019050919050565b60006133cf60148361376d565b91506133da82613cb2565b602082019050919050565b60006133f2600e8361376d565b91506133fd82613cdb565b602082019050919050565b6000613415600c8361376d565b915061342082613d04565b602082019050919050565b61343481613908565b82525050565b60006134468286613208565b915061345282856131d7565b915061345e82846131d7565b9150819050949350505050565b60006134768261339f565b9150819050919050565b60006020820190506134956000830184613147565b92915050565b60006080820190506134b06000830187613147565b6134bd6020830186613147565b6134ca604083018561342b565b81810360608301526134dc8184613165565b905095945050505050565b60006020820190506134fc6000830184613156565b92915050565b6000602082019050818103600083015261351c818461319e565b905092915050565b6000602082019050818103600083015261353d81613287565b9050919050565b6000602082019050818103600083015261355d816132aa565b9050919050565b6000602082019050818103600083015261357d816132cd565b9050919050565b6000602082019050818103600083015261359d816132f0565b9050919050565b600060208201905081810360008301526135bd81613313565b9050919050565b600060208201905081810360008301526135dd81613336565b9050919050565b600060208201905081810360008301526135fd81613359565b9050919050565b6000602082019050818103600083015261361d8161337c565b9050919050565b6000602082019050818103600083015261363d816133c2565b9050919050565b6000602082019050818103600083015261365d816133e5565b9050919050565b6000602082019050818103600083015261367d81613408565b9050919050565b6000602082019050613699600083018461342b565b92915050565b60006136a96136ba565b90506136b58282613986565b919050565b6000604051905090565b600067ffffffffffffffff8211156136df576136de613aed565b5b6136e882613b30565b9050602081019050919050565b600067ffffffffffffffff8211156137105761370f613aed565b5b61371982613b30565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379482613908565b915061379f83613908565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d4576137d3613a31565b5b828201905092915050565b60006137ea82613908565b91506137f583613908565b92508261380557613804613a60565b5b828204905092915050565b600061381b82613908565b915061382683613908565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385f5761385e613a31565b5b828202905092915050565b600061387582613908565b915061388083613908565b92508282101561389357613892613a31565b5b828203905092915050565b60006138a9826138e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561393f578082015181840152602081019050613924565b8381111561394e576000848401525b50505050565b6000600282049050600182168061396c57607f821691505b602082108114156139805761397f613a8f565b5b50919050565b61398f82613b30565b810181811067ffffffffffffffff821117156139ae576139ad613aed565b5b80604052505050565b60006139c282613908565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f5576139f4613a31565b5b600182019050919050565b6000613a0b82613908565b9150613a1683613908565b925082613a2657613a25613a60565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f484e4f00000000000000000000000000000000000000000000000000000000600082015250565b7f4f766572204d6178737570706c79000000000000000000000000000000000000600082015250565b7f53616c65206973204e6f74206163746976650000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4f766572204d6178207065722070616964207478000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613d368161389e565b8114613d4157600080fd5b50565b613d4d816138b0565b8114613d5857600080fd5b50565b613d64816138bc565b8114613d6f57600080fd5b50565b613d7b81613908565b8114613d8657600080fd5b5056fea2646970667358221220c5687ed66899ddefb4d84dbff97417ace066269a4370cbfcb59102eb819f8f3d64736f6c63430008070033697066733a2f2f516d526934655073797656544e6d7a79795239324a6a774e70725136644b6b3879613978444a577336375364334a

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635c975abb11610118578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106ec578063e985e9c514610729578063f2c4ce1e14610766578063f2fde38b1461078f578063f43a22dc146107b857610204565b8063a035b1fe14610644578063a22cb4651461066f578063b88d4fde14610698578063c6682862146106c157610204565b806370a08231116100e757806370a0823114610583578063715018a6146105c05780638129fc1c146105d75780638da5cb5b146105ee57806395d89b411461061957610204565b80635c975abb146104c55780636352211e146104f05780636c0360eb1461052d5780636ebeac851461055857610204565b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e146103f657806344a0d68a1461041f57806355f804b31461044857806356e0ec72146104715780635c6e7f601461049c57610204565b806332cb6b0c1461037257806334bb95dc1461039d5780633b84d9c6146103c85780633ccfd60b146103df57610204565b8063081c8c44116101d7578063081c8c44146102ca578063095ea7b3146102f557806318160ddd1461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806306fdde03146102465780630788370314610271578063081812fc1461028d575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613077565b6107e3565b60405161023d91906134e7565b60405180910390f35b34801561025257600080fd5b5061025b6108c5565b6040516102689190613502565b60405180910390f35b61028b6004803603810190610286919061311a565b610957565b005b34801561029957600080fd5b506102b460048036038101906102af919061311a565b610c41565b6040516102c19190613480565b60405180910390f35b3480156102d657600080fd5b506102df610cbd565b6040516102ec9190613502565b60405180910390f35b34801561030157600080fd5b5061031c6004803603810190610317919061300a565b610d4b565b005b34801561032a57600080fd5b50610333610e50565b6040516103409190613684565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612ef4565b610e67565b005b34801561037e57600080fd5b50610387610e77565b6040516103949190613684565b60405180910390f35b3480156103a957600080fd5b506103b2610e7d565b6040516103bf9190613684565b60405180910390f35b3480156103d457600080fd5b506103dd610e82565b005b3480156103eb57600080fd5b506103f4610f2a565b005b34801561040257600080fd5b5061041d60048036038101906104189190612ef4565b611062565b005b34801561042b57600080fd5b506104466004803603810190610441919061311a565b611082565b005b34801561045457600080fd5b5061046f600480360381019061046a91906130d1565b611108565b005b34801561047d57600080fd5b5061048661119e565b60405161049391906134e7565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be919061304a565b6111b1565b005b3480156104d157600080fd5b506104da61124a565b6040516104e791906134e7565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061311a565b61125d565b6040516105249190613480565b60405180910390f35b34801561053957600080fd5b50610542611273565b60405161054f9190613502565b60405180910390f35b34801561056457600080fd5b5061056d611301565b60405161057a91906134e7565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612e87565b611314565b6040516105b79190613684565b60405180910390f35b3480156105cc57600080fd5b506105d56113e4565b005b3480156105e357600080fd5b506105ec61146c565b005b3480156105fa57600080fd5b506106036114fc565b6040516106109190613480565b60405180910390f35b34801561062557600080fd5b5061062e611526565b60405161063b9190613502565b60405180910390f35b34801561065057600080fd5b506106596115b8565b6040516106669190613684565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612fca565b6115be565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612f47565b611736565b005b3480156106cd57600080fd5b506106d66117ae565b6040516106e39190613502565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e919061311a565b6117e7565b6040516107209190613502565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612eb4565b611975565b60405161075d91906134e7565b60405180910390f35b34801561077257600080fd5b5061078d600480360381019061078891906130d1565b611a09565b005b34801561079b57600080fd5b506107b660048036038101906107b19190612e87565b611a9f565b005b3480156107c457600080fd5b506107cd611b97565b6040516107da9190613684565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506108bd82611b9c565b5b9050919050565b6060600280546108d490613954565b80601f016020809104026020016040519081016040528092919081815260200182805461090090613954565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b6000610961611c06565b9050600e60019054906101000a900460ff16156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90613584565b60405180910390fd5b600e60029054906101000a900460ff16610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613584565b60405180910390fd5b81610a0b610e50565b610a159190613789565b6009541015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613564565b60405180910390fd5b60008211610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390613544565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190613664565b60405180910390fd5b81600a1015610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590613624565b60405180910390fd5b6001610b5933611c0e565b10610bb357600a5482610b6c9190613810565b341015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613604565b60405180910390fd5b610c33565b600082610bbf33611c0e565b610bc99190613789565b90506001811115610c3157600a54600182610be4919061386a565b610bee9190613810565b341015610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c27906135a4565b60405180910390fd5b5b505b610c3d8183611c78565b5050565b6000610c4c82611c96565b610c82576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610cca90613954565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf690613954565b8015610d435780601f10610d1857610100808354040283529160200191610d43565b820191906000526020600020905b815481529060010190602001808311610d2657829003601f168201915b505050505081565b6000610d568261125d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ddd611c06565b73ffffffffffffffffffffffffffffffffffffffff1614610e4057610e0981610e04611c06565b611975565b610e3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610e4b838383611ce4565b505050565b6000610e5a611d96565b6001546000540303905090565b610e72838383611d9f565b505050565b60095481565b600181565b610e8a611c06565b73ffffffffffffffffffffffffffffffffffffffff16610ea86114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef5906135e4565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610f32611c06565b73ffffffffffffffffffffffffffffffffffffffff16610f506114fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906135e4565b60405180910390fd5b60004790506000610fb5611c06565b73ffffffffffffffffffffffffffffffffffffffff1682604051610fd89061346b565b60006040518083038185875af1925050503d8060008114611015576040519150601f19603f3d011682016040523d82523d6000602084013e61101a565b606091505b505090508061105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613644565b60405180910390fd5b5050565b61107d83838360405180602001604052806000815250611736565b505050565b61108a611c06565b73ffffffffffffffffffffffffffffffffffffffff166110a86114fc565b73ffffffffffffffffffffffffffffffffffffffff16146110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f5906135e4565b60405180910390fd5b80600a8190555050565b611110611c06565b73ffffffffffffffffffffffffffffffffffffffff1661112e6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906135e4565b60405180910390fd5b80600b908051906020019061119a929190612c58565b5050565b600e60029054906101000a900460ff1681565b6111b9611c06565b73ffffffffffffffffffffffffffffffffffffffff166111d76114fc565b73ffffffffffffffffffffffffffffffffffffffff161461122d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611224906135e4565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b600e60019054906101000a900460ff1681565b600061126882612255565b600001519050919050565b600b805461128090613954565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac90613954565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113ec611c06565b73ffffffffffffffffffffffffffffffffffffffff1661140a6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906135e4565b60405180910390fd5b61146a60006124e0565b565b611474611c06565b73ffffffffffffffffffffffffffffffffffffffff166114926114fc565b73ffffffffffffffffffffffffffffffffffffffff16146114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906135e4565b60405180910390fd5b6114fa6114f3611c06565b6001611c78565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461153590613954565b80601f016020809104026020016040519081016040528092919081815260200182805461156190613954565b80156115ae5780601f10611583576101008083540402835291602001916115ae565b820191906000526020600020905b81548152906001019060200180831161159157829003601f168201915b5050505050905090565b600a5481565b6115c6611c06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611638611c06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e5611c06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172a91906134e7565b60405180910390a35050565b611741848484611d9f565b6117608373ffffffffffffffffffffffffffffffffffffffff166125a6565b156117a857611771848484846125c9565b6117a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606117f282611c96565b611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906135c4565b60405180910390fd5b60001515600e60009054906101000a900460ff16151514156118df57600c805461185a90613954565b80601f016020809104026020016040519081016040528092919081815260200182805461188690613954565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b50505050509050611970565b6000600b80546118ee90613954565b90501161190a576040518060200160405280600081525061196d565b600b61191583612729565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161195d9392919061343a565b6040516020818303038152906040525b90505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a11611c06565b73ffffffffffffffffffffffffffffffffffffffff16611a2f6114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c906135e4565b60405180910390fd5b80600c9080519060200190611a9b929190612c58565b5050565b611aa7611c06565b73ffffffffffffffffffffffffffffffffffffffff16611ac56114fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906135e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613524565b60405180910390fd5b611b94816124e0565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c9282826040518060200160405280600081525061288a565b5050565b600081611ca1611d96565b11158015611cb0575060005482105b8015611cdd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611daa82612255565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e15576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e36611c06565b73ffffffffffffffffffffffffffffffffffffffff161480611e655750611e6485611e5f611c06565b611975565b5b80611eaa5750611e73611c06565b73ffffffffffffffffffffffffffffffffffffffff16611e9284610c41565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ee3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f4a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f578585856001612c4c565b611f6360008487611ce4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121e35760005482146121e257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461224e8585856001612c52565b5050505050565b61225d612cde565b60008290508061226b611d96565b116124a9576000548110156124a8576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124a657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238a5780925050506124db565b5b6001156124a557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124a05780925050506124db565b61238b565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ef611c06565b8786866040518563ffffffff1660e01b8152600401612611949392919061349b565b602060405180830381600087803b15801561262b57600080fd5b505af192505050801561265c57506040513d601f19601f8201168201806040525081019061265991906130a4565b60015b6126d6573d806000811461268c576040519150601f19603f3d011682016040523d82523d6000602084013e612691565b606091505b506000815114156126ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612771576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612885565b600082905060005b600082146127a357808061278c906139b7565b915050600a8261279c91906137df565b9150612779565b60008167ffffffffffffffff8111156127bf576127be613aed565b5b6040519080825280601f01601f1916602001820160405280156127f15781602001600182028036833780820191505090505b5090505b6000851461287e5760018261280a919061386a565b9150600a856128199190613a00565b60306128259190613789565b60f81b81838151811061283b5761283a613abe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561287791906137df565b94506127f5565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612932576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61293f6000858386612c4c565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612b008673ffffffffffffffffffffffffffffffffffffffff166125a6565b15612bc5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7560008784806001019550876125c9565b612bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b06578260005414612bc057600080fd5b612c30565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bc6575b816000819055505050612c466000858386612c52565b50505050565b50505050565b50505050565b828054612c6490613954565b90600052602060002090601f016020900481019282612c865760008555612ccd565b82601f10612c9f57805160ff1916838001178555612ccd565b82800160010185558215612ccd579182015b82811115612ccc578251825591602001919060010190612cb1565b5b509050612cda9190612d21565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d3a576000816000905550600101612d22565b5090565b6000612d51612d4c846136c4565b61369f565b905082815260208101848484011115612d6d57612d6c613b21565b5b612d78848285613912565b509392505050565b6000612d93612d8e846136f5565b61369f565b905082815260208101848484011115612daf57612dae613b21565b5b612dba848285613912565b509392505050565b600081359050612dd181613d2d565b92915050565b600081359050612de681613d44565b92915050565b600081359050612dfb81613d5b565b92915050565b600081519050612e1081613d5b565b92915050565b600082601f830112612e2b57612e2a613b1c565b5b8135612e3b848260208601612d3e565b91505092915050565b600082601f830112612e5957612e58613b1c565b5b8135612e69848260208601612d80565b91505092915050565b600081359050612e8181613d72565b92915050565b600060208284031215612e9d57612e9c613b2b565b5b6000612eab84828501612dc2565b91505092915050565b60008060408385031215612ecb57612eca613b2b565b5b6000612ed985828601612dc2565b9250506020612eea85828601612dc2565b9150509250929050565b600080600060608486031215612f0d57612f0c613b2b565b5b6000612f1b86828701612dc2565b9350506020612f2c86828701612dc2565b9250506040612f3d86828701612e72565b9150509250925092565b60008060008060808587031215612f6157612f60613b2b565b5b6000612f6f87828801612dc2565b9450506020612f8087828801612dc2565b9350506040612f9187828801612e72565b925050606085013567ffffffffffffffff811115612fb257612fb1613b26565b5b612fbe87828801612e16565b91505092959194509250565b60008060408385031215612fe157612fe0613b2b565b5b6000612fef85828601612dc2565b925050602061300085828601612dd7565b9150509250929050565b6000806040838503121561302157613020613b2b565b5b600061302f85828601612dc2565b925050602061304085828601612e72565b9150509250929050565b6000602082840312156130605761305f613b2b565b5b600061306e84828501612dd7565b91505092915050565b60006020828403121561308d5761308c613b2b565b5b600061309b84828501612dec565b91505092915050565b6000602082840312156130ba576130b9613b2b565b5b60006130c884828501612e01565b91505092915050565b6000602082840312156130e7576130e6613b2b565b5b600082013567ffffffffffffffff81111561310557613104613b26565b5b61311184828501612e44565b91505092915050565b6000602082840312156131305761312f613b2b565b5b600061313e84828501612e72565b91505092915050565b6131508161389e565b82525050565b61315f816138b0565b82525050565b60006131708261373b565b61317a8185613751565b935061318a818560208601613921565b61319381613b30565b840191505092915050565b60006131a982613746565b6131b3818561376d565b93506131c3818560208601613921565b6131cc81613b30565b840191505092915050565b60006131e282613746565b6131ec818561377e565b93506131fc818560208601613921565b80840191505092915050565b6000815461321581613954565b61321f818661377e565b9450600182166000811461323a576001811461324b5761327e565b60ff1983168652818601935061327e565b61325485613726565b60005b8381101561327657815481890152600182019150602081019050613257565b838801955050505b50505092915050565b600061329460268361376d565b915061329f82613b41565b604082019050919050565b60006132b760048361376d565b91506132c282613b90565b602082019050919050565b60006132da600e8361376d565b91506132e582613bb9565b602082019050919050565b60006132fd60128361376d565b915061330882613be2565b602082019050919050565b600061332060128361376d565b915061332b82613c0b565b602082019050919050565b600061334360158361376d565b915061334e82613c34565b602082019050919050565b600061336660208361376d565b915061337182613c5d565b602082019050919050565b600061338960168361376d565b915061339482613c86565b602082019050919050565b60006133ac600083613762565b91506133b782613caf565b600082019050919050565b60006133cf60148361376d565b91506133da82613cb2565b602082019050919050565b60006133f2600e8361376d565b91506133fd82613cdb565b602082019050919050565b6000613415600c8361376d565b915061342082613d04565b602082019050919050565b61343481613908565b82525050565b60006134468286613208565b915061345282856131d7565b915061345e82846131d7565b9150819050949350505050565b60006134768261339f565b9150819050919050565b60006020820190506134956000830184613147565b92915050565b60006080820190506134b06000830187613147565b6134bd6020830186613147565b6134ca604083018561342b565b81810360608301526134dc8184613165565b905095945050505050565b60006020820190506134fc6000830184613156565b92915050565b6000602082019050818103600083015261351c818461319e565b905092915050565b6000602082019050818103600083015261353d81613287565b9050919050565b6000602082019050818103600083015261355d816132aa565b9050919050565b6000602082019050818103600083015261357d816132cd565b9050919050565b6000602082019050818103600083015261359d816132f0565b9050919050565b600060208201905081810360008301526135bd81613313565b9050919050565b600060208201905081810360008301526135dd81613336565b9050919050565b600060208201905081810360008301526135fd81613359565b9050919050565b6000602082019050818103600083015261361d8161337c565b9050919050565b6000602082019050818103600083015261363d816133c2565b9050919050565b6000602082019050818103600083015261365d816133e5565b9050919050565b6000602082019050818103600083015261367d81613408565b9050919050565b6000602082019050613699600083018461342b565b92915050565b60006136a96136ba565b90506136b58282613986565b919050565b6000604051905090565b600067ffffffffffffffff8211156136df576136de613aed565b5b6136e882613b30565b9050602081019050919050565b600067ffffffffffffffff8211156137105761370f613aed565b5b61371982613b30565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061379482613908565b915061379f83613908565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d4576137d3613a31565b5b828201905092915050565b60006137ea82613908565b91506137f583613908565b92508261380557613804613a60565b5b828204905092915050565b600061381b82613908565b915061382683613908565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561385f5761385e613a31565b5b828202905092915050565b600061387582613908565b915061388083613908565b92508282101561389357613892613a31565b5b828203905092915050565b60006138a9826138e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561393f578082015181840152602081019050613924565b8381111561394e576000848401525b50505050565b6000600282049050600182168061396c57607f821691505b602082108114156139805761397f613a8f565b5b50919050565b61398f82613b30565b810181811067ffffffffffffffff821117156139ae576139ad613aed565b5b80604052505050565b60006139c282613908565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139f5576139f4613a31565b5b600182019050919050565b6000613a0b82613908565b9150613a1683613908565b925082613a2657613a25613a60565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f484e4f00000000000000000000000000000000000000000000000000000000600082015250565b7f4f766572204d6178737570706c79000000000000000000000000000000000000600082015250565b7f53616c65206973204e6f74206163746976650000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4f766572204d6178207065722070616964207478000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613d368161389e565b8114613d4157600080fd5b50565b613d4d816138b0565b8114613d5857600080fd5b50565b613d64816138bc565b8114613d6f57600080fd5b50565b613d7b81613908565b8114613d8657600080fd5b5056fea2646970667358221220c5687ed66899ddefb4d84dbff97417ace066269a4370cbfcb59102eb819f8f3d64736f6c63430008070033

Deployed Bytecode Sourcemap

47434:3095:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28525:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48298:873;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33144:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47732:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32706:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27765:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34009:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47577:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47483:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49404:80;;;;;;;;;;;;;:::i;:::-;;49179:209;;;;;;;;;;;;;:::i;:::-;;34250:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49879:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49684:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47950:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49792:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47917:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31448:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47651:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47881:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28894:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4726:103;;;;;;;;;;;;;:::i;:::-;;49492:86;;;;;;;;;;;;;:::i;:::-;;4075:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31809:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47613:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33420:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34506:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47679:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49976:550;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33778:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48156:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4984:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47534:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28525:305;28627:4;28679:25;28664:40;;;:11;:40;;;;:105;;;;28736:33;28721:48;;;:11;:48;;;;28664:105;:158;;;;28786:36;28810:11;28786:23;:36::i;:::-;28664:158;28644:178;;28525:305;;;:::o;31640:100::-;31694:13;31727:5;31720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31640:100;:::o;48298:873::-;48357:15;48375:12;:10;:12::i;:::-;48357:30;;48407:6;;;;;;;;;;;48406:7;48398:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48455:5;;;;;;;;;;;48447:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48532:7;48516:13;:11;:13::i;:::-;:23;;;;:::i;:::-;48502:10;;:37;;48494:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48587:1;48577:7;:11;48569:28;;;;;;;;;;;;:::i;:::-;;;;;;;;;48629:7;48616:20;;:9;:20;;;48608:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48686:7;47568:2;48672:21;;48664:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47526:1;48743:25;48757:10;48743:13;:25::i;:::-;:48;48740:386;;48839:5;;48829:7;:15;;;;:::i;:::-;48816:9;:28;;48808:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48740:386;;;48903:10;48944:7;48916:25;48930:10;48916:13;:25::i;:::-;:35;;;;:::i;:::-;48903:48;;47526:1;48969:5;:27;48966:148;;;49069:5;;47526:1;49038:5;:27;;;;:::i;:::-;49037:37;;;;:::i;:::-;49024:9;:50;;49016:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;48966:148;48888:238;48740:386;49136:27;49146:7;49155;49136:9;:27::i;:::-;48346:825;48298:873;:::o;33144:204::-;33212:7;33237:16;33245:7;33237;:16::i;:::-;33232:64;;33262:34;;;;;;;;;;;;;;33232:64;33316:15;:24;33332:7;33316:24;;;;;;;;;;;;;;;;;;;;;33309:31;;33144:204;;;:::o;47732:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32706:372::-;32779:13;32795:24;32811:7;32795:15;:24::i;:::-;32779:40;;32840:5;32834:11;;:2;:11;;;32830:48;;;32854:24;;;;;;;;;;;;;;32830:48;32911:5;32895:21;;:12;:10;:12::i;:::-;:21;;;32891:139;;32922:37;32939:5;32946:12;:10;:12::i;:::-;32922:16;:37::i;:::-;32918:112;;32983:35;;;;;;;;;;;;;;32918:112;32891:139;33042:28;33051:2;33055:7;33064:5;33042:8;:28::i;:::-;32768:310;32706:372;;:::o;27765:312::-;27818:7;28043:15;:13;:15::i;:::-;28028:12;;28012:13;;:28;:46;28005:53;;27765:312;:::o;34009:170::-;34143:28;34153:4;34159:2;34163:7;34143:9;:28::i;:::-;34009:170;;;:::o;47577:29::-;;;;:::o;47483:44::-;47526:1;47483:44;:::o;49404:80::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49467:9:::1;;;;;;;;;;;49466:10;49454:9;;:22;;;;;;;;;;;;;;;;;;49404:80::o:0;49179:209::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49229:15:::1;49247:21;49229:39;;49280:12;49298;:10;:12::i;:::-;:17;;49323:7;49298:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49279:56;;;49354:7;49346:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;49218:170;;49179:209::o:0;34250:185::-;34388:39;34405:4;34411:2;34415:7;34388:39;;;;;;;;;;;;:16;:39::i;:::-;34250:185;;;:::o;49879:89::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49952:8:::1;49944:5;:16;;;;49879:89:::0;:::o;49684:100::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49768:8:::1;49758:7;:18;;;;;;;;;;;;:::i;:::-;;49684:100:::0;:::o;47950:25::-;;;;;;;;;;;;;:::o;49792:79::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49857:6:::1;49849:5;;:14;;;;;;;;;;;;;;;;;;49792:79:::0;:::o;47917:26::-;;;;;;;;;;;;;:::o;31448:125::-;31512:7;31539:21;31552:7;31539:12;:21::i;:::-;:26;;;31532:33;;31448:125;;;:::o;47651:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47881:29::-;;;;;;;;;;;;;:::o;28894:206::-;28958:7;28999:1;28982:19;;:5;:19;;;28978:60;;;29010:28;;;;;;;;;;;;;;28978:60;29064:12;:19;29077:5;29064:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29056:36;;29049:43;;28894:206;;;:::o;4726:103::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4791:30:::1;4818:1;4791:18;:30::i;:::-;4726:103::o:0;49492:86::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49544:26:::1;49554:12;:10;:12::i;:::-;49568:1;49544:9;:26::i;:::-;49492:86::o:0;4075:87::-;4121:7;4148:6;;;;;;;;;;;4141:13;;4075:87;:::o;31809:104::-;31865:13;31898:7;31891:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31809:104;:::o;47613:31::-;;;;:::o;33420:287::-;33531:12;:10;:12::i;:::-;33519:24;;:8;:24;;;33515:54;;;33552:17;;;;;;;;;;;;;;33515:54;33627:8;33582:18;:32;33601:12;:10;:12::i;:::-;33582:32;;;;;;;;;;;;;;;:42;33615:8;33582:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33680:8;33651:48;;33666:12;:10;:12::i;:::-;33651:48;;;33690:8;33651:48;;;;;;:::i;:::-;;;;;;;;33420:287;;:::o;34506:370::-;34673:28;34683:4;34689:2;34693:7;34673:9;:28::i;:::-;34716:15;:2;:13;;;:15::i;:::-;34712:157;;;34737:56;34768:4;34774:2;34778:7;34787:5;34737:30;:56::i;:::-;34733:136;;34817:40;;;;;;;;;;;;;;34733:136;34712:157;34506:370;;;;:::o;47679:46::-;;;;;;;;;;;;;;;;;;;:::o;49976:550::-;50066:13;50120:17;50128:8;50120:7;:17::i;:::-;50098:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50226:5;50213:18;;:9;;;;;;;;;;;:18;;;50209:74;;;50255:14;50248:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50209:74;50328:1;50310:7;50304:21;;;;;:::i;:::-;;;:25;:214;;;;;;;;;;;;;;;;;50386:7;50410:26;50427:8;50410:16;:26::i;:::-;50453:13;;;;;;;;;;;;;;;;;50353:149;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50304:214;50297:221;;49976:550;;;;:::o;33778:164::-;33875:4;33899:18;:25;33918:5;33899:25;;;;;;;;;;;;;;;:35;33925:8;33899:35;;;;;;;;;;;;;;;;;;;;;;;;;33892:42;;33778:164;;;;:::o;48156:126::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48259:15:::1;48242:14;:32;;;;;;;;;;;;:::i;:::-;;48156:126:::0;:::o;4984:201::-;4306:12;:10;:12::i;:::-;4295:23;;:7;:5;:7::i;:::-;:23;;;4287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5093:1:::1;5073:22;;:8;:22;;;;5065:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5149:28;5168:8;5149:18;:28::i;:::-;4984:201:::0;:::o;47534:36::-;47568:2;47534:36;:::o;16874:157::-;16959:4;16998:25;16983:40;;;:11;:40;;;;16976:47;;16874:157;;;:::o;2801:98::-;2854:7;2881:10;2874:17;;2801:98;:::o;29182:137::-;29243:7;29278:12;:19;29291:5;29278:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29270:41;;29263:48;;29182:137;;;:::o;35389:104::-;35458:27;35468:2;35472:8;35458:27;;;;;;;;;;;;:9;:27::i;:::-;35389:104;;:::o;35131:174::-;35188:4;35231:7;35212:15;:13;:15::i;:::-;:26;;:53;;;;;35252:13;;35242:7;:23;35212:53;:85;;;;;35270:11;:20;35282:7;35270:20;;;;;;;;;;;:27;;;;;;;;;;;;35269:28;35212:85;35205:92;;35131:174;;;:::o;44353:196::-;44495:2;44468:15;:24;44484:7;44468:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44533:7;44529:2;44513:28;;44522:5;44513:28;;;;;;;;;;;;44353:196;;;:::o;48042:101::-;48107:7;48134:1;48127:8;;48042:101;:::o;39301:2130::-;39416:35;39454:21;39467:7;39454:12;:21::i;:::-;39416:59;;39514:4;39492:26;;:13;:18;;;:26;;;39488:67;;39527:28;;;;;;;;;;;;;;39488:67;39568:22;39610:4;39594:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39631:36;39648:4;39654:12;:10;:12::i;:::-;39631:16;:36::i;:::-;39594:73;:126;;;;39708:12;:10;:12::i;:::-;39684:36;;:20;39696:7;39684:11;:20::i;:::-;:36;;;39594:126;39568:153;;39739:17;39734:66;;39765:35;;;;;;;;;;;;;;39734:66;39829:1;39815:16;;:2;:16;;;39811:52;;;39840:23;;;;;;;;;;;;;;39811:52;39876:43;39898:4;39904:2;39908:7;39917:1;39876:21;:43::i;:::-;39984:35;40001:1;40005:7;40014:4;39984:8;:35::i;:::-;40345:1;40315:12;:18;40328:4;40315:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40389:1;40361:12;:16;40374:2;40361:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40407:31;40441:11;:20;40453:7;40441:20;;;;;;;;;;;40407:54;;40492:2;40476:8;:13;;;:18;;;;;;;;;;;;;;;;;;40542:15;40509:8;:23;;;:49;;;;;;;;;;;;;;;;;;40810:19;40842:1;40832:7;:11;40810:33;;40858:31;40892:11;:24;40904:11;40892:24;;;;;;;;;;;40858:58;;40960:1;40935:27;;:8;:13;;;;;;;;;;;;:27;;;40931:384;;;41145:13;;41130:11;:28;41126:174;;41199:4;41183:8;:13;;;:20;;;;;;;;;;;;;;;;;;41252:13;:28;;;41226:8;:23;;;:54;;;;;;;;;;;;;;;;;;41126:174;40931:384;40290:1036;;;41362:7;41358:2;41343:27;;41352:4;41343:27;;;;;;;;;;;;41381:42;41402:4;41408:2;41412:7;41421:1;41381:20;:42::i;:::-;39405:2026;;39301:2130;;;:::o;30275:1111::-;30337:21;;:::i;:::-;30371:12;30386:7;30371:22;;30454:4;30435:15;:13;:15::i;:::-;:23;30431:888;;30471:13;;30464:4;:20;30460:859;;;30505:31;30539:11;:17;30551:4;30539:17;;;;;;;;;;;30505:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30580:9;:16;;;30575:729;;30651:1;30625:28;;:9;:14;;;:28;;;30621:101;;30689:9;30682:16;;;;;;30621:101;31024:261;31031:4;31024:261;;;31064:6;;;;;;;;31109:11;:17;31121:4;31109:17;;;;;;;;;;;31097:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31183:1;31157:28;;:9;:14;;;:28;;;31153:109;;31225:9;31218:16;;;;;;31153:109;31024:261;;;30575:729;30486:833;30460:859;30431:888;31347:31;;;;;;;;;;;;;;30275:1111;;;;:::o;5345:191::-;5419:16;5438:6;;;;;;;;;;;5419:25;;5464:8;5455:6;;:17;;;;;;;;;;;;;;;;;;5519:8;5488:40;;5509:8;5488:40;;;;;;;;;;;;5408:128;5345:191;:::o;6774:326::-;6834:4;7091:1;7069:7;:19;;;:23;7062:30;;6774:326;;;:::o;45041:667::-;45204:4;45241:2;45225:36;;;45262:12;:10;:12::i;:::-;45276:4;45282:7;45291:5;45225:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45221:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45476:1;45459:6;:13;:18;45455:235;;;45505:40;;;;;;;;;;;;;;45455:235;45648:6;45642:13;45633:6;45629:2;45625:15;45618:38;45221:480;45354:45;;;45344:55;;;:6;:55;;;;45337:62;;;45041:667;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;35866:1749::-;35989:20;36012:13;;35989:36;;36054:1;36040:16;;:2;:16;;;36036:48;;;36065:19;;;;;;;;;;;;;;36036:48;36111:1;36099:8;:13;36095:44;;;36121:18;;;;;;;;;;;;;;36095:44;36152:61;36182:1;36186:2;36190:12;36204:8;36152:21;:61::i;:::-;36525:8;36490:12;:16;36503:2;36490:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36589:8;36549:12;:16;36562:2;36549:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36648:2;36615:11;:25;36627:12;36615:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36715:15;36665:11;:25;36677:12;36665:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36748:20;36771:12;36748:35;;36798:11;36827:8;36812:12;:23;36798:37;;36856:15;:2;:13;;;:15::i;:::-;36852:631;;;36892:313;36948:12;36944:2;36923:38;;36940:1;36923:38;;;;;;;;;;;;36989:69;37028:1;37032:2;37036:14;;;;;;37052:5;36989:30;:69::i;:::-;36984:174;;37094:40;;;;;;;;;;;;;;36984:174;37200:3;37185:12;:18;36892:313;;37286:12;37269:13;;:29;37265:43;;37300:8;;;37265:43;36852:631;;;37349:119;37405:14;;;;;;37401:2;37380:40;;37397:1;37380:40;;;;;;;;;;;;37463:3;37448:12;:18;37349:119;;36852:631;37513:12;37497:13;:28;;;;36465:1072;;37547:60;37576:1;37580:2;37584:12;37598:8;37547:20;:60::i;:::-;35978:1637;35866:1749;;;:::o;46356:159::-;;;;;:::o;47174:158::-;;;;;:::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;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:365::-;10234:3;10255:66;10319:1;10314:3;10255:66;:::i;:::-;10248:73;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10092:365;;;:::o;10463:366::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:398::-;12854:3;12875:83;12956:1;12951:3;12875:83;:::i;:::-;12868:90;;12967:93;13056:3;12967:93;:::i;:::-;13085:1;13080:3;13076:11;13069:18;;12695:398;;;:::o;13099:366::-;13241:3;13262:67;13326:2;13321:3;13262:67;:::i;:::-;13255:74;;13338:93;13427:3;13338:93;:::i;:::-;13456:2;13451:3;13447:12;13440:19;;13099:366;;;:::o;13471:::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:::-;13985:3;14006:67;14070:2;14065:3;14006:67;:::i;:::-;13999:74;;14082:93;14171:3;14082:93;:::i;:::-;14200:2;14195:3;14191:12;14184:19;;13843:366;;;:::o;14215:118::-;14302:24;14320:5;14302:24;:::i;:::-;14297:3;14290:37;14215:118;;:::o;14339:589::-;14564:3;14586:92;14674:3;14665:6;14586:92;:::i;:::-;14579:99;;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14339:589;;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:222::-;21496:4;21534:2;21523:9;21519:18;21511:26;;21547:71;21615:1;21604:9;21600:17;21591:6;21547:71;:::i;:::-;21403:222;;;;:::o;21631:129::-;21665:6;21692:20;;:::i;:::-;21682:30;;21721:33;21749:4;21741:6;21721:33;:::i;:::-;21631:129;;;:::o;21766:75::-;21799:6;21832:2;21826:9;21816:19;;21766:75;:::o;21847:307::-;21908:4;21998:18;21990:6;21987:30;21984:56;;;22020:18;;:::i;:::-;21984:56;22058:29;22080:6;22058:29;:::i;:::-;22050:37;;22142:4;22136;22132:15;22124:23;;21847:307;;;:::o;22160:308::-;22222:4;22312:18;22304:6;22301:30;22298:56;;;22334:18;;:::i;:::-;22298:56;22372:29;22394:6;22372:29;:::i;:::-;22364:37;;22456:4;22450;22446:15;22438:23;;22160:308;;;:::o;22474:141::-;22523:4;22546:3;22538:11;;22569:3;22566:1;22559:14;22603:4;22600:1;22590:18;22582:26;;22474:141;;;:::o;22621:98::-;22672:6;22706:5;22700:12;22690:22;;22621:98;;;:::o;22725:99::-;22777:6;22811:5;22805:12;22795:22;;22725:99;;;:::o;22830:168::-;22913:11;22947:6;22942:3;22935:19;22987:4;22982:3;22978:14;22963:29;;22830:168;;;;:::o;23004:147::-;23105:11;23142:3;23127:18;;23004:147;;;;:::o;23157:169::-;23241:11;23275:6;23270:3;23263:19;23315:4;23310:3;23306:14;23291:29;;23157:169;;;;:::o;23332:148::-;23434:11;23471:3;23456:18;;23332:148;;;;:::o;23486:305::-;23526:3;23545:20;23563:1;23545:20;:::i;:::-;23540:25;;23579:20;23597:1;23579:20;:::i;:::-;23574:25;;23733:1;23665:66;23661:74;23658:1;23655:81;23652:107;;;23739:18;;:::i;:::-;23652:107;23783:1;23780;23776:9;23769:16;;23486:305;;;;:::o;23797:185::-;23837:1;23854:20;23872:1;23854:20;:::i;:::-;23849:25;;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23927:1;23917:35;;23932:18;;:::i;:::-;23917:35;23974:1;23971;23967:9;23962:14;;23797:185;;;;:::o;23988:348::-;24028:7;24051:20;24069:1;24051:20;:::i;:::-;24046:25;;24085:20;24103:1;24085:20;:::i;:::-;24080:25;;24273:1;24205:66;24201:74;24198:1;24195:81;24190:1;24183:9;24176:17;24172:105;24169:131;;;24280:18;;:::i;:::-;24169:131;24328:1;24325;24321:9;24310:20;;23988:348;;;;:::o;24342:191::-;24382:4;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24475:1;24472;24469:8;24466:34;;;24480:18;;:::i;:::-;24466:34;24525:1;24522;24518:9;24510:17;;24342:191;;;;:::o;24539:96::-;24576:7;24605:24;24623:5;24605:24;:::i;:::-;24594:35;;24539:96;;;:::o;24641:90::-;24675:7;24718:5;24711:13;24704:21;24693:32;;24641:90;;;:::o;24737:149::-;24773:7;24813:66;24806:5;24802:78;24791:89;;24737:149;;;:::o;24892:126::-;24929:7;24969:42;24962:5;24958:54;24947:65;;24892:126;;;:::o;25024:77::-;25061:7;25090:5;25079:16;;25024:77;;;:::o;25107:154::-;25191:6;25186:3;25181;25168:30;25253:1;25244:6;25239:3;25235:16;25228:27;25107:154;;;:::o;25267:307::-;25335:1;25345:113;25359:6;25356:1;25353:13;25345:113;;;25444:1;25439:3;25435:11;25429:18;25425:1;25420:3;25416:11;25409:39;25381:2;25378:1;25374:10;25369:15;;25345:113;;;25476:6;25473:1;25470:13;25467:101;;;25556:1;25547:6;25542:3;25538:16;25531:27;25467:101;25316:258;25267:307;;;:::o;25580:320::-;25624:6;25661:1;25655:4;25651:12;25641:22;;25708:1;25702:4;25698:12;25729:18;25719:81;;25785:4;25777:6;25773:17;25763:27;;25719:81;25847:2;25839:6;25836:14;25816:18;25813:38;25810:84;;;25866:18;;:::i;:::-;25810:84;25631:269;25580:320;;;:::o;25906:281::-;25989:27;26011:4;25989:27;:::i;:::-;25981:6;25977:40;26119:6;26107:10;26104:22;26083:18;26071:10;26068:34;26065:62;26062:88;;;26130:18;;:::i;:::-;26062:88;26170:10;26166:2;26159:22;25949:238;25906:281;;:::o;26193:233::-;26232:3;26255:24;26273:5;26255:24;:::i;:::-;26246:33;;26301:66;26294:5;26291:77;26288:103;;;26371:18;;:::i;:::-;26288:103;26418:1;26411:5;26407:13;26400:20;;26193:233;;;:::o;26432:176::-;26464:1;26481:20;26499:1;26481:20;:::i;:::-;26476:25;;26515:20;26533:1;26515:20;:::i;:::-;26510:25;;26554:1;26544:35;;26559:18;;:::i;:::-;26544:35;26600:1;26597;26593:9;26588:14;;26432:176;;;;:::o;26614:180::-;26662:77;26659:1;26652:88;26759:4;26756:1;26749:15;26783:4;26780:1;26773:15;26800:180;26848:77;26845:1;26838:88;26945:4;26942:1;26935:15;26969:4;26966:1;26959:15;26986:180;27034:77;27031:1;27024:88;27131:4;27128:1;27121:15;27155:4;27152:1;27145:15;27172:180;27220:77;27217:1;27210:88;27317:4;27314:1;27307:15;27341:4;27338:1;27331:15;27358:180;27406:77;27403:1;27396:88;27503:4;27500:1;27493:15;27527:4;27524:1;27517:15;27544:117;27653:1;27650;27643:12;27667:117;27776:1;27773;27766:12;27790:117;27899:1;27896;27889:12;27913:117;28022:1;28019;28012:12;28036:102;28077:6;28128:2;28124:7;28119:2;28112:5;28108:14;28104:28;28094:38;;28036:102;;;:::o;28144:225::-;28284:34;28280:1;28272:6;28268:14;28261:58;28353:8;28348:2;28340:6;28336:15;28329:33;28144:225;:::o;28375:154::-;28515:6;28511:1;28503:6;28499:14;28492:30;28375:154;:::o;28535:164::-;28675:16;28671:1;28663:6;28659:14;28652:40;28535:164;:::o;28705:168::-;28845:20;28841:1;28833:6;28829:14;28822:44;28705:168;:::o;28879:::-;29019:20;29015:1;29007:6;29003:14;28996:44;28879:168;:::o;29053:171::-;29193:23;29189:1;29181:6;29177:14;29170:47;29053:171;:::o;29230:182::-;29370:34;29366:1;29358:6;29354:14;29347:58;29230:182;:::o;29418:172::-;29558:24;29554:1;29546:6;29542:14;29535:48;29418:172;:::o;29596:114::-;;:::o;29716:170::-;29856:22;29852:1;29844:6;29840:14;29833:46;29716:170;:::o;29892:164::-;30032:16;30028:1;30020:6;30016:14;30009:40;29892:164;:::o;30062:162::-;30202:14;30198:1;30190:6;30186:14;30179:38;30062:162;:::o;30230:122::-;30303:24;30321:5;30303:24;:::i;:::-;30296:5;30293:35;30283:63;;30342:1;30339;30332:12;30283:63;30230:122;:::o;30358:116::-;30428:21;30443:5;30428:21;:::i;:::-;30421:5;30418:32;30408:60;;30464:1;30461;30454:12;30408:60;30358:116;:::o;30480:120::-;30552:23;30569:5;30552:23;:::i;:::-;30545:5;30542:34;30532:62;;30590:1;30587;30580:12;30532:62;30480:120;:::o;30606:122::-;30679:24;30697:5;30679:24;:::i;:::-;30672:5;30669:35;30659:63;;30718:1;30715;30708:12;30659:63;30606:122;:::o

Swarm Source

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