Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 Lads
Holders
263
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 LadsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DoodLadsNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-12 */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.0 (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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (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/utils/[email protected] // OpenZeppelin Contracts v4.4.0 (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/introspection/[email protected] // OpenZeppelin Contracts v4.4.0 (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/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (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/structs/[email protected] // OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File contracts/DoodLadsNFT.sol pragma solidity ^0.8.0; /** Dood Lads is a collection of 4,555 randomly generated NFTs on the Ethereum blockchain. A tribute project inspired by Larva Lads and Doodles. Join the Doodlelads and vibe with other Dood Lads! Spread our !vibe over the whole space! Make friends here! WGMI! **/ contract DoodLadsNFT is ERC721, Ownable { /// @dev Library //////////////////////////////////////////// using EnumerableSet for EnumerableSet.UintSet; /// @dev Event event PurchaseEvent(address purchaseWallet, uint256 nftID, uint256 purchaseTimestamp); //////////////////////////////////////////// /// @dev All constant defination //////////////////////////////////////////// uint256 public constant TOTAL_SUPPLY = 3555; uint256 public constant PRICE = 0.0188 ether; uint256 public constant PRE_SAlE_AMOUNT = 1000; uint256 public constant PRE_SALE_PRICE = 0.0 ether; address public constant WITHDRAW_ADDRESS = 0x8c89031Ee2ED29b5d4dc1671078a122f3E000310; /// @dev public variable for business //////////////////////////////////////////// /// @dev how many NFTs have been sold uint256 private _totalSold; /// @dev notice upgrade token bool private IS_SELLING = true; mapping(address=>EnumerableSet.UintSet) private ownedNFTs; string private BASE_URI = "https://nft.doodladsnft.com/id/"; /// functions //////////////////////////////////////////////////////////////////////// /// NFT Related //////////////////////////////////////////////////////////////////////// constructor() ERC721("DooDLads", "Lads") {} function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { return string(abi.encodePacked(BASE_URI, Strings.toString(tokenId), ".json")); } /// @dev total sold /// @return total sold amount function totalSold() public view returns (uint256) { return _totalSold; } /// @dev check if we have storage for the purchase function isEnoughSupply(uint256 amount, bool needReportError) private view returns (bool) { uint256 solded = totalSold(); uint256 afterPurchase = solded + amount; if (needReportError) { require(afterPurchase <= TOTAL_SUPPLY, "Max limit"); return true; } else { if (afterPurchase <= TOTAL_SUPPLY) { return true; } else { return false; } } } function queryPurchaseLimit(address target) public view returns (uint256) { if (totalSold() >= PRE_SAlE_AMOUNT) { return 10; } else { return 5; } } function queryPurchaseTotalFee(uint256 amount) public view returns (uint256 totalFee) { // price validate if (totalSold() >= PRE_SAlE_AMOUNT) { // normal price totalFee = (PRICE * amount); } else { if (totalSold() + amount > PRE_SAlE_AMOUNT) { totalFee = (PRE_SAlE_AMOUNT - totalSold()) * PRE_SALE_PRICE + (PRICE * (amount - (PRE_SAlE_AMOUNT - totalSold()))); } else { totalFee = (PRE_SALE_PRICE * amount); } } } function purchaseValidate(address purchaseUser, uint256 amount) private view { // basic validate require(IS_SELLING == true, "Not start selling yet(1)"); require(amount >= 1, "at least purchase 1"); require(amount <= 10, "at most purchase 10"); isEnoughSupply(amount, true); // price validate if (totalSold() > PRE_SAlE_AMOUNT) { // normal price require(msg.value >= (PRICE * amount), "insufficient value"); } else { if (totalSold() + amount > PRE_SAlE_AMOUNT) { uint256 requireAmount = (PRE_SAlE_AMOUNT - totalSold()) * PRE_SALE_PRICE + (PRICE * (amount - (PRE_SAlE_AMOUNT - totalSold()))); require(msg.value >= requireAmount, "insufficient value"); } else { // preSales // require(ownedNFTs[purchaseUser].length() + amount <= 3, "purchase over is limite"); require(amount <= 5, "at most purchase 5"); require(msg.value >= (PRE_SALE_PRICE * amount), "insufficient value"); } } } /// @dev inner method to verify the owner of the token function isOwner(uint256 nftID, address owner) private view returns(bool isNFTOwner) { address tokenOwner = ownerOf(nftID); isNFTOwner = (tokenOwner == owner); } /// @dev mint function function mintToAddress(address purchaseUser, uint256 amount) private { EnumerableSet.UintSet storage nftSet = ownedNFTs[purchaseUser]; uint256 currentTokenId = _totalSold; for(uint256 i=0; i<amount; i++){ // do mint currentTokenId = currentTokenId + 1; _safeMint(purchaseUser, currentTokenId); nftSet.add(currentTokenId); emit PurchaseEvent(purchaseUser, currentTokenId, block.timestamp); } _totalSold = currentTokenId; } /// @dev show all purchased nfts by Arrays /// @return tokens nftID array function listMyNFT(address owner) external view returns (uint256[] memory tokens) { EnumerableSet.UintSet storage nftSets = ownedNFTs[owner]; tokens = nftSets.values(); } /// @dev user doing purchase /// @param amount how many function purchaseNFT(uint256 amount) external payable { address purchaseUser = msg.sender; purchaseValidate(purchaseUser, amount); mintToAddress(purchaseUser, amount); } function transferFrom( address from, address to, uint256 tokenId ) public override { ownedNFTs[from].remove(tokenId); super.transferFrom(from, to, tokenId); ownedNFTs[to].add(tokenId); } /// Admin Functions ////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////// function batchMint(address wallet, uint amount) external onlyOwner { isEnoughSupply(amount, true); mintToAddress(wallet, amount); } function setSelling(bool isSelling) external onlyOwner { IS_SELLING = isSelling; } function withdrawETH() external { if (msg.sender == WITHDRAW_ADDRESS) { payable(msg.sender).transfer(address(this).balance); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"purchaseWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"nftID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purchaseTimestamp","type":"uint256"}],"name":"PurchaseEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SAlE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"listMyNFT","outputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"purchaseNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"queryPurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"queryPurchaseTotalFee","outputs":[{"internalType":"uint256","name":"totalFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSelling","type":"bool"}],"name":"setSelling","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":"totalSold","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":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805460ff1916600117905560c0604052601f60808190527f68747470733a2f2f6e66742e646f6f646c6164736e66742e636f6d2f69642f0060a09081526200004d91600a919062000137565b503480156200005b57600080fd5b506040805180820182526008815267446f6f444c61647360c01b6020808301918252835180850190945260048452634c61647360e01b908401528151919291620000a89160009162000137565b508051620000be90600190602084019062000137565b505050620000db620000d5620000e160201b60201c565b620000e5565b6200021a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b6123d7806200022a6000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104dc578063f2fde38b14610525578063faa6d54014610545578063fce3bbb51461056557600080fd5b8063b88d4fde14610471578063bf1a4c5414610491578063c87b56dd146104a7578063e086e5ec146104c757600080fd5b8063902d55a5116100d1578063902d55a5146104115780639106d7ba1461042757806395d89b411461043c578063a22cb4651461045157600080fd5b8063715018a6146103c35780638d859f3e146103d85780638da5cb5b146103f357600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461034357806343508b05146103635780636352211e1461038357806370a08231146103a357600080fd5b806323b872dd146102d65780633c4ca107146102f65780633f14e8d51461031657600080fd5b8063095ea7b3116101a0578063095ea7b314610256578063122e04a814610278578063150bde03146102a0578063193402bb146102b357600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612054565b610585565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610622565b6040516101f3919061223e565b34801561022a57600080fd5b5061023e61023936600461208c565b6106b4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612011565b61074e565b005b34801561028457600080fd5b5061023e738c89031ee2ed29b5d4dc1671078a122f3e00031081565b6102766102ae36600461208c565b61089e565b3480156102bf57600080fd5b506102c8600081565b6040519081526020016101f3565b3480156102e257600080fd5b506102766102f1366004611ed8565b6108b7565b34801561030257600080fd5b506102c8610311366004611e8c565b61090d565b34801561032257600080fd5b50610336610331366004611e8c565b610935565b6040516101f391906121fa565b34801561034f57600080fd5b5061027661035e366004611ed8565b610960565b34801561036f57600080fd5b5061027661037e366004612011565b61097b565b34801561038f57600080fd5b5061023e61039e36600461208c565b6109eb565b3480156103af57600080fd5b506102c86103be366004611e8c565b610a76565b3480156103cf57600080fd5b50610276610b10565b3480156103e457600080fd5b506102c86642ca8019c7000081565b3480156103ff57600080fd5b506006546001600160a01b031661023e565b34801561041d57600080fd5b506102c8610de381565b34801561043357600080fd5b506007546102c8565b34801561044857600080fd5b50610211610b76565b34801561045d57600080fd5b5061027661046c366004611fe8565b610b85565b34801561047d57600080fd5b5061027661048c366004611f13565b610b90565b34801561049d57600080fd5b506102c86103e881565b3480156104b357600080fd5b506102116104c236600461208c565b610c18565b3480156104d357600080fd5b50610276610c4c565b3480156104e857600080fd5b506101e76104f7366004611ea6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b50610276610540366004611e8c565b610c97565b34801561055157600080fd5b506102c861056036600461208c565b610d76565b34801561057157600080fd5b5061027661058036600461203a565b610e17565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105e857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610631906122df565b80601f016020809104026020016040519081016040528092919081815260200182805461065d906122df565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610759826109eb565b9050806001600160a01b0316836001600160a01b031614156107e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610729565b336001600160a01b038216148061081d57506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b61088f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610729565b6108998383610e84565b505050565b336108a98183610eff565b6108b3818361119e565b5050565b6001600160a01b03831660009081526009602052604090206108d99082611249565b506108e5838383611255565b6001600160a01b038216600090815260096020526040902061090790826112dc565b50505050565b60006103e861091b60075490565b106109285750600a919050565b506005919050565b919050565b6001600160a01b0381166000908152600960205260409020606090610959816112e8565b9392505050565b61089983838360405180602001604052806000815250610b90565b6006546001600160a01b031633146109d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6109e08160016112f5565b506108b3828261119e565b6000818152600260205260408120546001600160a01b03168061061c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610729565b60006001600160a01b038216610af45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610729565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b610b746000611393565b565b606060018054610631906122df565b6108b33383836113f2565b610b9a33836114c1565b610c0c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610729565b610907848484846115b8565b6060600a610c2583611636565b604051602001610c369291906120ec565b6040516020818303038152906040529050919050565b33738c89031ee2ed29b5d4dc1671078a122f3e0003101415610b745760405133904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6006546001600160a01b03163314610cf15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6001600160a01b038116610d6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610729565b610c9481611393565b60006103e8610d8460075490565b10610d9a5761061c826642ca8019c7000061227d565b6103e882610da760075490565b610db19190612251565b1115610e0c57600754610dc6906103e861229c565b610dd0908361229c565b610de1906642ca8019c7000061227d565b6000610dec60075490565b610df8906103e861229c565b610e02919061227d565b61061c9190612251565b61061c82600061227d565b6006546001600160a01b03163314610e715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6008805460ff1916911515919091179055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610ec6826109eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60085460ff161515600114610f565760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e672079657428312900000000000000006044820152606401610729565b6001811015610fa75760405162461bcd60e51b815260206004820152601360248201527f6174206c656173742070757263686173652031000000000000000000000000006044820152606401610729565b600a811115610ff85760405162461bcd60e51b815260206004820152601360248201527f6174206d6f7374207075726368617365203130000000000000000000000000006044820152606401610729565b6110038160016112f5565b506103e861101060075490565b111561107657611027816642ca8019c7000061227d565b3410156108b35760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c756500000000000000000000000000006044820152606401610729565b6103e88161108360075490565b61108d9190612251565b111561114257600061109e60075490565b6110aa906103e861229c565b6110b4908361229c565b6110c5906642ca8019c7000061227d565b60006110d060075490565b6110dc906103e861229c565b6110e6919061227d565b6110f09190612251565b9050803410156108995760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c756500000000000000000000000000006044820152606401610729565b60058111156111935760405162461bcd60e51b815260206004820152601260248201527f6174206d6f7374207075726368617365203500000000000000000000000000006044820152606401610729565b61102781600061227d565b6001600160a01b038216600090815260096020526040812060075490915b83811015611240576111cf826001612251565b91506111db8583611784565b6111e583836112dc565b50604080516001600160a01b038716815260208101849052428183015290517fa30e240d2c105a13336386b3e6f119d88730afc24c7127217034dd707b809c039181900360600190a1806112388161231a565b9150506111bc565b50600755505050565b6000610959838361179e565b61125f33826114c1565b6112d15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610729565b6108998383836118bb565b60006109598383611a95565b6060600061095983611ae4565b60008061130160075490565b9050600061130f8583612251565b9050831561137457610de38111156113695760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d697400000000000000000000000000000000000000000000006044820152606401610729565b60019250505061061c565b610de381116113885760019250505061061c565b60009250505061061c565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610729565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818152600260205260408120546001600160a01b031661153a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610729565b6000611545836109eb565b9050806001600160a01b0316846001600160a01b031614806115805750836001600160a01b0316611575846106b4565b6001600160a01b0316145b806115b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b6115c38484846118bb565b6115cf84848484611b40565b6109075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b60608161167657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156116a0578061168a8161231a565b91506116999050600a83612269565b915061167a565b60008167ffffffffffffffff8111156116c957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f3576020820181803683370190505b5090505b84156115b05761170860018361229c565b9150611715600a86612335565b611720906030612251565b60f81b81838151811061174357634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061177d600a86612269565b94506116f7565b6108b3828260405180602001604052806000815250611c98565b600081815260018301602052604081205480156118b15760006117c260018361229c565b85549091506000906117d69060019061229c565b905081811461185757600086600001828154811061180457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061183557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061187657634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061061c565b600091505061061c565b826001600160a01b03166118ce826109eb565b6001600160a01b03161461194a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610729565b6001600160a01b0382166119c55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610729565b6119d0600082610e84565b6001600160a01b03831660009081526003602052604081208054600192906119f990849061229c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a27908490612251565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600183016020526040812054611adc5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561061c565b50600061061c565b606081600001805480602002602001604051908101604052809291908181526020018280548015611b3457602002820191906000526020600020905b815481526020019060010190808311611b20575b50505050509050919050565b60006001600160a01b0384163b15611c8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b849033908990889088906004016121be565b602060405180830381600087803b158015611b9e57600080fd5b505af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb91810190612070565b60015b611c73573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051611c6b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b0565b506001949350505050565b611ca28383611d16565b611caf6000848484611b40565b6108995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b6001600160a01b038216611d6c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610729565b6000818152600260205260409020546001600160a01b031615611dd15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610729565b6001600160a01b0382166000908152600360205260408120805460019290611dfa908490612251565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461093057600080fd5b8035801515811461093057600080fd5b600060208284031215611e9d578081fd5b61095982611e65565b60008060408385031215611eb8578081fd5b611ec183611e65565b9150611ecf60208401611e65565b90509250929050565b600080600060608486031215611eec578081fd5b611ef584611e65565b9250611f0360208501611e65565b9150604084013590509250925092565b60008060008060808587031215611f28578081fd5b611f3185611e65565b9350611f3f60208601611e65565b925060408501359150606085013567ffffffffffffffff80821115611f62578283fd5b818701915087601f830112611f75578283fd5b813581811115611f8757611f87612375565b604051601f8201601f19908116603f01168101908382118183101715611faf57611faf612375565b816040528281528a6020848701011115611fc7578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611ffa578182fd5b61200383611e65565b9150611ecf60208401611e7c565b60008060408385031215612023578182fd5b61202c83611e65565b946020939093013593505050565b60006020828403121561204b578081fd5b61095982611e7c565b600060208284031215612065578081fd5b81356109598161238b565b600060208284031215612081578081fd5b81516109598161238b565b60006020828403121561209d578081fd5b5035919050565b600081518084526120bc8160208601602086016122b3565b601f01601f19169290920160200192915050565b600081516120e28185602086016122b3565b9290920192915050565b600080845482600182811c91508083168061210857607f831692505b602080841082141561212857634e487b7160e01b87526022600452602487fd5b81801561213c576001811461214d57612179565b60ff19861689528489019650612179565b60008b815260209020885b868110156121715781548b820152908501908301612158565b505084890196505b5050505050506121b561218c82866120d0565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121f060808301846120a4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561223257835183529284019291840191600101612216565b50909695505050505050565b60208152600061095960208301846120a4565b6000821982111561226457612264612349565b500190565b6000826122785761227861235f565b500490565b600081600019048311821515161561229757612297612349565b500290565b6000828210156122ae576122ae612349565b500390565b60005b838110156122ce5781810151838201526020016122b6565b838111156109075750506000910152565b600181811c908216806122f357607f821691505b6020821081141561231457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232e5761232e612349565b5060010190565b6000826123445761234461235f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea2646970667358221220e6afcd9242c5352f1bb46f2d813c03519252ad32c16e2700f526a2a24eeb99d664736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104dc578063f2fde38b14610525578063faa6d54014610545578063fce3bbb51461056557600080fd5b8063b88d4fde14610471578063bf1a4c5414610491578063c87b56dd146104a7578063e086e5ec146104c757600080fd5b8063902d55a5116100d1578063902d55a5146104115780639106d7ba1461042757806395d89b411461043c578063a22cb4651461045157600080fd5b8063715018a6146103c35780638d859f3e146103d85780638da5cb5b146103f357600080fd5b806323b872dd1161016457806342842e0e1161013e57806342842e0e1461034357806343508b05146103635780636352211e1461038357806370a08231146103a357600080fd5b806323b872dd146102d65780633c4ca107146102f65780633f14e8d51461031657600080fd5b8063095ea7b3116101a0578063095ea7b314610256578063122e04a814610278578063150bde03146102a0578063193402bb146102b357600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004612054565b610585565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610622565b6040516101f3919061223e565b34801561022a57600080fd5b5061023e61023936600461208c565b6106b4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612011565b61074e565b005b34801561028457600080fd5b5061023e738c89031ee2ed29b5d4dc1671078a122f3e00031081565b6102766102ae36600461208c565b61089e565b3480156102bf57600080fd5b506102c8600081565b6040519081526020016101f3565b3480156102e257600080fd5b506102766102f1366004611ed8565b6108b7565b34801561030257600080fd5b506102c8610311366004611e8c565b61090d565b34801561032257600080fd5b50610336610331366004611e8c565b610935565b6040516101f391906121fa565b34801561034f57600080fd5b5061027661035e366004611ed8565b610960565b34801561036f57600080fd5b5061027661037e366004612011565b61097b565b34801561038f57600080fd5b5061023e61039e36600461208c565b6109eb565b3480156103af57600080fd5b506102c86103be366004611e8c565b610a76565b3480156103cf57600080fd5b50610276610b10565b3480156103e457600080fd5b506102c86642ca8019c7000081565b3480156103ff57600080fd5b506006546001600160a01b031661023e565b34801561041d57600080fd5b506102c8610de381565b34801561043357600080fd5b506007546102c8565b34801561044857600080fd5b50610211610b76565b34801561045d57600080fd5b5061027661046c366004611fe8565b610b85565b34801561047d57600080fd5b5061027661048c366004611f13565b610b90565b34801561049d57600080fd5b506102c86103e881565b3480156104b357600080fd5b506102116104c236600461208c565b610c18565b3480156104d357600080fd5b50610276610c4c565b3480156104e857600080fd5b506101e76104f7366004611ea6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b50610276610540366004611e8c565b610c97565b34801561055157600080fd5b506102c861056036600461208c565b610d76565b34801561057157600080fd5b5061027661058036600461203a565b610e17565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105e857506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060008054610631906122df565b80601f016020809104026020016040519081016040528092919081815260200182805461065d906122df565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610759826109eb565b9050806001600160a01b0316836001600160a01b031614156107e35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610729565b336001600160a01b038216148061081d57506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b61088f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610729565b6108998383610e84565b505050565b336108a98183610eff565b6108b3818361119e565b5050565b6001600160a01b03831660009081526009602052604090206108d99082611249565b506108e5838383611255565b6001600160a01b038216600090815260096020526040902061090790826112dc565b50505050565b60006103e861091b60075490565b106109285750600a919050565b506005919050565b919050565b6001600160a01b0381166000908152600960205260409020606090610959816112e8565b9392505050565b61089983838360405180602001604052806000815250610b90565b6006546001600160a01b031633146109d55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6109e08160016112f5565b506108b3828261119e565b6000818152600260205260408120546001600160a01b03168061061c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610729565b60006001600160a01b038216610af45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610729565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b610b746000611393565b565b606060018054610631906122df565b6108b33383836113f2565b610b9a33836114c1565b610c0c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610729565b610907848484846115b8565b6060600a610c2583611636565b604051602001610c369291906120ec565b6040516020818303038152906040529050919050565b33738c89031ee2ed29b5d4dc1671078a122f3e0003101415610b745760405133904780156108fc02916000818181858888f19350505050158015610c94573d6000803e3d6000fd5b50565b6006546001600160a01b03163314610cf15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6001600160a01b038116610d6d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610729565b610c9481611393565b60006103e8610d8460075490565b10610d9a5761061c826642ca8019c7000061227d565b6103e882610da760075490565b610db19190612251565b1115610e0c57600754610dc6906103e861229c565b610dd0908361229c565b610de1906642ca8019c7000061227d565b6000610dec60075490565b610df8906103e861229c565b610e02919061227d565b61061c9190612251565b61061c82600061227d565b6006546001600160a01b03163314610e715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610729565b6008805460ff1916911515919091179055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610ec6826109eb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60085460ff161515600114610f565760405162461bcd60e51b815260206004820152601860248201527f4e6f742073746172742073656c6c696e672079657428312900000000000000006044820152606401610729565b6001811015610fa75760405162461bcd60e51b815260206004820152601360248201527f6174206c656173742070757263686173652031000000000000000000000000006044820152606401610729565b600a811115610ff85760405162461bcd60e51b815260206004820152601360248201527f6174206d6f7374207075726368617365203130000000000000000000000000006044820152606401610729565b6110038160016112f5565b506103e861101060075490565b111561107657611027816642ca8019c7000061227d565b3410156108b35760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c756500000000000000000000000000006044820152606401610729565b6103e88161108360075490565b61108d9190612251565b111561114257600061109e60075490565b6110aa906103e861229c565b6110b4908361229c565b6110c5906642ca8019c7000061227d565b60006110d060075490565b6110dc906103e861229c565b6110e6919061227d565b6110f09190612251565b9050803410156108995760405162461bcd60e51b815260206004820152601260248201527f696e73756666696369656e742076616c756500000000000000000000000000006044820152606401610729565b60058111156111935760405162461bcd60e51b815260206004820152601260248201527f6174206d6f7374207075726368617365203500000000000000000000000000006044820152606401610729565b61102781600061227d565b6001600160a01b038216600090815260096020526040812060075490915b83811015611240576111cf826001612251565b91506111db8583611784565b6111e583836112dc565b50604080516001600160a01b038716815260208101849052428183015290517fa30e240d2c105a13336386b3e6f119d88730afc24c7127217034dd707b809c039181900360600190a1806112388161231a565b9150506111bc565b50600755505050565b6000610959838361179e565b61125f33826114c1565b6112d15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610729565b6108998383836118bb565b60006109598383611a95565b6060600061095983611ae4565b60008061130160075490565b9050600061130f8583612251565b9050831561137457610de38111156113695760405162461bcd60e51b815260206004820152600960248201527f4d6178206c696d697400000000000000000000000000000000000000000000006044820152606401610729565b60019250505061061c565b610de381116113885760019250505061061c565b60009250505061061c565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610729565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000818152600260205260408120546001600160a01b031661153a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610729565b6000611545836109eb565b9050806001600160a01b0316846001600160a01b031614806115805750836001600160a01b0316611575846106b4565b6001600160a01b0316145b806115b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b6115c38484846118bb565b6115cf84848484611b40565b6109075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b60608161167657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156116a0578061168a8161231a565b91506116999050600a83612269565b915061167a565b60008167ffffffffffffffff8111156116c957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f3576020820181803683370190505b5090505b84156115b05761170860018361229c565b9150611715600a86612335565b611720906030612251565b60f81b81838151811061174357634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061177d600a86612269565b94506116f7565b6108b3828260405180602001604052806000815250611c98565b600081815260018301602052604081205480156118b15760006117c260018361229c565b85549091506000906117d69060019061229c565b905081811461185757600086600001828154811061180457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061183557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061187657634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061061c565b600091505061061c565b826001600160a01b03166118ce826109eb565b6001600160a01b03161461194a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610729565b6001600160a01b0382166119c55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610729565b6119d0600082610e84565b6001600160a01b03831660009081526003602052604081208054600192906119f990849061229c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a27908490612251565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600183016020526040812054611adc5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561061c565b50600061061c565b606081600001805480602002602001604051908101604052809291908181526020018280548015611b3457602002820191906000526020600020905b815481526020019060010190808311611b20575b50505050509050919050565b60006001600160a01b0384163b15611c8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b849033908990889088906004016121be565b602060405180830381600087803b158015611b9e57600080fd5b505af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb91810190612070565b60015b611c73573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051611c6b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b0565b506001949350505050565b611ca28383611d16565b611caf6000848484611b40565b6108995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610729565b6001600160a01b038216611d6c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610729565b6000818152600260205260409020546001600160a01b031615611dd15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610729565b6001600160a01b0382166000908152600360205260408120805460019290611dfa908490612251565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461093057600080fd5b8035801515811461093057600080fd5b600060208284031215611e9d578081fd5b61095982611e65565b60008060408385031215611eb8578081fd5b611ec183611e65565b9150611ecf60208401611e65565b90509250929050565b600080600060608486031215611eec578081fd5b611ef584611e65565b9250611f0360208501611e65565b9150604084013590509250925092565b60008060008060808587031215611f28578081fd5b611f3185611e65565b9350611f3f60208601611e65565b925060408501359150606085013567ffffffffffffffff80821115611f62578283fd5b818701915087601f830112611f75578283fd5b813581811115611f8757611f87612375565b604051601f8201601f19908116603f01168101908382118183101715611faf57611faf612375565b816040528281528a6020848701011115611fc7578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611ffa578182fd5b61200383611e65565b9150611ecf60208401611e7c565b60008060408385031215612023578182fd5b61202c83611e65565b946020939093013593505050565b60006020828403121561204b578081fd5b61095982611e7c565b600060208284031215612065578081fd5b81356109598161238b565b600060208284031215612081578081fd5b81516109598161238b565b60006020828403121561209d578081fd5b5035919050565b600081518084526120bc8160208601602086016122b3565b601f01601f19169290920160200192915050565b600081516120e28185602086016122b3565b9290920192915050565b600080845482600182811c91508083168061210857607f831692505b602080841082141561212857634e487b7160e01b87526022600452602487fd5b81801561213c576001811461214d57612179565b60ff19861689528489019650612179565b60008b815260209020885b868110156121715781548b820152908501908301612158565b505084890196505b5050505050506121b561218c82866120d0565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121f060808301846120a4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561223257835183529284019291840191600101612216565b50909695505050505050565b60208152600061095960208301846120a4565b6000821982111561226457612264612349565b500190565b6000826122785761227861235f565b500490565b600081600019048311821515161561229757612297612349565b500290565b6000828210156122ae576122ae612349565b500390565b60005b838110156122ce5781810151838201526020016122b6565b838111156109075750506000910152565b600181811c908216806122f357607f821691505b6020821081141561231457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561232e5761232e612349565b5060010190565b6000826123445761234461235f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9457600080fdfea2646970667358221220e6afcd9242c5352f1bb46f2d813c03519252ad32c16e2700f526a2a24eeb99d664736f6c63430008040033
Deployed Bytecode Sourcemap
49263:6506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21338:305;;;;;;;;;;-1:-1:-1;21338:305:0;;;;;:::i;:::-;;:::i;:::-;;;7701:14:1;;7694:22;7676:41;;7664:2;7649:18;21338:305:0;;;;;;;;22283:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23842:221::-;;;;;;;;;;-1:-1:-1;23842:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5940:55:1;;;5922:74;;5910:2;5895:18;23842:221:0;5877:125:1;23365:411:0;;;;;;;;;;-1:-1:-1;23365:411:0;;;;;:::i;:::-;;:::i;:::-;;49907:85;;;;;;;;;;;;49950:42;49907:85;;54644:201;;;;;;:::i;:::-;;:::i;49848:50::-;;;;;;;;;;;;49889:9;49848:50;;;;;16144:25:1;;;16132:2;16117:18;49848:50:0;16099:76:1;54855:254:0;;;;;;;;;;-1:-1:-1;54855:254:0;;;;;:::i;:::-;;:::i;51532:205::-;;;;;;;;;;-1:-1:-1;51532:205:0;;;;;:::i;:::-;;:::i;54375:193::-;;;;;;;;;;-1:-1:-1;54375:193:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25002:185::-;;;;;;;;;;-1:-1:-1;25002:185:0;;;;;:::i;:::-;;:::i;55334:154::-;;;;;;;;;;-1:-1:-1;55334:154:0;;;;;:::i;:::-;;:::i;21977:239::-;;;;;;;;;;-1:-1:-1;21977:239:0;;;;;:::i;:::-;;:::i;21707:208::-;;;;;;;;;;-1:-1:-1;21707:208:0;;;;;:::i;:::-;;:::i;35497:103::-;;;;;;;;;;;;;:::i;49740:44::-;;;;;;;;;;;;49772:12;49740:44;;34846:87;;;;;;;;;;-1:-1:-1;34919:6:0;;-1:-1:-1;;;;;34919:6:0;34846:87;;49688:43;;;;;;;;;;;;49727:4;49688:43;;50885:87;;;;;;;;;;-1:-1:-1;50954:10:0;;50885:87;;22452:104;;;;;;;;;;;;;:::i;24135:155::-;;;;;;;;;;-1:-1:-1;24135:155:0;;;;;:::i;:::-;;:::i;25258:328::-;;;;;;;;;;-1:-1:-1;25258:328:0;;;;;:::i;:::-;;:::i;49793:46::-;;;;;;;;;;;;49835:4;49793:46;;50631:184;;;;;;;;;;-1:-1:-1;50631:184:0;;;;;:::i;:::-;;:::i;55600:164::-;;;;;;;;;;;;;:::i;24361:::-;;;;;;;;;;-1:-1:-1;24361:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24482:25:0;;;24458:4;24482:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24361:164;35755:201;;;;;;;;;;-1:-1:-1;35755:201:0;;;;;:::i;:::-;;:::i;51747:552::-;;;;;;;;;;-1:-1:-1;51747:552:0;;;;;:::i;:::-;;:::i;55496:96::-;;;;;;;;;;-1:-1:-1;55496:96:0;;;;;:::i;:::-;;:::i;21338:305::-;21440:4;-1:-1:-1;;;;;;21477:40:0;;21492:25;21477:40;;:105;;-1:-1:-1;;;;;;;21534:48:0;;21549:33;21534:48;21477:105;:158;;;-1:-1:-1;19900:25:0;-1:-1:-1;;;;;;19885:40:0;;;21599:36;21457:178;21338:305;-1:-1:-1;;21338:305:0:o;22283:100::-;22337:13;22370:5;22363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22283:100;:::o;23842:221::-;23918:7;27185:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27185:16:0;23938:73;;;;-1:-1:-1;;;23938:73:0;;13501:2:1;23938:73:0;;;13483:21:1;13540:2;13520:18;;;13513:30;13579:34;13559:18;;;13552:62;-1:-1:-1;;;13630:18:1;;;13623:42;13682:19;;23938:73:0;;;;;;;;;-1:-1:-1;24031:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24031:24:0;;23842:221::o;23365:411::-;23446:13;23462:23;23477:7;23462:14;:23::i;:::-;23446:39;;23510:5;-1:-1:-1;;;;;23504:11:0;:2;-1:-1:-1;;;;;23504:11:0;;;23496:57;;;;-1:-1:-1;;;23496:57:0;;14685:2:1;23496:57:0;;;14667:21:1;14724:2;14704:18;;;14697:30;14763:34;14743:18;;;14736:62;14834:3;14814:18;;;14807:31;14855:19;;23496:57:0;14657:223:1;23496:57:0;16639:10;-1:-1:-1;;;;;23588:21:0;;;;:62;;-1:-1:-1;;;;;;24482:25:0;;24458:4;24482:25;;;:18;:25;;;;;;;;16639:10;24482:35;;;;;;;;;;23613:37;23566:168;;;;-1:-1:-1;;;23566:168:0;;11894:2:1;23566:168:0;;;11876:21:1;11933:2;11913:18;;;11906:30;11972:34;11952:18;;;11945:62;12043:26;12023:18;;;12016:54;12087:19;;23566:168:0;11866:246:1;23566:168:0;23747:21;23756:2;23760:7;23747:8;:21::i;:::-;23365:411;;;:::o;54644:201::-;54732:10;54753:38;54732:10;54784:6;54753:16;:38::i;:::-;54802:35;54816:12;54830:6;54802:13;:35::i;:::-;54644:201;;:::o;54855:254::-;-1:-1:-1;;;;;54983:15:0;;;;;;:9;:15;;;;;:31;;55006:7;54983:22;:31::i;:::-;;55025:37;55044:4;55050:2;55054:7;55025:18;:37::i;:::-;-1:-1:-1;;;;;55073:13:0;;;;;;:9;:13;;;;;:26;;55091:7;55073:17;:26::i;:::-;;54855:254;;;:::o;51532:205::-;51597:7;49835:4;51621:11;50954:10;;;50885:87;51621:11;:30;51617:113;;-1:-1:-1;51675:2:0;;51532:205;-1:-1:-1;51532:205:0:o;51617:113::-;-1:-1:-1;51717:1:0;;51532:205;-1:-1:-1;51532:205:0:o;51617:113::-;51532:205;;;:::o;54375:193::-;-1:-1:-1;;;;;54508:16:0;;54468:37;54508:16;;;:9;:16;;;;;54432:23;;54544:16;54508;54544:14;:16::i;:::-;54535:25;54375:193;-1:-1:-1;;;54375:193:0:o;25002:185::-;25140:39;25157:4;25163:2;25167:7;25140:39;;;;;;;;;;;;:16;:39::i;55334:154::-;34919:6;;-1:-1:-1;;;;;34919:6:0;16639:10;35066:23;35058:68;;;;-1:-1:-1;;;35058:68:0;;13914:2:1;35058:68:0;;;13896:21:1;;;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14044:18;;35058:68:0;13886:182:1;35058:68:0;55412:28:::1;55427:6;55435:4;55412:14;:28::i;:::-;;55451:29;55465:6;55473;55451:13;:29::i;21977:239::-:0;22049:7;22085:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22085:16:0;22120:19;22112:73;;;;-1:-1:-1;;;22112:73:0;;12730:2:1;22112:73:0;;;12712:21:1;12769:2;12749:18;;;12742:30;12808:34;12788:18;;;12781:62;12879:11;12859:18;;;12852:39;12908:19;;22112:73:0;12702:231:1;21707:208:0;21779:7;-1:-1:-1;;;;;21807:19:0;;21799:74;;;;-1:-1:-1;;;21799:74:0;;12319:2:1;21799:74:0;;;12301:21:1;12358:2;12338:18;;;12331:30;12397:34;12377:18;;;12370:62;12468:12;12448:18;;;12441:40;12498:19;;21799:74:0;12291:232:1;21799:74:0;-1:-1:-1;;;;;;21891:16:0;;;;;:9;:16;;;;;;;21707:208::o;35497:103::-;34919:6;;-1:-1:-1;;;;;34919:6:0;16639:10;35066:23;35058:68;;;;-1:-1:-1;;;35058:68:0;;13914:2:1;35058:68:0;;;13896:21:1;;;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14044:18;;35058:68:0;13886:182:1;35058:68:0;35562:30:::1;35589:1;35562:18;:30::i;:::-;35497:103::o:0;22452:104::-;22508:13;22541:7;22534:14;;;;;:::i;24135:155::-;24230:52;16639:10;24263:8;24273;24230:18;:52::i;25258:328::-;25433:41;16639:10;25466:7;25433:18;:41::i;:::-;25425:103;;;;-1:-1:-1;;;25425:103:0;;15087:2:1;25425:103:0;;;15069:21:1;15126:2;15106:18;;;15099:30;15165:34;15145:18;;;15138:62;15236:19;15216:18;;;15209:47;15273:19;;25425:103:0;15059:239:1;25425:103:0;25539:39;25553:4;25559:2;25563:7;25572:5;25539:13;:39::i;50631:184::-;50704:13;50761:8;50771:25;50788:7;50771:16;:25::i;:::-;50744:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50730:77;;50631:184;;;:::o;55600:164::-;55647:10;49950:42;55647:30;55643:114;;;55694:51;;55702:10;;55723:21;55694:51;;;;;;;;;55723:21;55702:10;55694:51;;;;;;;;;;;;;;;;;;;;;55600:164::o;35755:201::-;34919:6;;-1:-1:-1;;;;;34919:6:0;16639:10;35066:23;35058:68;;;;-1:-1:-1;;;35058:68:0;;13914:2:1;35058:68:0;;;13896:21:1;;;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14044:18;;35058:68:0;13886:182:1;35058:68:0;-1:-1:-1;;;;;35844:22:0;::::1;35836:73;;;::::0;-1:-1:-1;;;35836:73:0;;8926:2:1;35836:73:0::1;::::0;::::1;8908:21:1::0;8965:2;8945:18;;;8938:30;9004:34;8984:18;;;8977:62;9075:8;9055:18;;;9048:36;9101:19;;35836:73:0::1;8898:228:1::0;35836:73:0::1;35920:28;35939:8;35920:18;:28::i;51747:552::-:0;51815:16;49835:4;51875:11;50954:10;;;50885:87;51875:11;:30;51871:421;;51963:14;51971:6;49772:12;51963:14;:::i;51871:421::-;49835:4;52029:6;52015:11;50954:10;;;50885:87;52015:11;:20;;;;:::i;:::-;:38;52011:270;;;50954:10;;52156:29;;49835:4;52156:29;:::i;:::-;52146:40;;:6;:40;:::i;:::-;52137:50;;49772:12;52137:50;:::i;:::-;49889:9;52104:11;50954:10;;;50885:87;52104:11;52086:29;;49835:4;52086:29;:::i;:::-;52085:48;;;;:::i;:::-;:103;;;;:::i;52011:270::-;52241:23;52258:6;49889:9;52241:23;:::i;55496:96::-;34919:6;;-1:-1:-1;;;;;34919:6:0;16639:10;35066:23;35058:68;;;;-1:-1:-1;;;35058:68:0;;13914:2:1;35058:68:0;;;13896:21:1;;;13933:18;;;13926:30;13992:34;13972:18;;;13965:62;14044:18;;35058:68:0;13886:182:1;35058:68:0;55562:10:::1;:22:::0;;-1:-1:-1;;55562:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55496:96::o;31078:174::-;31153:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;31153:29:0;-1:-1:-1;;;;;31153:29:0;;;;;;;;:24;;31207:23;31153:24;31207:14;:23::i;:::-;-1:-1:-1;;;;;31198:46:0;;;;;;;;;;;31078:174;;:::o;52307:1146::-;52430:10;;;;:18;;:10;:18;52422:55;;;;-1:-1:-1;;;52422:55:0;;8154:2:1;52422:55:0;;;8136:21:1;8193:2;8173:18;;;8166:30;8232:26;8212:18;;;8205:54;8276:18;;52422:55:0;8126:174:1;52422:55:0;52506:1;52496:6;:11;;52488:43;;;;-1:-1:-1;;;52488:43:0;;15505:2:1;52488:43:0;;;15487:21:1;15544:2;15524:18;;;15517:30;15583:21;15563:18;;;15556:49;15622:18;;52488:43:0;15477:169:1;52488:43:0;52560:2;52550:6;:12;;52542:44;;;;-1:-1:-1;;;52542:44:0;;9690:2:1;52542:44:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:21;9748:18;;;9741:49;9807:18;;52542:44:0;9662:169:1;52542:44:0;52597:28;52612:6;52620:4;52597:14;:28::i;:::-;;49835:4;52667:11;50954:10;;;50885:87;52667:11;:29;52663:783;;;52764:14;52772:6;49772:12;52764:14;:::i;:::-;52750:9;:29;;52742:60;;;;-1:-1:-1;;;52742:60:0;;10038:2:1;52742:60:0;;;10020:21:1;10077:2;10057:18;;;10050:30;10116:20;10096:18;;;10089:48;10154:18;;52742:60:0;10010:168:1;52663:783:0;49835:4;52867:6;52853:11;50954:10;;;50885:87;52853:11;:20;;;;:::i;:::-;:38;52849:586;;;52912:21;53025:11;50954:10;;;50885:87;53025:11;53007:29;;49835:4;53007:29;:::i;:::-;52997:40;;:6;:40;:::i;:::-;52988:50;;49772:12;52988:50;:::i;:::-;49889:9;52955:11;50954:10;;;50885:87;52955:11;52937:29;;49835:4;52937:29;:::i;:::-;52936:48;;;;:::i;:::-;:103;;;;:::i;:::-;52912:127;;53079:13;53066:9;:26;;53058:57;;;;-1:-1:-1;;;53058:57:0;;10038:2:1;53058:57:0;;;10020:21:1;10077:2;10057:18;;;10050:30;10116:20;10096:18;;;10089:48;10154:18;;53058:57:0;10010:168:1;52849:586:0;53307:1;53297:6;:11;;53289:42;;;;-1:-1:-1;;;53289:42:0;;15853:2:1;53289:42:0;;;15835:21:1;15892:2;15872:18;;;15865:30;15931:20;15911:18;;;15904:48;15969:18;;53289:42:0;15825:168:1;53289:42:0;53372:23;53389:6;49889:9;53372:23;:::i;53745:536::-;-1:-1:-1;;;;;53864:23:0;;53825:36;53864:23;;;:9;:23;;;;;53923:10;;53864:23;;53944:292;53963:6;53961:1;:8;53944:292;;;54031:18;:14;54048:1;54031:18;:::i;:::-;54014:35;;54064:39;54074:12;54088:14;54064:9;:39::i;:::-;54118:26;:6;54129:14;54118:10;:26::i;:::-;-1:-1:-1;54164:60:0;;;-1:-1:-1;;;;;6743:55:1;;6725:74;;6830:2;6815:18;;6808:34;;;54208:15:0;6858:18:1;;;6851:34;54164:60:0;;;;;;;6713:2:1;54164:60:0;;;53971:3;;;;:::i;:::-;;;;53944:292;;;-1:-1:-1;54246:10:0;:27;-1:-1:-1;;;53745:536:0:o;47019:137::-;47089:4;47113:35;47121:3;47141:5;47113:7;:35::i;24592:339::-;24787:41;16639:10;24820:7;24787:18;:41::i;:::-;24779:103;;;;-1:-1:-1;;;24779:103:0;;15087:2:1;24779:103:0;;;15069:21:1;15126:2;15106:18;;;15099:30;15165:34;15145:18;;;15138:62;15236:19;15216:18;;;15209:47;15273:19;;24779:103:0;15059:239:1;24779:103:0;24895:28;24905:4;24911:2;24915:7;24895:9;:28::i;46712:131::-;46779:4;46803:32;46808:3;46828:5;46803:4;:32::i;48629:263::-;48689:16;48718:22;48743:19;48751:3;48743:7;:19::i;51036:488::-;51120:4;51137:14;51154:11;50954:10;;;50885:87;51154:11;51137:28;-1:-1:-1;51176:21:0;51200:15;51209:6;51137:28;51200:15;:::i;:::-;51176:39;;51230:15;51226:291;;;49727:4;51270:13;:29;;51262:51;;;;-1:-1:-1;;;51262:51:0;;11144:2:1;51262:51:0;;;11126:21:1;11183:1;11163:18;;;11156:29;11221:11;11201:18;;;11194:39;11250:18;;51262:51:0;11116:158:1;51262:51:0;51335:4;51328:11;;;;;;51226:291;49727:4;51376:13;:29;51372:134;;51433:4;51426:11;;;;;;51372:134;51485:5;51478:12;;;;;;36116:191;36209:6;;;-1:-1:-1;;;;;36226:17:0;;;-1:-1:-1;;36226:17:0;;;;;;;36259:40;;36209:6;;;36226:17;36209:6;;36259:40;;36190:16;;36259:40;36116:191;;:::o;31394:315::-;31549:8;-1:-1:-1;;;;;31540:17:0;:5;-1:-1:-1;;;;;31540:17:0;;;31532:55;;;;-1:-1:-1;;;31532:55:0;;10790:2:1;31532:55:0;;;10772:21:1;10829:2;10809:18;;;10802:30;10868:27;10848:18;;;10841:55;10913:18;;31532:55:0;10762:175:1;31532:55:0;-1:-1:-1;;;;;31598:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31598:46:0;;;;;;;;;;31660:41;;7676::1;;;31660::0;;7649:18:1;31660:41:0;;;;;;;31394:315;;;:::o;27390:348::-;27483:4;27185:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27185:16:0;27500:73;;;;-1:-1:-1;;;27500:73:0;;11481:2:1;27500:73:0;;;11463:21:1;11520:2;11500:18;;;11493:30;11559:34;11539:18;;;11532:62;-1:-1:-1;;;11610:18:1;;;11603:42;11662:19;;27500:73:0;11453:234:1;27500:73:0;27584:13;27600:23;27615:7;27600:14;:23::i;:::-;27584:39;;27653:5;-1:-1:-1;;;;;27642:16:0;:7;-1:-1:-1;;;;;27642:16:0;;:51;;;;27686:7;-1:-1:-1;;;;;27662:31:0;:20;27674:7;27662:11;:20::i;:::-;-1:-1:-1;;;;;27662:31:0;;27642:51;:87;;;-1:-1:-1;;;;;;24482:25:0;;;24458:4;24482:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27697:32;27634:96;27390:348;-1:-1:-1;;;;27390:348:0:o;26468:315::-;26625:28;26635:4;26641:2;26645:7;26625:9;:28::i;:::-;26672:48;26695:4;26701:2;26705:7;26714:5;26672:22;:48::i;:::-;26664:111;;;;-1:-1:-1;;;26664:111:0;;8507:2:1;26664:111:0;;;8489:21:1;8546:2;8526:18;;;8519:30;8585:34;8565:18;;;8558:62;-1:-1:-1;;;8636:18:1;;;8629:48;8694:19;;26664:111:0;8479:240:1;17146:723:0;17202:13;17423:10;17419:53;;-1:-1:-1;;17450:10:0;;;;;;;;;;;;;;;;;;17146:723::o;17419:53::-;17497:5;17482:12;17538:78;17545:9;;17538:78;;17571:8;;;;:::i;:::-;;-1:-1:-1;17594:10:0;;-1:-1:-1;17602:2:0;17594:10;;:::i;:::-;;;17538:78;;;17626:19;17658:6;17648:17;;;;;;-1:-1:-1;;;17648:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17648:17:0;;17626:39;;17676:154;17683:10;;17676:154;;17710:11;17720:1;17710:11;;:::i;:::-;;-1:-1:-1;17779:10:0;17787:2;17779:5;:10;:::i;:::-;17766:24;;:2;:24;:::i;:::-;17753:39;;17736:6;17743;17736:14;;;;;;-1:-1:-1;;;17736:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;17807:11:0;17816:2;17807:11;;:::i;:::-;;;17676:154;;28080:110;28156:26;28166:2;28170:7;28156:26;;;;;;;;;;;;:9;:26::i;38699:1420::-;38765:4;38904:19;;;:12;;;:19;;;;;;38940:15;;38936:1176;;39315:21;39339:14;39352:1;39339:10;:14;:::i;:::-;39388:18;;39315:38;;-1:-1:-1;39368:17:0;;39388:22;;39409:1;;39388:22;:::i;:::-;39368:42;;39444:13;39431:9;:26;39427:405;;39478:17;39498:3;:11;;39510:9;39498:22;;;;;;-1:-1:-1;;;39498:22:0;;;;;;;;;;;;;;;;;39478:42;;39652:9;39623:3;:11;;39635:13;39623:26;;;;;;-1:-1:-1;;;39623:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;39737:23;;;:12;;;:23;;;;;:36;;;39427:405;39913:17;;:3;;:17;;;-1:-1:-1;;;39913:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;40008:3;:12;;:19;40021:5;40008:19;;;;;;;;;;;40001:26;;;40051:4;40044:11;;;;;;;38936:1176;40095:5;40088:12;;;;;30382:578;30541:4;-1:-1:-1;;;;;30514:31:0;:23;30529:7;30514:14;:23::i;:::-;-1:-1:-1;;;;;30514:31:0;;30506:85;;;;-1:-1:-1;;;30506:85:0;;14275:2:1;30506:85:0;;;14257:21:1;14314:2;14294:18;;;14287:30;14353:34;14333:18;;;14326:62;14424:11;14404:18;;;14397:39;14453:19;;30506:85:0;14247:231:1;30506:85:0;-1:-1:-1;;;;;30610:16:0;;30602:65;;;;-1:-1:-1;;;30602:65:0;;10385:2:1;30602:65:0;;;10367:21:1;10424:2;10404:18;;;10397:30;10463:34;10443:18;;;10436:62;10534:6;10514:18;;;10507:34;10558:19;;30602:65:0;10357:226:1;30602:65:0;30784:29;30801:1;30805:7;30784:8;:29::i;:::-;-1:-1:-1;;;;;30826:15:0;;;;;;:9;:15;;;;;:20;;30845:1;;30826:15;:20;;30845:1;;30826:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30857:13:0;;;;;;:9;:13;;;;;:18;;30874:1;;30857:13;:18;;30874:1;;30857:18;:::i;:::-;;;;-1:-1:-1;;30886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;30886:21:0;-1:-1:-1;;;;;30886:21:0;;;;;;;;;30925:27;;30886:16;;30925:27;;;;;;;30382:578;;;:::o;38109:414::-;38172:4;40302:19;;;:12;;;:19;;;;;;38189:327;;-1:-1:-1;38232:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;38415:18;;38393:19;;;:12;;;:19;;;;;;:40;;;;38448:11;;38189:327;-1:-1:-1;38499:5:0;38492:12;;41553:111;41609:16;41645:3;:11;;41638:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41553:111;;;:::o;32274:799::-;32429:4;-1:-1:-1;;;;;32450:13:0;;8864:20;8912:8;32446:620;;32486:72;;-1:-1:-1;;;32486:72:0;;-1:-1:-1;;;;;32486:36:0;;;;;:72;;16639:10;;32537:4;;32543:7;;32552:5;;32486:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32486:72:0;;;;;;;;-1:-1:-1;;32486:72:0;;;;;;;;;;;;:::i;:::-;;;32482:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32728:13:0;;32724:272;;32771:60;;-1:-1:-1;;;32771:60:0;;8507:2:1;32771:60:0;;;8489:21:1;8546:2;8526:18;;;8519:30;8585:34;8565:18;;;8558:62;-1:-1:-1;;;8636:18:1;;;8629:48;8694:19;;32771:60:0;8479:240:1;32724:272:0;32946:6;32940:13;32931:6;32927:2;32923:15;32916:38;32482:529;-1:-1:-1;;;;;;32609:51:0;-1:-1:-1;;;32609:51:0;;-1:-1:-1;32602:58:0;;32446:620;-1:-1:-1;33050:4:0;32274:799;;;;;;:::o;28417:321::-;28547:18;28553:2;28557:7;28547:5;:18::i;:::-;28598:54;28629:1;28633:2;28637:7;28646:5;28598:22;:54::i;:::-;28576:154;;;;-1:-1:-1;;;28576:154:0;;8507:2:1;28576:154:0;;;8489:21:1;8546:2;8526:18;;;8519:30;8585:34;8565:18;;;8558:62;-1:-1:-1;;;8636:18:1;;;8629:48;8694:19;;28576:154:0;8479:240:1;29074:382:0;-1:-1:-1;;;;;29154:16:0;;29146:61;;;;-1:-1:-1;;;29146:61:0;;13140:2:1;29146:61:0;;;13122:21:1;;;13159:18;;;13152:30;13218:34;13198:18;;;13191:62;13270:18;;29146:61:0;13112:182:1;29146:61:0;27161:4;27185:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27185:16:0;:30;29218:58;;;;-1:-1:-1;;;29218:58:0;;9333:2:1;29218:58:0;;;9315:21:1;9372:2;9352:18;;;9345:30;9411;9391:18;;;9384:58;9459:18;;29218:58:0;9305:178:1;29218:58:0;-1:-1:-1;;;;;29347:13:0;;;;;;:9;:13;;;;;:18;;29364:1;;29347:13;:18;;29364:1;;29347:18;:::i;:::-;;;;-1:-1:-1;;29376:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;29376:21:0;-1:-1:-1;;;;;29376:21:0;;;;;;;;29415:33;;29376:16;;;29415:33;;29376:16;;29415:33;29074:382;;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;215:160;280:20;;336:13;;329:21;319:32;;309:2;;365:1;362;355:12;380:196;439:6;492:2;480:9;471:7;467:23;463:32;460:2;;;513:6;505;498:22;460:2;541:29;560:9;541:29;:::i;581:270::-;649:6;657;710:2;698:9;689:7;685:23;681:32;678:2;;;731:6;723;716:22;678:2;759:29;778:9;759:29;:::i;:::-;749:39;;807:38;841:2;830:9;826:18;807:38;:::i;:::-;797:48;;668:183;;;;;:::o;856:338::-;933:6;941;949;1002:2;990:9;981:7;977:23;973:32;970:2;;;1023:6;1015;1008:22;970:2;1051:29;1070:9;1051:29;:::i;:::-;1041:39;;1099:38;1133:2;1122:9;1118:18;1099:38;:::i;:::-;1089:48;;1184:2;1173:9;1169:18;1156:32;1146:42;;960:234;;;;;:::o;1199:1183::-;1294:6;1302;1310;1318;1371:3;1359:9;1350:7;1346:23;1342:33;1339:2;;;1393:6;1385;1378:22;1339:2;1421:29;1440:9;1421:29;:::i;:::-;1411:39;;1469:38;1503:2;1492:9;1488:18;1469:38;:::i;:::-;1459:48;;1554:2;1543:9;1539:18;1526:32;1516:42;;1609:2;1598:9;1594:18;1581:32;1632:18;1673:2;1665:6;1662:14;1659:2;;;1694:6;1686;1679:22;1659:2;1737:6;1726:9;1722:22;1712:32;;1782:7;1775:4;1771:2;1767:13;1763:27;1753:2;;1809:6;1801;1794:22;1753:2;1850;1837:16;1872:2;1868;1865:10;1862:2;;;1878:18;;:::i;:::-;1953:2;1947:9;1921:2;2007:13;;-1:-1:-1;;2003:22:1;;;2027:2;1999:31;1995:40;1983:53;;;2051:18;;;2071:22;;;2048:46;2045:2;;;2097:18;;:::i;:::-;2137:10;2133:2;2126:22;2172:2;2164:6;2157:18;2212:7;2207:2;2202;2198;2194:11;2190:20;2187:33;2184:2;;;2238:6;2230;2223:22;2184:2;2299;2294;2290;2286:11;2281:2;2273:6;2269:15;2256:46;2322:15;;;2339:2;2318:24;2311:40;;;;1329:1053;;;;-1:-1:-1;1329:1053:1;;-1:-1:-1;;;;1329:1053:1:o;2387:264::-;2452:6;2460;2513:2;2501:9;2492:7;2488:23;2484:32;2481:2;;;2534:6;2526;2519:22;2481:2;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:35;2641:2;2630:9;2626:18;2610:35;:::i;2656:264::-;2724:6;2732;2785:2;2773:9;2764:7;2760:23;2756:32;2753:2;;;2806:6;2798;2791:22;2753:2;2834:29;2853:9;2834:29;:::i;:::-;2824:39;2910:2;2895:18;;;;2882:32;;-1:-1:-1;;;2743:177:1:o;2925:190::-;2981:6;3034:2;3022:9;3013:7;3009:23;3005:32;3002:2;;;3055:6;3047;3040:22;3002:2;3083:26;3099:9;3083:26;:::i;3120:255::-;3178:6;3231:2;3219:9;3210:7;3206:23;3202:32;3199:2;;;3252:6;3244;3237:22;3199:2;3296:9;3283:23;3315:30;3339:5;3315:30;:::i;3380:259::-;3449:6;3502:2;3490:9;3481:7;3477:23;3473:32;3470:2;;;3523:6;3515;3508:22;3470:2;3560:9;3554:16;3579:30;3603:5;3579:30;:::i;3644:190::-;3703:6;3756:2;3744:9;3735:7;3731:23;3727:32;3724:2;;;3777:6;3769;3762:22;3724:2;-1:-1:-1;3805:23:1;;3714:120;-1:-1:-1;3714:120:1:o;3839:257::-;3880:3;3918:5;3912:12;3945:6;3940:3;3933:19;3961:63;4017:6;4010:4;4005:3;4001:14;3994:4;3987:5;3983:16;3961:63;:::i;:::-;4078:2;4057:15;-1:-1:-1;;4053:29:1;4044:39;;;;4085:4;4040:50;;3888:208;-1:-1:-1;;3888:208:1:o;4101:185::-;4143:3;4181:5;4175:12;4196:52;4241:6;4236:3;4229:4;4222:5;4218:16;4196:52;:::i;:::-;4264:16;;;;;4151:135;-1:-1:-1;;4151:135:1:o;4409:1362::-;4686:3;4715;4750:6;4744:13;4780:3;4802:1;4830:9;4826:2;4822:18;4812:28;;4890:2;4879:9;4875:18;4912;4902:2;;4956:4;4948:6;4944:17;4934:27;;4902:2;4982;5030;5022:6;5019:14;4999:18;4996:38;4993:2;;;-1:-1:-1;;;5064:3:1;5057:90;5170:4;5167:1;5160:15;5200:4;5195:3;5188:17;4993:2;5231:18;5258:104;;;;5376:1;5371:322;;;;5224:469;;5258:104;-1:-1:-1;;5291:24:1;;5279:37;;5336:16;;;;-1:-1:-1;5258:104:1;;5371:322;16227:4;16246:17;;;16296:4;16280:21;;5466:3;5482:165;5496:6;5493:1;5490:13;5482:165;;;5574:14;;5561:11;;;5554:35;5617:16;;;;5511:10;;5482:165;;;5486:3;;5676:6;5671:3;5667:16;5660:23;;5224:469;;;;;;;5709:56;5734:30;5760:3;5752:6;5734:30;:::i;:::-;4363:7;4351:20;;4396:1;4387:11;;4341:63;5709:56;5702:63;4694:1077;-1:-1:-1;;;;;4694:1077:1:o;6007:511::-;6201:4;-1:-1:-1;;;;;6311:2:1;6303:6;6299:15;6288:9;6281:34;6363:2;6355:6;6351:15;6346:2;6335:9;6331:18;6324:43;;6403:6;6398:2;6387:9;6383:18;6376:34;6446:3;6441:2;6430:9;6426:18;6419:31;6467:45;6507:3;6496:9;6492:19;6484:6;6467:45;:::i;:::-;6459:53;6210:308;-1:-1:-1;;;;;;6210:308:1:o;6896:635::-;7067:2;7119:21;;;7189:13;;7092:18;;;7211:22;;;7038:4;;7067:2;7290:15;;;;7264:2;7249:18;;;7038:4;7336:169;7350:6;7347:1;7344:13;7336:169;;;7411:13;;7399:26;;7480:15;;;;7445:12;;;;7372:1;7365:9;7336:169;;;-1:-1:-1;7522:3:1;;7047:484;-1:-1:-1;;;;;;7047:484:1:o;7728:219::-;7877:2;7866:9;7859:21;7840:4;7897:44;7937:2;7926:9;7922:18;7914:6;7897:44;:::i;16312:128::-;16352:3;16383:1;16379:6;16376:1;16373:13;16370:2;;;16389:18;;:::i;:::-;-1:-1:-1;16425:9:1;;16360:80::o;16445:120::-;16485:1;16511;16501:2;;16516:18;;:::i;:::-;-1:-1:-1;16550:9:1;;16491:74::o;16570:168::-;16610:7;16676:1;16672;16668:6;16664:14;16661:1;16658:21;16653:1;16646:9;16639:17;16635:45;16632:2;;;16683:18;;:::i;:::-;-1:-1:-1;16723:9:1;;16622:116::o;16743:125::-;16783:4;16811:1;16808;16805:8;16802:2;;;16816:18;;:::i;:::-;-1:-1:-1;16853:9:1;;16792:76::o;16873:258::-;16945:1;16955:113;16969:6;16966:1;16963:13;16955:113;;;17045:11;;;17039:18;17026:11;;;17019:39;16991:2;16984:10;16955:113;;;17086:6;17083:1;17080:13;17077:2;;;-1:-1:-1;;17121:1:1;17103:16;;17096:27;16926:205::o;17136:437::-;17215:1;17211:12;;;;17258;;;17279:2;;17333:4;17325:6;17321:17;17311:27;;17279:2;17386;17378:6;17375:14;17355:18;17352:38;17349:2;;;-1:-1:-1;;;17420:1:1;17413:88;17524:4;17521:1;17514:15;17552:4;17549:1;17542:15;17349:2;;17191:382;;;:::o;17578:135::-;17617:3;-1:-1:-1;;17638:17:1;;17635:2;;;17658:18;;:::i;:::-;-1:-1:-1;17705:1:1;17694:13;;17625:88::o;17718:112::-;17750:1;17776;17766:2;;17781:18;;:::i;:::-;-1:-1:-1;17815:9:1;;17756:74::o;17835:184::-;-1:-1:-1;;;17884:1:1;17877:88;17984:4;17981:1;17974:15;18008:4;18005:1;17998:15;18024:184;-1:-1:-1;;;18073:1:1;18066:88;18173:4;18170:1;18163:15;18197:4;18194:1;18187:15;18213:184;-1:-1:-1;;;18262:1:1;18255:88;18362:4;18359:1;18352:15;18386:4;18383:1;18376:15;18402:177;-1:-1:-1;;;;;;18480:5:1;18476:78;18469:5;18466:89;18456:2;;18569:1;18566;18559:12
Swarm Source
ipfs://e6afcd9242c5352f1bb46f2d813c03519252ad32c16e2700f526a2a24eeb99d6
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.