ERC-721
Overview
Max Total Supply
153 RZ
Holders
20
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RegensZero
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "contracts/interfaces/IDNAVault.sol"; contract RegensZero is ERC721Enumerable, Ownable, ReentrancyGuard { uint256 constant MAX_INT_TYPE = type(uint256).max; uint256 constant UNLOCKING_PERIOD = 7 days; uint256 constant TRANSFER_TIMEOUT = 300; address public genesisDNA; uint256 public genesisSupply; uint256 private postGenesisSupply = 10000; mapping(uint256 => uint256) public lastTraitModification; mapping(uint256 => uint256) private tokenTimelock; mapping(address => bool) public DNAs; mapping(uint256 => address) private controller; mapping(uint256 => address) private signer; mapping(uint256 => uint256) public ownerSince; mapping(uint256 => uint256) public holderSince; mapping(uint256 => address) public tokenIdDNA; event controllerChanged( uint256 indexed tokenId, address indexed oldController, address indexed newController ); event signerChanged( uint256 indexed tokenId, address indexed oldSigner, address indexed newSigner ); event tokenLockedUntil(uint256 indexed tokenId, uint256 indexed timestamp); event DNAAdded(address indexed _DNA); event DNARemoved(address indexed _DNA); constructor() ERC721("RegensZero", "RZ") {} function getController(uint256 tokenId) public view returns (address) { return controller[tokenId]; } function getPostGenesisSupply() public view returns (uint256) { return postGenesisSupply - 10000; } function getSigner(uint256 tokenId) public view returns (address) { return signer[tokenId]; } function getTokenTimelock(uint256 tokenId) public view returns (uint256) { return tokenTimelock[tokenId]; } function setNewDNA(address _dna) public onlyOwner { require(!DNAs[_dna], "RegensZero: Address is already a DNA"); DNAs[_dna] = true; emit DNAAdded(_dna); } function removeDNA(address _dna) public onlyOwner { require(_dna != genesisDNA, "RegensZero: Cannot remove genesisDNA"); DNAs[_dna] = false; emit DNARemoved(_dna); } function setController(uint256 tokenId, address _controller) public { require( ownerOf(tokenId) == _msgSender() || controller[tokenId] == _msgSender(), "RegensZero: Only token owner or controller can set token controller." ); address oldController = controller[tokenId]; controller[tokenId] = _controller; emit controllerChanged(tokenId, oldController, _controller); } function setSigner(uint256 tokenId, address _signer) public { require( ownerOf(tokenId) == _msgSender() || controller[tokenId] == _msgSender(), "RegensZero: Only token owner or controller can set token signer." ); address oldSigner = controller[tokenId]; signer[tokenId] = _signer; emit signerChanged(tokenId, oldSigner, _signer); } function setGenesisDNA(address _genesisDNA) public onlyOwner { require( genesisDNA == address(0), "RegensZero: Cannot change genesisDNA" ); genesisDNA = _genesisDNA; DNAs[genesisDNA] = true; emit DNAAdded(_genesisDNA); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override { super._beforeTokenTransfer(from, to, tokenId); require( lastTraitModification[tokenId] + TRANSFER_TIMEOUT < block.timestamp, "RegensZero: This nft is still on transfer timeout due to a modification on the DNA contract." ); ownerSince[tokenId] = block.timestamp; } function changeLastTraitModification(uint256 tokenId) public { require( tokenIdDNA[tokenId] == _msgSender(), "RegensZero: Only the appropriate DNA for tokenId can call this function." ); lastTraitModification[tokenId] = block.timestamp; } function lockToken(uint256 tokenId) public { require( tokenTimelock[tokenId] < MAX_INT_TYPE, "RegensZero: Token is already locked." ); require( ownerOf(tokenId) == _msgSender() || getController(tokenId) == _msgSender(), "RegensZero: Only token owner and controller can lock the token." ); tokenTimelock[tokenId] = MAX_INT_TYPE; emit tokenLockedUntil(tokenId, MAX_INT_TYPE); } function unlockToken(uint256 tokenId) public { require( ownerOf(tokenId) == _msgSender() || getController(tokenId) == _msgSender(), "RegensZero: Only token owner and controller can unlock the token." ); require( tokenTimelock[tokenId] == MAX_INT_TYPE, "RegensZero: Cannot unlock a token that is not locked." ); uint256 lockedUntil = block.timestamp + UNLOCKING_PERIOD; tokenTimelock[tokenId] = lockedUntil; emit tokenLockedUntil(tokenId, lockedUntil); } function genesisMint(uint256 amount, address _address) public nonReentrant { require( _msgSender() == genesisDNA, "RegensZero: Caller must be Genesis DNA." ); genesisSupply += amount; _mint(_address, _msgSender(), genesisSupply, amount); } function postGenesisMint(uint256 amount, address _address) public nonReentrant { require(DNAs[_msgSender()], "RegensZero: Caller must be DNA."); postGenesisSupply += amount; _mint(_address, _msgSender(), postGenesisSupply, amount); } function _mint( address _address, address _DNA, uint256 supply, uint256 amount ) internal { uint256 i; for (i = supply - amount + 1; i <= supply; i++) { holderSince[i] = block.timestamp; ownerSince[i] = block.timestamp; tokenIdDNA[i] = _DNA; _safeMint(_address, i); } } function transferFrom( address from, address to, uint256 tokenId ) public override(ERC721) { controller[tokenId] = address(0); signer[tokenId] = address(0); holderSince[tokenId] = block.timestamp; super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override(ERC721) { controller[tokenId] = address(0); signer[tokenId] = address(0); holderSince[tokenId] = block.timestamp; super.safeTransferFrom(from, to, tokenId, _data); } function transferHoldership( address from, address to, uint256 tokenId ) public { require( _msgSender() == ownerOf(tokenId), "RegensZero: Only token owner can transfer holdership" ); super.safeTransferFrom(from, to, tokenId, ""); } function tokenURI(uint256 tokenId) public view override returns (string memory uri) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token." ); return IDNAVault(tokenIdDNA[tokenId]).tokenURI(tokenId); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view returns (address, uint256) { require( _exists(_tokenId), "RegensZero: RoyaltieInfo query for nonexistent token." ); return IDNAVault(tokenIdDNA[_tokenId]).royaltyInfo(_tokenId, _salePrice); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/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 (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 pragma solidity ^0.8.2; struct Trait { uint256 layer1; uint256 traitId; } interface IDNAVault { function tokenURI(uint256) external view returns (string memory); function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address, uint256); }
// 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.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_DNA","type":"address"}],"name":"DNAAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_DNA","type":"address"}],"name":"DNARemoved","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"oldController","type":"address"},{"indexed":true,"internalType":"address","name":"newController","type":"address"}],"name":"controllerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"oldSigner","type":"address"},{"indexed":true,"internalType":"address","name":"newSigner","type":"address"}],"name":"signerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"tokenLockedUntil","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DNAs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"changeLastTraitModification","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisDNA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"genesisMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPostGenesisSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenTimelock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"holderSince","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTraitModification","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerSince","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"postGenesisMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dna","type":"address"}],"name":"removeDNA","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisDNA","type":"address"}],"name":"setGenesisDNA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dna","type":"address"}],"name":"setNewDNA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdDNA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"uri","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferHoldership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlockToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052612710600e553480156200001757600080fd5b50604080518082018252600a815269526567656e735a65726f60b01b602080830191825283518085019094526002845261292d60f11b9084015281519192916200006491600091620000f8565b5080516200007a906001906020840190620000f8565b5050506200009762000091620000a260201b60201c565b620000a6565b6001600b55620001db565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000106906200019e565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600281046001821680620001b357607f821691505b60208210811415620001d557634e487b7160e01b600052602260045260246000fd5b50919050565b612d3280620001eb6000396000f3fe608060405234801561001057600080fd5b50600436106102de5760003560e01c8063778413db11610186578063a68f7cfa116100e3578063d6fef9d611610097578063ecc03e5411610071578063ecc03e5414610676578063ed04192114610696578063f2fde38b146106bf576102de565b8063d6fef9d614610607578063dd2e0ac014610627578063e985e9c51461063a576102de565b8063c7c96a48116100c8578063c7c96a48146105ce578063c87b56dd146105e1578063d618e439146105f4576102de565b8063a68f7cfa146105a8578063b88d4fde146105bb576102de565b80638da5cb5b1161013a57806395d89b411161011f57806395d89b411461056d578063989ffdcc14610575578063a22cb46514610595576102de565b80638da5cb5b1461054957806390b751be1461055a576102de565b8063819e74291161016b578063819e74291461050b57806385267907146105135780638683115c14610526576102de565b8063778413db146104e557806380f20363146104f8576102de565b80632f745c591161023f5780634f6ccce7116101f357806370a08231116101cd57806370a08231146104aa578063715018a6146104bd57806374e07514146104c5576102de565b80634f6ccce71461045b57806358edaa9c1461046e5780636352211e14610497576102de565b80633ffefe4e116102245780633ffefe4e1461041657806342842e0e1461043f5780634bbf179b14610452576102de565b80632f745c59146103f05780633e5779ee14610403576102de565b806318160ddd1161029657806323b872dd1161027b57806323b872dd1461039857806327de1e2e146103ab5780632a55205a146103be576102de565b806318160ddd146103735780631c6b44b514610385576102de565b806306fdde03116102c757806306fdde0314610320578063081812fc14610335578063095ea7b314610360576102de565b8063019b5b3f146102e357806301ffc9a7146102f8575b600080fd5b6102f66102f1366004612adb565b6106d2565b005b61030b610306366004612a18565b6107bd565b60405190151581526020015b60405180910390f35b610328610801565b6040516103179190612b88565b610348610343366004612ac3565b610893565b6040516001600160a01b039091168152602001610317565b6102f661036e3660046129c0565b6108ba565b6008545b604051908152602001610317565b6102f661039336600461284d565b6109ec565b6102f66103a63660046128a8565b610aa7565b6102f66103b936600461284d565b610aec565b6103d16103cc366004612aff565b610bce565b604080516001600160a01b039093168352602083019190915201610317565b6103776103fe3660046129c0565b610d0d565b6102f6610411366004612adb565b610db5565b610348610424366004612ac3565b6000908152601360205260409020546001600160a01b031690565b6102f661044d3660046128a8565b610ee1565b610377600d5481565b610377610469366004612ac3565b610efc565b61034861047c366004612ac3565b6000908152601260205260409020546001600160a01b031690565b6103486104a5366004612ac3565b610fae565b6103776104b836600461284d565b611013565b6102f66110ad565b6103776104d3366004612ac3565b60156020526000908152604090205481565b6102f66104f3366004612ac3565b6110c1565b6102f6610506366004612ac3565b611186565b6103776112f4565b6102f6610521366004612adb565b61130b565b61030b61053436600461284d565b60116020526000908152604090205460ff1681565b600a546001600160a01b0316610348565b6102f66105683660046128a8565b61141f565b6103286114c9565b610377610583366004612ac3565b600f6020526000908152604090205481565b6102f66105a336600461298f565b6114d8565b600c54610348906001600160a01b031681565b6102f66105c93660046128e8565b6114e7565b6102f66105dc36600461284d565b611533565b6103286105ef366004612ac3565b611606565b6102f6610602366004612adb565b611739565b610377610615366004612ac3565b60009081526010602052604090205490565b6102f6610635366004612ac3565b611840565b61030b610648366004612870565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610377610684366004612ac3565b60146020526000908152604090205481565b6103486106a4366004612ac3565b6016602052600090815260409020546001600160a01b031681565b6102f66106cd36600461284d565b6119e2565b6002600b54141561072a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b553360009081526011602052604090205460ff1661078e5760405162461bcd60e51b815260206004820152601f60248201527f526567656e735a65726f3a2043616c6c6572206d75737420626520444e412e006044820152606401610721565b81600e60008282546107a09190612bf4565b909155506107b490508133600e5485611a72565b50506001600b55565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107fb57506107fb82611af4565b92915050565b60606000805461081090612c4f565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612c4f565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b600061089e82611b8f565b506000908152600460205260409020546001600160a01b031690565b60006108c582610fae565b9050806001600160a01b0316836001600160a01b0316141561094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610721565b336001600160a01b038216148061096b575061096b8133610648565b6109dd5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610721565b6109e78383611bf3565b505050565b6109f4611c61565b600c546001600160a01b0382811691161415610a5e5760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a2043616e6e6f742072656d6f76652067656e65736960448201526373444e4160e01b6064820152608401610721565b6001600160a01b038116600081815260116020526040808220805460ff19169055517f7c67ec70e1bea8ae970dac54eff2916ce0143a449f93ccd02082bd0f2df4bab79190a250565b600081815260126020908152604080832080546001600160a01b03199081169091556013835281842080549091169055601590915290204290556109e7838383611cbb565b610af4611c61565b6001600160a01b03811660009081526011602052604090205460ff1615610b825760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a204164647265737320697320616c7265616479206160448201527f20444e41000000000000000000000000000000000000000000000000000000006064820152608401610721565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f7126aa39b3077e911f091fa539e930f7c480f8198c514f49b7a576ad9c37912b9190a250565b60008281526002602052604081205481906001600160a01b0316610c5a5760405162461bcd60e51b815260206004820152603560248201527f526567656e735a65726f3a20526f79616c746965496e666f207175657279206660448201527f6f72206e6f6e6578697374656e7420746f6b656e2e00000000000000000000006064820152608401610721565b600084815260166020526040908190205490517f2a55205a00000000000000000000000000000000000000000000000000000000815260048101869052602481018590526001600160a01b0390911690632a55205a90604401604080518083038186803b158015610cca57600080fd5b505afa158015610cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0291906129eb565b915091509250929050565b6000610d1883611013565b8210610d8c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610721565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610dbf83610fae565b6001600160a01b03161480610dea57506000828152601260205260409020546001600160a01b031633145b610e835760405162461bcd60e51b8152602060048201526044602482018190527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e6572206f7220908201527f636f6e74726f6c6c65722063616e2073657420746f6b656e20636f6e74726f6c60648201527f6c65722e00000000000000000000000000000000000000000000000000000000608482015260a401610721565b60008281526012602052604080822080546001600160a01b031981166001600160a01b038681169182179093559251911692839186917ffe86a0088800581f90965aa88e6e004c451f46decd02ab656de91eb137532c9091a4505050565b6109e7838383604051806020016040528060008152506114e7565b6000610f0760085490565b8210610f7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610721565b60088281548110610f9c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610721565b60006001600160a01b0382166110915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610721565b506001600160a01b031660009081526003602052604090205490565b6110b5611c61565b6110bf6000611d42565b565b6000818152601660205260409020546001600160a01b031633146111735760405162461bcd60e51b815260206004820152604860248201527f526567656e735a65726f3a204f6e6c792074686520617070726f70726961746560448201527f20444e4120666f7220746f6b656e49642063616e2063616c6c2074686973206660648201527f756e6374696f6e2e000000000000000000000000000000000000000000000000608482015260a401610721565b6000908152600f60205260409020429055565b6000818152601060205260409020546000191161120a5760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a20546f6b656e20697320616c7265616479206c6f6360448201527f6b65642e000000000000000000000000000000000000000000000000000000006064820152608401610721565b3361121482610fae565b6001600160a01b0316148061123f57506000818152601260205260409020546001600160a01b031633145b6112b15760405162461bcd60e51b815260206004820152603f60248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e657220616e6460448201527f20636f6e74726f6c6c65722063616e206c6f636b2074686520746f6b656e2e006064820152608401610721565b600081815260106020526040808220600019908190559051909183917f19ff49867e8da16966b3ad8baa382abf8654d7168261333c09c57635c86e99209190a350565b6000612710600e546113069190612c0c565b905090565b3361131583610fae565b6001600160a01b0316148061134057506000828152601260205260409020546001600160a01b031633145b6113b4576040805162461bcd60e51b81526020600482015260248101919091527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e6572206f722060448201527f636f6e74726f6c6c65722063616e2073657420746f6b656e207369676e65722e6064820152608401610721565b600082815260126020908152604080832054601390925280832080546001600160a01b0319166001600160a01b0386811691821790925591519216929091839186917fe70037693e5854de9571ddf414fd693c358381c4d4488bd4776ca7e11daed15c9190a4505050565b61142881610fae565b6001600160a01b0316336001600160a01b0316146114ae5760405162461bcd60e51b815260206004820152603460248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e65722063616e60448201527f207472616e7366657220686f6c646572736869700000000000000000000000006064820152608401610721565b6109e783838360405180602001604052806000815250611d94565b60606001805461081090612c4f565b6114e3338383611e1c565b5050565b600082815260126020908152604080832080546001600160a01b031990811690915560138352818420805490911690556015909152902042905561152d84848484611d94565b50505050565b61153b611c61565b600c546001600160a01b0316156115a05760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a2043616e6e6f74206368616e67652067656e65736960448201526373444e4160e01b6064820152608401610721565b600c80546001600160a01b0319166001600160a01b038381169182179283905591909116600090815260116020526040808220805460ff19166001179055517f7126aa39b3077e911f091fa539e930f7c480f8198c514f49b7a576ad9c37912b9190a250565b6000818152600260205260409020546060906001600160a01b03166116935760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e000000000000000000000000000000006064820152608401610721565b600082815260166020526040908190205490517fc87b56dd000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b1580156116fd57600080fd5b505afa158015611711573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107fb9190810190612a50565b6002600b54141561178c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610721565b6002600b55600c546001600160a01b0316336001600160a01b03161461181a5760405162461bcd60e51b815260206004820152602760248201527f526567656e735a65726f3a2043616c6c6572206d7573742062652047656e657360448201527f697320444e412e000000000000000000000000000000000000000000000000006064820152608401610721565b81600d600082825461182c9190612bf4565b909155506107b490508133600d5485611a72565b3361184a82610fae565b6001600160a01b0316148061187557506000818152601260205260409020546001600160a01b031633145b61190d5760405162461bcd60e51b815260206004820152604160248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e657220616e6460448201527f20636f6e74726f6c6c65722063616e20756e6c6f636b2074686520746f6b656e60648201527f2e00000000000000000000000000000000000000000000000000000000000000608482015260a401610721565b600081815260106020526040902054600019146119925760405162461bcd60e51b815260206004820152603560248201527f526567656e735a65726f3a2043616e6e6f7420756e6c6f636b206120746f6b6560448201527f6e2074686174206973206e6f74206c6f636b65642e00000000000000000000006064820152608401610721565b60006119a162093a8042612bf4565b60008381526010602052604080822083905551919250829184917f19ff49867e8da16966b3ad8baa382abf8654d7168261333c09c57635c86e992091a35050565b6119ea611c61565b6001600160a01b038116611a665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610721565b611a6f81611d42565b50565b6000611a7e8284612c0c565b611a89906001612bf4565b90505b828111611aed576000818152601560209081526040808320429081905560148352818420556016909152902080546001600160a01b0319166001600160a01b038616179055611adb8582611eeb565b80611ae581612c8a565b915050611a8c565b5050505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b5757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fb57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107fb565b6000818152600260205260409020546001600160a01b0316611a6f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610721565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c2882610fae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146110bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610721565b611cc53382611f05565b611d375760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610721565b6109e7838383611f84565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d9e3383611f05565b611e105760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610721565b61152d8484848461215c565b816001600160a01b0316836001600160a01b03161415611e7e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114e38282604051806020016040528060008152506121da565b600080611f1183610fae565b9050806001600160a01b0316846001600160a01b03161480611f5857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f7c5750836001600160a01b0316611f7184610893565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f9782610fae565b6001600160a01b0316146120135760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610721565b6001600160a01b03821661208e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610721565b612099838383612258565b6120a4600082611bf3565b6001600160a01b03831660009081526003602052604081208054600192906120cd908490612c0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906120fb908490612bf4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109e7565b612167848484611f84565b6121738484848461232f565b61152d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b6121e48383612487565b6121f1600084848461232f565b6109e75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b6122638383836125d6565b6000818152600f602052604090205442906122819061012c90612bf4565b1061231a5760405162461bcd60e51b815260206004820152605c60248201527f526567656e735a65726f3a2054686973206e6674206973207374696c6c206f6e60448201527f207472616e736665722074696d656f75742064756520746f2061206d6f64696660648201527f69636174696f6e206f6e2074686520444e4120636f6e74726163742e00000000608482015260a401610721565b60009081526014602052604090204290555050565b60006001600160a01b0384163b1561247c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612373903390899088908890600401612b4c565b602060405180830381600087803b15801561238d57600080fd5b505af19250505080156123bd575060408051601f3d908101601f191682019092526123ba91810190612a34565b60015b612462573d8080156123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b50805161245a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f7c565b506001949350505050565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b61254e60008383612258565b6001600160a01b0382166000908152600360205260408120805460019290612577908490612bf4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114e3565b6001600160a01b0383166126315761262c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612654565b816001600160a01b0316836001600160a01b031614612654576126548382612693565b6001600160a01b0382166126705761266b81612730565b6109e7565b826001600160a01b0316826001600160a01b0316146109e7576109e78282612809565b600060016126a084611013565b6126aa9190612c0c565b6000838152600760205260409020549091508082146126fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061274290600190612c0c565b6000838152600960205260408120546008805493945090928490811061277857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106127a757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127ed57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281483611013565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561285e578081fd5b813561286981612cd1565b9392505050565b60008060408385031215612882578081fd5b823561288d81612cd1565b9150602083013561289d81612cd1565b809150509250929050565b6000806000606084860312156128bc578081fd5b83356128c781612cd1565b925060208401356128d781612cd1565b929592945050506040919091013590565b600080600080608085870312156128fd578081fd5b843561290881612cd1565b9350602085013561291881612cd1565b925060408501359150606085013567ffffffffffffffff81111561293a578182fd5b8501601f8101871361294a578182fd5b803561295d61295882612bcc565b612b9b565b818152886020838501011115612971578384fd5b81602084016020830137908101602001929092525092959194509250565b600080604083850312156129a1578182fd5b82356129ac81612cd1565b91506020830135801515811461289d578182fd5b600080604083850312156129d2578182fd5b82356129dd81612cd1565b946020939093013593505050565b600080604083850312156129fd578182fd5b8251612a0881612cd1565b6020939093015192949293505050565b600060208284031215612a29578081fd5b813561286981612ce6565b600060208284031215612a45578081fd5b815161286981612ce6565b600060208284031215612a61578081fd5b815167ffffffffffffffff811115612a77578182fd5b8201601f81018413612a87578182fd5b8051612a9561295882612bcc565b818152856020838501011115612aa9578384fd5b612aba826020830160208601612c23565b95945050505050565b600060208284031215612ad4578081fd5b5035919050565b60008060408385031215612aed578182fd5b82359150602083013561289d81612cd1565b60008060408385031215612b11578182fd5b50508035926020909101359150565b60008151808452612b38816020860160208601612c23565b601f01601f19169290920160200192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b7e6080830184612b20565b9695505050505050565b6000602082526128696020830184612b20565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bc457612bc4612cbb565b604052919050565b600067ffffffffffffffff821115612be657612be6612cbb565b50601f01601f191660200190565b60008219821115612c0757612c07612ca5565b500190565b600082821015612c1e57612c1e612ca5565b500390565b60005b83811015612c3e578181015183820152602001612c26565b8381111561152d5750506000910152565b600281046001821680612c6357607f821691505b60208210811415612c8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9e57612c9e612ca5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a6f57600080fd5b6001600160e01b031981168114611a6f57600080fdfea264697066735822122066a65f2b75f480014b65f80898cde133c23630b1f6b401ad7f9399d4f9a4a0b264736f6c63430008020033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102de5760003560e01c8063778413db11610186578063a68f7cfa116100e3578063d6fef9d611610097578063ecc03e5411610071578063ecc03e5414610676578063ed04192114610696578063f2fde38b146106bf576102de565b8063d6fef9d614610607578063dd2e0ac014610627578063e985e9c51461063a576102de565b8063c7c96a48116100c8578063c7c96a48146105ce578063c87b56dd146105e1578063d618e439146105f4576102de565b8063a68f7cfa146105a8578063b88d4fde146105bb576102de565b80638da5cb5b1161013a57806395d89b411161011f57806395d89b411461056d578063989ffdcc14610575578063a22cb46514610595576102de565b80638da5cb5b1461054957806390b751be1461055a576102de565b8063819e74291161016b578063819e74291461050b57806385267907146105135780638683115c14610526576102de565b8063778413db146104e557806380f20363146104f8576102de565b80632f745c591161023f5780634f6ccce7116101f357806370a08231116101cd57806370a08231146104aa578063715018a6146104bd57806374e07514146104c5576102de565b80634f6ccce71461045b57806358edaa9c1461046e5780636352211e14610497576102de565b80633ffefe4e116102245780633ffefe4e1461041657806342842e0e1461043f5780634bbf179b14610452576102de565b80632f745c59146103f05780633e5779ee14610403576102de565b806318160ddd1161029657806323b872dd1161027b57806323b872dd1461039857806327de1e2e146103ab5780632a55205a146103be576102de565b806318160ddd146103735780631c6b44b514610385576102de565b806306fdde03116102c757806306fdde0314610320578063081812fc14610335578063095ea7b314610360576102de565b8063019b5b3f146102e357806301ffc9a7146102f8575b600080fd5b6102f66102f1366004612adb565b6106d2565b005b61030b610306366004612a18565b6107bd565b60405190151581526020015b60405180910390f35b610328610801565b6040516103179190612b88565b610348610343366004612ac3565b610893565b6040516001600160a01b039091168152602001610317565b6102f661036e3660046129c0565b6108ba565b6008545b604051908152602001610317565b6102f661039336600461284d565b6109ec565b6102f66103a63660046128a8565b610aa7565b6102f66103b936600461284d565b610aec565b6103d16103cc366004612aff565b610bce565b604080516001600160a01b039093168352602083019190915201610317565b6103776103fe3660046129c0565b610d0d565b6102f6610411366004612adb565b610db5565b610348610424366004612ac3565b6000908152601360205260409020546001600160a01b031690565b6102f661044d3660046128a8565b610ee1565b610377600d5481565b610377610469366004612ac3565b610efc565b61034861047c366004612ac3565b6000908152601260205260409020546001600160a01b031690565b6103486104a5366004612ac3565b610fae565b6103776104b836600461284d565b611013565b6102f66110ad565b6103776104d3366004612ac3565b60156020526000908152604090205481565b6102f66104f3366004612ac3565b6110c1565b6102f6610506366004612ac3565b611186565b6103776112f4565b6102f6610521366004612adb565b61130b565b61030b61053436600461284d565b60116020526000908152604090205460ff1681565b600a546001600160a01b0316610348565b6102f66105683660046128a8565b61141f565b6103286114c9565b610377610583366004612ac3565b600f6020526000908152604090205481565b6102f66105a336600461298f565b6114d8565b600c54610348906001600160a01b031681565b6102f66105c93660046128e8565b6114e7565b6102f66105dc36600461284d565b611533565b6103286105ef366004612ac3565b611606565b6102f6610602366004612adb565b611739565b610377610615366004612ac3565b60009081526010602052604090205490565b6102f6610635366004612ac3565b611840565b61030b610648366004612870565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610377610684366004612ac3565b60146020526000908152604090205481565b6103486106a4366004612ac3565b6016602052600090815260409020546001600160a01b031681565b6102f66106cd36600461284d565b6119e2565b6002600b54141561072a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b553360009081526011602052604090205460ff1661078e5760405162461bcd60e51b815260206004820152601f60248201527f526567656e735a65726f3a2043616c6c6572206d75737420626520444e412e006044820152606401610721565b81600e60008282546107a09190612bf4565b909155506107b490508133600e5485611a72565b50506001600b55565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806107fb57506107fb82611af4565b92915050565b60606000805461081090612c4f565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612c4f565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b600061089e82611b8f565b506000908152600460205260409020546001600160a01b031690565b60006108c582610fae565b9050806001600160a01b0316836001600160a01b0316141561094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610721565b336001600160a01b038216148061096b575061096b8133610648565b6109dd5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610721565b6109e78383611bf3565b505050565b6109f4611c61565b600c546001600160a01b0382811691161415610a5e5760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a2043616e6e6f742072656d6f76652067656e65736960448201526373444e4160e01b6064820152608401610721565b6001600160a01b038116600081815260116020526040808220805460ff19169055517f7c67ec70e1bea8ae970dac54eff2916ce0143a449f93ccd02082bd0f2df4bab79190a250565b600081815260126020908152604080832080546001600160a01b03199081169091556013835281842080549091169055601590915290204290556109e7838383611cbb565b610af4611c61565b6001600160a01b03811660009081526011602052604090205460ff1615610b825760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a204164647265737320697320616c7265616479206160448201527f20444e41000000000000000000000000000000000000000000000000000000006064820152608401610721565b6001600160a01b038116600081815260116020526040808220805460ff19166001179055517f7126aa39b3077e911f091fa539e930f7c480f8198c514f49b7a576ad9c37912b9190a250565b60008281526002602052604081205481906001600160a01b0316610c5a5760405162461bcd60e51b815260206004820152603560248201527f526567656e735a65726f3a20526f79616c746965496e666f207175657279206660448201527f6f72206e6f6e6578697374656e7420746f6b656e2e00000000000000000000006064820152608401610721565b600084815260166020526040908190205490517f2a55205a00000000000000000000000000000000000000000000000000000000815260048101869052602481018590526001600160a01b0390911690632a55205a90604401604080518083038186803b158015610cca57600080fd5b505afa158015610cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0291906129eb565b915091509250929050565b6000610d1883611013565b8210610d8c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610721565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b33610dbf83610fae565b6001600160a01b03161480610dea57506000828152601260205260409020546001600160a01b031633145b610e835760405162461bcd60e51b8152602060048201526044602482018190527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e6572206f7220908201527f636f6e74726f6c6c65722063616e2073657420746f6b656e20636f6e74726f6c60648201527f6c65722e00000000000000000000000000000000000000000000000000000000608482015260a401610721565b60008281526012602052604080822080546001600160a01b031981166001600160a01b038681169182179093559251911692839186917ffe86a0088800581f90965aa88e6e004c451f46decd02ab656de91eb137532c9091a4505050565b6109e7838383604051806020016040528060008152506114e7565b6000610f0760085490565b8210610f7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610721565b60088281548110610f9c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610721565b60006001600160a01b0382166110915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610721565b506001600160a01b031660009081526003602052604090205490565b6110b5611c61565b6110bf6000611d42565b565b6000818152601660205260409020546001600160a01b031633146111735760405162461bcd60e51b815260206004820152604860248201527f526567656e735a65726f3a204f6e6c792074686520617070726f70726961746560448201527f20444e4120666f7220746f6b656e49642063616e2063616c6c2074686973206660648201527f756e6374696f6e2e000000000000000000000000000000000000000000000000608482015260a401610721565b6000908152600f60205260409020429055565b6000818152601060205260409020546000191161120a5760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a20546f6b656e20697320616c7265616479206c6f6360448201527f6b65642e000000000000000000000000000000000000000000000000000000006064820152608401610721565b3361121482610fae565b6001600160a01b0316148061123f57506000818152601260205260409020546001600160a01b031633145b6112b15760405162461bcd60e51b815260206004820152603f60248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e657220616e6460448201527f20636f6e74726f6c6c65722063616e206c6f636b2074686520746f6b656e2e006064820152608401610721565b600081815260106020526040808220600019908190559051909183917f19ff49867e8da16966b3ad8baa382abf8654d7168261333c09c57635c86e99209190a350565b6000612710600e546113069190612c0c565b905090565b3361131583610fae565b6001600160a01b0316148061134057506000828152601260205260409020546001600160a01b031633145b6113b4576040805162461bcd60e51b81526020600482015260248101919091527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e6572206f722060448201527f636f6e74726f6c6c65722063616e2073657420746f6b656e207369676e65722e6064820152608401610721565b600082815260126020908152604080832054601390925280832080546001600160a01b0319166001600160a01b0386811691821790925591519216929091839186917fe70037693e5854de9571ddf414fd693c358381c4d4488bd4776ca7e11daed15c9190a4505050565b61142881610fae565b6001600160a01b0316336001600160a01b0316146114ae5760405162461bcd60e51b815260206004820152603460248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e65722063616e60448201527f207472616e7366657220686f6c646572736869700000000000000000000000006064820152608401610721565b6109e783838360405180602001604052806000815250611d94565b60606001805461081090612c4f565b6114e3338383611e1c565b5050565b600082815260126020908152604080832080546001600160a01b031990811690915560138352818420805490911690556015909152902042905561152d84848484611d94565b50505050565b61153b611c61565b600c546001600160a01b0316156115a05760405162461bcd60e51b8152602060048201526024808201527f526567656e735a65726f3a2043616e6e6f74206368616e67652067656e65736960448201526373444e4160e01b6064820152608401610721565b600c80546001600160a01b0319166001600160a01b038381169182179283905591909116600090815260116020526040808220805460ff19166001179055517f7126aa39b3077e911f091fa539e930f7c480f8198c514f49b7a576ad9c37912b9190a250565b6000818152600260205260409020546060906001600160a01b03166116935760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e000000000000000000000000000000006064820152608401610721565b600082815260166020526040908190205490517fc87b56dd000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b1580156116fd57600080fd5b505afa158015611711573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107fb9190810190612a50565b6002600b54141561178c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610721565b6002600b55600c546001600160a01b0316336001600160a01b03161461181a5760405162461bcd60e51b815260206004820152602760248201527f526567656e735a65726f3a2043616c6c6572206d7573742062652047656e657360448201527f697320444e412e000000000000000000000000000000000000000000000000006064820152608401610721565b81600d600082825461182c9190612bf4565b909155506107b490508133600d5485611a72565b3361184a82610fae565b6001600160a01b0316148061187557506000818152601260205260409020546001600160a01b031633145b61190d5760405162461bcd60e51b815260206004820152604160248201527f526567656e735a65726f3a204f6e6c7920746f6b656e206f776e657220616e6460448201527f20636f6e74726f6c6c65722063616e20756e6c6f636b2074686520746f6b656e60648201527f2e00000000000000000000000000000000000000000000000000000000000000608482015260a401610721565b600081815260106020526040902054600019146119925760405162461bcd60e51b815260206004820152603560248201527f526567656e735a65726f3a2043616e6e6f7420756e6c6f636b206120746f6b6560448201527f6e2074686174206973206e6f74206c6f636b65642e00000000000000000000006064820152608401610721565b60006119a162093a8042612bf4565b60008381526010602052604080822083905551919250829184917f19ff49867e8da16966b3ad8baa382abf8654d7168261333c09c57635c86e992091a35050565b6119ea611c61565b6001600160a01b038116611a665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610721565b611a6f81611d42565b50565b6000611a7e8284612c0c565b611a89906001612bf4565b90505b828111611aed576000818152601560209081526040808320429081905560148352818420556016909152902080546001600160a01b0319166001600160a01b038616179055611adb8582611eeb565b80611ae581612c8a565b915050611a8c565b5050505050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611b5757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fb57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146107fb565b6000818152600260205260409020546001600160a01b0316611a6f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610721565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c2882610fae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546001600160a01b031633146110bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610721565b611cc53382611f05565b611d375760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610721565b6109e7838383611f84565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d9e3383611f05565b611e105760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610721565b61152d8484848461215c565b816001600160a01b0316836001600160a01b03161415611e7e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6114e38282604051806020016040528060008152506121da565b600080611f1183610fae565b9050806001600160a01b0316846001600160a01b03161480611f5857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611f7c5750836001600160a01b0316611f7184610893565b6001600160a01b0316145b949350505050565b826001600160a01b0316611f9782610fae565b6001600160a01b0316146120135760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610721565b6001600160a01b03821661208e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610721565b612099838383612258565b6120a4600082611bf3565b6001600160a01b03831660009081526003602052604081208054600192906120cd908490612c0c565b90915550506001600160a01b03821660009081526003602052604081208054600192906120fb908490612bf4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109e7565b612167848484611f84565b6121738484848461232f565b61152d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b6121e48383612487565b6121f1600084848461232f565b6109e75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b6122638383836125d6565b6000818152600f602052604090205442906122819061012c90612bf4565b1061231a5760405162461bcd60e51b815260206004820152605c60248201527f526567656e735a65726f3a2054686973206e6674206973207374696c6c206f6e60448201527f207472616e736665722074696d656f75742064756520746f2061206d6f64696660648201527f69636174696f6e206f6e2074686520444e4120636f6e74726163742e00000000608482015260a401610721565b60009081526014602052604090204290555050565b60006001600160a01b0384163b1561247c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612373903390899088908890600401612b4c565b602060405180830381600087803b15801561238d57600080fd5b505af19250505080156123bd575060408051601f3d908101601f191682019092526123ba91810190612a34565b60015b612462573d8080156123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b50805161245a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610721565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f7c565b506001949350505050565b6001600160a01b0382166124dd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600260205260409020546001600160a01b0316156125425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b61254e60008383612258565b6001600160a01b0382166000908152600360205260408120805460019290612577908490612bf4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114e3565b6001600160a01b0383166126315761262c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612654565b816001600160a01b0316836001600160a01b031614612654576126548382612693565b6001600160a01b0382166126705761266b81612730565b6109e7565b826001600160a01b0316826001600160a01b0316146109e7576109e78282612809565b600060016126a084611013565b6126aa9190612c0c565b6000838152600760205260409020549091508082146126fd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061274290600190612c0c565b6000838152600960205260408120546008805493945090928490811061277857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106127a757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127ed57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281483611013565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561285e578081fd5b813561286981612cd1565b9392505050565b60008060408385031215612882578081fd5b823561288d81612cd1565b9150602083013561289d81612cd1565b809150509250929050565b6000806000606084860312156128bc578081fd5b83356128c781612cd1565b925060208401356128d781612cd1565b929592945050506040919091013590565b600080600080608085870312156128fd578081fd5b843561290881612cd1565b9350602085013561291881612cd1565b925060408501359150606085013567ffffffffffffffff81111561293a578182fd5b8501601f8101871361294a578182fd5b803561295d61295882612bcc565b612b9b565b818152886020838501011115612971578384fd5b81602084016020830137908101602001929092525092959194509250565b600080604083850312156129a1578182fd5b82356129ac81612cd1565b91506020830135801515811461289d578182fd5b600080604083850312156129d2578182fd5b82356129dd81612cd1565b946020939093013593505050565b600080604083850312156129fd578182fd5b8251612a0881612cd1565b6020939093015192949293505050565b600060208284031215612a29578081fd5b813561286981612ce6565b600060208284031215612a45578081fd5b815161286981612ce6565b600060208284031215612a61578081fd5b815167ffffffffffffffff811115612a77578182fd5b8201601f81018413612a87578182fd5b8051612a9561295882612bcc565b818152856020838501011115612aa9578384fd5b612aba826020830160208601612c23565b95945050505050565b600060208284031215612ad4578081fd5b5035919050565b60008060408385031215612aed578182fd5b82359150602083013561289d81612cd1565b60008060408385031215612b11578182fd5b50508035926020909101359150565b60008151808452612b38816020860160208601612c23565b601f01601f19169290920160200192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612b7e6080830184612b20565b9695505050505050565b6000602082526128696020830184612b20565b604051601f8201601f1916810167ffffffffffffffff81118282101715612bc457612bc4612cbb565b604052919050565b600067ffffffffffffffff821115612be657612be6612cbb565b50601f01601f191660200190565b60008219821115612c0757612c07612ca5565b500190565b600082821015612c1e57612c1e612ca5565b500390565b60005b83811015612c3e578181015183820152602001612c26565b8381111561152d5750506000910152565b600281046001821680612c6357607f821691505b60208210811415612c8457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9e57612c9e612ca5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a6f57600080fd5b6001600160e01b031981168114611a6f57600080fdfea264697066735822122066a65f2b75f480014b65f80898cde133c23630b1f6b401ad7f9399d4f9a4a0b264736f6c63430008020033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.