Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 22 from a total of 22 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 16352947 | 752 days ago | IN | 0 ETH | 0.00043919 | ||||
Mint | 15723005 | 840 days ago | IN | 0.125 ETH | 0.00511514 | ||||
Withdraw | 15681157 | 846 days ago | IN | 0 ETH | 0.00014295 | ||||
Safe Transfer Fr... | 15666830 | 848 days ago | IN | 0 ETH | 0.00038382 | ||||
Safe Transfer Fr... | 15666821 | 848 days ago | IN | 0 ETH | 0.00055505 | ||||
Set Approval For... | 15661161 | 849 days ago | IN | 0 ETH | 0.00039088 | ||||
Mint | 15626952 | 854 days ago | IN | 0.025 ETH | 0.00284526 | ||||
Mint | 15625151 | 854 days ago | IN | 0.05 ETH | 0.00246447 | ||||
Set Approval For... | 15623224 | 854 days ago | IN | 0 ETH | 0.00189008 | ||||
Set Approval For... | 15623222 | 854 days ago | IN | 0 ETH | 0.00307157 | ||||
Mint | 15622909 | 854 days ago | IN | 0.025 ETH | 0.00095456 | ||||
Set Approval For... | 15428670 | 884 days ago | IN | 0 ETH | 0.00053804 | ||||
Withdraw | 15414492 | 886 days ago | IN | 0 ETH | 0.00024278 | ||||
Set Approval For... | 15410691 | 887 days ago | IN | 0 ETH | 0.00080952 | ||||
Mint | 15410427 | 887 days ago | IN | 0.025 ETH | 0.00208137 | ||||
Mint | 15397304 | 889 days ago | IN | 0.025 ETH | 0.00156102 | ||||
Safe Transfer Fr... | 15397248 | 889 days ago | IN | 0 ETH | 0.0012477 | ||||
Set Contract URI | 15359022 | 895 days ago | IN | 0 ETH | 0.00051267 | ||||
Mint | 15359021 | 895 days ago | IN | 0.025 ETH | 0.00164585 | ||||
Mint | 15358995 | 895 days ago | IN | 0.025 ETH | 0.00122162 | ||||
Reserve Ships | 15358946 | 895 days ago | IN | 0 ETH | 0.00073111 | ||||
Reserve Ships | 15358757 | 895 days ago | IN | 0 ETH | 0.00094225 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PirateVerseShips
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import { IERC2981, IERC165 } from "@openzeppelin/contracts/interfaces/IERC2981.sol"; contract PirateVerseShips is ERC721, IERC2981, Ownable, ReentrancyGuard { using Strings for uint256; uint256 constant MAX_SUPPLY = 10000; uint256 constant PRESALE_MAX_SUPPLY = 1111; uint256 private _currentId; string private baseURI; string private prerevealTokenURI; string public contractURI; bool public revealed = false; bool public presaleMint = true; bool public publicMint = false; uint256 public tokensPerMint = 5; uint256 public maxPerWallet = 10; uint256 public publicPrice; uint256 public presalePrice = 0.025 ether; uint256 public royaltiesBps = 250; string public baseExtension = ".json"; mapping(address => uint256) private _alreadyMinted; address private beneficiaryAddress; constructor( address _beneficiaryAddress, string memory _initialContractURI, string memory _initialBaseURI, string memory _initialPrerevealTokenURI ) ERC721("PirateVerseShips", "SHIPS") ReentrancyGuard(){ setBeneficiaryAddress(_beneficiaryAddress); setContractURI(_initialContractURI); setBaseURI(_initialBaseURI); setPrerevealTokenURI(_initialPrerevealTokenURI); } // Accessors function setBeneficiaryAddress(address _beneficiaryAddress) public onlyOwner { beneficiaryAddress = _beneficiaryAddress; } function setContractURI(string memory uri) public onlyOwner { contractURI = uri; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setPrerevealTokenURI(string memory uri) public onlyOwner { prerevealTokenURI = uri; } function setPrice(uint256 price) public onlyOwner { publicPrice = price; } function alreadyMinted(address addr) public view returns (uint256) { return _alreadyMinted[addr]; } function totalSupply() public view returns (uint256) { return _currentId; } function _baseURI() internal view override returns (string memory) { return baseURI; } function _prerevealToken() internal view returns (string memory) { return prerevealTokenURI; } function _contractURI() internal view returns (string memory) { return contractURI; } function toggleReveal() public onlyOwner { revealed = !revealed; } function togglePresaleMint() public onlyOwner{ presaleMint = !presaleMint; } function togglePublicMint() public onlyOwner{ publicMint = !publicMint; } // Minting function mint( uint256 amount ) public payable { if(presaleMint){ require(_currentId + amount <= PRESALE_MAX_SUPPLY, "Minting Amount Exceeding Presale Supply"); require(amount <= tokensPerMint, "Minting amount exceeds tokens per mint"); require(amount <= maxPerWallet - _alreadyMinted[msg.sender], "Insufficient mints left"); require(msg.value >= amount * presalePrice, "Incorrect payable amount"); _mintTokens(msg.sender, amount); _alreadyMinted[msg.sender] += amount; } else if(publicMint){ require(_currentId + amount <= MAX_SUPPLY, "Minting Amount Exceeding Total Supply"); require(amount <= tokensPerMint, "Minting amount exceeds tokens per mint"); require(amount <= maxPerWallet - _alreadyMinted[msg.sender], "Insufficient mints left"); require(msg.value >= amount * publicPrice, "Incorrect payable amount"); _mintTokens(msg.sender, amount); _alreadyMinted[msg.sender] += amount; } } // Private (Internal Minting Function) function _mintTokens(address to, uint256 amount) private nonReentrant{ for (uint256 i = 0; i < amount; i++) { _currentId++; _safeMint(to, _currentId); } } // returns URI function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "Token does not exist"); if (revealed == false) { return prerevealTokenURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } // Withdraw function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } // ERC165 function supportsInterface(bytes4 interfaceId) public view override(ERC721, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } // IERC2981 (royalty) function royaltyInfo(uint256 , uint256 _salePrice) external view override returns (address, uint256 royaltyAmount) { royaltyAmount = (_salePrice / 10000) * royaltiesBps; return (beneficiaryAddress, royaltyAmount); } function reserveShips(uint256 amount) public onlyOwner { address sender = msg.sender; _mintTokens(sender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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); }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_beneficiaryAddress","type":"address"},{"internalType":"string","name":"_initialContractURI","type":"string"},{"internalType":"string","name":"_initialBaseURI","type":"string"},{"internalType":"string","name":"_initialPrerevealTokenURI","type":"string"}],"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":[{"internalType":"address","name":"addr","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveShips","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltiesBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiaryAddress","type":"address"}],"name":"setBeneficiaryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setPrerevealTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","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":[],"name":"togglePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","type":"function"}]
Contract Creation Code
600c805462ffffff19166101001790556005600d819055600a600e556658d15e1762800060105560fa60115560c0604052608090815264173539b7b760d91b60a05260129062000050908262000314565b503480156200005e57600080fd5b506040516200277d3803806200277d83398101604081905262000081916200048f565b6040518060400160405280601081526020016f5069726174655665727365536869707360801b81525060405180604001604052806005815260200164534849505360d81b8152508160009081620000d9919062000314565b506001620000e8828262000314565b50505062000105620000ff6200014060201b60201c565b62000144565b6001600755620001158462000196565b6200012083620001c2565b6200012b82620001de565b6200013681620001f6565b5050505062000541565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001a06200020e565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b620001cc6200020e565b600b620001da828262000314565b5050565b620001e86200020e565b6009620001da828262000314565b620002006200020e565b600a620001da828262000314565b6006546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200029a57607f821691505b602082108103620002bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030f57600081815260208120601f850160051c81016020861015620002ea5750805b601f850160051c820191505b818110156200030b57828155600101620002f6565b5050505b505050565b81516001600160401b038111156200033057620003306200026f565b620003488162000341845462000285565b84620002c1565b602080601f831160018114620003805760008415620003675750858301515b600019600386901b1c1916600185901b1785556200030b565b600085815260208120601f198616915b82811015620003b15788860151825594840194600190910190840162000390565b5085821015620003d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620003f257600080fd5b81516001600160401b03808211156200040f576200040f6200026f565b604051601f8301601f19908116603f011681019082821181831017156200043a576200043a6200026f565b816040528381526020925086838588010111156200045757600080fd5b600091505b838210156200047b57858201830151818301840152908201906200045c565b600093810190920192909252949350505050565b60008060008060808587031215620004a657600080fd5b84516001600160a01b0381168114620004be57600080fd5b60208601519094506001600160401b0380821115620004dc57600080fd5b620004ea88838901620003e0565b945060408701519150808211156200050157600080fd5b6200050f88838901620003e0565b935060608701519150808211156200052657600080fd5b506200053587828801620003e0565b91505092959194509250565b61222c80620005516000396000f3fe60806040526004361061023a5760003560e01c80636352211e1161012e578063a945bf80116100ab578063e8a3d4851161006f578063e8a3d48514610671578063e985e9c514610686578063ec6be06e146106a6578063ed4dcde6146106c6578063f2fde38b146106db57600080fd5b8063a945bf80146105e6578063b09d28cc146105fc578063b88d4fde1461061c578063c66828621461063c578063c87b56dd1461065157600080fd5b8063938e3d7b116100f2578063938e3d7b1461056857806395d89b411461058857806399d89f9d1461059d578063a0712d68146105b3578063a22cb465146105c657600080fd5b80636352211e146104d557806370a08231146104f5578063715018a6146105155780638da5cb5b1461052a57806391b7f5ed1461054857600080fd5b80632a55205a116101bc5780634b55a1df116101805780634b55a1df14610447578063518302271461046757806355f804b31461048157806359533d6c146104a15780635b8ad429146104c057600080fd5b80632a55205a146103b55780633ccfd60b146103f45780634047638d146103fc57806342842e0e14610411578063453c23101461043157600080fd5b8063095ea7b311610203578063095ea7b3146103085780630a398b881461032a57806318160ddd1461036057806323b872dd1461037557806326092b831461039557600080fd5b80620e7fa81461023f57806301ffc9a71461026857806306fdde03146102985780630807b9e2146102ba578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560105481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004611aee565b6106fb565b604051901515815260200161025f565b3480156102a457600080fd5b506102ad610726565b60405161025f9190611b5b565b3480156102c657600080fd5b50610255600d5481565b3480156102dc57600080fd5b506102f06102eb366004611b6e565b6107b8565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b50610328610323366004611ba3565b6107df565b005b34801561033657600080fd5b50610255610345366004611bcd565b6001600160a01b031660009081526013602052604090205490565b34801561036c57600080fd5b50600854610255565b34801561038157600080fd5b50610328610390366004611be8565b6108f9565b3480156103a157600080fd5b50600c546102889062010000900460ff1681565b3480156103c157600080fd5b506103d56103d0366004611c24565b61092a565b604080516001600160a01b03909316835260208301919091520161025f565b61032861095e565b34801561040857600080fd5b506103286109be565b34801561041d57600080fd5b5061032861042c366004611be8565b6109e5565b34801561043d57600080fd5b50610255600e5481565b34801561045357600080fd5b50610328610462366004611b6e565b610a00565b34801561047357600080fd5b50600c546102889060ff1681565b34801561048d57600080fd5b5061032861049c366004611cd2565b610a17565b3480156104ad57600080fd5b50600c5461028890610100900460ff1681565b3480156104cc57600080fd5b50610328610a2b565b3480156104e157600080fd5b506102f06104f0366004611b6e565b610a47565b34801561050157600080fd5b50610255610510366004611bcd565b610aa7565b34801561052157600080fd5b50610328610b2d565b34801561053657600080fd5b506006546001600160a01b03166102f0565b34801561055457600080fd5b50610328610563366004611b6e565b610b41565b34801561057457600080fd5b50610328610583366004611cd2565b610b4e565b34801561059457600080fd5b506102ad610b62565b3480156105a957600080fd5b5061025560115481565b6103286105c1366004611b6e565b610b71565b3480156105d257600080fd5b506103286105e1366004611d1b565b610e91565b3480156105f257600080fd5b50610255600f5481565b34801561060857600080fd5b50610328610617366004611cd2565b610e9c565b34801561062857600080fd5b50610328610637366004611d57565b610eb0565b34801561064857600080fd5b506102ad610ee8565b34801561065d57600080fd5b506102ad61066c366004611b6e565b610f76565b34801561067d57600080fd5b506102ad6110d4565b34801561069257600080fd5b506102886106a1366004611dd3565b6110e1565b3480156106b257600080fd5b506103286106c1366004611bcd565b61110f565b3480156106d257600080fd5b50610328611139565b3480156106e757600080fd5b506103286106f6366004611bcd565b61115e565b60006001600160e01b0319821663152a902d60e11b14806107205750610720826111d4565b92915050565b60606000805461073590611e06565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611e06565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c382611224565b506000908152600460205260409020546001600160a01b031690565b60006107ea82610a47565b9050806001600160a01b0316836001600160a01b03160361085c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610878575061087881336110e1565b6108ea5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610853565b6108f48383611283565b505050565b61090333826112f1565b61091f5760405162461bcd60e51b815260040161085390611e40565b6108f4838383611350565b6000806011546127108461093e9190611eba565b6109489190611ece565b6014546001600160a01b03169590945092505050565b6109666114ec565b604051600090339047908381818185875af1925050503d80600081146109a8576040519150601f19603f3d011682016040523d82523d6000602084013e6109ad565b606091505b50509050806109bb57600080fd5b50565b6109c66114ec565b600c805462ff0000198116620100009182900460ff1615909102179055565b6108f483838360405180602001604052806000815250610eb0565b610a086114ec565b33610a138183611546565b5050565b610a1f6114ec565b6009610a138282611f3b565b610a336114ec565b600c805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806107205760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610853565b60006001600160a01b038216610b115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610853565b506001600160a01b031660009081526003602052604090205490565b610b356114ec565b610b3f60006115e5565b565b610b496114ec565b600f55565b610b566114ec565b600b610a138282611f3b565b60606001805461073590611e06565b600c54610100900460ff1615610d035761045781600854610b929190611ffb565b1115610bf05760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720416d6f756e7420457863656564696e672050726573616c6560448201526620537570706c7960c81b6064820152608401610853565b600d54811115610c125760405162461bcd60e51b81526004016108539061200e565b33600090815260136020526040902054600e54610c2f9190612054565b811115610c785760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d081b5a5b9d1cc81b19599d604a1b6044820152606401610853565b601054610c859082611ece565b341015610ccf5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e58589b1948185b5bdd5b9d60421b6044820152606401610853565b610cd93382611546565b3360009081526013602052604081208054839290610cf8908490611ffb565b909155506109bb9050565b600c5462010000900460ff16156109bb5761271081600854610d259190611ffb565b1115610d815760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e6720416d6f756e7420457863656564696e6720546f74616c20536044820152647570706c7960d81b6064820152608401610853565b600d54811115610da35760405162461bcd60e51b81526004016108539061200e565b33600090815260136020526040902054600e54610dc09190612054565b811115610e095760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d081b5a5b9d1cc81b19599d604a1b6044820152606401610853565b600f54610e169082611ece565b341015610e605760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e58589b1948185b5bdd5b9d60421b6044820152606401610853565b610e6a3382611546565b3360009081526013602052604081208054839290610e89908490611ffb565b909155505050565b610a13338383611637565b610ea46114ec565b600a610a138282611f3b565b610eba33836112f1565b610ed65760405162461bcd60e51b815260040161085390611e40565b610ee284848484611705565b50505050565b60128054610ef590611e06565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2190611e06565b8015610f6e5780601f10610f4357610100808354040283529160200191610f6e565b820191906000526020600020905b815481529060010190602001808311610f5157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610fd45760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610853565b600c5460ff16151560000361107557600a8054610ff090611e06565b80601f016020809104026020016040519081016040528092919081815260200182805461101c90611e06565b80156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b50505050509050919050565b600061107f611738565b9050600081511161109f57604051806020016040528060008152506110cd565b806110a984611747565b60126040516020016110bd93929190612067565b6040516020818303038152906040525b9392505050565b600b8054610ef590611e06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111176114ec565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6111416114ec565b600c805461ff001981166101009182900460ff1615909102179055565b6111666114ec565b6001600160a01b0381166111cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610853565b6109bb816115e5565b60006001600160e01b031982166380ac58cd60e01b148061120557506001600160e01b03198216635b5e139f60e01b145b8061072057506301ffc9a760e01b6001600160e01b0319831614610720565b6000818152600260205260409020546001600160a01b03166109bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610853565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b882610a47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112fd83610a47565b9050806001600160a01b0316846001600160a01b03161480611324575061132481856110e1565b806113485750836001600160a01b031661133d846107b8565b6001600160a01b0316145b949350505050565b826001600160a01b031661136382610a47565b6001600160a01b0316146113c75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610853565b6001600160a01b0382166114295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610853565b611434600082611283565b6001600160a01b038316600090815260036020526040812080546001929061145d908490612054565b90915550506001600160a01b038216600090815260036020526040812080546001929061148b908490611ffb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610b3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610853565b6002600754036115985760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610853565b600260075560005b818110156115db57600880549060006115b883612107565b91905055506115c983600854611848565b806115d381612107565b9150506115a0565b5050600160075550565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036116985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610853565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611710848484611350565b61171c84848484611862565b610ee25760405162461bcd60e51b815260040161085390612120565b60606009805461073590611e06565b60608160000361176e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611798578061178281612107565b91506117919050600a83611eba565b9150611772565b60008167ffffffffffffffff8111156117b3576117b3611c46565b6040519080825280601f01601f1916602001820160405280156117dd576020820181803683370190505b5090505b8415611348576117f2600183612054565b91506117ff600a86612172565b61180a906030611ffb565b60f81b81838151811061181f5761181f612186565b60200101906001600160f81b031916908160001a905350611841600a86611eba565b94506117e1565b610a13828260405180602001604052806000815250611963565b60006001600160a01b0384163b1561195857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a690339089908890889060040161219c565b6020604051808303816000875af19250505080156118e1575060408051601f3d908101601f191682019092526118de918101906121d9565b60015b61193e573d80801561190f576040519150601f19603f3d011682016040523d82523d6000602084013e611914565b606091505b5080516000036119365760405162461bcd60e51b815260040161085390612120565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611348565b506001949350505050565b61196d8383611996565b61197a6000848484611862565b6108f45760405162461bcd60e51b815260040161085390612120565b6001600160a01b0382166119ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610853565b6000818152600260205260409020546001600160a01b031615611a515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610853565b6001600160a01b0382166000908152600360205260408120805460019290611a7a908490611ffb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109bb57600080fd5b600060208284031215611b0057600080fd5b81356110cd81611ad8565b60005b83811015611b26578181015183820152602001611b0e565b50506000910152565b60008151808452611b47816020860160208601611b0b565b601f01601f19169290920160200192915050565b6020815260006110cd6020830184611b2f565b600060208284031215611b8057600080fd5b5035919050565b80356001600160a01b0381168114611b9e57600080fd5b919050565b60008060408385031215611bb657600080fd5b611bbf83611b87565b946020939093013593505050565b600060208284031215611bdf57600080fd5b6110cd82611b87565b600080600060608486031215611bfd57600080fd5b611c0684611b87565b9250611c1460208501611b87565b9150604084013590509250925092565b60008060408385031215611c3757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7757611c77611c46565b604051601f8501601f19908116603f01168101908282118183101715611c9f57611c9f611c46565b81604052809350858152868686011115611cb857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce457600080fd5b813567ffffffffffffffff811115611cfb57600080fd5b8201601f81018413611d0c57600080fd5b61134884823560208401611c5c565b60008060408385031215611d2e57600080fd5b611d3783611b87565b915060208301358015158114611d4c57600080fd5b809150509250929050565b60008060008060808587031215611d6d57600080fd5b611d7685611b87565b9350611d8460208601611b87565b925060408501359150606085013567ffffffffffffffff811115611da757600080fd5b8501601f81018713611db857600080fd5b611dc787823560208401611c5c565b91505092959194509250565b60008060408385031215611de657600080fd5b611def83611b87565b9150611dfd60208401611b87565b90509250929050565b600181811c90821680611e1a57607f821691505b602082108103611e3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082611ec957611ec9611e8e565b500490565b6000816000190483118215151615611ee857611ee8611ea4565b500290565b601f8211156108f457600081815260208120601f850160051c81016020861015611f145750805b601f850160051c820191505b81811015611f3357828155600101611f20565b505050505050565b815167ffffffffffffffff811115611f5557611f55611c46565b611f6981611f638454611e06565b84611eed565b602080601f831160018114611f9e5760008415611f865750858301515b600019600386901b1c1916600185901b178555611f33565b600085815260208120601f198616915b82811015611fcd57888601518255948401946001909101908401611fae565b5085821015611feb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561072057610720611ea4565b60208082526026908201527f4d696e74696e6720616d6f756e74206578636565647320746f6b656e732070656040820152651c881b5a5b9d60d21b606082015260800190565b8181038181111561072057610720611ea4565b60008451602061207a8285838a01611b0b565b85519184019161208d8184848a01611b0b565b855492019160009061209e81611e06565b600182811680156120b657600181146120cb576120f7565b60ff19841687528215158302870194506120f7565b896000528560002060005b848110156120ef578154898201529083019087016120d6565b505082870194505b50929a9950505050505050505050565b60006001820161211957612119611ea4565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261218157612181611e8e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121cf90830184611b2f565b9695505050505050565b6000602082840312156121eb57600080fd5b81516110cd81611ad856fea2646970667358221220a8768dbc1f6a721a55ccace7111384fbe3dc5ee1d8f9a7ae690c0dbc8ae00e5564736f6c6343000810003300000000000000000000000092307f1ff0f055dd90be390d8d1edd97be33ade30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d646345644c714d7039616369415532514b6d3176486a7732515a61667173446468454b3735717952416d31462f636f6c6c656374696f6e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d594c6d6d33787437416471554169516f57616f394d744b635779613467456a44334e61324c4b47335478754a2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023a5760003560e01c80636352211e1161012e578063a945bf80116100ab578063e8a3d4851161006f578063e8a3d48514610671578063e985e9c514610686578063ec6be06e146106a6578063ed4dcde6146106c6578063f2fde38b146106db57600080fd5b8063a945bf80146105e6578063b09d28cc146105fc578063b88d4fde1461061c578063c66828621461063c578063c87b56dd1461065157600080fd5b8063938e3d7b116100f2578063938e3d7b1461056857806395d89b411461058857806399d89f9d1461059d578063a0712d68146105b3578063a22cb465146105c657600080fd5b80636352211e146104d557806370a08231146104f5578063715018a6146105155780638da5cb5b1461052a57806391b7f5ed1461054857600080fd5b80632a55205a116101bc5780634b55a1df116101805780634b55a1df14610447578063518302271461046757806355f804b31461048157806359533d6c146104a15780635b8ad429146104c057600080fd5b80632a55205a146103b55780633ccfd60b146103f45780634047638d146103fc57806342842e0e14610411578063453c23101461043157600080fd5b8063095ea7b311610203578063095ea7b3146103085780630a398b881461032a57806318160ddd1461036057806323b872dd1461037557806326092b831461039557600080fd5b80620e7fa81461023f57806301ffc9a71461026857806306fdde03146102985780630807b9e2146102ba578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560105481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004611aee565b6106fb565b604051901515815260200161025f565b3480156102a457600080fd5b506102ad610726565b60405161025f9190611b5b565b3480156102c657600080fd5b50610255600d5481565b3480156102dc57600080fd5b506102f06102eb366004611b6e565b6107b8565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b50610328610323366004611ba3565b6107df565b005b34801561033657600080fd5b50610255610345366004611bcd565b6001600160a01b031660009081526013602052604090205490565b34801561036c57600080fd5b50600854610255565b34801561038157600080fd5b50610328610390366004611be8565b6108f9565b3480156103a157600080fd5b50600c546102889062010000900460ff1681565b3480156103c157600080fd5b506103d56103d0366004611c24565b61092a565b604080516001600160a01b03909316835260208301919091520161025f565b61032861095e565b34801561040857600080fd5b506103286109be565b34801561041d57600080fd5b5061032861042c366004611be8565b6109e5565b34801561043d57600080fd5b50610255600e5481565b34801561045357600080fd5b50610328610462366004611b6e565b610a00565b34801561047357600080fd5b50600c546102889060ff1681565b34801561048d57600080fd5b5061032861049c366004611cd2565b610a17565b3480156104ad57600080fd5b50600c5461028890610100900460ff1681565b3480156104cc57600080fd5b50610328610a2b565b3480156104e157600080fd5b506102f06104f0366004611b6e565b610a47565b34801561050157600080fd5b50610255610510366004611bcd565b610aa7565b34801561052157600080fd5b50610328610b2d565b34801561053657600080fd5b506006546001600160a01b03166102f0565b34801561055457600080fd5b50610328610563366004611b6e565b610b41565b34801561057457600080fd5b50610328610583366004611cd2565b610b4e565b34801561059457600080fd5b506102ad610b62565b3480156105a957600080fd5b5061025560115481565b6103286105c1366004611b6e565b610b71565b3480156105d257600080fd5b506103286105e1366004611d1b565b610e91565b3480156105f257600080fd5b50610255600f5481565b34801561060857600080fd5b50610328610617366004611cd2565b610e9c565b34801561062857600080fd5b50610328610637366004611d57565b610eb0565b34801561064857600080fd5b506102ad610ee8565b34801561065d57600080fd5b506102ad61066c366004611b6e565b610f76565b34801561067d57600080fd5b506102ad6110d4565b34801561069257600080fd5b506102886106a1366004611dd3565b6110e1565b3480156106b257600080fd5b506103286106c1366004611bcd565b61110f565b3480156106d257600080fd5b50610328611139565b3480156106e757600080fd5b506103286106f6366004611bcd565b61115e565b60006001600160e01b0319821663152a902d60e11b14806107205750610720826111d4565b92915050565b60606000805461073590611e06565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611e06565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c382611224565b506000908152600460205260409020546001600160a01b031690565b60006107ea82610a47565b9050806001600160a01b0316836001600160a01b03160361085c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610878575061087881336110e1565b6108ea5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610853565b6108f48383611283565b505050565b61090333826112f1565b61091f5760405162461bcd60e51b815260040161085390611e40565b6108f4838383611350565b6000806011546127108461093e9190611eba565b6109489190611ece565b6014546001600160a01b03169590945092505050565b6109666114ec565b604051600090339047908381818185875af1925050503d80600081146109a8576040519150601f19603f3d011682016040523d82523d6000602084013e6109ad565b606091505b50509050806109bb57600080fd5b50565b6109c66114ec565b600c805462ff0000198116620100009182900460ff1615909102179055565b6108f483838360405180602001604052806000815250610eb0565b610a086114ec565b33610a138183611546565b5050565b610a1f6114ec565b6009610a138282611f3b565b610a336114ec565b600c805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806107205760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610853565b60006001600160a01b038216610b115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610853565b506001600160a01b031660009081526003602052604090205490565b610b356114ec565b610b3f60006115e5565b565b610b496114ec565b600f55565b610b566114ec565b600b610a138282611f3b565b60606001805461073590611e06565b600c54610100900460ff1615610d035761045781600854610b929190611ffb565b1115610bf05760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720416d6f756e7420457863656564696e672050726573616c6560448201526620537570706c7960c81b6064820152608401610853565b600d54811115610c125760405162461bcd60e51b81526004016108539061200e565b33600090815260136020526040902054600e54610c2f9190612054565b811115610c785760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d081b5a5b9d1cc81b19599d604a1b6044820152606401610853565b601054610c859082611ece565b341015610ccf5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e58589b1948185b5bdd5b9d60421b6044820152606401610853565b610cd93382611546565b3360009081526013602052604081208054839290610cf8908490611ffb565b909155506109bb9050565b600c5462010000900460ff16156109bb5761271081600854610d259190611ffb565b1115610d815760405162461bcd60e51b815260206004820152602560248201527f4d696e74696e6720416d6f756e7420457863656564696e6720546f74616c20536044820152647570706c7960d81b6064820152608401610853565b600d54811115610da35760405162461bcd60e51b81526004016108539061200e565b33600090815260136020526040902054600e54610dc09190612054565b811115610e095760405162461bcd60e51b8152602060048201526017602482015276125b9cdd59999a58da595b9d081b5a5b9d1cc81b19599d604a1b6044820152606401610853565b600f54610e169082611ece565b341015610e605760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e58589b1948185b5bdd5b9d60421b6044820152606401610853565b610e6a3382611546565b3360009081526013602052604081208054839290610e89908490611ffb565b909155505050565b610a13338383611637565b610ea46114ec565b600a610a138282611f3b565b610eba33836112f1565b610ed65760405162461bcd60e51b815260040161085390611e40565b610ee284848484611705565b50505050565b60128054610ef590611e06565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2190611e06565b8015610f6e5780601f10610f4357610100808354040283529160200191610f6e565b820191906000526020600020905b815481529060010190602001808311610f5157829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b0316610fd45760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610853565b600c5460ff16151560000361107557600a8054610ff090611e06565b80601f016020809104026020016040519081016040528092919081815260200182805461101c90611e06565b80156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b50505050509050919050565b600061107f611738565b9050600081511161109f57604051806020016040528060008152506110cd565b806110a984611747565b60126040516020016110bd93929190612067565b6040516020818303038152906040525b9392505050565b600b8054610ef590611e06565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6111176114ec565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6111416114ec565b600c805461ff001981166101009182900460ff1615909102179055565b6111666114ec565b6001600160a01b0381166111cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610853565b6109bb816115e5565b60006001600160e01b031982166380ac58cd60e01b148061120557506001600160e01b03198216635b5e139f60e01b145b8061072057506301ffc9a760e01b6001600160e01b0319831614610720565b6000818152600260205260409020546001600160a01b03166109bb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610853565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b882610a47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112fd83610a47565b9050806001600160a01b0316846001600160a01b03161480611324575061132481856110e1565b806113485750836001600160a01b031661133d846107b8565b6001600160a01b0316145b949350505050565b826001600160a01b031661136382610a47565b6001600160a01b0316146113c75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610853565b6001600160a01b0382166114295760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610853565b611434600082611283565b6001600160a01b038316600090815260036020526040812080546001929061145d908490612054565b90915550506001600160a01b038216600090815260036020526040812080546001929061148b908490611ffb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b03163314610b3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610853565b6002600754036115985760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610853565b600260075560005b818110156115db57600880549060006115b883612107565b91905055506115c983600854611848565b806115d381612107565b9150506115a0565b5050600160075550565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036116985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610853565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611710848484611350565b61171c84848484611862565b610ee25760405162461bcd60e51b815260040161085390612120565b60606009805461073590611e06565b60608160000361176e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611798578061178281612107565b91506117919050600a83611eba565b9150611772565b60008167ffffffffffffffff8111156117b3576117b3611c46565b6040519080825280601f01601f1916602001820160405280156117dd576020820181803683370190505b5090505b8415611348576117f2600183612054565b91506117ff600a86612172565b61180a906030611ffb565b60f81b81838151811061181f5761181f612186565b60200101906001600160f81b031916908160001a905350611841600a86611eba565b94506117e1565b610a13828260405180602001604052806000815250611963565b60006001600160a01b0384163b1561195857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a690339089908890889060040161219c565b6020604051808303816000875af19250505080156118e1575060408051601f3d908101601f191682019092526118de918101906121d9565b60015b61193e573d80801561190f576040519150601f19603f3d011682016040523d82523d6000602084013e611914565b606091505b5080516000036119365760405162461bcd60e51b815260040161085390612120565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611348565b506001949350505050565b61196d8383611996565b61197a6000848484611862565b6108f45760405162461bcd60e51b815260040161085390612120565b6001600160a01b0382166119ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610853565b6000818152600260205260409020546001600160a01b031615611a515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610853565b6001600160a01b0382166000908152600360205260408120805460019290611a7a908490611ffb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109bb57600080fd5b600060208284031215611b0057600080fd5b81356110cd81611ad8565b60005b83811015611b26578181015183820152602001611b0e565b50506000910152565b60008151808452611b47816020860160208601611b0b565b601f01601f19169290920160200192915050565b6020815260006110cd6020830184611b2f565b600060208284031215611b8057600080fd5b5035919050565b80356001600160a01b0381168114611b9e57600080fd5b919050565b60008060408385031215611bb657600080fd5b611bbf83611b87565b946020939093013593505050565b600060208284031215611bdf57600080fd5b6110cd82611b87565b600080600060608486031215611bfd57600080fd5b611c0684611b87565b9250611c1460208501611b87565b9150604084013590509250925092565b60008060408385031215611c3757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7757611c77611c46565b604051601f8501601f19908116603f01168101908282118183101715611c9f57611c9f611c46565b81604052809350858152868686011115611cb857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce457600080fd5b813567ffffffffffffffff811115611cfb57600080fd5b8201601f81018413611d0c57600080fd5b61134884823560208401611c5c565b60008060408385031215611d2e57600080fd5b611d3783611b87565b915060208301358015158114611d4c57600080fd5b809150509250929050565b60008060008060808587031215611d6d57600080fd5b611d7685611b87565b9350611d8460208601611b87565b925060408501359150606085013567ffffffffffffffff811115611da757600080fd5b8501601f81018713611db857600080fd5b611dc787823560208401611c5c565b91505092959194509250565b60008060408385031215611de657600080fd5b611def83611b87565b9150611dfd60208401611b87565b90509250929050565b600181811c90821680611e1a57607f821691505b602082108103611e3a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082611ec957611ec9611e8e565b500490565b6000816000190483118215151615611ee857611ee8611ea4565b500290565b601f8211156108f457600081815260208120601f850160051c81016020861015611f145750805b601f850160051c820191505b81811015611f3357828155600101611f20565b505050505050565b815167ffffffffffffffff811115611f5557611f55611c46565b611f6981611f638454611e06565b84611eed565b602080601f831160018114611f9e5760008415611f865750858301515b600019600386901b1c1916600185901b178555611f33565b600085815260208120601f198616915b82811015611fcd57888601518255948401946001909101908401611fae565b5085821015611feb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561072057610720611ea4565b60208082526026908201527f4d696e74696e6720616d6f756e74206578636565647320746f6b656e732070656040820152651c881b5a5b9d60d21b606082015260800190565b8181038181111561072057610720611ea4565b60008451602061207a8285838a01611b0b565b85519184019161208d8184848a01611b0b565b855492019160009061209e81611e06565b600182811680156120b657600181146120cb576120f7565b60ff19841687528215158302870194506120f7565b896000528560002060005b848110156120ef578154898201529083019087016120d6565b505082870194505b50929a9950505050505050505050565b60006001820161211957612119611ea4565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261218157612181611e8e565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121cf90830184611b2f565b9695505050505050565b6000602082840312156121eb57600080fd5b81516110cd81611ad856fea2646970667358221220a8768dbc1f6a721a55ccace7111384fbe3dc5ee1d8f9a7ae690c0dbc8ae00e5564736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000092307f1ff0f055dd90be390d8d1edd97be33ade30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d646345644c714d7039616369415532514b6d3176486a7732515a61667173446468454b3735717952416d31462f636f6c6c656374696f6e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f516d594c6d6d33787437416471554169516f57616f394d744b635779613467456a44334e61324c4b47335478754a2f6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _beneficiaryAddress (address): 0x92307F1ff0f055Dd90BE390d8d1edd97bE33ADE3
Arg [1] : _initialContractURI (string): ipfs://QmdcEdLqMp9aciAU2QKm1vHjw2QZafqsDdhEK75qyRAm1F/collection.json
Arg [2] : _initialBaseURI (string):
Arg [3] : _initialPrerevealTokenURI (string): ipfs://QmYLmm3xt7AdqUAiQoWao9MtKcWya4gEjD3Na2LKG3TxuJ/metadata.json
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000092307f1ff0f055dd90be390d8d1edd97be33ade3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [5] : 697066733a2f2f516d646345644c714d7039616369415532514b6d3176486a77
Arg [6] : 32515a61667173446468454b3735717952416d31462f636f6c6c656374696f6e
Arg [7] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [10] : 697066733a2f2f516d594c6d6d33787437416471554169516f57616f394d744b
Arg [11] : 635779613467456a44334e61324c4b47335478754a2f6d657461646174612e6a
Arg [12] : 736f6e0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
421:5084:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;939:41;;;;;;;;;;;;;;;;;;;160:25:14;;;148:2;133:18;939:41:13;;;;;;;;4912:199;;;;;;;;;;-1:-1:-1;4912:199:13;;;;;:::i;:::-;;:::i;:::-;;;747:14:14;;740:22;722:41;;710:2;695:18;4912:199:13;582:187:14;2470:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;837:32:13:-;;;;;;;;;;;;;;;;3935:167:3;;;;;;;;;;-1:-1:-1;3935:167:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:14;;;1861:51;;1849:2;1834:18;3935:167:3;1715:203:14;3467:407:3;;;;;;;;;;-1:-1:-1;3467:407:3;;;;;:::i;:::-;;:::i;:::-;;2080:105:13;;;;;;;;;;-1:-1:-1;2080:105:13;;;;;:::i;:::-;-1:-1:-1;;;;;2160:20:13;2138:7;2160:20;;;:14;:20;;;;;;;2080:105;2189:81;;;;;;;;;;-1:-1:-1;2255:10:13;;2189:81;;4612:327:3;;;;;;;;;;-1:-1:-1;4612:327:3;;;;;:::i;:::-;;:::i;802:30:13:-;;;;;;;;;;-1:-1:-1;802:30:13;;;;;;;;;;;5140:225;;;;;;;;;;-1:-1:-1;5140:225:13;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3329:32:14;;;3311:51;;3393:2;3378:18;;3371:34;;;;3284:18;5140:225:13;3137:274:14;4724:171:13;;;:::i;2731:79::-;;;;;;;;;;;;;:::i;5005:179:3:-;;;;;;;;;;-1:-1:-1;5005:179:3;;;;;:::i;:::-;;:::i;873:32:13:-;;;;;;;;;;;;;;;;5369:134;;;;;;;;;;-1:-1:-1;5369:134:13;;;;;:::i;:::-;;:::i;736:28::-;;;;;;;;;;-1:-1:-1;736:28:13;;;;;;;;1808:80;;;;;;;;;;-1:-1:-1;1808:80:13;;;;;:::i;:::-;;:::i;768:30::-;;;;;;;;;;-1:-1:-1;768:30:13;;;;;;;;;;;2569:72;;;;;;;;;;;;;:::i;2190:218:3:-;;;;;;;;;;-1:-1:-1;2190:218:3;;;;;:::i;:::-;;:::i;1929:204::-;;;;;;;;;;-1:-1:-1;1929:204:3;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;1996:80:13;;;;;;;;;;-1:-1:-1;1996:80:13;;;;;:::i;:::-;;:::i;1716:88::-;;;;;;;;;;-1:-1:-1;1716:88:13;;;;;:::i;:::-;;:::i;2632:102:3:-;;;;;;;;;;;;;:::i;985:33:13:-;;;;;;;;;;;;;;;;2829:1001;;;;;;:::i;:::-;;:::i;4169:153:3:-;;;;;;;;;;-1:-1:-1;4169:153:3;;;;;:::i;:::-;;:::i;909:26:13:-;;;;;;;;;;;;;;;;1892:100;;;;;;;;;;-1:-1:-1;1892:100:13;;;;;:::i;:::-;;:::i;5250:315:3:-;;;;;;;;;;-1:-1:-1;5250:315:3;;;;;:::i;:::-;;:::i;1022:37:13:-;;;;;;;;;;;;;:::i;4076:629::-;;;;;;;;;;-1:-1:-1;4076:629:13;;;;;:::i;:::-;;:::i;706:25::-;;;;;;;;;;;;;:::i;4388:162:3:-;;;;;;;;;;-1:-1:-1;4388:162:3;;;;;:::i;:::-;;:::i;1584:128:13:-;;;;;;;;;;-1:-1:-1;1584:128:13;;;;;:::i;:::-;;:::i;2645:82::-;;;;;;;;;;;;;:::i;2081:198:0:-;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;4912:199:13:-;5006:4;-1:-1:-1;;;;;;5025:41:13;;-1:-1:-1;;;5025:41:13;;:81;;;5070:36;5094:11;5070:23;:36::i;:::-;5018:88;4912:199;-1:-1:-1;;4912:199:13:o;2470:98:3:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:3;;3935:167::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;-1:-1:-1;;;;;3604:11:3;:2;-1:-1:-1;;;;;3604:11:3;;3596:57;;;;-1:-1:-1;;;3596:57:3;;6517:2:14;3596:57:3;;;6499:21:14;6556:2;6536:18;;;6529:30;6595:34;6575:18;;;6568:62;-1:-1:-1;;;6646:18:14;;;6639:31;6687:19;;3596:57:3;;;;;;;;;719:10:9;-1:-1:-1;;;;;3685:21:3;;;;:62;;-1:-1:-1;3710:37:3;3727:5;719:10:9;4388:162:3;:::i;3710:37::-;3664:171;;;;-1:-1:-1;;;3664:171:3;;6919:2:14;3664:171:3;;;6901:21:14;6958:2;6938:18;;;6931:30;6997:34;6977:18;;;6970:62;7068:32;7048:18;;;7041:60;7118:19;;3664:171:3;6717:426:14;3664:171:3;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;4612:327::-;4801:41;719:10:9;4834:7:3;4801:18;:41::i;:::-;4793:100;;;;-1:-1:-1;;;4793:100:3;;;;;;;:::i;:::-;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;5140:225:13:-;5223:7;5232:21;5300:12;;5291:5;5278:10;:18;;;;:::i;:::-;5277:35;;;;:::i;:::-;5326:18;;-1:-1:-1;;;;;5326:18:13;;5261:51;;-1:-1:-1;5140:225:13;-1:-1:-1;;;5140:225:13:o;4724:171::-;1094:13:0;:11;:13::i;:::-;4794:74:13::1;::::0;4776:12:::1;::::0;4802:10:::1;::::0;4835:21:::1;::::0;4776:12;4794:74;4776:12;4794:74;4835:21;4802:10;4794:74:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4775:93;;;4882:7;4874:16;;;::::0;::::1;;4769:126;4724:171::o:0;2731:79::-;1094:13:0;:11;:13::i;:::-;2795:10:13::1;::::0;;-1:-1:-1;;2781:24:13;::::1;2795:10:::0;;;;::::1;;;2794:11;2781:24:::0;;::::1;;::::0;;2731:79::o;5005:179:3:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;5369:134:13:-;1094:13:0;:11;:13::i;:::-;5452:10:13::1;5471:27;5452:10:::0;5491:6;5471:11:::1;:27::i;:::-;5424:79;5369:134:::0;:::o;1808:80::-;1094:13:0;:11;:13::i;:::-;1870:7:13::1;:13;1880:3:::0;1870:7;:13:::1;:::i;2569:72::-:0;1094:13:0;:11;:13::i;:::-;2628:8:13::1;::::0;;-1:-1:-1;;2616:20:13;::::1;2628:8;::::0;;::::1;2627:9;2616:20;::::0;;2569:72::o;2190:218:3:-;2262:7;2297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2297:16:3;;2323:56;;;;-1:-1:-1;;;2323:56:3;;10741:2:14;2323:56:3;;;10723:21:14;10780:2;10760:18;;;10753:30;-1:-1:-1;;;10799:18:14;;;10792:54;10863:18;;2323:56:3;10539:348:14;1929:204:3;2001:7;-1:-1:-1;;;;;2028:19:3;;2020:73;;;;-1:-1:-1;;;2020:73:3;;11094:2:14;2020:73:3;;;11076:21:14;11133:2;11113:18;;;11106:30;11172:34;11152:18;;;11145:62;-1:-1:-1;;;11223:18:14;;;11216:39;11272:19;;2020:73:3;10892:405:14;2020:73:3;-1:-1:-1;;;;;;2110:16:3;;;;;:9;:16;;;;;;;1929:204::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1996:80:13:-;1094:13:0;:11;:13::i;:::-;2052:11:13::1;:19:::0;1996:80::o;1716:88::-;1094:13:0;:11;:13::i;:::-;1782:11:13::1;:17;1796:3:::0;1782:11;:17:::1;:::i;2632:102:3:-:0;2688:13;2720:7;2713:14;;;;;:::i;2829:1001:13:-;2892:11;;;;;;;2889:932;;;604:4;2934:6;2921:10;;:19;;;;:::i;:::-;:41;;2913:93;;;;-1:-1:-1;;;2913:93:13;;11634:2:14;2913:93:13;;;11616:21:14;11673:2;11653:18;;;11646:30;11712:34;11692:18;;;11685:62;-1:-1:-1;;;11763:18:14;;;11756:37;11810:19;;2913:93:13;11432:403:14;2913:93:13;3032:13;;3022:6;:23;;3014:74;;;;-1:-1:-1;;;3014:74:13;;;;;;;:::i;:::-;3144:10;3129:26;;;;:14;:26;;;;;;3114:12;;:41;;3129:26;3114:41;:::i;:::-;3104:6;:51;;3096:87;;;;-1:-1:-1;;;3096:87:13;;12582:2:14;3096:87:13;;;12564:21:14;12621:2;12601:18;;;12594:30;-1:-1:-1;;;12640:18:14;;;12633:53;12703:18;;3096:87:13;12380:347:14;3096:87:13;3221:12;;3212:21;;:6;:21;:::i;:::-;3199:9;:34;;3191:71;;;;-1:-1:-1;;;3191:71:13;;12934:2:14;3191:71:13;;;12916:21:14;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:14;;;12985:54;13056:18;;3191:71:13;12732:348:14;3191:71:13;3271:31;3283:10;3295:6;3271:11;:31::i;:::-;3325:10;3310:26;;;;:14;:26;;;;;:36;;3340:6;;3310:26;:36;;3340:6;;3310:36;:::i;:::-;;;;-1:-1:-1;2889:932:13;;-1:-1:-1;2889:932:13;;3366:10;;;;;;;3363:458;;;557:5;3407:6;3394:10;;:19;;;;:::i;:::-;:33;;3386:83;;;;-1:-1:-1;;;3386:83:13;;13287:2:14;3386:83:13;;;13269:21:14;13326:2;13306:18;;;13299:30;13365:34;13345:18;;;13338:62;-1:-1:-1;;;13416:18:14;;;13409:35;13461:19;;3386:83:13;13085:401:14;3386:83:13;3495:13;;3485:6;:23;;3477:74;;;;-1:-1:-1;;;3477:74:13;;;;;;;:::i;:::-;3607:10;3592:26;;;;:14;:26;;;;;;3577:12;;:41;;3592:26;3577:41;:::i;:::-;3567:6;:51;;3559:87;;;;-1:-1:-1;;;3559:87:13;;12582:2:14;3559:87:13;;;12564:21:14;12621:2;12601:18;;;12594:30;-1:-1:-1;;;12640:18:14;;;12633:53;12703:18;;3559:87:13;12380:347:14;3559:87:13;3684:11;;3675:20;;:6;:20;:::i;:::-;3662:9;:33;;3654:70;;;;-1:-1:-1;;;3654:70:13;;12934:2:14;3654:70:13;;;12916:21:14;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:14;;;12985:54;13056:18;;3654:70:13;12732:348:14;3654:70:13;3739:31;3751:10;3763:6;3739:11;:31::i;:::-;3793:10;3778:26;;;;:14;:26;;;;;:36;;3808:6;;3778:26;:36;;3808:6;;3778:36;:::i;:::-;;;;-1:-1:-1;;2829:1001:13;:::o;4169:153:3:-;4263:52;719:10:9;4296:8:3;4306;4263:18;:52::i;1892:100:13:-;1094:13:0;:11;:13::i;:::-;1964:17:13::1;:23;1984:3:::0;1964:17;:23:::1;:::i;5250:315:3:-:0;5418:41;719:10:9;5451:7:3;5418:18;:41::i;:::-;5410:100;;;;-1:-1:-1;;;5410:100:3;;;;;;;:::i;:::-;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;1022:37:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4076:629::-;7099:4:3;7122:16;;;:7;:16;;;;;;4173:13:13;;-1:-1:-1;;;;;7122:16:3;4202:49:13;;;;-1:-1:-1;;;4202:49:13;;13693:2:14;4202:49:13;;;13675:21:14;13732:2;13712:18;;;13705:30;-1:-1:-1;;;13751:18:14;;;13744:50;13811:18;;4202:49:13;13491:344:14;4202:49:13;4266:8;;;;:17;;:8;:17;4262:72;;4306:17;4299:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4076:629;;;:::o;4262:72::-;4344:28;4375:10;:8;:10::i;:::-;4344:41;;4450:1;4425:14;4419:28;:32;:279;;;;;;;;;;;;;;;;;4540:14;4580:18;:7;:16;:18::i;:::-;4624:13;4498:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4419:279;4400:298;4076:629;-1:-1:-1;;;4076:629:13:o;706:25::-;;;;;;;:::i;4388:162:3:-;-1:-1:-1;;;;;4508:25:3;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162::o;1584:128:13:-;1094:13:0;:11;:13::i;:::-;1667:18:13::1;:40:::0;;-1:-1:-1;;;;;;1667:40:13::1;-1:-1:-1::0;;;;;1667:40:13;;;::::1;::::0;;;::::1;::::0;;1584:128::o;2645:82::-;1094:13:0;:11;:13::i;:::-;2711:11:13::1;::::0;;-1:-1:-1;;2696:26:13;::::1;2711:11;::::0;;;::::1;;;2710:12;2696:26:::0;;::::1;;::::0;;2645:82::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;15303:2:14;2161:73:0::1;::::0;::::1;15285:21:14::0;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:14;;;15425:36;15478:19;;2161:73:0::1;15101:402:14::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;1570:300:3:-:0;1672:4;-1:-1:-1;;;;;;1707:40:3;;-1:-1:-1;;;1707:40:3;;:104;;-1:-1:-1;;;;;;;1763:48:3;;-1:-1:-1;;;1763:48:3;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:11;;;1827:36:3;829:155:11;11657:133:3;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:3;11730:53;;;;-1:-1:-1;;;11730:53:3;;10741:2:14;11730:53:3;;;10723:21:14;10780:2;10760:18;;;10753:30;-1:-1:-1;;;10799:18:14;;;10792:54;10863:18;;11730:53:3;10539:348:14;10959:171:3;11033:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11033:29:3;-1:-1:-1;;;;;11033:29:3;;;;;;;;:24;;11086:23;11033:24;11086:14;:23::i;:::-;-1:-1:-1;;;;;11077:46:3;;;;;;;;;;;10959:171;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;-1:-1:-1;;;;;7483:16:3;:7;-1:-1:-1;;;;;7483:16:3;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:87;;;;7563:7;-1:-1:-1;;;;;7539:31:3;:20;7551:7;7539:11;:20::i;:::-;-1:-1:-1;;;;;7539:31:3;;7483:87;7475:96;7317:261;-1:-1:-1;;;;7317:261:3:o;10242:605::-;10396:4;-1:-1:-1;;;;;10369:31:3;:23;10384:7;10369:14;:23::i;:::-;-1:-1:-1;;;;;10369:31:3;;10361:81;;;;-1:-1:-1;;;10361:81:3;;15710:2:14;10361:81:3;;;15692:21:14;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:14;;;15832:35;15884:19;;10361:81:3;15508:401:14;10361:81:3;-1:-1:-1;;;;;10460:16:3;;10452:65;;;;-1:-1:-1;;;10452:65:3;;16116:2:14;10452:65:3;;;16098:21:14;16155:2;16135:18;;;16128:30;16194:34;16174:18;;;16167:62;-1:-1:-1;;;16245:18:14;;;16238:34;16289:19;;10452:65:3;15914:400:14;10452:65:3;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;-1:-1:-1;;;;;10669:15:3;;;;;;:9;:15;;;;;:20;;10688:1;;10669:15;:20;;10688:1;;10669:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10699:13:3;;;;;;:9;:13;;;;;:18;;10716:1;;10699:13;:18;;10716:1;;10699:18;:::i;:::-;;;;-1:-1:-1;;10727:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10727:21:3;-1:-1:-1;;;;;10727:21:3;;;;;;;;;10764:27;;10727:16;;10764:27;;;;;;;3537:337;3467:407;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:9;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;16521:2:14;1414:68:0;;;16503:21:14;;;16540:18;;;16533:30;16599:34;16579:18;;;16572:62;16651:18;;1414:68:0;16319:356:14;3876:178:13;1744:1:2;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:2;;16882:2:14;2317:63:2;;;16864:21:14;16921:2;16901:18;;;16894:30;16960:33;16940:18;;;16933:61;17011:18;;2317:63:2;16680:355:14;2317:63:2;1744:1;2455:7;:18;3957:9:13::1;3952:97;3976:6;3972:1;:10;3952:97;;;3997:10;:12:::0;;;:10:::1;:12;::::0;::::1;:::i;:::-;;;;;;4017:25;4027:2;4031:10;;4017:9;:25::i;:::-;3984:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3952:97;;;-1:-1:-1::0;;1701:1:2;2628:7;:22;-1:-1:-1;3876:178:13:o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;11266:307:3:-;11416:8;-1:-1:-1;;;;;11407:17:3;:5;-1:-1:-1;;;;;11407:17:3;;11399:55;;;;-1:-1:-1;;;11399:55:3;;17382:2:14;11399:55:3;;;17364:21:14;17421:2;17401:18;;;17394:30;17460:27;17440:18;;;17433:55;17505:18;;11399:55:3;17180:349:14;11399:55:3;-1:-1:-1;;;;;11464:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11464:46:3;;;;;;;;;;11525:41;;722::14;;;11525::3;;695:18:14;11525:41:3;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;-1:-1:-1;;;6614:110:3;;;;;;;:::i;2274:92:13:-;2326:13;2354:7;2347:14;;;;;:::i;392:703:10:-;448:13;665:5;674:1;665:10;661:51;;-1:-1:-1;;691:10:10;;;;;;;;;;;;-1:-1:-1;;;691:10:10;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:10;;-1:-1:-1;837:2:10;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:10;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:10;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:10;;;;;;;;-1:-1:-1;1036:11:10;1045:2;1036:11;;:::i;:::-;;;908:150;;7908:108:3;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;12342:831::-;12491:4;-1:-1:-1;;;;;12511:13:3;;1465:19:7;:23;12507:660:3;;12546:71;;-1:-1:-1;;;12546:71:3;;-1:-1:-1;;;;;12546:36:3;;;;;:71;;719:10:9;;12597:4:3;;12603:7;;12612:4;;12546:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:71:3;;;;;;;;-1:-1:-1;;12546:71:3;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12784:6;:13;12801:1;12784:18;12780:321;;12826:60;;-1:-1:-1;;;12826:60:3;;;;;;;:::i;12780:321::-;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;-1:-1:-1;;;;;;12667:51:3;-1:-1:-1;;;12667:51:3;;-1:-1:-1;12660:58:3;;12507:660;-1:-1:-1;13152:4:3;12342:831;;;;;;:::o;8237:309::-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;-1:-1:-1;;;8389:150:3;;;;;;;:::i;8868:427::-;-1:-1:-1;;;;;8947:16:3;;8939:61;;;;-1:-1:-1;;;8939:61:3;;19152:2:14;8939:61:3;;;19134:21:14;;;19171:18;;;19164:30;19230:34;19210:18;;;19203:62;19282:18;;8939:61:3;18950:356:14;8939:61:3;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:3;:30;9010:58;;;;-1:-1:-1;;;9010:58:3;;19513:2:14;9010:58:3;;;19495:21:14;19552:2;19532:18;;;19525:30;19591;19571:18;;;19564:58;19639:18;;9010:58:3;19311:352:14;9010:58:3;-1:-1:-1;;;;;9135:13:3;;;;;;:9;:13;;;;;:18;;9152:1;;9135:13;:18;;9152:1;;9135:18;:::i;:::-;;;;-1:-1:-1;;9163:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9163:21:3;-1:-1:-1;;;;;9163:21:3;;;;;;;;9200:33;;9163:16;;;9200:33;;9163:16;;9200:33;5424:79:13::1;5369:134:::0;:::o;196:131:14:-;-1:-1:-1;;;;;;270:32:14;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:14;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:14;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:14:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:14;;1530:180;-1:-1:-1;1530:180:14:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:14;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:14:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:248::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;-1:-1:-1;;3052:23:14;;;3122:2;3107:18;;;3094:32;;-1:-1:-1;2884:248:14:o;3416:127::-;3477:10;3472:3;3468:20;3465:1;3458:31;3508:4;3505:1;3498:15;3532:4;3529:1;3522:15;3548:632;3613:5;3643:18;3684:2;3676:6;3673:14;3670:40;;;3690:18;;:::i;:::-;3765:2;3759:9;3733:2;3819:15;;-1:-1:-1;;3815:24:14;;;3841:2;3811:33;3807:42;3795:55;;;3865:18;;;3885:22;;;3862:46;3859:72;;;3911:18;;:::i;:::-;3951:10;3947:2;3940:22;3980:6;3971:15;;4010:6;4002;3995:22;4050:3;4041:6;4036:3;4032:16;4029:25;4026:45;;;4067:1;4064;4057:12;4026:45;4117:6;4112:3;4105:4;4097:6;4093:17;4080:44;4172:1;4165:4;4156:6;4148;4144:19;4140:30;4133:41;;;;3548:632;;;;;:::o;4185:451::-;4254:6;4307:2;4295:9;4286:7;4282:23;4278:32;4275:52;;;4323:1;4320;4313:12;4275:52;4363:9;4350:23;4396:18;4388:6;4385:30;4382:50;;;4428:1;4425;4418:12;4382:50;4451:22;;4504:4;4496:13;;4492:27;-1:-1:-1;4482:55:14;;4533:1;4530;4523:12;4482:55;4556:74;4622:7;4617:2;4604:16;4599:2;4595;4591:11;4556:74;:::i;4641:347::-;4706:6;4714;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;4806:29;4825:9;4806:29;:::i;:::-;4796:39;;4885:2;4874:9;4870:18;4857:32;4932:5;4925:13;4918:21;4911:5;4908:32;4898:60;;4954:1;4951;4944:12;4898:60;4977:5;4967:15;;;4641:347;;;;;:::o;4993:667::-;5088:6;5096;5104;5112;5165:3;5153:9;5144:7;5140:23;5136:33;5133:53;;;5182:1;5179;5172:12;5133:53;5205:29;5224:9;5205:29;:::i;:::-;5195:39;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;:::-;5243:48;;5338:2;5327:9;5323:18;5310:32;5300:42;;5393:2;5382:9;5378:18;5365:32;5420:18;5412:6;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475:22;;5528:4;5520:13;;5516:27;-1:-1:-1;5506:55:14;;5557:1;5554;5547:12;5506:55;5580:74;5646:7;5641:2;5628:16;5623:2;5619;5615:11;5580:74;:::i;:::-;5570:84;;;4993:667;;;;;;;:::o;5665:260::-;5733:6;5741;5794:2;5782:9;5773:7;5769:23;5765:32;5762:52;;;5810:1;5807;5800:12;5762:52;5833:29;5852:9;5833:29;:::i;:::-;5823:39;;5881:38;5915:2;5904:9;5900:18;5881:38;:::i;:::-;5871:48;;5665:260;;;;;:::o;5930:380::-;6009:1;6005:12;;;;6052;;;6073:61;;6127:4;6119:6;6115:17;6105:27;;6073:61;6180:2;6172:6;6169:14;6149:18;6146:38;6143:161;;6226:10;6221:3;6217:20;6214:1;6207:31;6261:4;6258:1;6251:15;6289:4;6286:1;6279:15;6143:161;;5930:380;;;:::o;7148:410::-;7350:2;7332:21;;;7389:2;7369:18;;;7362:30;7428:34;7423:2;7408:18;;7401:62;-1:-1:-1;;;7494:2:14;7479:18;;7472:44;7548:3;7533:19;;7148:410::o;7563:127::-;7624:10;7619:3;7615:20;7612:1;7605:31;7655:4;7652:1;7645:15;7679:4;7676:1;7669:15;7695:127;7756:10;7751:3;7747:20;7744:1;7737:31;7787:4;7784:1;7777:15;7811:4;7808:1;7801:15;7827:120;7867:1;7893;7883:35;;7898:18;;:::i;:::-;-1:-1:-1;7932:9:14;;7827:120::o;7952:168::-;7992:7;8058:1;8054;8050:6;8046:14;8043:1;8040:21;8035:1;8028:9;8021:17;8017:45;8014:71;;;8065:18;;:::i;:::-;-1:-1:-1;8105:9:14;;7952:168::o;8461:545::-;8563:2;8558:3;8555:11;8552:448;;;8599:1;8624:5;8620:2;8613:17;8669:4;8665:2;8655:19;8739:2;8727:10;8723:19;8720:1;8716:27;8710:4;8706:38;8775:4;8763:10;8760:20;8757:47;;;-1:-1:-1;8798:4:14;8757:47;8853:2;8848:3;8844:12;8841:1;8837:20;8831:4;8827:31;8817:41;;8908:82;8926:2;8919:5;8916:13;8908:82;;;8971:17;;;8952:1;8941:13;8908:82;;;8912:3;;;8461:545;;;:::o;9182:1352::-;9308:3;9302:10;9335:18;9327:6;9324:30;9321:56;;;9357:18;;:::i;:::-;9386:97;9476:6;9436:38;9468:4;9462:11;9436:38;:::i;:::-;9430:4;9386:97;:::i;:::-;9538:4;;9602:2;9591:14;;9619:1;9614:663;;;;10321:1;10338:6;10335:89;;;-1:-1:-1;10390:19:14;;;10384:26;10335:89;-1:-1:-1;;9139:1:14;9135:11;;;9131:24;9127:29;9117:40;9163:1;9159:11;;;9114:57;10437:81;;9584:944;;9614:663;8408:1;8401:14;;;8445:4;8432:18;;-1:-1:-1;;9650:20:14;;;9768:236;9782:7;9779:1;9776:14;9768:236;;;9871:19;;;9865:26;9850:42;;9963:27;;;;9931:1;9919:14;;;;9798:19;;9768:236;;;9772:3;10032:6;10023:7;10020:19;10017:201;;;10093:19;;;10087:26;-1:-1:-1;;10176:1:14;10172:14;;;10188:3;10168:24;10164:37;10160:42;10145:58;10130:74;;10017:201;-1:-1:-1;;;;;10264:1:14;10248:14;;;10244:22;10231:36;;-1:-1:-1;9182:1352:14:o;11302:125::-;11367:9;;;11388:10;;;11385:36;;;11401:18;;:::i;11840:402::-;12042:2;12024:21;;;12081:2;12061:18;;;12054:30;12120:34;12115:2;12100:18;;12093:62;-1:-1:-1;;;12186:2:14;12171:18;;12164:36;12232:3;12217:19;;11840:402::o;12247:128::-;12314:9;;;12335:11;;;12332:37;;;12349:18;;:::i;13840:1256::-;14064:3;14102:6;14096:13;14128:4;14141:64;14198:6;14193:3;14188:2;14180:6;14176:15;14141:64;:::i;:::-;14268:13;;14227:16;;;;14290:68;14268:13;14227:16;14325:15;;;14290:68;:::i;:::-;14447:13;;14380:20;;;14420:1;;14485:36;14447:13;14485:36;:::i;:::-;14540:1;14557:18;;;14584:141;;;;14739:1;14734:337;;;;14550:521;;14584:141;-1:-1:-1;;14619:24:14;;14605:39;;14696:16;;14689:24;14675:39;;14664:51;;;-1:-1:-1;14584:141:14;;14734:337;14765:6;14762:1;14755:17;14813:2;14810:1;14800:16;14838:1;14852:169;14866:8;14863:1;14860:15;14852:169;;;14948:14;;14933:13;;;14926:37;14991:16;;;;14883:10;;14852:169;;;14856:3;;15052:8;15045:5;15041:20;15034:27;;14550:521;-1:-1:-1;15087:3:14;;13840:1256;-1:-1:-1;;;;;;;;;;13840:1256:14:o;17040:135::-;17079:3;17100:17;;;17097:43;;17120:18;;:::i;:::-;-1:-1:-1;17167:1:14;17156:13;;17040:135::o;17534:414::-;17736:2;17718:21;;;17775:2;17755:18;;;17748:30;17814:34;17809:2;17794:18;;17787:62;-1:-1:-1;;;17880:2:14;17865:18;;17858:48;17938:3;17923:19;;17534:414::o;17953:112::-;17985:1;18011;18001:35;;18016:18;;:::i;:::-;-1:-1:-1;18050:9:14;;17953:112::o;18070:127::-;18131:10;18126:3;18122:20;18119:1;18112:31;18162:4;18159:1;18152:15;18186:4;18183:1;18176:15;18202:489;-1:-1:-1;;;;;18471:15:14;;;18453:34;;18523:15;;18518:2;18503:18;;18496:43;18570:2;18555:18;;18548:34;;;18618:3;18613:2;18598:18;;18591:31;;;18396:4;;18639:46;;18665:19;;18657:6;18639:46;:::i;:::-;18631:54;18202:489;-1:-1:-1;;;;;;18202:489:14:o;18696:249::-;18765:6;18818:2;18806:9;18797:7;18793:23;18789:32;18786:52;;;18834:1;18831;18824:12;18786:52;18866:9;18860:16;18885:30;18909:5;18885:30;:::i
Swarm Source
ipfs://a8768dbc1f6a721a55ccace7111384fbe3dc5ee1d8f9a7ae690c0dbc8ae00e55
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.