NFT
Overview
TokenID
12961
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Babies
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 20000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Babies is ERC721Royalty, Ownable, ReentrancyGuard { // Smart contract status enum Status { CLOSED, FREE, ALLOWLIST, WAITLIST, PUBLIC } Status public status = Status.CLOSED; // Claim status bool public isClaimActive = false; // Counters uint256 private _claimed = 0; // Params string private _baseTokenURI; uint256 public supply = 20000; uint256 public claimLastIndex = 9999; uint256 public publicIndex = claimLastIndex; uint256 public price = 0.195 ether; uint256[5] public maxPerStatus = [0, 1, 2, 2, 2]; address public teamWalletAddress; // Mappings mapping(address => bool) private hasMintedFree; mapping(address => bool) private hasMintedList; // ALLOWLIST or WAITLIST mapping(address => bool) private hasMintedPublic; // CoolmansUniverse ERC721Enumerable public coolmansUniverse = ERC721Enumerable(0xa5C0Bd78D1667c13BFB403E2a3336871396713c5); // Merkle tree bytes32[5] public merkleRoots; // Event declaration event ChangedStatusEvent(uint256 newStatus); event ChangedBaseURIEvent(string newURI); event ChangedMerkleRoot(uint256 status, bytes32 newMerkleRoot); event ChangedTeamWallet(address newAddress); // Contructor constructor(string memory _URI) ERC721("Babies", "Babies") { setBaseURI(_URI); } // Coolman's Universe holders claim function claim(uint256[] calldata _ids) external nonReentrant { require(tx.origin == msg.sender, "Smart contract interactions disabled"); require(isClaimActive, "Contract closed"); uint256 len = _ids.length; _claimed += len; for (uint256 i = 0; i < len; ++i) { uint256 id = _ids[i]; require(!_exists(id), "Token already claimed"); require(coolmansUniverse.ownerOf(id) == msg.sender, "Not allowed"); _mint(msg.sender, id); } } // Mint function mint(uint256 _qty, bytes32[] calldata _proof) public payable nonReentrant { require(tx.origin == msg.sender, "Smart contract interactions disabled"); require(status != Status.CLOSED, "Contract closed"); require(publicIndex + _qty < supply, "Quantity not available"); require(_qty > 0 && _qty <= maxPerStatus[uint256(status)], "Quantity constraints not satisfied"); if (status != Status.FREE) { require(msg.value == price * _qty, "Price not matched"); } if (status != Status.PUBLIC) { checkProof(_proof); } if (status == Status.FREE) { require(!hasMintedFree[msg.sender], "Already minted"); hasMintedFree[msg.sender] = true; } else if (status == Status.ALLOWLIST || status == Status.WAITLIST) { require(!hasMintedList[msg.sender], "Already minted"); hasMintedList[msg.sender] = true; } else { require(!hasMintedPublic[msg.sender], "Already minted"); hasMintedPublic[msg.sender] = true; } uint256 tmpIndex = publicIndex; publicIndex += _qty; for (uint256 i = 1; i <= _qty; ++i) { _mint(msg.sender, tmpIndex + i); } } function teamMint(uint256 _qty) public nonReentrant { require(teamWalletAddress != address(0), "No team wallet address found"); require(msg.sender == teamWalletAddress, "Not allowed"); require(publicIndex + _qty < supply, "Quantity not available"); uint256 tmpIndex = publicIndex; publicIndex += _qty; for (uint256 i = 1; i <= _qty; ++i) { _mint(msg.sender, tmpIndex + i); } } // Merkle Proof validation function checkProof(bytes32[] calldata _proof) private view { require( MerkleProof.verify(_proof, merkleRoots[uint256(status)], keccak256(abi.encodePacked(msg.sender))), "Not allowed" ); } // Getters function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function tokenExists(uint256 _id) public view returns (bool) { return _exists(_id); } function getIsClaimed(uint256 _id) public view returns (bool) { return _exists(_id); } function getHasMinted(address _address) public view returns (bool) { if (status == Status.FREE) { return hasMintedFree[_address]; } else if (status == Status.ALLOWLIST || status == Status.WAITLIST) { return hasMintedList[_address]; } else { return hasMintedPublic[_address]; } } function claimableBy(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = coolmansUniverse.balanceOf(_owner); uint256 counter = 0; for (uint256 i = 0; i < tokenCount; i++) { uint256 _tokenId = coolmansUniverse.tokenOfOwnerByIndex(_owner, i); if (!_exists(_tokenId)) { counter++; } } uint256 counter2 = 0; uint256[] memory tokensId = new uint256[](counter); for (uint256 i = 0; i < tokenCount; i++) { uint256 _tokenId = coolmansUniverse.tokenOfOwnerByIndex(_owner, i); if (!_exists(_tokenId)) { tokensId[counter2] = _tokenId; counter2++; } } return tokensId; } function totalSupply() public view returns (uint256) { return _claimed + (publicIndex - claimLastIndex); } // Setters function setBaseURI(string memory _URI) public onlyOwner { _baseTokenURI = _URI; emit ChangedBaseURIEvent(_URI); } function setTeamWalletAddress(address _address) public onlyOwner { teamWalletAddress = _address; emit ChangedTeamWallet(_address); } function setStatus(uint256 _status) public onlyOwner { // _status -> 0: CLOSED, 1: FREE, 2: ALLOWLIST, 3: WAITLIST, 4: PUBLIC require(_status >= 0 && _status <= 4, "Mint status must be between 0 and 4"); status = Status(_status); emit ChangedStatusEvent(_status); } function toggleClaimActive() external onlyOwner { isClaimActive = !isClaimActive; } function setMerkleRoot(bytes32 _merkleRoot, uint256 _status) public onlyOwner { // _status -> 0: CLOSED, 1: FREE, 2: ALLOWLIST, 3: WAITLIST, 4: PUBLIC require(_status >= 0 && _status <= 4, "Mint status must be between 0 and 4"); merkleRoots[_status] = _merkleRoot; emit ChangedMerkleRoot(_status, _merkleRoot); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setPrice(uint256 _price) external onlyOwner { price = _price; } // Withdraw function withdraw(address payable withdrawAddress) external payable nonReentrant onlyOwner { require(withdrawAddress != address(0), "Withdraw address cannot be zero"); require(address(this).balance >= 0, "Not enough eth"); payable(withdrawAddress).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../common/ERC2981.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _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 a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @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 (last updated v4.5.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// 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 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./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 payed 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 v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 20000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_URI","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":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ChangedBaseURIEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"status","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"ChangedMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStatus","type":"uint256"}],"name":"ChangedStatusEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"ChangedTeamWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimLastIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"claimableBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coolmansUniverse","outputs":[{"internalType":"contract ERC721Enumerable","name":"","type":"address"}],"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":"_address","type":"address"}],"name":"getHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getIsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxPerStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTeamWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Babies.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
600a805461ffff191690556000600b819055614e20600d5561270f600e819055600f556702b4c777833380006010556101206040526080908152600160a052600260c081905260e0819052610100526200005e90601190600562000247565b50601a80546001600160a01b03191673a5c0bd78d1667c13bfb403e2a3336871396713c51790553480156200009257600080fd5b506040516200431938038062004319833981016040819052620000b5916200036c565b60408051808201825260068082526542616269657360d01b602080840182815285518087019096529285528401528151919291620000f6916002916200028f565b5080516200010c9060039060208401906200028f565b50505062000129620001236200014060201b60201c565b62000144565b6001600955620001398162000196565b5062000495565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020a90600c9060208401906200028f565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd816040516200023c919062000424565b60405180910390a150565b82600581019282156200027d579160200282015b828111156200027d578251829060ff169055916020019190600101906200025b565b506200028b9291506200030c565b5090565b8280546200029d9062000459565b90600052602060002090601f016020900481019282620002c157600085556200027d565b82601f10620002dc57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027d578251825591602001919060010190620002ef565b5b808211156200028b57600081556001016200030d565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003565781810151838201526020016200033c565b8381111562000366576000848401525b50505050565b6000602082840312156200037f57600080fd5b81516001600160401b03808211156200039757600080fd5b818401915084601f830112620003ac57600080fd5b815181811115620003c157620003c162000323565b604051601f8201601f19908116603f01168101908382118183101715620003ec57620003ec62000323565b816040528281528760208487010111156200040657600080fd5b6200041983602083016020880162000339565b979650505050505050565b60208152600082518060208401526200044581604085016020870162000339565b601f01601f19169190910160400192915050565b600181811c908216806200046e57607f821691505b6020821081036200048f57634e487b7160e01b600052602260045260246000fd5b50919050565b613e7480620004a56000396000f3fe6080604052600436106102db5760003560e01c806370a082311161018457806395d89b41116100d6578063ba41b0c61161008a578063d314deda11610064578063d314deda1461080c578063e985e9c514610822578063f2fde38b1461087857600080fd5b8063ba41b0c6146107d9578063ba7383a8146102e0578063c87b56dd146107ec57600080fd5b8063a22cb465116100bb578063a22cb46514610784578063b88d4fde146107a4578063b99bace8146107c457600080fd5b806395d89b4114610759578063a035b1fe1461076e57600080fd5b80637de0aeae116101385780638d004617116101125780638d004617146106e15780638da5cb5b1461070e57806391b7f5ed1461073957600080fd5b80637de0aeae146106755780637fc278031461069557806382f73533146106b457600080fd5b806371c5ecb11161016957806371c5ecb11461061f5780637b32fa2e1461063f5780637c382d0b1461065557600080fd5b806370a08231146105ea578063715018a61461060a57600080fd5b806323b872dd1161023d57806342842e0e116101f15780636352211e116101cb5780636352211e1461058a57806369ba1a75146105aa5780636ba4c138146105ca57600080fd5b806342842e0e1461053757806351cff8d91461055757806355f804b31461056a57600080fd5b80632c4b2334116102225780632c4b2334146104d75780632fbba115146104f757806340e3c2a31461051757600080fd5b806323b872dd1461046b5780632a55205a1461048b57600080fd5b8063081812fc116102945780631245e347116102795780631245e3471461040257806318160ddd1461042f578063200d2ed21461044457600080fd5b8063081812fc1461039d578063095ea7b3146103e257600080fd5b806304634d8d116102c557806304634d8d14610335578063047fc9aa1461035757806306fdde031461037b57600080fd5b8062923f9e146102e057806301ffc9a714610315575b600080fd5b3480156102ec57600080fd5b506103006102fb36600461364e565b610898565b60405190151581526020015b60405180910390f35b34801561032157600080fd5b50610300610330366004613695565b6108c6565b34801561034157600080fd5b506103556103503660046136d4565b6108d1565b005b34801561036357600080fd5b5061036d600d5481565b60405190815260200161030c565b34801561038757600080fd5b5061039061094b565b60405161030c9190613794565b3480156103a957600080fd5b506103bd6103b836600461364e565b6109dd565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030c565b3480156103ee57600080fd5b506103556103fd3660046137a7565b610a9d565b34801561040e57600080fd5b506016546103bd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561043b57600080fd5b5061036d610bf5565b34801561045057600080fd5b50600a5461045e9060ff1681565b60405161030c9190613802565b34801561047757600080fd5b50610355610486366004613843565b610c19565b34801561049757600080fd5b506104ab6104a6366004613884565b610ca0565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161030c565b3480156104e357600080fd5b506103556104f23660046138a6565b610d99565b34801561050357600080fd5b5061035561051236600461364e565b610e7a565b34801561052357600080fd5b506103006105323660046138a6565b61104b565b34801561054357600080fd5b50610355610552366004613843565b61112f565b6103556105653660046138a6565b61114a565b34801561057657600080fd5b50610355610585366004613986565b6112b6565b34801561059657600080fd5b506103bd6105a536600461364e565b611360565b3480156105b657600080fd5b506103556105c536600461364e565b6113f8565b3480156105d657600080fd5b506103556105e5366004613a14565b611557565b3480156105f657600080fd5b5061036d6106053660046138a6565b611854565b34801561061657600080fd5b50610355611908565b34801561062b57600080fd5b5061036d61063a36600461364e565b61197b565b34801561064b57600080fd5b5061036d600e5481565b34801561066157600080fd5b50610355610670366004613884565b611992565b34801561068157600080fd5b5061036d61069036600461364e565b611ac3565b3480156106a157600080fd5b50600a5461030090610100900460ff1681565b3480156106c057600080fd5b506106d46106cf3660046138a6565b611ad3565b60405161030c9190613a56565b3480156106ed57600080fd5b50601a546103bd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561071a57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103bd565b34801561074557600080fd5b5061035561075436600461364e565b611dc8565b34801561076557600080fd5b50610390611e34565b34801561077a57600080fd5b5061036d60105481565b34801561079057600080fd5b5061035561079f366004613a9a565b611e43565b3480156107b057600080fd5b506103556107bf366004613acd565b611e4e565b3480156107d057600080fd5b50610355611edc565b6103556107e7366004613b4d565b611f7d565b3480156107f857600080fd5b5061039061080736600461364e565b6124d9565b34801561081857600080fd5b5061036d600f5481565b34801561082e57600080fd5b5061030061083d366004613b99565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088457600080fd5b506103556108933660046138a6565b6125cf565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b60006108c0826126cb565b60085473ffffffffffffffffffffffffffffffffffffffff16331461093d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610947828261276d565b5050565b60606002805461095a90613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461098690613bc7565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610934565b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610aa882611360565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610934565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b745750610b74813361083d565b610be65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610934565b610bf083836128b2565b505050565b6000600e54600f54610c079190613c49565b600b54610c149190613c60565b905090565b610c233382612952565b610c955760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610934565b610bf0838383612aa8565b600082815260016020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610d5b57506040805180820190915260005473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610d7f906bffffffffffffffffffffffff1687613c78565b610d899190613ce4565b91519350909150505b9250929050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff61d1153d29048c2237241f477f5e22a9ec268b07657816f076903faf9274ffd906020015b60405180910390a150565b600260095403610ecc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b600260095560165473ffffffffffffffffffffffffffffffffffffffff16610f365760405162461bcd60e51b815260206004820152601c60248201527f4e6f207465616d2077616c6c6574206164647265737320666f756e64000000006044820152606401610934565b60165473ffffffffffffffffffffffffffffffffffffffff163314610f9d5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b600d5481600f54610fae9190613c60565b10610ffb5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c65000000000000000000006044820152606401610934565b600f8054908290600061100e8385613c60565b90915550600190505b828111611041576110313361102c8385613c60565b612cdb565b61103a81613cf8565b9050611017565b5050600160095550565b60006001600a5460ff166004811115611066576110666137d3565b03611097575073ffffffffffffffffffffffffffffffffffffffff1660009081526017602052604090205460ff1690565b6002600a5460ff1660048111156110b0576110b06137d3565b14806110d257506003600a5460ff1660048111156110d0576110d06137d3565b145b15611103575073ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b610bf083838360405180602001604052806000815250611e4e565b60026009540361119c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b600260095560085473ffffffffffffffffffffffffffffffffffffffff1633146112085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff811661126b5760405162461bcd60e51b815260206004820152601f60248201527f576974686472617720616464726573732063616e6e6f74206265207a65726f006044820152606401610934565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156112ad573d6000803e3d6000fd5b50506001600955565b60085473ffffffffffffffffffffffffffffffffffffffff16331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b805161133090600c9060208401906135b5565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610e6f9190613794565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610934565b60085473ffffffffffffffffffffffffffffffffffffffff16331461145f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b60048111156114d65760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f64203400000000000000000000000000000000000000000000000000000000006064820152608401610934565b8060048111156114e8576114e86137d3565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115611522576115226137d3565b02179055506040518181527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a67890602001610e6f565b6002600954036115a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b60026009553233146116225760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610934565b600a54610100900460ff166116795760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f73656400000000000000000000000000000000006044820152606401610934565b600b80548291829160009061168f908490613c60565b90915550600090505b818110156118495760008484838181106116b4576116b4613d30565b9050602002013590506116eb8160009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16151590565b156117385760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20616c726561647920636c61696d656400000000000000000000006044820152606401610934565b601a546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101839052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156117a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117cb9190613d5f565b73ffffffffffffffffffffffffffffffffffffffff161461182e5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b6118383382612cdb565b5061184281613cf8565b9050611698565b505060016009555050565b600073ffffffffffffffffffffffffffffffffffffffff82166118df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610934565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b60085473ffffffffffffffffffffffffffffffffffffffff16331461196f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b6119796000612e69565b565b601b816005811061198b57600080fd5b0154905081565b60085473ffffffffffffffffffffffffffffffffffffffff1633146119f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b6004811115611a705760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f64203400000000000000000000000000000000000000000000000000000000006064820152608401610934565b81601b8260058110611a8457611a84613d30565b015560408051828152602081018490527fa7a8372e3e36c75896eb420e70b6ee2814e6c5a740914f72dc3e54be6a06d178910160405180910390a15050565b6011816005811061198b57600080fd5b601a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526060926000929116906370a0823190602401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190613d7c565b90506000805b82811015611c6357601a546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018490526000921690632f745c5990604401602060405180830381865afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c169190613d7c565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16611c505782611c4c81613cf8565b9350505b5080611c5b81613cf8565b915050611b72565b506000808267ffffffffffffffff811115611c8057611c806138c3565b604051908082528060200260200182016040528015611ca9578160200160208202803683370190505b50905060005b84811015611dbe57601a546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152602482018490526000921690632f745c5990604401602060405180830381865afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190613d7c565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16611dab5780838581518110611d9257611d92613d30565b602090810291909101015283611da781613cf8565b9450505b5080611db681613cf8565b915050611caf565b5095945050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611e2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b601055565b60606003805461095a90613bc7565b610947338383612ee0565b611e583383612952565b611eca5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610934565b611ed684848484612ff3565b50505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611f435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b600260095403611fcf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b60026009553233146120485760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610934565b6000600a5460ff166004811115612061576120616137d3565b036120ae5760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f73656400000000000000000000000000000000006044820152606401610934565b600d5483600f546120bf9190613c60565b1061210c5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c65000000000000000000006044820152606401610934565b6000831180156121475750600a5460119060ff166004811115612131576121316137d3565b6005811061214157612141613d30565b01548311155b6121b95760405162461bcd60e51b815260206004820152602260248201527f5175616e7469747920636f6e73747261696e7473206e6f74207361746973666960448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610934565b6001600a5460ff1660048111156121d2576121d26137d3565b1461223357826010546121e59190613c78565b34146122335760405162461bcd60e51b815260206004820152601160248201527f5072696365206e6f74206d6174636865640000000000000000000000000000006044820152606401610934565b6004600a5460ff16600481111561224c5761224c6137d3565b1461225b5761225b828261307c565b6001600a5460ff166004811115612274576122746137d3565b03612316573360009081526017602052604090205460ff16156122d95760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561248c565b6002600a5460ff16600481111561232f5761232f6137d3565b148061235157506003600a5460ff16600481111561234f5761234f6137d3565b145b156123f3573360009081526018602052604090205460ff16156123b65760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561248c565b3360009081526019602052604090205460ff16156124535760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260196020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b600f8054908490600061249f8385613c60565b90915550600190505b8481116124cd576124bd3361102c8385613c60565b6124c681613cf8565b90506124a8565b50506001600955505050565b60008181526004602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166125735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610934565b600061257d613177565b9050600081511161259d57604051806020016040528060008152506125c8565b806125a784613186565b6040516020016125b8929190613d95565b6040516020818303038152906040525b9392505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146126365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff81166126bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610934565b6126c881612e69565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061275e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c057506108c0826132bb565b6127106bffffffffffffffffffffffff821611156127f35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610934565b73ffffffffffffffffffffffffffffffffffffffff82166128565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610934565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600055565b600081815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061290c82611360565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166129e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610934565b60006129f483611360565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a6357508373ffffffffffffffffffffffffffffffffffffffff16612a4b846109dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612ac882611360565b73ffffffffffffffffffffffffffffffffffffffff1614612b515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610934565b73ffffffffffffffffffffffffffffffffffffffff8216612bd95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610934565b612be46000826128b2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600560205260408120805460019290612c1a908490613c49565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612c55908490613c60565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216612d3e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610934565b60008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612db05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612de6908490613c60565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526007602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ffe848484612aa8565b61300a84848484613352565b611ed65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610934565b61312b82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54601b925060ff16905060048111156130cd576130cd6137d3565b600581106130dd576130dd613d30565b01546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526034016040516020818303038152906040528051906020012061352b565b6109475760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b6060600c805461095a90613bc7565b6060816000036131c957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131f357806131dd81613cf8565b91506131ec9050600a83613ce4565b91506131cd565b60008167ffffffffffffffff81111561320e5761320e6138c3565b6040519080825280601f01601f191660200182016040528015613238576020820181803683370190505b5090505b8415612aa05761324d600183613c49565b915061325a600a86613dc4565b613265906030613c60565b60f81b81838151811061327a5761327a613d30565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506132b4600a86613ce4565b945061323c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c0565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613520576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906133c9903390899088908890600401613dd8565b6020604051808303816000875af1925050508015613422575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261341f91810190613e21565b60015b6134d5573d808015613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b5080516000036134cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610934565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612aa0565b506001949350505050565b6000826135388584613541565b14949350505050565b600081815b84518110156135ad57600085828151811061356357613563613d30565b60200260200101519050808311613589576000838152602082905260409020925061359a565b600081815260208490526040902092505b50806135a581613cf8565b915050613546565b509392505050565b8280546135c190613bc7565b90600052602060002090601f0160209004810192826135e35760008555613629565b82601f106135fc57805160ff1916838001178555613629565b82800160010185558215613629579182015b8281111561362957825182559160200191906001019061360e565b50613635929150613639565b5090565b5b80821115613635576000815560010161363a565b60006020828403121561366057600080fd5b5035919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126c857600080fd5b6000602082840312156136a757600080fd5b81356125c881613667565b73ffffffffffffffffffffffffffffffffffffffff811681146126c857600080fd5b600080604083850312156136e757600080fd5b82356136f2816136b2565b915060208301356bffffffffffffffffffffffff8116811461371357600080fd5b809150509250929050565b60005b83811015613739578181015183820152602001613721565b83811115611ed65750506000910152565b6000815180845261376281602086016020860161371e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006125c8602083018461374a565b600080604083850312156137ba57600080fd5b82356137c5816136b2565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b602081016005831061383d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561385857600080fd5b8335613863816136b2565b92506020840135613873816136b2565b929592945050506040919091013590565b6000806040838503121561389757600080fd5b50508035926020909101359150565b6000602082840312156138b857600080fd5b81356125c8816136b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561390d5761390d6138c3565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613953576139536138c3565b8160405280935085815286868601111561396c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561399857600080fd5b813567ffffffffffffffff8111156139af57600080fd5b8201601f810184136139c057600080fd5b612aa0848235602084016138f2565b60008083601f8401126139e157600080fd5b50813567ffffffffffffffff8111156139f957600080fd5b6020830191508360208260051b8501011115610d9257600080fd5b60008060208385031215613a2757600080fd5b823567ffffffffffffffff811115613a3e57600080fd5b613a4a858286016139cf565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015613a8e57835183529284019291840191600101613a72565b50909695505050505050565b60008060408385031215613aad57600080fd5b8235613ab8816136b2565b91506020830135801515811461371357600080fd5b60008060008060808587031215613ae357600080fd5b8435613aee816136b2565b93506020850135613afe816136b2565b925060408501359150606085013567ffffffffffffffff811115613b2157600080fd5b8501601f81018713613b3257600080fd5b613b41878235602084016138f2565b91505092959194509250565b600080600060408486031215613b6257600080fd5b83359250602084013567ffffffffffffffff811115613b8057600080fd5b613b8c868287016139cf565b9497909650939450505050565b60008060408385031215613bac57600080fd5b8235613bb7816136b2565b91506020830135613713816136b2565b600181811c90821680613bdb57607f821691505b602082108103613c14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613c5b57613c5b613c1a565b500390565b60008219821115613c7357613c73613c1a565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb057613cb0613c1a565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613cf357613cf3613cb5565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d2957613d29613c1a565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613d7157600080fd5b81516125c8816136b2565b600060208284031215613d8e57600080fd5b5051919050565b60008351613da781846020880161371e565b835190830190613dbb81836020880161371e565b01949350505050565b600082613dd357613dd3613cb5565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e17608083018461374a565b9695505050505050565b600060208284031215613e3357600080fd5b81516125c88161366756fea264697066735822122024857675a6d756faed883f98f1df43b106d33c546bb27d53e2bf1d859de7723764736f6c634300080e00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6d696e742e636f6f6c6d616e73756e6976657273652e636f6d2f6170692f6d657461646174612f0000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102db5760003560e01c806370a082311161018457806395d89b41116100d6578063ba41b0c61161008a578063d314deda11610064578063d314deda1461080c578063e985e9c514610822578063f2fde38b1461087857600080fd5b8063ba41b0c6146107d9578063ba7383a8146102e0578063c87b56dd146107ec57600080fd5b8063a22cb465116100bb578063a22cb46514610784578063b88d4fde146107a4578063b99bace8146107c457600080fd5b806395d89b4114610759578063a035b1fe1461076e57600080fd5b80637de0aeae116101385780638d004617116101125780638d004617146106e15780638da5cb5b1461070e57806391b7f5ed1461073957600080fd5b80637de0aeae146106755780637fc278031461069557806382f73533146106b457600080fd5b806371c5ecb11161016957806371c5ecb11461061f5780637b32fa2e1461063f5780637c382d0b1461065557600080fd5b806370a08231146105ea578063715018a61461060a57600080fd5b806323b872dd1161023d57806342842e0e116101f15780636352211e116101cb5780636352211e1461058a57806369ba1a75146105aa5780636ba4c138146105ca57600080fd5b806342842e0e1461053757806351cff8d91461055757806355f804b31461056a57600080fd5b80632c4b2334116102225780632c4b2334146104d75780632fbba115146104f757806340e3c2a31461051757600080fd5b806323b872dd1461046b5780632a55205a1461048b57600080fd5b8063081812fc116102945780631245e347116102795780631245e3471461040257806318160ddd1461042f578063200d2ed21461044457600080fd5b8063081812fc1461039d578063095ea7b3146103e257600080fd5b806304634d8d116102c557806304634d8d14610335578063047fc9aa1461035757806306fdde031461037b57600080fd5b8062923f9e146102e057806301ffc9a714610315575b600080fd5b3480156102ec57600080fd5b506103006102fb36600461364e565b610898565b60405190151581526020015b60405180910390f35b34801561032157600080fd5b50610300610330366004613695565b6108c6565b34801561034157600080fd5b506103556103503660046136d4565b6108d1565b005b34801561036357600080fd5b5061036d600d5481565b60405190815260200161030c565b34801561038757600080fd5b5061039061094b565b60405161030c9190613794565b3480156103a957600080fd5b506103bd6103b836600461364e565b6109dd565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030c565b3480156103ee57600080fd5b506103556103fd3660046137a7565b610a9d565b34801561040e57600080fd5b506016546103bd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561043b57600080fd5b5061036d610bf5565b34801561045057600080fd5b50600a5461045e9060ff1681565b60405161030c9190613802565b34801561047757600080fd5b50610355610486366004613843565b610c19565b34801561049757600080fd5b506104ab6104a6366004613884565b610ca0565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161030c565b3480156104e357600080fd5b506103556104f23660046138a6565b610d99565b34801561050357600080fd5b5061035561051236600461364e565b610e7a565b34801561052357600080fd5b506103006105323660046138a6565b61104b565b34801561054357600080fd5b50610355610552366004613843565b61112f565b6103556105653660046138a6565b61114a565b34801561057657600080fd5b50610355610585366004613986565b6112b6565b34801561059657600080fd5b506103bd6105a536600461364e565b611360565b3480156105b657600080fd5b506103556105c536600461364e565b6113f8565b3480156105d657600080fd5b506103556105e5366004613a14565b611557565b3480156105f657600080fd5b5061036d6106053660046138a6565b611854565b34801561061657600080fd5b50610355611908565b34801561062b57600080fd5b5061036d61063a36600461364e565b61197b565b34801561064b57600080fd5b5061036d600e5481565b34801561066157600080fd5b50610355610670366004613884565b611992565b34801561068157600080fd5b5061036d61069036600461364e565b611ac3565b3480156106a157600080fd5b50600a5461030090610100900460ff1681565b3480156106c057600080fd5b506106d46106cf3660046138a6565b611ad3565b60405161030c9190613a56565b3480156106ed57600080fd5b50601a546103bd9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561071a57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103bd565b34801561074557600080fd5b5061035561075436600461364e565b611dc8565b34801561076557600080fd5b50610390611e34565b34801561077a57600080fd5b5061036d60105481565b34801561079057600080fd5b5061035561079f366004613a9a565b611e43565b3480156107b057600080fd5b506103556107bf366004613acd565b611e4e565b3480156107d057600080fd5b50610355611edc565b6103556107e7366004613b4d565b611f7d565b3480156107f857600080fd5b5061039061080736600461364e565b6124d9565b34801561081857600080fd5b5061036d600f5481565b34801561082e57600080fd5b5061030061083d366004613b99565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561088457600080fd5b506103556108933660046138a6565b6125cf565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b60006108c0826126cb565b60085473ffffffffffffffffffffffffffffffffffffffff16331461093d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b610947828261276d565b5050565b60606002805461095a90613bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461098690613bc7565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610934565b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610aa882611360565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610934565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b745750610b74813361083d565b610be65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610934565b610bf083836128b2565b505050565b6000600e54600f54610c079190613c49565b600b54610c149190613c60565b905090565b610c233382612952565b610c955760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610934565b610bf0838383612aa8565b600082815260016020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610d5b57506040805180820190915260005473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610d7f906bffffffffffffffffffffffff1687613c78565b610d899190613ce4565b91519350909150505b9250929050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b601680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff61d1153d29048c2237241f477f5e22a9ec268b07657816f076903faf9274ffd906020015b60405180910390a150565b600260095403610ecc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b600260095560165473ffffffffffffffffffffffffffffffffffffffff16610f365760405162461bcd60e51b815260206004820152601c60248201527f4e6f207465616d2077616c6c6574206164647265737320666f756e64000000006044820152606401610934565b60165473ffffffffffffffffffffffffffffffffffffffff163314610f9d5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b600d5481600f54610fae9190613c60565b10610ffb5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c65000000000000000000006044820152606401610934565b600f8054908290600061100e8385613c60565b90915550600190505b828111611041576110313361102c8385613c60565b612cdb565b61103a81613cf8565b9050611017565b5050600160095550565b60006001600a5460ff166004811115611066576110666137d3565b03611097575073ffffffffffffffffffffffffffffffffffffffff1660009081526017602052604090205460ff1690565b6002600a5460ff1660048111156110b0576110b06137d3565b14806110d257506003600a5460ff1660048111156110d0576110d06137d3565b145b15611103575073ffffffffffffffffffffffffffffffffffffffff1660009081526018602052604090205460ff1690565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526019602052604090205460ff1690565b610bf083838360405180602001604052806000815250611e4e565b60026009540361119c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b600260095560085473ffffffffffffffffffffffffffffffffffffffff1633146112085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff811661126b5760405162461bcd60e51b815260206004820152601f60248201527f576974686472617720616464726573732063616e6e6f74206265207a65726f006044820152606401610934565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f193505050501580156112ad573d6000803e3d6000fd5b50506001600955565b60085473ffffffffffffffffffffffffffffffffffffffff16331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b805161133090600c9060208401906135b5565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610e6f9190613794565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610934565b60085473ffffffffffffffffffffffffffffffffffffffff16331461145f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b60048111156114d65760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f64203400000000000000000000000000000000000000000000000000000000006064820152608401610934565b8060048111156114e8576114e86137d3565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115611522576115226137d3565b02179055506040518181527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a67890602001610e6f565b6002600954036115a95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b60026009553233146116225760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610934565b600a54610100900460ff166116795760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f73656400000000000000000000000000000000006044820152606401610934565b600b80548291829160009061168f908490613c60565b90915550600090505b818110156118495760008484838181106116b4576116b4613d30565b9050602002013590506116eb8160009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16151590565b156117385760405162461bcd60e51b815260206004820152601560248201527f546f6b656e20616c726561647920636c61696d656400000000000000000000006044820152606401610934565b601a546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101839052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156117a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117cb9190613d5f565b73ffffffffffffffffffffffffffffffffffffffff161461182e5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b6118383382612cdb565b5061184281613cf8565b9050611698565b505060016009555050565b600073ffffffffffffffffffffffffffffffffffffffff82166118df5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610934565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b60085473ffffffffffffffffffffffffffffffffffffffff16331461196f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b6119796000612e69565b565b601b816005811061198b57600080fd5b0154905081565b60085473ffffffffffffffffffffffffffffffffffffffff1633146119f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b6004811115611a705760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f64203400000000000000000000000000000000000000000000000000000000006064820152608401610934565b81601b8260058110611a8457611a84613d30565b015560408051828152602081018490527fa7a8372e3e36c75896eb420e70b6ee2814e6c5a740914f72dc3e54be6a06d178910160405180910390a15050565b6011816005811061198b57600080fd5b601a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526060926000929116906370a0823190602401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190613d7c565b90506000805b82811015611c6357601a546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018490526000921690632f745c5990604401602060405180830381865afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c169190613d7c565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16611c505782611c4c81613cf8565b9350505b5080611c5b81613cf8565b915050611b72565b506000808267ffffffffffffffff811115611c8057611c806138c3565b604051908082528060200260200182016040528015611ca9578160200160208202803683370190505b50905060005b84811015611dbe57601a546040517f2f745c5900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152602482018490526000921690632f745c5990604401602060405180830381865afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190613d7c565b60008181526004602052604090205490915073ffffffffffffffffffffffffffffffffffffffff16611dab5780838581518110611d9257611d92613d30565b602090810291909101015283611da781613cf8565b9450505b5080611db681613cf8565b915050611caf565b5095945050505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611e2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b601055565b60606003805461095a90613bc7565b610947338383612ee0565b611e583383612952565b611eca5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610934565b611ed684848484612ff3565b50505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611f435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b600260095403611fcf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610934565b60026009553233146120485760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610934565b6000600a5460ff166004811115612061576120616137d3565b036120ae5760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f73656400000000000000000000000000000000006044820152606401610934565b600d5483600f546120bf9190613c60565b1061210c5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c65000000000000000000006044820152606401610934565b6000831180156121475750600a5460119060ff166004811115612131576121316137d3565b6005811061214157612141613d30565b01548311155b6121b95760405162461bcd60e51b815260206004820152602260248201527f5175616e7469747920636f6e73747261696e7473206e6f74207361746973666960448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610934565b6001600a5460ff1660048111156121d2576121d26137d3565b1461223357826010546121e59190613c78565b34146122335760405162461bcd60e51b815260206004820152601160248201527f5072696365206e6f74206d6174636865640000000000000000000000000000006044820152606401610934565b6004600a5460ff16600481111561224c5761224c6137d3565b1461225b5761225b828261307c565b6001600a5460ff166004811115612274576122746137d3565b03612316573360009081526017602052604090205460ff16156122d95760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561248c565b6002600a5460ff16600481111561232f5761232f6137d3565b148061235157506003600a5460ff16600481111561234f5761234f6137d3565b145b156123f3573360009081526018602052604090205460ff16156123b65760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260186020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561248c565b3360009081526019602052604090205460ff16156124535760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e7465640000000000000000000000000000000000006044820152606401610934565b33600090815260196020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b600f8054908490600061249f8385613c60565b90915550600190505b8481116124cd576124bd3361102c8385613c60565b6124c681613cf8565b90506124a8565b50506001600955505050565b60008181526004602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166125735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610934565b600061257d613177565b9050600081511161259d57604051806020016040528060008152506125c8565b806125a784613186565b6040516020016125b8929190613d95565b6040516020818303038152906040525b9392505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146126365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff81166126bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610934565b6126c881612e69565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061275e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c057506108c0826132bb565b6127106bffffffffffffffffffffffff821611156127f35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610934565b73ffffffffffffffffffffffffffffffffffffffff82166128565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610934565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600055565b600081815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061290c82611360565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166129e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610934565b60006129f483611360565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a6357508373ffffffffffffffffffffffffffffffffffffffff16612a4b846109dd565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa0575073ffffffffffffffffffffffffffffffffffffffff80821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612ac882611360565b73ffffffffffffffffffffffffffffffffffffffff1614612b515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610934565b73ffffffffffffffffffffffffffffffffffffffff8216612bd95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610934565b612be46000826128b2565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600560205260408120805460019290612c1a908490613c49565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612c55908490613c60565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216612d3e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610934565b60008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612db05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612de6908490613c60565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610934565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526007602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612ffe848484612aa8565b61300a84848484613352565b611ed65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610934565b61312b82828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54601b925060ff16905060048111156130cd576130cd6137d3565b600581106130dd576130dd613d30565b01546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526034016040516020818303038152906040528051906020012061352b565b6109475760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610934565b6060600c805461095a90613bc7565b6060816000036131c957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156131f357806131dd81613cf8565b91506131ec9050600a83613ce4565b91506131cd565b60008167ffffffffffffffff81111561320e5761320e6138c3565b6040519080825280601f01601f191660200182016040528015613238576020820181803683370190505b5090505b8415612aa05761324d600183613c49565b915061325a600a86613dc4565b613265906030613c60565b60f81b81838151811061327a5761327a613d30565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506132b4600a86613ce4565b945061323c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c0565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613520576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906133c9903390899088908890600401613dd8565b6020604051808303816000875af1925050508015613422575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261341f91810190613e21565b60015b6134d5573d808015613450576040519150601f19603f3d011682016040523d82523d6000602084013e613455565b606091505b5080516000036134cd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610934565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612aa0565b506001949350505050565b6000826135388584613541565b14949350505050565b600081815b84518110156135ad57600085828151811061356357613563613d30565b60200260200101519050808311613589576000838152602082905260409020925061359a565b600081815260208490526040902092505b50806135a581613cf8565b915050613546565b509392505050565b8280546135c190613bc7565b90600052602060002090601f0160209004810192826135e35760008555613629565b82601f106135fc57805160ff1916838001178555613629565b82800160010185558215613629579182015b8281111561362957825182559160200191906001019061360e565b50613635929150613639565b5090565b5b80821115613635576000815560010161363a565b60006020828403121561366057600080fd5b5035919050565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146126c857600080fd5b6000602082840312156136a757600080fd5b81356125c881613667565b73ffffffffffffffffffffffffffffffffffffffff811681146126c857600080fd5b600080604083850312156136e757600080fd5b82356136f2816136b2565b915060208301356bffffffffffffffffffffffff8116811461371357600080fd5b809150509250929050565b60005b83811015613739578181015183820152602001613721565b83811115611ed65750506000910152565b6000815180845261376281602086016020860161371e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006125c8602083018461374a565b600080604083850312156137ba57600080fd5b82356137c5816136b2565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b602081016005831061383d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60008060006060848603121561385857600080fd5b8335613863816136b2565b92506020840135613873816136b2565b929592945050506040919091013590565b6000806040838503121561389757600080fd5b50508035926020909101359150565b6000602082840312156138b857600080fd5b81356125c8816136b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561390d5761390d6138c3565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613953576139536138c3565b8160405280935085815286868601111561396c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561399857600080fd5b813567ffffffffffffffff8111156139af57600080fd5b8201601f810184136139c057600080fd5b612aa0848235602084016138f2565b60008083601f8401126139e157600080fd5b50813567ffffffffffffffff8111156139f957600080fd5b6020830191508360208260051b8501011115610d9257600080fd5b60008060208385031215613a2757600080fd5b823567ffffffffffffffff811115613a3e57600080fd5b613a4a858286016139cf565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015613a8e57835183529284019291840191600101613a72565b50909695505050505050565b60008060408385031215613aad57600080fd5b8235613ab8816136b2565b91506020830135801515811461371357600080fd5b60008060008060808587031215613ae357600080fd5b8435613aee816136b2565b93506020850135613afe816136b2565b925060408501359150606085013567ffffffffffffffff811115613b2157600080fd5b8501601f81018713613b3257600080fd5b613b41878235602084016138f2565b91505092959194509250565b600080600060408486031215613b6257600080fd5b83359250602084013567ffffffffffffffff811115613b8057600080fd5b613b8c868287016139cf565b9497909650939450505050565b60008060408385031215613bac57600080fd5b8235613bb7816136b2565b91506020830135613713816136b2565b600181811c90821680613bdb57607f821691505b602082108103613c14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613c5b57613c5b613c1a565b500390565b60008219821115613c7357613c73613c1a565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb057613cb0613c1a565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613cf357613cf3613cb5565b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d2957613d29613c1a565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215613d7157600080fd5b81516125c8816136b2565b600060208284031215613d8e57600080fd5b5051919050565b60008351613da781846020880161371e565b835190830190613dbb81836020880161371e565b01949350505050565b600082613dd357613dd3613cb5565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e17608083018461374a565b9695505050505050565b600060208284031215613e3357600080fd5b81516125c88161366756fea264697066735822122024857675a6d756faed883f98f1df43b106d33c546bb27d53e2bf1d859de7723764736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6d696e742e636f6f6c6d616e73756e6976657273652e636f6d2f6170692f6d657461646174612f0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _URI (string): https://mint.coolmansuniverse.com/api/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [2] : 68747470733a2f2f6d696e742e636f6f6c6d616e73756e6976657273652e636f
Arg [3] : 6d2f6170692f6d657461646174612f0000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.