Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
806 MFYACHT
Holders
94
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 MFYACHTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MferYachts
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-05 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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); } // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/MferYachts.sol pragma solidity >=0.7.0 <0.9.0; contract MferYachts is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.009 ether; uint256 public maxSupply = 6969; uint256 public freeSupply = 690; uint256 public maxMintAmountPerTx = 10; uint256 public nftMintPerAddressLimit = 20; mapping (address => uint256) public ownerTokenMapping; bool public paused = true; bool public revealed = false; constructor() ERC721A("Mfer Yachts", "MFYACHT") { setHiddenMetadataUri("ipfs://QmarJ8mUfsh1mdXWeFypMvsZq8HxDNBneN5df7SFaHq54z/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(_currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(ownerTokenMapping[msg.sender] + _mintAmount <= nftMintPerAddressLimit, "Max tokens exceeded"); if( _currentIndex + _mintAmount > freeSupply){ require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } _safeMint(msg.sender, _mintAmount); ownerTokenMapping[msg.sender] += _mintAmount; } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){ require( _exists(_tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setFreeSupply(uint256 _newFreeSupply) public onlyOwner { freeSupply = _newFreeSupply; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setNftMintPerAddressLimit(uint256 _newNftMintPerAddressLimit) public onlyOwner { nftMintPerAddressLimit = _newNftMintPerAddressLimit; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } // Withdraw to multisig address address private constant payoutAddress = 0xC7b20cF25cec4b6565C326764C5521ee9382dF2C; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftMintPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerTokenMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftMintPerAddressLimit","type":"uint256"}],"name":"setNftMintPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000395565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000395565b50661ff973cafa8000600d55611b39600e556102b2600f55600a60105560146011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000de57600080fd5b506040518060400160405280600b81526020017f4d666572205961636874730000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d4659414348540000000000000000000000000000000000000000000000000081525081600290805190602001906200016392919062000395565b5080600390805190602001906200017c92919062000395565b506200018d620001ed60201b60201c565b6000819055505050620001b5620001a9620001f260201b60201c565b620001fa60201b60201c565b6001600981905550620001e76040518060800160405280604181526020016200480d60419139620002c060201b60201c565b6200052d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d0620001f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f66200036b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000346906200046c565b60405180910390fd5b80600c90805190602001906200036792919062000395565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a3906200049f565b90600052602060002090601f016020900481019282620003c7576000855562000413565b82601f10620003e257805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000412578251825591602001919060010190620003f5565b5b50905062000422919062000426565b5090565b5b808211156200044157600081600090555060010162000427565b5090565b6000620004546020836200048e565b9150620004618262000504565b602082019050919050565b60006020820190508181036000830152620004878162000445565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004b857607f821691505b60208210811415620004cf57620004ce620004d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6142d0806200053d6000396000f3fe60806040526004361061023b5760003560e01c806362b99ad41161012e578063a45ba8e7116100ab578063d5abeb011161006f578063d5abeb011461083c578063e0a8085314610867578063e985e9c514610890578063f2fde38b146108cd578063f676308a146108f65761023b565b8063a45ba8e714610745578063b071401b14610770578063b88d4fde14610799578063c87b56dd146107c2578063c99f774f146107ff5761023b565b80638da5cb5b116100f25780638da5cb5b1461067f57806394354fd0146106aa57806395d89b41146106d5578063a0712d6814610700578063a22cb4651461071c5761023b565b806362b99ad41461059a5780636352211e146105c557806370a0823114610602578063715018a61461063f5780637ec4a659146106565761023b565b806324a6ab0c116101bc5780634fdd43cb116101805780634fdd43cb146104c557806351830227146104ee5780635503a0e8146105195780635a1c1e98146105445780635c975abb1461056f5761023b565b806324a6ab0c146104085780633ccfd60b14610433578063408cbf941461044a57806342842e0e1461047357806344a0d68a1461049c5761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c146103625780631710872f1461038b57806318160ddd146103b457806323b872dd146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061353c565b61091f565b60405161027491906139ac565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f91906139c7565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906135df565b610a93565b6040516102dc9190613945565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134cf565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b6040516103309190613b49565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613596565b610c20565b005b34801561036e57600080fd5b506103896004803603810190610384919061350f565b610cb6565b005b34801561039757600080fd5b506103b260048036038101906103ad91906135df565b610d4f565b005b3480156103c057600080fd5b506103c9610dd5565b6040516103d69190613b49565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906133b9565b610dec565b005b34801561041457600080fd5b5061041d610dfc565b60405161042a9190613b49565b60405180910390f35b34801561043f57600080fd5b50610448610e02565b005b34801561045657600080fd5b50610471600480360381019061046c91906134cf565b610efa565b005b34801561047f57600080fd5b5061049a600480360381019061049591906133b9565b611029565b005b3480156104a857600080fd5b506104c360048036038101906104be91906135df565b611049565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613596565b6110cf565b005b3480156104fa57600080fd5b50610503611165565b60405161051091906139ac565b60405180910390f35b34801561052557600080fd5b5061052e611178565b60405161053b91906139c7565b60405180910390f35b34801561055057600080fd5b50610559611206565b6040516105669190613b49565b60405180910390f35b34801561057b57600080fd5b5061058461120c565b60405161059191906139ac565b60405180910390f35b3480156105a657600080fd5b506105af61121f565b6040516105bc91906139c7565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906135df565b6112ad565b6040516105f99190613945565b60405180910390f35b34801561060e57600080fd5b506106296004803603810190610624919061334c565b6112c3565b6040516106369190613b49565b60405180910390f35b34801561064b57600080fd5b50610654611393565b005b34801561066257600080fd5b5061067d60048036038101906106789190613596565b61141b565b005b34801561068b57600080fd5b506106946114b1565b6040516106a19190613945565b60405180910390f35b3480156106b657600080fd5b506106bf6114db565b6040516106cc9190613b49565b60405180910390f35b3480156106e157600080fd5b506106ea6114e1565b6040516106f791906139c7565b60405180910390f35b61071a600480360381019061071591906135df565b611573565b005b34801561072857600080fd5b50610743600480360381019061073e919061348f565b6117c2565b005b34801561075157600080fd5b5061075a61193a565b60405161076791906139c7565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906135df565b6119c8565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061340c565b611a4e565b005b3480156107ce57600080fd5b506107e960048036038101906107e491906135df565b611aca565b6040516107f691906139c7565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061334c565b611c23565b6040516108339190613b49565b60405180910390f35b34801561084857600080fd5b50610851611c3b565b60405161085e9190613b49565b60405180910390f35b34801561087357600080fd5b5061088e6004803603810190610889919061350f565b611c41565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613379565b611cda565b6040516108c491906139ac565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef919061334c565b611d6e565b005b34801561090257600080fd5b5061091d600480360381019061091891906135df565b611e66565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611eec565b5b9050919050565b606060028054610a1090613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613e19565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611f56565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a826112ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611fa4565b611cda565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611fac565b505050565b600d5481565b610c28611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610c466114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613aa9565b60405180910390fd5b80600b9080519060200190610cb292919061311d565b5050565b610cbe611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613aa9565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b610d57611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610d756114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613aa9565b60405180910390fd5b8060118190555050565b6000610ddf61205e565b6001546000540303905090565b610df7838383612063565b505050565b600f5481565b610e0a611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610e286114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613aa9565b60405180910390fd5b60026009541415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613b09565b60405180910390fd5b60026009819055506000479050610eef73c7b20cf25cec4b6565c326764c5521ee9382df2c82612554565b506001600981905550565b80600081118015610f0d57506010548111155b610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613a29565b60405180910390fd5b600e5481600054610f5d9190613c4e565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590613ae9565b60405180910390fd5b610fa6611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610fc46114b1565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613aa9565b60405180910390fd5b6110248383612648565b505050565b61104483838360405180602001604052806000815250611a4e565b505050565b611051611fa4565b73ffffffffffffffffffffffffffffffffffffffff1661106f6114b1565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90613aa9565b60405180910390fd5b80600d8190555050565b6110d7611fa4565b73ffffffffffffffffffffffffffffffffffffffff166110f56114b1565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613aa9565b60405180910390fd5b80600c908051906020019061116192919061311d565b5050565b601360019054906101000a900460ff1681565b600b805461118590613e19565b80601f01602080910402602001604051908101604052809291908181526020018280546111b190613e19565b80156111fe5780601f106111d3576101008083540402835291602001916111fe565b820191906000526020600020905b8154815290600101906020018083116111e157829003601f168201915b505050505081565b60115481565b601360009054906101000a900460ff1681565b600a805461122c90613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461125890613e19565b80156112a55780601f1061127a576101008083540402835291602001916112a5565b820191906000526020600020905b81548152906001019060200180831161128857829003601f168201915b505050505081565b60006112b882612666565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139b611fa4565b73ffffffffffffffffffffffffffffffffffffffff166113b96114b1565b73ffffffffffffffffffffffffffffffffffffffff161461140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690613aa9565b60405180910390fd5b61141960006128f5565b565b611423611fa4565b73ffffffffffffffffffffffffffffffffffffffff166114416114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90613aa9565b60405180910390fd5b80600a90805190602001906114ad92919061311d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600380546114f090613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461151c90613e19565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b5050505050905090565b8060008111801561158657506010548111155b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613a29565b60405180910390fd5b600e54816000546115d69190613c4e565b1115611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613ae9565b60405180910390fd5b601360009054906101000a900460ff1615611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613ac9565b60405180910390fd5b60115482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b59190613c4e565b11156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613a89565b60405180910390fd5b600f54826000546117079190613c4e565b111561175e5781600d5461171b9190613cd5565b34101561175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613b29565b60405180910390fd5b5b6117683383612648565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b79190613c4e565b925050819055505050565b6117ca611fa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061183c611fa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e9611fa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192e91906139ac565b60405180910390a35050565b600c805461194790613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461197390613e19565b80156119c05780601f10611995576101008083540402835291602001916119c0565b820191906000526020600020905b8154815290600101906020018083116119a357829003601f168201915b505050505081565b6119d0611fa4565b73ffffffffffffffffffffffffffffffffffffffff166119ee6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613aa9565b60405180910390fd5b8060108190555050565b611a59848484612063565b611a788373ffffffffffffffffffffffffffffffffffffffff166129bb565b8015611a8d5750611a8b848484846129de565b155b15611ac4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ad582611f56565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906139e9565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611bc257600c8054611b3d90613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990613e19565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b50505050509050611c1e565b6000611bcc612b3e565b90506000815111611bec5760405180602001604052806000815250611c1a565b80611bf684612bd0565b600b604051602001611c0a939291906138ff565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b600e5481565b611c49611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611c676114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613aa9565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d76611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611d946114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613a09565b60405180910390fd5b611e63816128f5565b50565b611e6e611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613aa9565b60405180910390fd5b80600f8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f6161205e565b11158015611f70575060005482105b8015611f9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061206e82612666565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612095611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614806120c857506120c782600001516120c2611fa4565b611cda565b5b8061210d57506120d6611fa4565b73ffffffffffffffffffffffffffffffffffffffff166120f584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612146576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121af576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612216576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122238585856001612d31565b6122336000848460000151611fac565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124e4576000548110156124e35782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254d8585856001612d37565b5050505050565b80471015612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90613a69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516125bd90613930565b60006040518083038185875af1925050503d80600081146125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b5050905080612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90613a49565b60405180910390fd5b505050565b612662828260405180602001604052806000815250612d3d565b5050565b61266e6131a3565b60008290508061267c61205e565b1115801561268b575060005481105b156128be576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128bc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a05780925050506128f0565b5b6001156128bb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b65780925050506128f0565b6127a1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a04611fa4565b8786866040518563ffffffff1660e01b8152600401612a269493929190613960565b602060405180830381600087803b158015612a4057600080fd5b505af1925050508015612a7157506040513d601f19601f82011682018060405250810190612a6e9190613569565b60015b612aeb573d8060008114612aa1576040519150601f19603f3d011682016040523d82523d6000602084013e612aa6565b606091505b50600081511415612ae3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612b4d90613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7990613e19565b8015612bc65780601f10612b9b57610100808354040283529160200191612bc6565b820191906000526020600020905b815481529060010190602001808311612ba957829003601f168201915b5050505050905090565b60606000821415612c18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612c4a578080612c3390613e7c565b915050600a82612c439190613ca4565b9150612c20565b60008167ffffffffffffffff811115612c6657612c65613fb2565b5b6040519080825280601f01601f191660200182016040528015612c985781602001600182028036833780820191505090505b5090505b60008514612d2557600182612cb19190613d2f565b9150600a85612cc09190613ec5565b6030612ccc9190613c4e565b60f81b818381518110612ce257612ce1613f83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e9190613ca4565b9450612c9c565b8093505050505b919050565b50505050565b50505050565b612d4a8383836001612d4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612df7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e046000868387612d31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612fce5750612fcd8773ffffffffffffffffffffffffffffffffffffffff166129bb565b5b15613094575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461304360008884806001019550886129de565b613079576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fd457826000541461308f57600080fd5b613100565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613095575b8160008190555050506131166000868387612d37565b5050505050565b82805461312990613e19565b90600052602060002090601f01602090048101928261314b5760008555613192565b82601f1061316457805160ff1916838001178555613192565b82800160010185558215613192579182015b82811115613191578251825591602001919060010190613176565b5b50905061319f91906131e6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131ff5760008160009055506001016131e7565b5090565b600061321661321184613b89565b613b64565b90508281526020810184848401111561323257613231613fe6565b5b61323d848285613dd7565b509392505050565b600061325861325384613bba565b613b64565b90508281526020810184848401111561327457613273613fe6565b5b61327f848285613dd7565b509392505050565b6000813590506132968161423e565b92915050565b6000813590506132ab81614255565b92915050565b6000813590506132c08161426c565b92915050565b6000815190506132d58161426c565b92915050565b600082601f8301126132f0576132ef613fe1565b5b8135613300848260208601613203565b91505092915050565b600082601f83011261331e5761331d613fe1565b5b813561332e848260208601613245565b91505092915050565b60008135905061334681614283565b92915050565b60006020828403121561336257613361613ff0565b5b600061337084828501613287565b91505092915050565b600080604083850312156133905761338f613ff0565b5b600061339e85828601613287565b92505060206133af85828601613287565b9150509250929050565b6000806000606084860312156133d2576133d1613ff0565b5b60006133e086828701613287565b93505060206133f186828701613287565b925050604061340286828701613337565b9150509250925092565b6000806000806080858703121561342657613425613ff0565b5b600061343487828801613287565b945050602061344587828801613287565b935050604061345687828801613337565b925050606085013567ffffffffffffffff81111561347757613476613feb565b5b613483878288016132db565b91505092959194509250565b600080604083850312156134a6576134a5613ff0565b5b60006134b485828601613287565b92505060206134c58582860161329c565b9150509250929050565b600080604083850312156134e6576134e5613ff0565b5b60006134f485828601613287565b925050602061350585828601613337565b9150509250929050565b60006020828403121561352557613524613ff0565b5b60006135338482850161329c565b91505092915050565b60006020828403121561355257613551613ff0565b5b6000613560848285016132b1565b91505092915050565b60006020828403121561357f5761357e613ff0565b5b600061358d848285016132c6565b91505092915050565b6000602082840312156135ac576135ab613ff0565b5b600082013567ffffffffffffffff8111156135ca576135c9613feb565b5b6135d684828501613309565b91505092915050565b6000602082840312156135f5576135f4613ff0565b5b600061360384828501613337565b91505092915050565b61361581613d63565b82525050565b61362481613d75565b82525050565b600061363582613c00565b61363f8185613c16565b935061364f818560208601613de6565b61365881613ff5565b840191505092915050565b600061366e82613c0b565b6136788185613c32565b9350613688818560208601613de6565b61369181613ff5565b840191505092915050565b60006136a782613c0b565b6136b18185613c43565b93506136c1818560208601613de6565b80840191505092915050565b600081546136da81613e19565b6136e48186613c43565b945060018216600081146136ff576001811461371057613743565b60ff19831686528186019350613743565b61371985613beb565b60005b8381101561373b5781548189015260018201915060208101905061371c565b838801955050505b50505092915050565b6000613759603083613c32565b915061376482614006565b604082019050919050565b600061377c602683613c32565b915061378782614055565b604082019050919050565b600061379f601483613c32565b91506137aa826140a4565b602082019050919050565b60006137c2603a83613c32565b91506137cd826140cd565b604082019050919050565b60006137e5601d83613c32565b91506137f08261411c565b602082019050919050565b6000613808601383613c32565b915061381382614145565b602082019050919050565b600061382b602083613c32565b91506138368261416e565b602082019050919050565b600061384e601783613c32565b915061385982614197565b602082019050919050565b6000613871600083613c27565b915061387c826141c0565b600082019050919050565b6000613894601483613c32565b915061389f826141c3565b602082019050919050565b60006138b7601f83613c32565b91506138c2826141ec565b602082019050919050565b60006138da601383613c32565b91506138e582614215565b602082019050919050565b6138f981613dcd565b82525050565b600061390b828661369c565b9150613917828561369c565b915061392382846136cd565b9150819050949350505050565b600061393b82613864565b9150819050919050565b600060208201905061395a600083018461360c565b92915050565b6000608082019050613975600083018761360c565b613982602083018661360c565b61398f60408301856138f0565b81810360608301526139a1818461362a565b905095945050505050565b60006020820190506139c1600083018461361b565b92915050565b600060208201905081810360008301526139e18184613663565b905092915050565b60006020820190508181036000830152613a028161374c565b9050919050565b60006020820190508181036000830152613a228161376f565b9050919050565b60006020820190508181036000830152613a4281613792565b9050919050565b60006020820190508181036000830152613a62816137b5565b9050919050565b60006020820190508181036000830152613a82816137d8565b9050919050565b60006020820190508181036000830152613aa2816137fb565b9050919050565b60006020820190508181036000830152613ac28161381e565b9050919050565b60006020820190508181036000830152613ae281613841565b9050919050565b60006020820190508181036000830152613b0281613887565b9050919050565b60006020820190508181036000830152613b22816138aa565b9050919050565b60006020820190508181036000830152613b42816138cd565b9050919050565b6000602082019050613b5e60008301846138f0565b92915050565b6000613b6e613b7f565b9050613b7a8282613e4b565b919050565b6000604051905090565b600067ffffffffffffffff821115613ba457613ba3613fb2565b5b613bad82613ff5565b9050602081019050919050565b600067ffffffffffffffff821115613bd557613bd4613fb2565b5b613bde82613ff5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5982613dcd565b9150613c6483613dcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9957613c98613ef6565b5b828201905092915050565b6000613caf82613dcd565b9150613cba83613dcd565b925082613cca57613cc9613f25565b5b828204905092915050565b6000613ce082613dcd565b9150613ceb83613dcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2457613d23613ef6565b5b828202905092915050565b6000613d3a82613dcd565b9150613d4583613dcd565b925082821015613d5857613d57613ef6565b5b828203905092915050565b6000613d6e82613dad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e04578082015181840152602081019050613de9565b83811115613e13576000848401525b50505050565b60006002820490506001821680613e3157607f821691505b60208210811415613e4557613e44613f54565b5b50919050565b613e5482613ff5565b810181811067ffffffffffffffff82111715613e7357613e72613fb2565b5b80604052505050565b6000613e8782613dcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eba57613eb9613ef6565b5b600182019050919050565b6000613ed082613dcd565b9150613edb83613dcd565b925082613eeb57613eea613f25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d617820746f6b656e7320657863656564656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61424781613d63565b811461425257600080fd5b50565b61425e81613d75565b811461426957600080fd5b50565b61427581613d81565b811461428057600080fd5b50565b61428c81613dcd565b811461429757600080fd5b5056fea264697066735822122088e78753f1117bb4ba7eb65c7887101e15ca42f731a41024af165bb550ea554464736f6c63430008070033697066733a2f2f516d61724a386d55667368316d645857654679704d76735a71384878444e426e654e35646637534661487135347a2f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806362b99ad41161012e578063a45ba8e7116100ab578063d5abeb011161006f578063d5abeb011461083c578063e0a8085314610867578063e985e9c514610890578063f2fde38b146108cd578063f676308a146108f65761023b565b8063a45ba8e714610745578063b071401b14610770578063b88d4fde14610799578063c87b56dd146107c2578063c99f774f146107ff5761023b565b80638da5cb5b116100f25780638da5cb5b1461067f57806394354fd0146106aa57806395d89b41146106d5578063a0712d6814610700578063a22cb4651461071c5761023b565b806362b99ad41461059a5780636352211e146105c557806370a0823114610602578063715018a61461063f5780637ec4a659146106565761023b565b806324a6ab0c116101bc5780634fdd43cb116101805780634fdd43cb146104c557806351830227146104ee5780635503a0e8146105195780635a1c1e98146105445780635c975abb1461056f5761023b565b806324a6ab0c146104085780633ccfd60b14610433578063408cbf941461044a57806342842e0e1461047357806344a0d68a1461049c5761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c146103625780631710872f1461038b57806318160ddd146103b457806323b872dd146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061353c565b61091f565b60405161027491906139ac565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f91906139c7565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906135df565b610a93565b6040516102dc9190613945565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134cf565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b6040516103309190613b49565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613596565b610c20565b005b34801561036e57600080fd5b506103896004803603810190610384919061350f565b610cb6565b005b34801561039757600080fd5b506103b260048036038101906103ad91906135df565b610d4f565b005b3480156103c057600080fd5b506103c9610dd5565b6040516103d69190613b49565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906133b9565b610dec565b005b34801561041457600080fd5b5061041d610dfc565b60405161042a9190613b49565b60405180910390f35b34801561043f57600080fd5b50610448610e02565b005b34801561045657600080fd5b50610471600480360381019061046c91906134cf565b610efa565b005b34801561047f57600080fd5b5061049a600480360381019061049591906133b9565b611029565b005b3480156104a857600080fd5b506104c360048036038101906104be91906135df565b611049565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190613596565b6110cf565b005b3480156104fa57600080fd5b50610503611165565b60405161051091906139ac565b60405180910390f35b34801561052557600080fd5b5061052e611178565b60405161053b91906139c7565b60405180910390f35b34801561055057600080fd5b50610559611206565b6040516105669190613b49565b60405180910390f35b34801561057b57600080fd5b5061058461120c565b60405161059191906139ac565b60405180910390f35b3480156105a657600080fd5b506105af61121f565b6040516105bc91906139c7565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906135df565b6112ad565b6040516105f99190613945565b60405180910390f35b34801561060e57600080fd5b506106296004803603810190610624919061334c565b6112c3565b6040516106369190613b49565b60405180910390f35b34801561064b57600080fd5b50610654611393565b005b34801561066257600080fd5b5061067d60048036038101906106789190613596565b61141b565b005b34801561068b57600080fd5b506106946114b1565b6040516106a19190613945565b60405180910390f35b3480156106b657600080fd5b506106bf6114db565b6040516106cc9190613b49565b60405180910390f35b3480156106e157600080fd5b506106ea6114e1565b6040516106f791906139c7565b60405180910390f35b61071a600480360381019061071591906135df565b611573565b005b34801561072857600080fd5b50610743600480360381019061073e919061348f565b6117c2565b005b34801561075157600080fd5b5061075a61193a565b60405161076791906139c7565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906135df565b6119c8565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061340c565b611a4e565b005b3480156107ce57600080fd5b506107e960048036038101906107e491906135df565b611aca565b6040516107f691906139c7565b60405180910390f35b34801561080b57600080fd5b506108266004803603810190610821919061334c565b611c23565b6040516108339190613b49565b60405180910390f35b34801561084857600080fd5b50610851611c3b565b60405161085e9190613b49565b60405180910390f35b34801561087357600080fd5b5061088e6004803603810190610889919061350f565b611c41565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613379565b611cda565b6040516108c491906139ac565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef919061334c565b611d6e565b005b34801561090257600080fd5b5061091d600480360381019061091891906135df565b611e66565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611eec565b5b9050919050565b606060028054610a1090613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613e19565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611f56565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a826112ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611fa4565b611cda565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611fac565b505050565b600d5481565b610c28611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610c466114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613aa9565b60405180910390fd5b80600b9080519060200190610cb292919061311d565b5050565b610cbe611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613aa9565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b610d57611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610d756114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613aa9565b60405180910390fd5b8060118190555050565b6000610ddf61205e565b6001546000540303905090565b610df7838383612063565b505050565b600f5481565b610e0a611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610e286114b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613aa9565b60405180910390fd5b60026009541415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90613b09565b60405180910390fd5b60026009819055506000479050610eef73c7b20cf25cec4b6565c326764c5521ee9382df2c82612554565b506001600981905550565b80600081118015610f0d57506010548111155b610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4390613a29565b60405180910390fd5b600e5481600054610f5d9190613c4e565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590613ae9565b60405180910390fd5b610fa6611fa4565b73ffffffffffffffffffffffffffffffffffffffff16610fc46114b1565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613aa9565b60405180910390fd5b6110248383612648565b505050565b61104483838360405180602001604052806000815250611a4e565b505050565b611051611fa4565b73ffffffffffffffffffffffffffffffffffffffff1661106f6114b1565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90613aa9565b60405180910390fd5b80600d8190555050565b6110d7611fa4565b73ffffffffffffffffffffffffffffffffffffffff166110f56114b1565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613aa9565b60405180910390fd5b80600c908051906020019061116192919061311d565b5050565b601360019054906101000a900460ff1681565b600b805461118590613e19565b80601f01602080910402602001604051908101604052809291908181526020018280546111b190613e19565b80156111fe5780601f106111d3576101008083540402835291602001916111fe565b820191906000526020600020905b8154815290600101906020018083116111e157829003601f168201915b505050505081565b60115481565b601360009054906101000a900460ff1681565b600a805461122c90613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461125890613e19565b80156112a55780601f1061127a576101008083540402835291602001916112a5565b820191906000526020600020905b81548152906001019060200180831161128857829003601f168201915b505050505081565b60006112b882612666565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139b611fa4565b73ffffffffffffffffffffffffffffffffffffffff166113b96114b1565b73ffffffffffffffffffffffffffffffffffffffff161461140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690613aa9565b60405180910390fd5b61141960006128f5565b565b611423611fa4565b73ffffffffffffffffffffffffffffffffffffffff166114416114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90613aa9565b60405180910390fd5b80600a90805190602001906114ad92919061311d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b6060600380546114f090613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461151c90613e19565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b5050505050905090565b8060008111801561158657506010548111155b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613a29565b60405180910390fd5b600e54816000546115d69190613c4e565b1115611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613ae9565b60405180910390fd5b601360009054906101000a900460ff1615611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90613ac9565b60405180910390fd5b60115482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116b59190613c4e565b11156116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613a89565b60405180910390fd5b600f54826000546117079190613c4e565b111561175e5781600d5461171b9190613cd5565b34101561175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613b29565b60405180910390fd5b5b6117683383612648565b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b79190613c4e565b925050819055505050565b6117ca611fa4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061183c611fa4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e9611fa4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161192e91906139ac565b60405180910390a35050565b600c805461194790613e19565b80601f016020809104026020016040519081016040528092919081815260200182805461197390613e19565b80156119c05780601f10611995576101008083540402835291602001916119c0565b820191906000526020600020905b8154815290600101906020018083116119a357829003601f168201915b505050505081565b6119d0611fa4565b73ffffffffffffffffffffffffffffffffffffffff166119ee6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b90613aa9565b60405180910390fd5b8060108190555050565b611a59848484612063565b611a788373ffffffffffffffffffffffffffffffffffffffff166129bb565b8015611a8d5750611a8b848484846129de565b155b15611ac4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611ad582611f56565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906139e9565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611bc257600c8054611b3d90613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990613e19565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b50505050509050611c1e565b6000611bcc612b3e565b90506000815111611bec5760405180602001604052806000815250611c1a565b80611bf684612bd0565b600b604051602001611c0a939291906138ff565b6040516020818303038152906040525b9150505b919050565b60126020528060005260406000206000915090505481565b600e5481565b611c49611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611c676114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613aa9565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d76611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611d946114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de190613aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190613a09565b60405180910390fd5b611e63816128f5565b50565b611e6e611fa4565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6114b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613aa9565b60405180910390fd5b80600f8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611f6161205e565b11158015611f70575060005482105b8015611f9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061206e82612666565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612095611fa4565b73ffffffffffffffffffffffffffffffffffffffff1614806120c857506120c782600001516120c2611fa4565b611cda565b5b8061210d57506120d6611fa4565b73ffffffffffffffffffffffffffffffffffffffff166120f584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612146576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121af576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612216576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122238585856001612d31565b6122336000848460000151611fac565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124e4576000548110156124e35782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254d8585856001612d37565b5050505050565b80471015612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90613a69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516125bd90613930565b60006040518083038185875af1925050503d80600081146125fa576040519150601f19603f3d011682016040523d82523d6000602084013e6125ff565b606091505b5050905080612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90613a49565b60405180910390fd5b505050565b612662828260405180602001604052806000815250612d3d565b5050565b61266e6131a3565b60008290508061267c61205e565b1115801561268b575060005481105b156128be576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128bc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a05780925050506128f0565b5b6001156128bb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128b65780925050506128f0565b6127a1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a04611fa4565b8786866040518563ffffffff1660e01b8152600401612a269493929190613960565b602060405180830381600087803b158015612a4057600080fd5b505af1925050508015612a7157506040513d601f19601f82011682018060405250810190612a6e9190613569565b60015b612aeb573d8060008114612aa1576040519150601f19603f3d011682016040523d82523d6000602084013e612aa6565b606091505b50600081511415612ae3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612b4d90613e19565b80601f0160208091040260200160405190810160405280929190818152602001828054612b7990613e19565b8015612bc65780601f10612b9b57610100808354040283529160200191612bc6565b820191906000526020600020905b815481529060010190602001808311612ba957829003601f168201915b5050505050905090565b60606000821415612c18576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612c4a578080612c3390613e7c565b915050600a82612c439190613ca4565b9150612c20565b60008167ffffffffffffffff811115612c6657612c65613fb2565b5b6040519080825280601f01601f191660200182016040528015612c985781602001600182028036833780820191505090505b5090505b60008514612d2557600182612cb19190613d2f565b9150600a85612cc09190613ec5565b6030612ccc9190613c4e565b60f81b818381518110612ce257612ce1613f83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e9190613ca4565b9450612c9c565b8093505050505b919050565b50505050565b50505050565b612d4a8383836001612d4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612df7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e046000868387612d31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612fce5750612fcd8773ffffffffffffffffffffffffffffffffffffffff166129bb565b5b15613094575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461304360008884806001019550886129de565b613079576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612fd457826000541461308f57600080fd5b613100565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613095575b8160008190555050506131166000868387612d37565b5050505050565b82805461312990613e19565b90600052602060002090601f01602090048101928261314b5760008555613192565b82601f1061316457805160ff1916838001178555613192565b82800160010185558215613192579182015b82811115613191578251825591602001919060010190613176565b5b50905061319f91906131e6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156131ff5760008160009055506001016131e7565b5090565b600061321661321184613b89565b613b64565b90508281526020810184848401111561323257613231613fe6565b5b61323d848285613dd7565b509392505050565b600061325861325384613bba565b613b64565b90508281526020810184848401111561327457613273613fe6565b5b61327f848285613dd7565b509392505050565b6000813590506132968161423e565b92915050565b6000813590506132ab81614255565b92915050565b6000813590506132c08161426c565b92915050565b6000815190506132d58161426c565b92915050565b600082601f8301126132f0576132ef613fe1565b5b8135613300848260208601613203565b91505092915050565b600082601f83011261331e5761331d613fe1565b5b813561332e848260208601613245565b91505092915050565b60008135905061334681614283565b92915050565b60006020828403121561336257613361613ff0565b5b600061337084828501613287565b91505092915050565b600080604083850312156133905761338f613ff0565b5b600061339e85828601613287565b92505060206133af85828601613287565b9150509250929050565b6000806000606084860312156133d2576133d1613ff0565b5b60006133e086828701613287565b93505060206133f186828701613287565b925050604061340286828701613337565b9150509250925092565b6000806000806080858703121561342657613425613ff0565b5b600061343487828801613287565b945050602061344587828801613287565b935050604061345687828801613337565b925050606085013567ffffffffffffffff81111561347757613476613feb565b5b613483878288016132db565b91505092959194509250565b600080604083850312156134a6576134a5613ff0565b5b60006134b485828601613287565b92505060206134c58582860161329c565b9150509250929050565b600080604083850312156134e6576134e5613ff0565b5b60006134f485828601613287565b925050602061350585828601613337565b9150509250929050565b60006020828403121561352557613524613ff0565b5b60006135338482850161329c565b91505092915050565b60006020828403121561355257613551613ff0565b5b6000613560848285016132b1565b91505092915050565b60006020828403121561357f5761357e613ff0565b5b600061358d848285016132c6565b91505092915050565b6000602082840312156135ac576135ab613ff0565b5b600082013567ffffffffffffffff8111156135ca576135c9613feb565b5b6135d684828501613309565b91505092915050565b6000602082840312156135f5576135f4613ff0565b5b600061360384828501613337565b91505092915050565b61361581613d63565b82525050565b61362481613d75565b82525050565b600061363582613c00565b61363f8185613c16565b935061364f818560208601613de6565b61365881613ff5565b840191505092915050565b600061366e82613c0b565b6136788185613c32565b9350613688818560208601613de6565b61369181613ff5565b840191505092915050565b60006136a782613c0b565b6136b18185613c43565b93506136c1818560208601613de6565b80840191505092915050565b600081546136da81613e19565b6136e48186613c43565b945060018216600081146136ff576001811461371057613743565b60ff19831686528186019350613743565b61371985613beb565b60005b8381101561373b5781548189015260018201915060208101905061371c565b838801955050505b50505092915050565b6000613759603083613c32565b915061376482614006565b604082019050919050565b600061377c602683613c32565b915061378782614055565b604082019050919050565b600061379f601483613c32565b91506137aa826140a4565b602082019050919050565b60006137c2603a83613c32565b91506137cd826140cd565b604082019050919050565b60006137e5601d83613c32565b91506137f08261411c565b602082019050919050565b6000613808601383613c32565b915061381382614145565b602082019050919050565b600061382b602083613c32565b91506138368261416e565b602082019050919050565b600061384e601783613c32565b915061385982614197565b602082019050919050565b6000613871600083613c27565b915061387c826141c0565b600082019050919050565b6000613894601483613c32565b915061389f826141c3565b602082019050919050565b60006138b7601f83613c32565b91506138c2826141ec565b602082019050919050565b60006138da601383613c32565b91506138e582614215565b602082019050919050565b6138f981613dcd565b82525050565b600061390b828661369c565b9150613917828561369c565b915061392382846136cd565b9150819050949350505050565b600061393b82613864565b9150819050919050565b600060208201905061395a600083018461360c565b92915050565b6000608082019050613975600083018761360c565b613982602083018661360c565b61398f60408301856138f0565b81810360608301526139a1818461362a565b905095945050505050565b60006020820190506139c1600083018461361b565b92915050565b600060208201905081810360008301526139e18184613663565b905092915050565b60006020820190508181036000830152613a028161374c565b9050919050565b60006020820190508181036000830152613a228161376f565b9050919050565b60006020820190508181036000830152613a4281613792565b9050919050565b60006020820190508181036000830152613a62816137b5565b9050919050565b60006020820190508181036000830152613a82816137d8565b9050919050565b60006020820190508181036000830152613aa2816137fb565b9050919050565b60006020820190508181036000830152613ac28161381e565b9050919050565b60006020820190508181036000830152613ae281613841565b9050919050565b60006020820190508181036000830152613b0281613887565b9050919050565b60006020820190508181036000830152613b22816138aa565b9050919050565b60006020820190508181036000830152613b42816138cd565b9050919050565b6000602082019050613b5e60008301846138f0565b92915050565b6000613b6e613b7f565b9050613b7a8282613e4b565b919050565b6000604051905090565b600067ffffffffffffffff821115613ba457613ba3613fb2565b5b613bad82613ff5565b9050602081019050919050565b600067ffffffffffffffff821115613bd557613bd4613fb2565b5b613bde82613ff5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5982613dcd565b9150613c6483613dcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9957613c98613ef6565b5b828201905092915050565b6000613caf82613dcd565b9150613cba83613dcd565b925082613cca57613cc9613f25565b5b828204905092915050565b6000613ce082613dcd565b9150613ceb83613dcd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2457613d23613ef6565b5b828202905092915050565b6000613d3a82613dcd565b9150613d4583613dcd565b925082821015613d5857613d57613ef6565b5b828203905092915050565b6000613d6e82613dad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e04578082015181840152602081019050613de9565b83811115613e13576000848401525b50505050565b60006002820490506001821680613e3157607f821691505b60208210811415613e4557613e44613f54565b5b50919050565b613e5482613ff5565b810181811067ffffffffffffffff82111715613e7357613e72613fb2565b5b80604052505050565b6000613e8782613dcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eba57613eb9613ef6565b5b600182019050919050565b6000613ed082613dcd565b9150613edb83613dcd565b925082613eeb57613eea613f25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d617820746f6b656e7320657863656564656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61424781613d63565b811461425257600080fd5b50565b61425e81613d75565b811461426957600080fd5b50565b61427581613d81565b811461428057600080fd5b50565b61428c81613dcd565b811461429757600080fd5b5056fea264697066735822122088e78753f1117bb4ba7eb65c7887101e15ca42f731a41024af165bb550ea554464736f6c63430008070033
Deployed Bytecode Sourcemap
48561:3430:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31026:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34411:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35914:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35477:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48766:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51398:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51504:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50996:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30275:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36771:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48840:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51828:160;;;;;;;;;;;;;:::i;:::-;;49959:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37012:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50670:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51154:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49058:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48688:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48919:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49028:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48655:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34220:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31395:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7524:103;;;;;;;;;;;;;:::i;:::-;;51292:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6873:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48876:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34580:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49486:467;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36190:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48726:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50860:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37268:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50111:466;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48966:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48804:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50583:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36540:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7782:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50750:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31026:305;31128:4;31180:25;31165:40;;;:11;:40;;;;:105;;;;31237:33;31222:48;;;:11;:48;;;;31165:105;:158;;;;31287:36;31311:11;31287:23;:36::i;:::-;31165:158;31145:178;;31026:305;;;:::o;34411:100::-;34465:13;34498:5;34491:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34411:100;:::o;35914:204::-;35982:7;36007:16;36015:7;36007;:16::i;:::-;36002:64;;36032:34;;;;;;;;;;;;;;36002:64;36086:15;:24;36102:7;36086:24;;;;;;;;;;;;;;;;;;;;;36079:31;;35914:204;;;:::o;35477:371::-;35550:13;35566:24;35582:7;35566:15;:24::i;:::-;35550:40;;35611:5;35605:11;;:2;:11;;;35601:48;;;35625:24;;;;;;;;;;;;;;35601:48;35682:5;35666:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35692:37;35709:5;35716:12;:10;:12::i;:::-;35692:16;:37::i;:::-;35691:38;35666:63;35662:138;;;35753:35;;;;;;;;;;;;;;35662:138;35812:28;35821:2;35825:7;35834:5;35812:8;:28::i;:::-;35539:309;35477:371;;:::o;48766:33::-;;;;:::o;51398:100::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51482:10:::1;51470:9;:22;;;;;;;;;;;;:::i;:::-;;51398:100:::0;:::o;51504:77::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51569:6:::1;51560;;:15;;;;;;;;;;;;;;;;;;51504:77:::0;:::o;50996:152::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51116:26:::1;51091:22;:51;;;;50996:152:::0;:::o;30275:303::-;30319:7;30544:15;:13;:15::i;:::-;30529:12;;30513:13;;:28;:46;30506:53;;30275:303;:::o;36771:170::-;36905:28;36915:4;36921:2;36925:7;36905:9;:28::i;:::-;36771:170;;;:::o;48840:31::-;;;;:::o;51828:160::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1:::1;2445:7;;:19;;2437:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;51885:15:::2;51903:21;51885:39;;51933:50;51779:42;51975:7;51933:17;:50::i;:::-;51878:110;1803:1:::1;2757:7;:22;;;;51828:160::o:0;49959:144::-;50034:11;49323:1;49309:11;:15;:52;;;;;49343:18;;49328:11;:33;;49309:52;49301:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49432:9;;49417:11;49401:13;;:27;;;;:::i;:::-;:40;;49393:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7104:12:::1;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50068:27:::2;50078:3;50083:11;50068:9;:27::i;:::-;49959:144:::0;;;:::o;37012:185::-;37150:39;37167:4;37173:2;37177:7;37150:39;;;;;;;;;;;;:16;:39::i;:::-;37012:185;;;:::o;50670:74::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50733:5:::1;50726:4;:12;;;;50670:74:::0;:::o;51154:132::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51262:18:::1;51242:17;:38;;;;;;;;;;;;:::i;:::-;;51154:132:::0;:::o;49058:28::-;;;;;;;;;;;;;:::o;48688:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48919:42::-;;;;:::o;49028:25::-;;;;;;;;;;;;;:::o;48655:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34220:124::-;34284:7;34311:20;34323:7;34311:11;:20::i;:::-;:25;;;34304:32;;34220:124;;;:::o;31395:206::-;31459:7;31500:1;31483:19;;:5;:19;;;31479:60;;;31511:28;;;;;;;;;;;;;;31479:60;31565:12;:19;31578:5;31565:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31557:36;;31550:43;;31395:206;;;:::o;7524:103::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;51292:100::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51376:10:::1;51364:9;:22;;;;;;;;;;;;:::i;:::-;;51292:100:::0;:::o;6873:87::-;6919:7;6946:6;;;;;;;;;;;6939:13;;6873:87;:::o;48876:38::-;;;;:::o;34580:104::-;34636:13;34669:7;34662:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34580:104;:::o;49486:467::-;49551:11;49323:1;49309:11;:15;:52;;;;;49343:18;;49328:11;:33;;49309:52;49301:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49432:9;;49417:11;49401:13;;:27;;;;:::i;:::-;:40;;49393:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49580:6:::1;;;;;;;;;;;49579:7;49571:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49676:22;;49661:11;49629:17;:29;49647:10;49629:29;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:69;;49621:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;49763:10;;49749:11;49733:13;;:27;;;;:::i;:::-;:40;49729:127;;;49813:11;49806:4;;:18;;;;:::i;:::-;49793:9;:31;;49785:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49729:127;49862:34;49872:10;49884:11;49862:9;:34::i;:::-;49936:11;49903:17;:29;49921:10;49903:29;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;49486:467:::0;;:::o;36190:279::-;36293:12;:10;:12::i;:::-;36281:24;;:8;:24;;;36277:54;;;36314:17;;;;;;;;;;;;;;36277:54;36389:8;36344:18;:32;36363:12;:10;:12::i;:::-;36344:32;;;;;;;;;;;;;;;:42;36377:8;36344:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36442:8;36413:48;;36428:12;:10;:12::i;:::-;36413:48;;;36452:8;36413:48;;;;;;:::i;:::-;;;;;;;;36190:279;;:::o;48726:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50860:130::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50965:19:::1;50944:18;:40;;;;50860:130:::0;:::o;37268:369::-;37435:28;37445:4;37451:2;37455:7;37435:9;:28::i;:::-;37478:15;:2;:13;;;:15::i;:::-;:76;;;;;37498:56;37529:4;37535:2;37539:7;37548:5;37498:30;:56::i;:::-;37497:57;37478:76;37474:156;;;37578:40;;;;;;;;;;;;;;37474:156;37268:369;;;;:::o;50111:466::-;50185:13;50222:17;50230:8;50222:7;:17::i;:::-;50206:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;50330:5;50318:17;;:8;;;;;;;;;;;:17;;;50314:64;;;50353:17;50346:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50314:64;50386:28;50417:10;:8;:10::i;:::-;50386:41;;50472:1;50447:14;50441:28;:32;:130;;;;;;;;;;;;;;;;;50509:14;50525:19;:8;:17;:19::i;:::-;50546:9;50492:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50441:130;50434:137;;;50111:466;;;;:::o;48966:53::-;;;;;;;;;;;;;;;;;:::o;48804:31::-;;;;:::o;50583:81::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50652:6:::1;50641:8;;:17;;;;;;;;;;;;;;;;;;50583:81:::0;:::o;36540:164::-;36637:4;36661:18;:25;36680:5;36661:25;;;;;;;;;;;;;;;:35;36687:8;36661:35;;;;;;;;;;;;;;;;;;;;;;;;;36654:42;;36540:164;;;;:::o;7782:201::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7891:1:::1;7871:22;;:8;:22;;;;7863:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;50750:104::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50834:14:::1;50821:10;:27;;;;50750:104:::0;:::o;19657:157::-;19742:4;19781:25;19766:40;;;:11;:40;;;;19759:47;;19657:157;;;:::o;37892:187::-;37949:4;37992:7;37973:15;:13;:15::i;:::-;:26;;:53;;;;;38013:13;;38003:7;:23;37973:53;:98;;;;;38044:11;:20;38056:7;38044:20;;;;;;;;;;;:27;;;;;;;;;;;;38043:28;37973:98;37966:105;;37892:187;;;:::o;5597:98::-;5650:7;5677:10;5670:17;;5597:98;:::o;45503:196::-;45645:2;45618:15;:24;45634:7;45618:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45683:7;45679:2;45663:28;;45672:5;45663:28;;;;;;;;;;;;45503:196;;;:::o;29999:92::-;30055:7;29999:92;:::o;41005:2112::-;41120:35;41158:20;41170:7;41158:11;:20::i;:::-;41120:58;;41191:22;41233:13;:18;;;41217:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41268:50;41285:13;:18;;;41305:12;:10;:12::i;:::-;41268:16;:50::i;:::-;41217:101;:154;;;;41359:12;:10;:12::i;:::-;41335:36;;:20;41347:7;41335:11;:20::i;:::-;:36;;;41217:154;41191:181;;41390:17;41385:66;;41416:35;;;;;;;;;;;;;;41385:66;41488:4;41466:26;;:13;:18;;;:26;;;41462:67;;41501:28;;;;;;;;;;;;;;41462:67;41558:1;41544:16;;:2;:16;;;41540:52;;;41569:23;;;;;;;;;;;;;;41540:52;41605:43;41627:4;41633:2;41637:7;41646:1;41605:21;:43::i;:::-;41713:49;41730:1;41734:7;41743:13;:18;;;41713:8;:49::i;:::-;42088:1;42058:12;:18;42071:4;42058:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42132:1;42104:12;:16;42117:2;42104:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42178:2;42150:11;:20;42162:7;42150:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42240:15;42195:11;:20;42207:7;42195:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42508:19;42540:1;42530:7;:11;42508:33;;42601:1;42560:43;;:11;:24;42572:11;42560:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42556:445;;;42785:13;;42771:11;:27;42767:219;;;42855:13;:18;;;42823:11;:24;42835:11;42823:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42938:13;:28;;;42896:11;:24;42908:11;42896:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42767:219;42556:445;42033:979;43048:7;43044:2;43029:27;;43038:4;43029:27;;;;;;;;;;;;43067:42;43088:4;43094:2;43098:7;43107:1;43067:20;:42::i;:::-;41109:2008;;41005:2112;;;:::o;10835:317::-;10950:6;10925:21;:31;;10917:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11004:12;11022:9;:14;;11044:6;11022:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11003:52;;;11074:7;11066:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10906:246;10835:317;;:::o;38087:104::-;38156:27;38166:2;38170:8;38156:27;;;;;;;;;;;;:9;:27::i;:::-;38087:104;;:::o;33050:1108::-;33111:21;;:::i;:::-;33145:12;33160:7;33145:22;;33228:4;33209:15;:13;:15::i;:::-;:23;;:47;;;;;33243:13;;33236:4;:20;33209:47;33205:886;;;33277:31;33311:11;:17;33323:4;33311:17;;;;;;;;;;;33277:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33352:9;:16;;;33347:729;;33423:1;33397:28;;:9;:14;;;:28;;;33393:101;;33461:9;33454:16;;;;;;33393:101;33796:261;33803:4;33796:261;;;33836:6;;;;;;;;33881:11;:17;33893:4;33881:17;;;;;;;;;;;33869:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33955:1;33929:28;;:9;:14;;;:28;;;33925:109;;33997:9;33990:16;;;;;;33925:109;33796:261;;;33347:729;33258:833;33205:886;34119:31;;;;;;;;;;;;;;33050:1108;;;;:::o;8143:191::-;8217:16;8236:6;;;;;;;;;;;8217:25;;8262:8;8253:6;;:17;;;;;;;;;;;;;;;;;;8317:8;8286:40;;8307:8;8286:40;;;;;;;;;;;;8206:128;8143:191;:::o;9574:326::-;9634:4;9891:1;9869:7;:19;;;:23;9862:30;;9574:326;;;:::o;46191:667::-;46354:4;46391:2;46375:36;;;46412:12;:10;:12::i;:::-;46426:4;46432:7;46441:5;46375:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46371:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46626:1;46609:6;:13;:18;46605:235;;;46655:40;;;;;;;;;;;;;;46605:235;46798:6;46792:13;46783:6;46779:2;46775:15;46768:38;46371:480;46504:45;;;46494:55;;;:6;:55;;;;46487:62;;;46191:667;;;;;;:::o;51587:104::-;51647:13;51676:9;51669:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51587:104;:::o;3159:723::-;3215:13;3445:1;3436:5;:10;3432:53;;;3463:10;;;;;;;;;;;;;;;;;;;;;3432:53;3495:12;3510:5;3495:20;;3526:14;3551:78;3566:1;3558:4;:9;3551:78;;3584:8;;;;;:::i;:::-;;;;3615:2;3607:10;;;;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3639:39;;3689:154;3705:1;3696:5;:10;3689:154;;3733:1;3723:11;;;;;:::i;:::-;;;3800:2;3792:5;:10;;;;:::i;:::-;3779:2;:24;;;;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3829:2;3820:11;;;;;:::i;:::-;;;3689:154;;;3867:6;3853:21;;;;;3159:723;;;;:::o;47506:159::-;;;;;:::o;48324:158::-;;;;;:::o;38554:163::-;38677:32;38683:2;38687:8;38697:5;38704:4;38677:5;:32::i;:::-;38554:163;;;:::o;38976:1775::-;39115:20;39138:13;;39115:36;;39180:1;39166:16;;:2;:16;;;39162:48;;;39191:19;;;;;;;;;;;;;;39162:48;39237:1;39225:8;:13;39221:44;;;39247:18;;;;;;;;;;;;;;39221:44;39278:61;39308:1;39312:2;39316:12;39330:8;39278:21;:61::i;:::-;39651:8;39616:12;:16;39629:2;39616:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39715:8;39675:12;:16;39688:2;39675:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39774:2;39741:11;:25;39753:12;39741:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39841:15;39791:11;:25;39803:12;39791:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39874:20;39897:12;39874:35;;39924:11;39953:8;39938:12;:23;39924:37;;39982:4;:23;;;;;39990:15;:2;:13;;;:15::i;:::-;39982:23;39978:641;;;40026:314;40082:12;40078:2;40057:38;;40074:1;40057:38;;;;;;;;;;;;40123:69;40162:1;40166:2;40170:14;;;;;;40186:5;40123:30;:69::i;:::-;40118:174;;40228:40;;;;;;;;;;;;;;40118:174;40335:3;40319:12;:19;;40026:314;;40421:12;40404:13;;:29;40400:43;;40435:8;;;40400:43;39978:641;;;40484:120;40540:14;;;;;;40536:2;40515:40;;40532:1;40515:40;;;;;;;;;;;;40599:3;40583:12;:19;;40484:120;;39978:641;40649:12;40633:13;:28;;;;39591:1082;;40683:60;40712:1;40716:2;40720:12;40734:8;40683:20;:60::i;:::-;39104:1647;38976:1775;;;;:::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:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:398::-;12855:3;12876:83;12957:1;12952:3;12876:83;:::i;:::-;12869:90;;12968:93;13057:3;12968:93;:::i;:::-;13086:1;13081:3;13077:11;13070:18;;12696:398;;;:::o;13100:366::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:118::-;14303:24;14321:5;14303:24;:::i;:::-;14298:3;14291:37;14216:118;;:::o;14340:589::-;14565:3;14587:95;14678:3;14669:6;14587:95;:::i;:::-;14580:102;;14699:95;14790:3;14781:6;14699:95;:::i;:::-;14692:102;;14811:92;14899:3;14890:6;14811:92;:::i;:::-;14804:99;;14920:3;14913:10;;14340:589;;;;;;:::o;14935:379::-;15119:3;15141:147;15284:3;15141:147;:::i;:::-;15134:154;;15305:3;15298:10;;14935:379;;;:::o;15320:222::-;15413:4;15451:2;15440:9;15436:18;15428:26;;15464:71;15532:1;15521:9;15517:17;15508:6;15464:71;:::i;:::-;15320:222;;;;:::o;15548:640::-;15743:4;15781:3;15770:9;15766:19;15758:27;;15795:71;15863:1;15852:9;15848:17;15839:6;15795:71;:::i;:::-;15876:72;15944:2;15933:9;15929:18;15920:6;15876:72;:::i;:::-;15958;16026:2;16015:9;16011:18;16002:6;15958:72;:::i;:::-;16077:9;16071:4;16067:20;16062:2;16051:9;16047:18;16040:48;16105:76;16176:4;16167:6;16105:76;:::i;:::-;16097:84;;15548:640;;;;;;;:::o;16194:210::-;16281:4;16319:2;16308:9;16304:18;16296:26;;16332:65;16394:1;16383:9;16379:17;16370:6;16332:65;:::i;:::-;16194:210;;;;:::o;16410:313::-;16523:4;16561:2;16550:9;16546:18;16538:26;;16610:9;16604:4;16600:20;16596:1;16585:9;16581:17;16574:47;16638:78;16711:4;16702:6;16638:78;:::i;:::-;16630:86;;16410:313;;;;:::o;16729:419::-;16895:4;16933:2;16922:9;16918:18;16910:26;;16982:9;16976:4;16972:20;16968:1;16957:9;16953:17;16946:47;17010:131;17136:4;17010:131;:::i;:::-;17002:139;;16729:419;;;:::o;17154:::-;17320:4;17358:2;17347:9;17343:18;17335:26;;17407:9;17401:4;17397:20;17393:1;17382:9;17378:17;17371:47;17435:131;17561:4;17435:131;:::i;:::-;17427:139;;17154:419;;;:::o;17579:::-;17745:4;17783:2;17772:9;17768:18;17760:26;;17832:9;17826:4;17822:20;17818:1;17807:9;17803:17;17796:47;17860:131;17986:4;17860:131;:::i;:::-;17852:139;;17579:419;;;:::o;18004:::-;18170:4;18208:2;18197:9;18193:18;18185:26;;18257:9;18251:4;18247:20;18243:1;18232:9;18228:17;18221:47;18285:131;18411:4;18285:131;:::i;:::-;18277:139;;18004:419;;;:::o;18429:::-;18595:4;18633:2;18622:9;18618:18;18610:26;;18682:9;18676:4;18672:20;18668:1;18657:9;18653:17;18646:47;18710:131;18836:4;18710:131;:::i;:::-;18702:139;;18429:419;;;:::o;18854:::-;19020:4;19058:2;19047:9;19043:18;19035:26;;19107:9;19101:4;19097:20;19093:1;19082:9;19078:17;19071:47;19135:131;19261:4;19135:131;:::i;:::-;19127:139;;18854:419;;;:::o;19279:::-;19445:4;19483:2;19472:9;19468:18;19460:26;;19532:9;19526:4;19522:20;19518:1;19507:9;19503:17;19496:47;19560:131;19686:4;19560:131;:::i;:::-;19552:139;;19279:419;;;:::o;19704:::-;19870:4;19908:2;19897:9;19893:18;19885:26;;19957:9;19951:4;19947:20;19943:1;19932:9;19928:17;19921:47;19985:131;20111:4;19985:131;:::i;:::-;19977:139;;19704:419;;;:::o;20129:::-;20295:4;20333:2;20322:9;20318:18;20310:26;;20382:9;20376:4;20372:20;20368:1;20357:9;20353:17;20346:47;20410:131;20536:4;20410:131;:::i;:::-;20402:139;;20129:419;;;:::o;20554:::-;20720:4;20758:2;20747:9;20743:18;20735:26;;20807:9;20801:4;20797:20;20793:1;20782:9;20778:17;20771:47;20835:131;20961:4;20835:131;:::i;:::-;20827:139;;20554:419;;;:::o;20979:::-;21145:4;21183:2;21172:9;21168:18;21160:26;;21232:9;21226:4;21222:20;21218:1;21207:9;21203:17;21196:47;21260:131;21386:4;21260:131;:::i;:::-;21252:139;;20979:419;;;:::o;21404:222::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21548:71;21616:1;21605:9;21601:17;21592:6;21548:71;:::i;:::-;21404:222;;;;:::o;21632:129::-;21666:6;21693:20;;:::i;:::-;21683:30;;21722:33;21750:4;21742:6;21722:33;:::i;:::-;21632:129;;;:::o;21767:75::-;21800:6;21833:2;21827:9;21817:19;;21767:75;:::o;21848:307::-;21909:4;21999:18;21991:6;21988:30;21985:56;;;22021:18;;:::i;:::-;21985:56;22059:29;22081:6;22059:29;:::i;:::-;22051:37;;22143:4;22137;22133:15;22125:23;;21848:307;;;:::o;22161:308::-;22223:4;22313:18;22305:6;22302:30;22299:56;;;22335:18;;:::i;:::-;22299:56;22373:29;22395:6;22373:29;:::i;:::-;22365:37;;22457:4;22451;22447:15;22439:23;;22161:308;;;:::o;22475:141::-;22524:4;22547:3;22539:11;;22570:3;22567:1;22560:14;22604:4;22601:1;22591:18;22583:26;;22475:141;;;:::o;22622:98::-;22673:6;22707:5;22701:12;22691:22;;22622:98;;;:::o;22726:99::-;22778:6;22812:5;22806:12;22796:22;;22726:99;;;:::o;22831:168::-;22914:11;22948:6;22943:3;22936:19;22988:4;22983:3;22979:14;22964:29;;22831:168;;;;:::o;23005:147::-;23106:11;23143:3;23128:18;;23005:147;;;;:::o;23158:169::-;23242:11;23276:6;23271:3;23264:19;23316:4;23311:3;23307:14;23292:29;;23158:169;;;;:::o;23333:148::-;23435:11;23472:3;23457:18;;23333:148;;;;:::o;23487:305::-;23527:3;23546:20;23564:1;23546:20;:::i;:::-;23541:25;;23580:20;23598:1;23580:20;:::i;:::-;23575:25;;23734:1;23666:66;23662:74;23659:1;23656:81;23653:107;;;23740:18;;:::i;:::-;23653:107;23784:1;23781;23777:9;23770:16;;23487:305;;;;:::o;23798:185::-;23838:1;23855:20;23873:1;23855:20;:::i;:::-;23850:25;;23889:20;23907:1;23889:20;:::i;:::-;23884:25;;23928:1;23918:35;;23933:18;;:::i;:::-;23918:35;23975:1;23972;23968:9;23963:14;;23798:185;;;;:::o;23989:348::-;24029:7;24052:20;24070:1;24052:20;:::i;:::-;24047:25;;24086:20;24104:1;24086:20;:::i;:::-;24081:25;;24274:1;24206:66;24202:74;24199:1;24196:81;24191:1;24184:9;24177:17;24173:105;24170:131;;;24281:18;;:::i;:::-;24170:131;24329:1;24326;24322:9;24311:20;;23989:348;;;;:::o;24343:191::-;24383:4;24403:20;24421:1;24403:20;:::i;:::-;24398:25;;24437:20;24455:1;24437:20;:::i;:::-;24432:25;;24476:1;24473;24470:8;24467:34;;;24481:18;;:::i;:::-;24467:34;24526:1;24523;24519:9;24511:17;;24343:191;;;;:::o;24540:96::-;24577:7;24606:24;24624:5;24606:24;:::i;:::-;24595:35;;24540:96;;;:::o;24642:90::-;24676:7;24719:5;24712:13;24705:21;24694:32;;24642:90;;;:::o;24738:149::-;24774:7;24814:66;24807:5;24803:78;24792:89;;24738:149;;;:::o;24893:126::-;24930:7;24970:42;24963:5;24959:54;24948:65;;24893:126;;;:::o;25025:77::-;25062:7;25091:5;25080:16;;25025:77;;;:::o;25108:154::-;25192:6;25187:3;25182;25169:30;25254:1;25245:6;25240:3;25236:16;25229:27;25108:154;;;:::o;25268:307::-;25336:1;25346:113;25360:6;25357:1;25354:13;25346:113;;;25445:1;25440:3;25436:11;25430:18;25426:1;25421:3;25417:11;25410:39;25382:2;25379:1;25375:10;25370:15;;25346:113;;;25477:6;25474:1;25471:13;25468:101;;;25557:1;25548:6;25543:3;25539:16;25532:27;25468:101;25317:258;25268:307;;;:::o;25581:320::-;25625:6;25662:1;25656:4;25652:12;25642:22;;25709:1;25703:4;25699:12;25730:18;25720:81;;25786:4;25778:6;25774:17;25764:27;;25720:81;25848:2;25840:6;25837:14;25817:18;25814:38;25811:84;;;25867:18;;:::i;:::-;25811:84;25632:269;25581:320;;;:::o;25907:281::-;25990:27;26012:4;25990:27;:::i;:::-;25982:6;25978:40;26120:6;26108:10;26105:22;26084:18;26072:10;26069:34;26066:62;26063:88;;;26131:18;;:::i;:::-;26063:88;26171:10;26167:2;26160:22;25950:238;25907:281;;:::o;26194:233::-;26233:3;26256:24;26274:5;26256:24;:::i;:::-;26247:33;;26302:66;26295:5;26292:77;26289:103;;;26372:18;;:::i;:::-;26289:103;26419:1;26412:5;26408:13;26401:20;;26194:233;;;:::o;26433:176::-;26465:1;26482:20;26500:1;26482:20;:::i;:::-;26477:25;;26516:20;26534:1;26516:20;:::i;:::-;26511:25;;26555:1;26545:35;;26560:18;;:::i;:::-;26545:35;26601:1;26598;26594:9;26589:14;;26433:176;;;;:::o;26615:180::-;26663:77;26660:1;26653:88;26760:4;26757:1;26750:15;26784:4;26781:1;26774:15;26801:180;26849:77;26846:1;26839:88;26946:4;26943:1;26936:15;26970:4;26967:1;26960:15;26987:180;27035:77;27032:1;27025:88;27132:4;27129:1;27122:15;27156:4;27153:1;27146:15;27173:180;27221:77;27218:1;27211:88;27318:4;27315:1;27308:15;27342:4;27339:1;27332:15;27359:180;27407:77;27404:1;27397:88;27504:4;27501:1;27494:15;27528:4;27525:1;27518:15;27545:117;27654:1;27651;27644:12;27668:117;27777:1;27774;27767:12;27791:117;27900:1;27897;27890:12;27914:117;28023:1;28020;28013:12;28037:102;28078:6;28129:2;28125:7;28120:2;28113:5;28109:14;28105:28;28095:38;;28037:102;;;:::o;28145:235::-;28285:34;28281:1;28273:6;28269:14;28262:58;28354:18;28349:2;28341:6;28337:15;28330:43;28145:235;:::o;28386:225::-;28526:34;28522:1;28514:6;28510:14;28503:58;28595:8;28590:2;28582:6;28578:15;28571:33;28386:225;:::o;28617:170::-;28757:22;28753:1;28745:6;28741:14;28734:46;28617:170;:::o;28793:245::-;28933:34;28929:1;28921:6;28917:14;28910:58;29002:28;28997:2;28989:6;28985:15;28978:53;28793:245;:::o;29044:179::-;29184:31;29180:1;29172:6;29168:14;29161:55;29044:179;:::o;29229:169::-;29369:21;29365:1;29357:6;29353:14;29346:45;29229:169;:::o;29404:182::-;29544:34;29540:1;29532:6;29528:14;29521:58;29404:182;:::o;29592:173::-;29732:25;29728:1;29720:6;29716:14;29709:49;29592:173;:::o;29771:114::-;;:::o;29891:170::-;30031:22;30027:1;30019:6;30015:14;30008:46;29891:170;:::o;30067:181::-;30207:33;30203:1;30195:6;30191:14;30184:57;30067:181;:::o;30254:169::-;30394:21;30390:1;30382:6;30378:14;30371:45;30254:169;:::o;30429:122::-;30502:24;30520:5;30502:24;:::i;:::-;30495:5;30492:35;30482:63;;30541:1;30538;30531:12;30482:63;30429:122;:::o;30557:116::-;30627:21;30642:5;30627:21;:::i;:::-;30620:5;30617:32;30607:60;;30663:1;30660;30653:12;30607:60;30557:116;:::o;30679:120::-;30751:23;30768:5;30751:23;:::i;:::-;30744:5;30741:34;30731:62;;30789:1;30786;30779:12;30731:62;30679:120;:::o;30805:122::-;30878:24;30896:5;30878:24;:::i;:::-;30871:5;30868:35;30858:63;;30917:1;30914;30907:12;30858:63;30805:122;:::o
Swarm Source
ipfs://88e78753f1117bb4ba7eb65c7887101e15ca42f731a41024af165bb550ea5544
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.