Overview
TokenID
5605
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PunksYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-17 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: PunksYachtClub.sol /* ============================================== PunksYachtClub ============================================== */ pragma solidity ^0.8.0; /** * @title PunksYachtClub */ contract PunksYachtClub is ERC721A, Ownable { bool public saleIsActive = true; uint256 public Price = 0.045 ether; string private _baseURIextended = "https://punksyachtclub.s3.us-west-1.amazonaws.com/metadata/"; address private proxyRegistryAddress; constructor() ERC721A("PunksYachtClub", "PYC",500) { } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function setPrice(uint256 newPrice) public onlyOwner { Price = newPrice; } function mint(uint256 numberOfTokens) external payable { uint256 totalNum = 10000; require(totalSupply() + numberOfTokens <= totalNum, "already mint out"); require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH)."); _safeMint(msg.sender, numberOfTokens); } function mintBatch(address to, uint256 quantity) external onlyOwner { uint256 totalNum = 10000; uint256 maxBatchSize = 500; require(totalSupply() + quantity <= totalNum, "already mint out"); require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize"); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(to, maxBatchSize); } } function gift(address _to,uint256 numberOfTokens) external onlyOwner { uint256 totalNum = 10000; require(totalSupply() + numberOfTokens <= totalNum, "already mint out"); _safeMint(_to, numberOfTokens); } function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } }
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":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":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60008080556007556008805460ff60a01b1916600160a01b179055669fdf42f6e48000600955610100604052603b60a081815290620023fb60c03980516200005091600a916020909101906200019f565b503480156200005e57600080fd5b506040518060400160405280600e81526020016d283ab735b9acb0b1b43a21b63ab160911b8152506040518060400160405280600381526020016250594360e81b8152506101f4600081116200010a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200011f9060019060208601906200019f565b508151620001359060029060208501906200019f565b5060805250620001479050336200014d565b62000282565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ad9062000245565b90600052602060002090601f016020900481019282620001d157600085556200021c565b82601f10620001ec57805160ff19168380011785556200021c565b828001600101855582156200021c579182015b828111156200021c578251825591602001919060010190620001ff565b506200022a9291506200022e565b5090565b5b808211156200022a57600081556001016200022f565b600181811c908216806200025a57607f821691505b602082108114156200027c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161214f620002ac60003960008181611490015281816114ba01526118e2015261214f6000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d8e565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611ec2565b34801561021f57600080fd5b5061023361022e366004611e11565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d64565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611c70565b6107f9565b3480156102b857600080fd5b5061026b6102c7366004611d64565b610804565b3480156102d857600080fd5b5061027e6102e7366004611d64565b6108ee565b3480156102f857600080fd5b5061026b610a5c565b34801561030d57600080fd5b5061026b61031c366004611c70565b610b25565b34801561032d57600080fd5b5061027e61033c366004611e11565b610b40565b34801561034d57600080fd5b5061026b61035c366004611dc8565b610ba2565b34801561036d57600080fd5b5061023361037c366004611e11565b610bc1565b34801561038d57600080fd5b5061027e61039c366004611c22565b610bd3565b3480156103ad57600080fd5b5061026b610c64565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611e11565b610c78565b34801561040057600080fd5b50610206610c85565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611e11565b610c94565b34801561043e57600080fd5b5061026b61044d366004611d28565b610d31565b34801561045e57600080fd5b5061026b61046d366004611cac565b610df6565b34801561047e57600080fd5b5061020661048d366004611e11565b610e2f565b34801561049e57600080fd5b5061026b6104ad366004611d64565b610efc565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611c3d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611c22565b610f44565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90612041565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90612041565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bc1565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610777575061077781336104e3565b6107e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f4838383610fba565b505050565b6107f4838383611016565b61080c61139a565b6127106101f4818361081d60005490565b6108279190611f74565b11156108455760405162461bcd60e51b81526004016106bc90611f28565b61084f8184612097565b156108b15760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bd8285611f8c565b905060005b818110156108e6576108d486846113f4565b806108de8161207c565b9150506108c2565b505050505050565b60006108f983610bd3565b82106109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109fc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ad57805192505b876001600160a01b0316836001600160a01b031614156109e957868414156109db575093506105b992505050565b836109e58161207c565b9450505b50806109f48161207c565b91505061095a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a6461139a565b604051600090339047908381818185875af1925050503d8060008114610aa6576040519150601f19603f3d011682016040523d82523d6000602084013e610aab565b606091505b5050905080610b225760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f483838360405180602001604052806000815250610df6565b600080548210610b9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610baa61139a565b8051610bbd90600a906020840190611b00565b5050565b6000610bcc8261140e565b5192915050565b60006001600160a01b038216610c3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6c61139a565b610c7660006115b8565b565b610c8061139a565b600955565b6060600280546105ce90612041565b6127108082610ca260005490565b610cac9190611f74565b1115610cca5760405162461bcd60e51b81526004016106bc90611f28565b3482600954610cd99190611fa0565b1115610d275760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bbd33836113f4565b6001600160a01b038216331415610d8a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e01848484611016565b610e0d8484848461160a565b610e295760405162461bcd60e51b81526004016106bc90611ed5565b50505050565b6060610e3c826000541190565b610ea05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bc565b6000610eaa611718565b90506000815111610eca5760405180602001604052806000815250610ef5565b80610ed484611727565b604051602001610ee5929190611e56565b6040516020818303038152906040525b9392505050565b610f0461139a565b6127108082610f1260005490565b610f1c9190611f74565b1115610f3a5760405162461bcd60e51b81526004016106bc90611f28565b6107f483836113f4565b610f4c61139a565b6001600160a01b038116610fb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b22816115b8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110218261140e565b80519091506000906001600160a01b0316336001600160a01b0316148061105857503361104d84610651565b6001600160a01b0316145b8061106a5750815161106a90336104e3565b9050806110d45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b0316146111485760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111ac5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111bc6000848460000151610fba565b6001600160a01b03851660009081526004602052604081208054600192906111ee9084906001600160801b0316611fbf565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261123a91859116611f52565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112c2846001611f74565b6000818152600360205260409020549091506001600160a01b0316611354576112ec816000541190565b156113545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e6565b6008546001600160a01b03163314610c765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bbd828260405180602001604052806000815250611825565b604080518082019091526000808252602082015261142d826000541190565b61148c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f000000000000000000000000000000000000000000000000000000000000000083106114ed576114df7f000000000000000000000000000000000000000000000000000000000000000084611fe7565b6114ea906001611f74565b90505b825b818110611557576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561154457949350505050565b508061154f8161202a565b9150506114ef565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561170c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061164e903390899088908890600401611e85565b602060405180830381600087803b15801561166857600080fd5b505af1925050508015611698575060408051601f3d908101601f1916820190925261169591810190611dab565b60015b6116f2573d8080156116c6576040519150601f19603f3d011682016040523d82523d6000602084013e6116cb565b606091505b5080516116ea5760405162461bcd60e51b81526004016106bc90611ed5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611710565b5060015b949350505050565b6060600a80546105ce90612041565b60608161174b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611775578061175f8161207c565b915061176e9050600a83611f8c565b915061174f565b60008167ffffffffffffffff811115611790576117906120ed565b6040519080825280601f01601f1916602001820160405280156117ba576020820181803683370190505b5090505b8415611710576117cf600183611fe7565b91506117dc600a86612097565b6117e7906030611f74565b60f81b8183815181106117fc576117fc6120d7565b60200101906001600160f81b031916908160001a90535061181e600a86611f8c565b94506117be565b6000546001600160a01b0384166118885760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b611893816000541190565b156118e05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f000000000000000000000000000000000000000000000000000000000000000083111561195b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119b7908790611f52565b6001600160801b031681526020018583602001516119d59190611f52565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611af55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ab9600088848861160a565b611ad55760405162461bcd60e51b81526004016106bc90611ed5565b81611adf8161207c565b9250508080611aed9061207c565b915050611a6c565b5060008190556108e6565b828054611b0c90612041565b90600052602060002090601f016020900481019282611b2e5760008555611b74565b82601f10611b4757805160ff1916838001178555611b74565b82800160010185558215611b74579182015b82811115611b74578251825591602001919060010190611b59565b50610b9e9291505b80821115610b9e5760008155600101611b7c565b600067ffffffffffffffff80841115611bab57611bab6120ed565b604051601f8501601f19908116603f01168101908282118183101715611bd357611bd36120ed565b81604052809350858152868686011115611bec57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c1d57600080fd5b919050565b600060208284031215611c3457600080fd5b610ef582611c06565b60008060408385031215611c5057600080fd5b611c5983611c06565b9150611c6760208401611c06565b90509250929050565b600080600060608486031215611c8557600080fd5b611c8e84611c06565b9250611c9c60208501611c06565b9150604084013590509250925092565b60008060008060808587031215611cc257600080fd5b611ccb85611c06565b9350611cd960208601611c06565b925060408501359150606085013567ffffffffffffffff811115611cfc57600080fd5b8501601f81018713611d0d57600080fd5b611d1c87823560208401611b90565b91505092959194509250565b60008060408385031215611d3b57600080fd5b611d4483611c06565b915060208301358015158114611d5957600080fd5b809150509250929050565b60008060408385031215611d7757600080fd5b611d8083611c06565b946020939093013593505050565b600060208284031215611da057600080fd5b8135610ef581612103565b600060208284031215611dbd57600080fd5b8151610ef581612103565b600060208284031215611dda57600080fd5b813567ffffffffffffffff811115611df157600080fd5b8201601f81018413611e0257600080fd5b61171084823560208401611b90565b600060208284031215611e2357600080fd5b5035919050565b60008151808452611e42816020860160208601611ffe565b601f01601f19169290920160200192915050565b60008351611e68818460208801611ffe565b835190830190611e7c818360208801611ffe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb890830184611e2a565b9695505050505050565b602081526000610ef56020830184611e2a565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b60006001600160801b03808316818516808303821115611e7c57611e7c6120ab565b60008219821115611f8757611f876120ab565b500190565b600082611f9b57611f9b6120c1565b500490565b6000816000190483118215151615611fba57611fba6120ab565b500290565b60006001600160801b0383811690831681811015611fdf57611fdf6120ab565b039392505050565b600082821015611ff957611ff96120ab565b500390565b60005b83811015612019578181015183820152602001612001565b83811115610e295750506000910152565b600081612039576120396120ab565b506000190190565b600181811c9082168061205557607f821691505b6020821081141561207657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612090576120906120ab565b5060010190565b6000826120a6576120a66120c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2257600080fdfea2646970667358221220e22be2f739791a5101bd578271990dee40521ab642279ae6a33335ab7b7fc2fc64736f6c6343000807003368747470733a2f2f70756e6b737961636874636c75622e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611d8e565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611ec2565b34801561021f57600080fd5b5061023361022e366004611e11565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611d64565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611c70565b6107f9565b3480156102b857600080fd5b5061026b6102c7366004611d64565b610804565b3480156102d857600080fd5b5061027e6102e7366004611d64565b6108ee565b3480156102f857600080fd5b5061026b610a5c565b34801561030d57600080fd5b5061026b61031c366004611c70565b610b25565b34801561032d57600080fd5b5061027e61033c366004611e11565b610b40565b34801561034d57600080fd5b5061026b61035c366004611dc8565b610ba2565b34801561036d57600080fd5b5061023361037c366004611e11565b610bc1565b34801561038d57600080fd5b5061027e61039c366004611c22565b610bd3565b3480156103ad57600080fd5b5061026b610c64565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611e11565b610c78565b34801561040057600080fd5b50610206610c85565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611e11565b610c94565b34801561043e57600080fd5b5061026b61044d366004611d28565b610d31565b34801561045e57600080fd5b5061026b61046d366004611cac565b610df6565b34801561047e57600080fd5b5061020661048d366004611e11565b610e2f565b34801561049e57600080fd5b5061026b6104ad366004611d64565b610efc565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611c3d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611c22565b610f44565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90612041565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90612041565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bc1565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610777575061077781336104e3565b6107e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f4838383610fba565b505050565b6107f4838383611016565b61080c61139a565b6127106101f4818361081d60005490565b6108279190611f74565b11156108455760405162461bcd60e51b81526004016106bc90611f28565b61084f8184612097565b156108b15760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bd8285611f8c565b905060005b818110156108e6576108d486846113f4565b806108de8161207c565b9150506108c2565b505050505050565b60006108f983610bd3565b82106109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109fc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ad57805192505b876001600160a01b0316836001600160a01b031614156109e957868414156109db575093506105b992505050565b836109e58161207c565b9450505b50806109f48161207c565b91505061095a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a6461139a565b604051600090339047908381818185875af1925050503d8060008114610aa6576040519150601f19603f3d011682016040523d82523d6000602084013e610aab565b606091505b5050905080610b225760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f483838360405180602001604052806000815250610df6565b600080548210610b9e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610baa61139a565b8051610bbd90600a906020840190611b00565b5050565b6000610bcc8261140e565b5192915050565b60006001600160a01b038216610c3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6c61139a565b610c7660006115b8565b565b610c8061139a565b600955565b6060600280546105ce90612041565b6127108082610ca260005490565b610cac9190611f74565b1115610cca5760405162461bcd60e51b81526004016106bc90611f28565b3482600954610cd99190611fa0565b1115610d275760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bbd33836113f4565b6001600160a01b038216331415610d8a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e01848484611016565b610e0d8484848461160a565b610e295760405162461bcd60e51b81526004016106bc90611ed5565b50505050565b6060610e3c826000541190565b610ea05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bc565b6000610eaa611718565b90506000815111610eca5760405180602001604052806000815250610ef5565b80610ed484611727565b604051602001610ee5929190611e56565b6040516020818303038152906040525b9392505050565b610f0461139a565b6127108082610f1260005490565b610f1c9190611f74565b1115610f3a5760405162461bcd60e51b81526004016106bc90611f28565b6107f483836113f4565b610f4c61139a565b6001600160a01b038116610fb15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b22816115b8565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110218261140e565b80519091506000906001600160a01b0316336001600160a01b0316148061105857503361104d84610651565b6001600160a01b0316145b8061106a5750815161106a90336104e3565b9050806110d45760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b0316146111485760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111ac5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111bc6000848460000151610fba565b6001600160a01b03851660009081526004602052604081208054600192906111ee9084906001600160801b0316611fbf565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261123a91859116611f52565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112c2846001611f74565b6000818152600360205260409020549091506001600160a01b0316611354576112ec816000541190565b156113545760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e6565b6008546001600160a01b03163314610c765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bbd828260405180602001604052806000815250611825565b604080518082019091526000808252602082015261142d826000541190565b61148c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f00000000000000000000000000000000000000000000000000000000000001f483106114ed576114df7f00000000000000000000000000000000000000000000000000000000000001f484611fe7565b6114ea906001611f74565b90505b825b818110611557576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561154457949350505050565b508061154f8161202a565b9150506114ef565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561170c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061164e903390899088908890600401611e85565b602060405180830381600087803b15801561166857600080fd5b505af1925050508015611698575060408051601f3d908101601f1916820190925261169591810190611dab565b60015b6116f2573d8080156116c6576040519150601f19603f3d011682016040523d82523d6000602084013e6116cb565b606091505b5080516116ea5760405162461bcd60e51b81526004016106bc90611ed5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611710565b5060015b949350505050565b6060600a80546105ce90612041565b60608161174b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611775578061175f8161207c565b915061176e9050600a83611f8c565b915061174f565b60008167ffffffffffffffff811115611790576117906120ed565b6040519080825280601f01601f1916602001820160405280156117ba576020820181803683370190505b5090505b8415611710576117cf600183611fe7565b91506117dc600a86612097565b6117e7906030611f74565b60f81b8183815181106117fc576117fc6120d7565b60200101906001600160f81b031916908160001a90535061181e600a86611f8c565b94506117be565b6000546001600160a01b0384166118885760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b611893816000541190565b156118e05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f00000000000000000000000000000000000000000000000000000000000001f483111561195b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119b7908790611f52565b6001600160801b031681526020018583602001516119d59190611f52565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611af55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ab9600088848861160a565b611ad55760405162461bcd60e51b81526004016106bc90611ed5565b81611adf8161207c565b9250508080611aed9061207c565b915050611a6c565b5060008190556108e6565b828054611b0c90612041565b90600052602060002090601f016020900481019282611b2e5760008555611b74565b82601f10611b4757805160ff1916838001178555611b74565b82800160010185558215611b74579182015b82811115611b74578251825591602001919060010190611b59565b50610b9e9291505b80821115610b9e5760008155600101611b7c565b600067ffffffffffffffff80841115611bab57611bab6120ed565b604051601f8501601f19908116603f01168101908282118183101715611bd357611bd36120ed565b81604052809350858152868686011115611bec57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c1d57600080fd5b919050565b600060208284031215611c3457600080fd5b610ef582611c06565b60008060408385031215611c5057600080fd5b611c5983611c06565b9150611c6760208401611c06565b90509250929050565b600080600060608486031215611c8557600080fd5b611c8e84611c06565b9250611c9c60208501611c06565b9150604084013590509250925092565b60008060008060808587031215611cc257600080fd5b611ccb85611c06565b9350611cd960208601611c06565b925060408501359150606085013567ffffffffffffffff811115611cfc57600080fd5b8501601f81018713611d0d57600080fd5b611d1c87823560208401611b90565b91505092959194509250565b60008060408385031215611d3b57600080fd5b611d4483611c06565b915060208301358015158114611d5957600080fd5b809150509250929050565b60008060408385031215611d7757600080fd5b611d8083611c06565b946020939093013593505050565b600060208284031215611da057600080fd5b8135610ef581612103565b600060208284031215611dbd57600080fd5b8151610ef581612103565b600060208284031215611dda57600080fd5b813567ffffffffffffffff811115611df157600080fd5b8201601f81018413611e0257600080fd5b61171084823560208401611b90565b600060208284031215611e2357600080fd5b5035919050565b60008151808452611e42816020860160208601611ffe565b601f01601f19169290920160200192915050565b60008351611e68818460208801611ffe565b835190830190611e7c818360208801611ffe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eb890830184611e2a565b9695505050505050565b602081526000610ef56020830184611e2a565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b60006001600160801b03808316818516808303821115611e7c57611e7c6120ab565b60008219821115611f8757611f876120ab565b500190565b600082611f9b57611f9b6120c1565b500490565b6000816000190483118215151615611fba57611fba6120ab565b500290565b60006001600160801b0383811690831681811015611fdf57611fdf6120ab565b039392505050565b600082821015611ff957611ff96120ab565b500390565b60005b83811015612019578181015183820152602001612001565b83811115610e295750506000910152565b600081612039576120396120ab565b506000190190565b600181811c9082168061205557607f821691505b6020821081141561207657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612090576120906120ab565b5060010190565b6000826120a6576120a66120c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2257600080fdfea2646970667358221220e22be2f739791a5101bd578271990dee40521ab642279ae6a33335ab7b7fc2fc64736f6c63430008070033
Deployed Bytecode Sourcemap
40552:2080:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25104:370;;;;;;;;;;-1:-1:-1;25104:370:0;;;;;:::i;:::-;;:::i;:::-;;;5856:14:1;;5849:22;5831:41;;5819:2;5804:18;25104:370:0;;;;;;;;26830:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28355:204::-;;;;;;;;;;-1:-1:-1;28355:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;28355:204:0;4990:203:1;27918:379:0;;;;;;;;;;-1:-1:-1;27918:379:0;;;;;:::i;:::-;;:::i;:::-;;23668:94;;;;;;;;;;-1:-1:-1;23721:7:0;23744:12;23668:94;;;15851:25:1;;;15839:2;15824:18;23668:94:0;15705:177:1;29205:142:0;;;;;;;;;;-1:-1:-1;29205:142:0;;;;;:::i;:::-;;:::i;41629:480::-;;;;;;;;;;-1:-1:-1;41629:480:0;;;;;:::i;:::-;;:::i;24296:744::-;;;;;;;;;;-1:-1:-1;24296:744:0;;;;;:::i;:::-;;:::i;42377:250::-;;;;;;;;;;;;;:::i;29410:157::-;;;;;;;;;;-1:-1:-1;29410:157:0;;;;;:::i;:::-;;:::i;23831:177::-;;;;;;;;;;-1:-1:-1;23831:177:0;;;;;:::i;:::-;;:::i;40932:111::-;;;;;;;;;;-1:-1:-1;40932:111:0;;;;;:::i;:::-;;:::i;26653:118::-;;;;;;;;;;-1:-1:-1;26653:118:0;;;;;:::i;:::-;;:::i;25530:211::-;;;;;;;;;;-1:-1:-1;25530:211:0;;;;;:::i;:::-;;:::i;39201:103::-;;;;;;;;;;;;;:::i;38553:87::-;;;;;;;;;;-1:-1:-1;38626:6:0;;-1:-1:-1;;;;;38626:6:0;38553:87;;41176:88;;;;;;;;;;-1:-1:-1;41176:88:0;;;;;:::i;:::-;;:::i;26985:98::-;;;;;;;;;;;;;:::i;40651:34::-;;;;;;;;;;;;;;;;41272:349;;;;;;:::i;:::-;;:::i;28623:274::-;;;;;;;;;;-1:-1:-1;28623:274:0;;;;;:::i;:::-;;:::i;29630:311::-;;;;;;;;;;-1:-1:-1;29630:311:0;;;;;:::i;:::-;;:::i;27146:394::-;;;;;;;;;;-1:-1:-1;27146:394:0;;;;;:::i;:::-;;:::i;42117:252::-;;;;;;;;;;-1:-1:-1;42117:252:0;;;;;:::i;:::-;;:::i;33961:43::-;;;;;;;;;;;;;;;;28960:186;;;;;;;;;;-1:-1:-1;28960:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;29105:25:0;;;29082:4;29105:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28960:186;40613:31;;;;;;;;;;-1:-1:-1;40613:31:0;;;;-1:-1:-1;;;40613:31:0;;;;;;39459:201;;;;;;;;;;-1:-1:-1;39459:201:0;;;;;:::i;:::-;;:::i;25104:370::-;25231:4;-1:-1:-1;;;;;;25261:40:0;;-1:-1:-1;;;25261:40:0;;:99;;-1:-1:-1;;;;;;;25312:48:0;;-1:-1:-1;;;25312:48:0;25261:99;:160;;;-1:-1:-1;;;;;;;25371:50:0;;-1:-1:-1;;;25371:50:0;25261:160;:207;;;-1:-1:-1;;;;;;;;;;13995:40:0;;;25432:36;25247:221;25104:370;-1:-1:-1;;25104:370:0:o;26830:94::-;26884:13;26913:5;26906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26830:94;:::o;28355:204::-;28423:7;28447:16;28455:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;28447:16;28439:74;;;;-1:-1:-1;;;28439:74:0;;15090:2:1;28439:74:0;;;15072:21:1;15129:2;15109:18;;;15102:30;15168:34;15148:18;;;15141:62;-1:-1:-1;;;15219:18:1;;;15212:43;15272:19;;28439:74:0;;;;;;;;;-1:-1:-1;28529:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28529:24:0;;28355:204::o;27918:379::-;27987:13;28003:24;28019:7;28003:15;:24::i;:::-;27987:40;;28048:5;-1:-1:-1;;;;;28042:11:0;:2;-1:-1:-1;;;;;28042:11:0;;;28034:58;;;;-1:-1:-1;;;28034:58:0;;12331:2:1;28034:58:0;;;12313:21:1;12370:2;12350:18;;;12343:30;12409:34;12389:18;;;12382:62;-1:-1:-1;;;12460:18:1;;;12453:32;12502:19;;28034:58:0;12129:398:1;28034:58:0;21576:10;-1:-1:-1;;;;;28117:21:0;;;;:62;;-1:-1:-1;28142:37:0;28159:5;21576:10;28960:186;:::i;28142:37::-;28101:153;;;;-1:-1:-1;;;28101:153:0;;9180:2:1;28101:153:0;;;9162:21:1;9219:2;9199:18;;;9192:30;9258:34;9238:18;;;9231:62;9329:27;9309:18;;;9302:55;9374:19;;28101:153:0;8978:421:1;28101:153:0;28263:28;28272:2;28276:7;28285:5;28263:8;:28::i;:::-;27980:317;27918:379;;:::o;29205:142::-;29313:28;29323:4;29329:2;29333:7;29313:9;:28::i;41629:480::-;38439:13;:11;:13::i;:::-;41727:5:::1;41766:3;41727:5:::0;41804:8;41788:13:::1;23721:7:::0;23744:12;;23668:94;41788:13:::1;:24;;;;:::i;:::-;:36;;41780:65;;;;-1:-1:-1::0;;;41780:65:0::1;;;;;;;:::i;:::-;41864:23;41875:12:::0;41864:8;:23:::1;:::i;:::-;:28:::0;41856:85:::1;;;::::0;-1:-1:-1;;;41856:85:0;;7530:2:1;41856:85:0::1;::::0;::::1;7512:21:1::0;7569:2;7549:18;;;7542:30;7608:34;7588:18;;;7581:62;-1:-1:-1;;;7659:18:1;;;7652:42;7711:19;;41856:85:0::1;7328:408:1::0;41856:85:0::1;41954:17;41974:23;41985:12:::0;41974:8;:23:::1;:::i;:::-;41954:43;;42013:9;42008:94;42032:9;42028:1;:13;42008:94;;;42063:27;42073:2;42077:12;42063:9;:27::i;:::-;42043:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42008:94;;;;41697:412;;;41629:480:::0;;:::o;24296:744::-;24405:7;24440:16;24450:5;24440:9;:16::i;:::-;24432:5;:24;24424:71;;;;-1:-1:-1;;;24424:71:0;;6309:2:1;24424:71:0;;;6291:21:1;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:1;;;6431:32;6480:19;;24424:71:0;6107:398:1;24424:71:0;24502:22;23744:12;;;24502:22;;24622:350;24646:14;24642:1;:18;24622:350;;;24676:31;24710:14;;;:11;:14;;;;;;;;;24676:48;;;;;;;;;-1:-1:-1;;;;;24676:48:0;;;;;-1:-1:-1;;;24676:48:0;;;;;;;;;;;;24737:28;24733:89;;24798:14;;;-1:-1:-1;24733:89:0;24855:5;-1:-1:-1;;;;;24834:26:0;:17;-1:-1:-1;;;;;24834:26:0;;24830:135;;;24892:5;24877:11;:20;24873:59;;;-1:-1:-1;24919:1:0;-1:-1:-1;24912:8:0;;-1:-1:-1;;;24912:8:0;24873:59;24942:13;;;;:::i;:::-;;;;24830:135;-1:-1:-1;24662:3:0;;;;:::i;:::-;;;;24622:350;;;-1:-1:-1;24978:56:0;;-1:-1:-1;;;24978:56:0;;14259:2:1;24978:56:0;;;14241:21:1;14298:2;14278:18;;;14271:30;14337:34;14317:18;;;14310:62;-1:-1:-1;;;14388:18:1;;;14381:44;14442:19;;24978:56:0;14057:410:1;42377:250:0;38439:13;:11;:13::i;:::-;42444:49:::1;::::0;42426:12:::1;::::0;42444:10:::1;::::0;42467:21:::1;::::0;42426:12;42444:49;42426:12;42444:49;42467:21;42444:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42425:68;;;42526:7;42504:115;;;::::0;-1:-1:-1;;;42504:115:0;;8753:2:1;42504:115:0::1;::::0;::::1;8735:21:1::0;8792:2;8772:18;;;8765:30;8831:34;8811:18;;;8804:62;8902:28;8882:18;;;8875:56;8948:19;;42504:115:0::1;8551:422:1::0;42504:115:0::1;42414:213;42377:250::o:0;29410:157::-;29522:39;29539:4;29545:2;29549:7;29522:39;;;;;;;;;;;;:16;:39::i;23831:177::-;23898:7;23744:12;;23922:5;:21;23914:69;;;;-1:-1:-1;;;23914:69:0;;7943:2:1;23914:69:0;;;7925:21:1;7982:2;7962:18;;;7955:30;8021:34;8001:18;;;7994:62;-1:-1:-1;;;8072:18:1;;;8065:33;8115:19;;23914:69:0;7741:399:1;23914:69:0;-1:-1:-1;23997:5:0;23831:177::o;40932:111::-;38439:13;:11;:13::i;:::-;41008:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40932:111:::0;:::o;26653:118::-;26717:7;26740:20;26752:7;26740:11;:20::i;:::-;:25;;26653:118;-1:-1:-1;;26653:118:0:o;25530:211::-;25594:7;-1:-1:-1;;;;;25618:19:0;;25610:75;;;;-1:-1:-1;;;25610:75:0;;9606:2:1;25610:75:0;;;9588:21:1;9645:2;9625:18;;;9618:30;9684:34;9664:18;;;9657:62;-1:-1:-1;;;9735:18:1;;;9728:41;9786:19;;25610:75:0;9404:407:1;25610:75:0;-1:-1:-1;;;;;;25707:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25707:27:0;;25530:211::o;39201:103::-;38439:13;:11;:13::i;:::-;39266:30:::1;39293:1;39266:18;:30::i;:::-;39201:103::o:0;41176:88::-;38439:13;:11;:13::i;:::-;41240:5:::1;:16:::0;41176:88::o;26985:98::-;27041:13;27070:7;27063:14;;;;;:::i;41272:349::-;41361:5;;41401:14;41385:13;23721:7;23744:12;;23668:94;41385:13;:30;;;;:::i;:::-;:42;;41377:71;;;;-1:-1:-1;;;41377:71:0;;;;;;;:::i;:::-;41501:9;41482:14;41474:5;;:22;;;;:::i;:::-;41473:37;;41465:76;;;;-1:-1:-1;;;41465:76:0;;10018:2:1;41465:76:0;;;10000:21:1;10057:2;10037:18;;;10030:30;10096:28;10076:18;;;10069:56;10142:18;;41465:76:0;9816:350:1;41465:76:0;41552:37;41562:10;41574:14;41552:9;:37::i;28623:274::-;-1:-1:-1;;;;;28714:24:0;;21576:10;28714:24;;28706:63;;;;-1:-1:-1;;;28706:63:0;;11557:2:1;28706:63:0;;;11539:21:1;11596:2;11576:18;;;11569:30;11635:28;11615:18;;;11608:56;11681:18;;28706:63:0;11355:350:1;28706:63:0;21576:10;28778:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28778:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28778:53:0;;;;;;;;;;28843:48;;5831:41:1;;;28778:42:0;;21576:10;28843:48;;5804:18:1;28843:48:0;;;;;;;28623:274;;:::o;29630:311::-;29767:28;29777:4;29783:2;29787:7;29767:9;:28::i;:::-;29818:48;29841:4;29847:2;29851:7;29860:5;29818:22;:48::i;:::-;29802:133;;;;-1:-1:-1;;;29802:133:0;;;;;;;:::i;:::-;29630:311;;;;:::o;27146:394::-;27244:13;27285:16;27293:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;27285:16;27269:97;;;;-1:-1:-1;;;27269:97:0;;11141:2:1;27269:97:0;;;11123:21:1;11180:2;11160:18;;;11153:30;11219:34;11199:18;;;11192:62;-1:-1:-1;;;11270:18:1;;;11263:45;11325:19;;27269:97:0;10939:411:1;27269:97:0;27375:21;27399:10;:8;:10::i;:::-;27375:34;;27454:1;27436:7;27430:21;:25;:104;;;;;;;;;;;;;;;;;27491:7;27500:18;:7;:16;:18::i;:::-;27474:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27430:104;27416:118;27146:394;-1:-1:-1;;;27146:394:0:o;42117:252::-;38439:13;:11;:13::i;:::-;42220:5:::1;::::0;42261:14;42245:13:::1;23721:7:::0;23744:12;;23668:94;42245:13:::1;:30;;;;:::i;:::-;:42;;42237:71;;;;-1:-1:-1::0;;;42237:71:0::1;;;;;;;:::i;:::-;42331:30;42341:3;42346:14;42331:9;:30::i;39459:201::-:0;38439:13;:11;:13::i;:::-;-1:-1:-1;;;;;39548:22:0;::::1;39540:73;;;::::0;-1:-1:-1;;;39540:73:0;;6712:2:1;39540:73:0::1;::::0;::::1;6694:21:1::0;6751:2;6731:18;;;6724:30;6790:34;6770:18;;;6763:62;-1:-1:-1;;;6841:18:1;;;6834:36;6887:19;;39540:73:0::1;6510:402:1::0;39540:73:0::1;39624:28;39643:8;39624:18;:28::i;33783:172::-:0;33880:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33880:29:0;-1:-1:-1;;;;;33880:29:0;;;;;;;;;33921:28;;33880:24;;33921:28;;;;;;;33783:172;;;:::o;32148:1529::-;32245:35;32283:20;32295:7;32283:11;:20::i;:::-;32354:18;;32245:58;;-1:-1:-1;32312:22:0;;-1:-1:-1;;;;;32338:34:0;21576:10;-1:-1:-1;;;;;32338:34:0;;:81;;;-1:-1:-1;21576:10:0;32383:20;32395:7;32383:11;:20::i;:::-;-1:-1:-1;;;;;32383:36:0;;32338:81;:142;;;-1:-1:-1;32447:18:0;;32430:50;;21576:10;28960:186;:::i;32430:50::-;32312:169;;32506:17;32490:101;;;;-1:-1:-1;;;32490:101:0;;11912:2:1;32490:101:0;;;11894:21:1;11951:2;11931:18;;;11924:30;11990:34;11970:18;;;11963:62;-1:-1:-1;;;12041:18:1;;;12034:48;12099:19;;32490:101:0;11710:414:1;32490:101:0;32638:4;-1:-1:-1;;;;;32616:26:0;:13;:18;;;-1:-1:-1;;;;;32616:26:0;;32600:98;;;;-1:-1:-1;;;32600:98:0;;10373:2:1;32600:98:0;;;10355:21:1;10412:2;10392:18;;;10385:30;10451:34;10431:18;;;10424:62;-1:-1:-1;;;10502:18:1;;;10495:36;10548:19;;32600:98:0;10171:402:1;32600:98:0;-1:-1:-1;;;;;32713:16:0;;32705:66;;;;-1:-1:-1;;;32705:66:0;;8347:2:1;32705:66:0;;;8329:21:1;8386:2;8366:18;;;8359:30;8425:34;8405:18;;;8398:62;-1:-1:-1;;;8476:18:1;;;8469:35;8521:19;;32705:66:0;8145:401:1;32705:66:0;32880:49;32897:1;32901:7;32910:13;:18;;;32880:8;:49::i;:::-;-1:-1:-1;;;;;32938:18:0;;;;;;:12;:18;;;;;:31;;32968:1;;32938:18;:31;;32968:1;;-1:-1:-1;;;;;32938:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32938:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32976:16:0;;-1:-1:-1;32976:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32976:16:0;;:29;;-1:-1:-1;;32976:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32976:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33035:43:0;;;;;;;;-1:-1:-1;;;;;33035:43:0;;;;;;33061:15;33035:43;;;;;;;;;-1:-1:-1;33012:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;33012:66:0;-1:-1:-1;;;;;;33012:66:0;;;;;;;;;;;33328:11;33024:7;-1:-1:-1;33328:11:0;:::i;:::-;33391:1;33350:24;;;:11;:24;;;;;:29;33306:33;;-1:-1:-1;;;;;;33350:29:0;33346:236;;33408:20;33416:11;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;33408:20;33404:171;;;33468:97;;;;;;;;33495:18;;-1:-1:-1;;;;;33468:97:0;;;;;;33526:28;;;;33468:97;;;;;;;;;;-1:-1:-1;33441:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33441:124:0;-1:-1:-1;;;;;;33441:124:0;;;;;;;;;;;;33404:171;33614:7;33610:2;-1:-1:-1;;;;;33595:27:0;33604:4;-1:-1:-1;;;;;33595:27:0;;;;;;;;;;;33629:42;29630:311;38718:132;38626:6;;-1:-1:-1;;;;;38626:6:0;21576:10;38782:23;38774:68;;;;-1:-1:-1;;;38774:68:0;;10780:2:1;38774:68:0;;;10762:21:1;;;10799:18;;;10792:30;10858:34;10838:18;;;10831:62;10910:18;;38774:68:0;10578:356:1;30291:98:0;30356:27;30366:2;30370:8;30356:27;;;;;;;;;;;;:9;:27::i;25993:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;26110:16:0;26118:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;26110:16;26102:71;;;;-1:-1:-1;;;26102:71:0;;7119:2:1;26102:71:0;;;7101:21:1;7158:2;7138:18;;;7131:30;7197:34;7177:18;;;7170:62;-1:-1:-1;;;7248:18:1;;;7241:40;7298:19;;26102:71:0;6917:406:1;26102:71:0;26182:26;26230:12;26219:7;:23;26215:93;;26274:22;26284:12;26274:7;:22;:::i;:::-;:26;;26299:1;26274:26;:::i;:::-;26253:47;;26215:93;26336:7;26316:212;26353:18;26345:4;:26;26316:212;;26390:31;26424:17;;;:11;:17;;;;;;;;;26390:51;;;;;;;;;-1:-1:-1;;;;;26390:51:0;;;;;-1:-1:-1;;;26390:51:0;;;;;;;;;;;;26454:28;26450:71;;26502:9;25993:606;-1:-1:-1;;;;25993:606:0:o;26450:71::-;-1:-1:-1;26373:6:0;;;;:::i;:::-;;;;26316:212;;;-1:-1:-1;26536:57:0;;-1:-1:-1;;;26536:57:0;;14674:2:1;26536:57:0;;;14656:21:1;14713:2;14693:18;;;14686:30;14752:34;14732:18;;;14725:62;-1:-1:-1;;;14803:18:1;;;14796:45;14858:19;;26536:57:0;14472:411:1;39820:191:0;39913:6;;;-1:-1:-1;;;;;39930:17:0;;;-1:-1:-1;;;;;;39930:17:0;;;;;;;39963:40;;39913:6;;;39930:17;39913:6;;39963:40;;39894:16;;39963:40;39883:128;39820:191;:::o;35494:690::-;35631:4;-1:-1:-1;;;;;35648:13:0;;4025:19;:23;35644:535;;35687:72;;-1:-1:-1;;;35687:72:0;;-1:-1:-1;;;;;35687:36:0;;;;;:72;;21576:10;;35738:4;;35744:7;;35753:5;;35687:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35687:72:0;;;;;;;;-1:-1:-1;;35687:72:0;;;;;;;;;;;;:::i;:::-;;;35674:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35918:13:0;;35914:215;;35951:61;;-1:-1:-1;;;35951:61:0;;;;;;;:::i;35914:215::-;36097:6;36091:13;36082:6;36078:2;36074:15;36067:38;35674:464;-1:-1:-1;;;;;;35809:55:0;-1:-1:-1;;;35809:55:0;;-1:-1:-1;35802:62:0;;35644:535;-1:-1:-1;36167:4:0;35644:535;35494:690;;;;;;:::o;41051:117::-;41111:13;41144:16;41137:23;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;30644:1272;30749:20;30772:12;-1:-1:-1;;;;;30799:16:0;;30791:62;;;;-1:-1:-1;;;30791:62:0;;13512:2:1;30791:62:0;;;13494:21:1;13551:2;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;-1:-1:-1;;;13641:18:1;;;13634:31;13682:19;;30791:62:0;13310:397:1;30791:62:0;30990:21;30998:12;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;30990:21;30989:22;30981:64;;;;-1:-1:-1;;;30981:64:0;;13154:2:1;30981:64:0;;;13136:21:1;13193:2;13173:18;;;13166:30;13232:31;13212:18;;;13205:59;13281:18;;30981:64:0;12952:353:1;30981:64:0;31072:12;31060:8;:24;;31052:71;;;;-1:-1:-1;;;31052:71:0;;15504:2:1;31052:71:0;;;15486:21:1;15543:2;15523:18;;;15516:30;15582:34;15562:18;;;15555:62;-1:-1:-1;;;15633:18:1;;;15626:32;15675:19;;31052:71:0;15302:398:1;31052:71:0;-1:-1:-1;;;;;31235:16:0;;31202:30;31235:16;;;:12;:16;;;;;;;;;31202:49;;;;;;;;;-1:-1:-1;;;;;31202:49:0;;;;;-1:-1:-1;;;31202:49:0;;;;;;;;;;;31277:119;;;;;;;;31297:19;;31202:49;;31277:119;;;31297:39;;31327:8;;31297:39;:::i;:::-;-1:-1:-1;;;;;31277:119:0;;;;;31380:8;31345:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31277:119:0;;;;;;-1:-1:-1;;;;;31258:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;31258:138:0;;;;;;;;;;;;31431:43;;;;;;;;;;;31457:15;31431:43;;;;;;;;31403:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31403:71:0;-1:-1:-1;;;;;;31403:71:0;;;;;;;;;;;;;;;;;;31415:12;;31527:281;31551:8;31547:1;:12;31527:281;;;31580:38;;31605:12;;-1:-1:-1;;;;;31580:38:0;;;31597:1;;31580:38;;31597:1;;31580:38;31645:59;31676:1;31680:2;31684:12;31698:5;31645:22;:59::i;:::-;31627:150;;;;-1:-1:-1;;;31627:150:0;;;;;;;:::i;:::-;31786:14;;;;:::i;:::-;;;;31561:3;;;;;:::i;:::-;;;;31527:281;;;-1:-1:-1;31816:12:0;:27;;;31850:60;29630:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;12532:415::-;12734:2;12716:21;;;12773:2;12753:18;;;12746:30;12812:34;12807:2;12792:18;;12785:62;-1:-1:-1;;;12878:2:1;12863:18;;12856:49;12937:3;12922:19;;12532:415::o;13712:340::-;13914:2;13896:21;;;13953:2;13933:18;;;13926:30;-1:-1:-1;;;13987:2:1;13972:18;;13965:46;14043:2;14028:18;;13712:340::o;15887:253::-;15927:3;-1:-1:-1;;;;;16016:2:1;16013:1;16009:10;16046:2;16043:1;16039:10;16077:3;16073:2;16069:12;16064:3;16061:21;16058:47;;;16085:18;;:::i;16145:128::-;16185:3;16216:1;16212:6;16209:1;16206:13;16203:39;;;16222:18;;:::i;:::-;-1:-1:-1;16258:9:1;;16145:128::o;16278:120::-;16318:1;16344;16334:35;;16349:18;;:::i;:::-;-1:-1:-1;16383:9:1;;16278:120::o;16403:168::-;16443:7;16509:1;16505;16501:6;16497:14;16494:1;16491:21;16486:1;16479:9;16472:17;16468:45;16465:71;;;16516:18;;:::i;:::-;-1:-1:-1;16556:9:1;;16403:168::o;16576:246::-;16616:4;-1:-1:-1;;;;;16729:10:1;;;;16699;;16751:12;;;16748:38;;;16766:18;;:::i;:::-;16803:13;;16576:246;-1:-1:-1;;;16576:246:1:o;16827:125::-;16867:4;16895:1;16892;16889:8;16886:34;;;16900:18;;:::i;:::-;-1:-1:-1;16937:9:1;;16827:125::o;16957:258::-;17029:1;17039:113;17053:6;17050:1;17047:13;17039:113;;;17129:11;;;17123:18;17110:11;;;17103:39;17075:2;17068:10;17039:113;;;17170:6;17167:1;17164:13;17161:48;;;-1:-1:-1;;17205:1:1;17187:16;;17180:27;16957:258::o;17220:136::-;17259:3;17287:5;17277:39;;17296:18;;:::i;:::-;-1:-1:-1;;;17332:18:1;;17220:136::o;17361:380::-;17440:1;17436:12;;;;17483;;;17504:61;;17558:4;17550:6;17546:17;17536:27;;17504:61;17611:2;17603:6;17600:14;17580:18;17577:38;17574:161;;;17657:10;17652:3;17648:20;17645:1;17638:31;17692:4;17689:1;17682:15;17720:4;17717:1;17710:15;17574:161;;17361:380;;;:::o;17746:135::-;17785:3;-1:-1:-1;;17806:17:1;;17803:43;;;17826:18;;:::i;:::-;-1:-1:-1;17873:1:1;17862:13;;17746:135::o;17886:112::-;17918:1;17944;17934:35;;17949:18;;:::i;:::-;-1:-1:-1;17983:9:1;;17886:112::o;18003:127::-;18064:10;18059:3;18055:20;18052:1;18045:31;18095:4;18092:1;18085:15;18119:4;18116:1;18109:15;18135:127;18196:10;18191:3;18187:20;18184:1;18177:31;18227:4;18224:1;18217:15;18251:4;18248:1;18241:15;18267:127;18328:10;18323:3;18319:20;18316:1;18309:31;18359:4;18356:1;18349:15;18383:4;18380:1;18373:15;18399:127;18460:10;18455:3;18451:20;18448:1;18441:31;18491:4;18488:1;18481:15;18515:4;18512:1;18505:15;18531:131;-1:-1:-1;;;;;;18605:32:1;;18595:43;;18585:71;;18652:1;18649;18642:12
Swarm Source
ipfs://e22be2f739791a5101bd578271990dee40521ab642279ae6a33335ab7b7fc2fc
Loading...
Loading
Loading...
Loading
[ 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.