Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SmurfLegendary
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721BurnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol"; // Local customization import "./ERC721EnumerableUpgradeable.sol"; //For the crystals : import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "./Constants.sol"; import "./ISmurfMint.sol"; contract SmurfLegendary is Initializable, ERC721Upgradeable, ERC721EnumerableUpgradeable, PausableUpgradeable, AccessControlUpgradeable, ERC721BurnableUpgradeable, ERC2981Upgradeable, EIP712Upgradeable, SmurfConstants, ISmurfMint { // Keeping track of given smurfs mapping(uint => uint) public __givenSmurfsForPhase; // Max quantities per phase uint[] public __phaseQuantities; // Defining team addresses address public __approverAddress; address public __withdrawalWallet; // Full price of a smurf defined by the bucket auction uint public __bucketDefinedPrice; // Contract variables string public __contractUri; // The contract URI json link string public __tokenUriBase; // Domain & api root bool public __isCrystalMintingOpen; mapping(uint => bool) public __crystalHasBeenUsed; event CrystalsMinted(address indexed to, uint[] tokenIds, uint phase); bytes32 public __unshuffledProvenanceHash; bytes32 public __provenanceHash; bytes32 public __shuffleSeed; uint public __blockToGetSeedFrom; /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize(address _royaltyAddress, uint96 _royaltyValue, address _approverAddress, address _withdrawalWallet) initializer public { PERCENTAGES_BPS = [8000, 5000, 4000, 3000, 3000, 3000, 2500, 2500, 2500, 2500, 2000, 2000, 2000, 2000, 2000, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500]; __ERC721_init("Legendary Smurfs", "TSS: LGD"); __ERC721Enumerable_init(); __Pausable_init(); __AccessControl_init(); __ERC721Burnable_init(); __EIP712_init("SmurfSociety", "1"); // Grant roles to deployer _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(URI_SETTER_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(MINTER_ROLE, msg.sender); _setDefaultRoyalty(_royaltyAddress, _royaltyValue); __approverAddress = _approverAddress; __withdrawalWallet = _withdrawalWallet; } modifier onlyWhenMintingOpen() { require(__isCrystalMintingOpen, "Smurf: Redeeming crystals is not opened"); _; } function mintCrystalSmurfs(uint[] memory _crystalIds, bytes calldata _signature) public payable onlyWhenMintingOpen whenNotPaused { uint totalPrice = getTotalPrice(_crystalIds); require(msg.value == totalPrice, "Smurf: Incorrect price"); _crystalIds = insertionSort(_crystalIds); checkApprovals(msg.sender, _crystalIds, _signature); for (uint i; i < _crystalIds.length; i++) { require(!__crystalHasBeenUsed[_crystalIds[i]], "Smurf: Crystal has already been used for minting !"); __crystalHasBeenUsed[_crystalIds[i]] = true; _safeSmurfMint(msg.sender, _crystalIds[i], PHASE_CRYSTALS); } emit CrystalsMinted(msg.sender, _crystalIds, PHASE_CRYSTALS); } function mintHackerSmurf(uint _qty) external onlyRole(MINTER_ROLE) whenNotPaused { mintSmurf(_qty, msg.sender, PHASE_HACKER_SMURF); } function mintBucketSmurf(address _to, uint _qty) external onlyRole(RARIBLE_ROLE) whenNotPaused { mintSmurf(_qty, _to, PHASE_BUCKET); } function mintBlueListSmurf(address _to, uint _qty) external onlyRole(MINTER_ROLE) whenNotPaused { mintSmurf(_qty, _to, PHASE_BLUELIST); } function mintFrensSmurf(address _to, uint _qty) external onlyRole(MINTER_ROLE) whenNotPaused { mintSmurf(_qty, _to, PHASE_FRENS); } function mintSmurf(uint _qty, address _to, uint _phaseId) internal whenNotPaused { require(_phaseId + 1 <= MAX_PHASE_ID, "Smurf: Phase ID out of range"); uint startId = _phaseId*PHASE_RANGES + __givenSmurfsForPhase[_phaseId]; require(__givenSmurfsForPhase[_phaseId] + _qty <= __phaseQuantities[_phaseId], "Smurf: Quantity would exceed max supply"); __givenSmurfsForPhase[_phaseId] += _qty; for (uint id=0; id<_qty; id++) { _safeSmurfMint(_to, id+startId, _phaseId); } } function _safeSmurfMint(address _to, uint _tokenId, uint _phaseId) internal { require(_tokenId >= _phaseId*PHASE_RANGES && _tokenId < (_phaseId+1)*PHASE_RANGES, "Smurf: Token out of phase range"); _safeMint(_to, _tokenId); } function checkApprovals(address _user, uint[] memory _crystalIds, bytes memory _signature) public view { bytes32 structHash = keccak256( abi.encode( CRYSTALS_TYPE_HASH, _user, keccak256(abi.encodePacked(_crystalIds)) ) ); bytes32 hash = _hashTypedDataV4(structHash); address recoveredAddress = ECDSAUpgradeable.recover(hash, _signature); require(recoveredAddress == __approverAddress, "Smurf: The signature address does not match the provided address"); } function insertionSort(uint[] memory array) public pure returns (uint[] memory) { uint len = array.length; for (uint i = 1; i < len; i++) { uint value = array[i]; uint j = i; while (j > 0 && array[j - 1] > value) { array[j] = array[j - 1]; j--; } array[j] = value; } return array; } // Setters function setRoyalties(address _royaltyAddress, uint96 _royaltyValue) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(_royaltyAddress != address(0), "Smurf: address zero is not a valid royalty address"); _setDefaultRoyalty(_royaltyAddress, _royaltyValue); } function setPriceFromBucketAuction(uint _price) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(_price > 0, "Smurf: Price cannot be zero"); __bucketDefinedPrice = _price; } function setTokenUriBase(string memory _tokenUriBase) external onlyRole(URI_SETTER_ROLE) whenNotPaused { __tokenUriBase = _tokenUriBase; } function setContractUri(string memory _contractUri) external onlyRole(URI_SETTER_ROLE) whenNotPaused { __contractUri = _contractUri; } function setApproverAddress(address _newApproverAddress) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(_newApproverAddress != address(0), "Smurf: address zero is not a valid approver address"); __approverAddress = _newApproverAddress; } function setWithdrawalWallet(address _newWithdrawalWallet) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(_newWithdrawalWallet != address(0), "Smurf: address zero is not a valid withdrawal address"); __withdrawalWallet = _newWithdrawalWallet; } function setPhaseQuantities(uint[] memory _phaseQuantities) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { __phaseQuantities = _phaseQuantities; } function switchCrystalMintingPermission() external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { __isCrystalMintingOpen = !__isCrystalMintingOpen; } function setUnshuffledProvenanceHash(bytes32 _hash) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(__unshuffledProvenanceHash == 0, "Smurf: Unshuffled provenance hash already set"); require(_hash != 0, "Smurf: Provided hash is 0"); __unshuffledProvenanceHash = _hash; __blockToGetSeedFrom = block.number + 100; } function recordSeedFromDefinedBlock() external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(block.number > __blockToGetSeedFrom, "Smurf: Too early"); require(block.number < __blockToGetSeedFrom + 256, "Smurf: Too late"); __shuffleSeed = blockhash(__blockToGetSeedFrom); } function setProvenanceHash(bytes32 _hash) external onlyRole(DEFAULT_ADMIN_ROLE) whenNotPaused { require(__provenanceHash == 0, "Smurf: Provenance hash already set"); require(_hash != 0, "Smurf: Provided hash is 0"); require(__shuffleSeed != 0, "Smurf: Shuffleseed not set"); require(_hash != __unshuffledProvenanceHash, "Smurf: Unshuffled and shuffled hashes are the same"); __provenanceHash = _hash; } // Getters function contractURI() external view returns (string memory) { return __contractUri; } function getPrice(uint _crystalId) public view returns (uint) { uint rank = _crystalId % CRYSTAL_RANGES; uint price = ((10000-PERCENTAGES_BPS[rank])*__bucketDefinedPrice)/10000; //(10000-BPS) should be before __bdprice otherwise it'll get rounded down to 0 return price; } function checkOwner(address _assumedOwner, uint[] memory _tokenIds) public view returns (bool) { bool isOwnerOfAll = true; for (uint i; i < _tokenIds.length; i++) { if (ownerOf(_tokenIds[i]) != _assumedOwner) { isOwnerOfAll = false; break; } } return isOwnerOfAll; } function getTotalPrice(uint[] memory _crystalIds) public view returns (uint) { uint totalPrice; for (uint i; i<_crystalIds.length; i++) { totalPrice += getPrice(_crystalIds[i]); } return totalPrice; } function exists(uint256[] memory _tokenIds) external view returns (bool) { bool allTokensExist = true; for (uint i; i < _tokenIds.length; i++) { uint tokenId = _tokenIds[i]; if (!_exists(tokenId)) { allTokensExist = false; break; } } return allTokensExist; } function tokenURI(uint256 _tokenId) public view override(ERC721Upgradeable) returns (string memory) { if (_exists(_tokenId)) { return string.concat(__tokenUriBase,"/",StringsUpgradeable.toString(_tokenId)); } else { return ""; } } // Internals function pause() external onlyRole(PAUSER_ROLE) { _pause(); } function unpause() external onlyRole(PAUSER_ROLE) { _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal whenNotPaused override(ERC721Upgradeable, ERC721EnumerableUpgradeable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Upgradeable, ERC721EnumerableUpgradeable, AccessControlUpgradeable, ERC2981Upgradeable) returns (bool) { if (interfaceId == type(IERC721EnumerableUpgradeable).interfaceId) { return false; } else { return super.supportsInterface(interfaceId); } } // Withdraw function withdraw() external payable onlyRole(DEFAULT_ADMIN_ROLE) returns (bool success) { (success,) = payable(__withdrawalWallet).call{value: address(this).balance}(""); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(account), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981Upgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981Upgradeable is Initializable, IERC2981Upgradeable, ERC165Upgradeable { function __ERC2981_init() internal onlyInitializing { } function __ERC2981_init_unchained() internal onlyInitializing { } struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC165Upgradeable) returns (bool) { return interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981Upgradeable */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).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 = _ownerOf(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 = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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 = ERC721Upgradeable.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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @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(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.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 IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.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. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "../../../utils/ContextUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721BurnableUpgradeable is Initializable, ContextUpgradeable, ERC721Upgradeable { function __ERC721Burnable_init() internal onlyInitializing { } function __ERC721Burnable_init_unchained() internal onlyInitializing { } /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @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 v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.0; import "./ECDSAUpgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ * * @custom:storage-size 52 */ abstract contract EIP712Upgradeable is Initializable { /* solhint-disable var-name-mixedcase */ bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash()); } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712NameHash() internal virtual view returns (bytes32) { return _HASHED_NAME; } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712VersionHash() internal virtual view returns (bytes32) { return _HASHED_VERSION; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// 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 IERC165Upgradeable { /** * @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.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { 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. If 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)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 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) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _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) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @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] = _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 pragma solidity ^0.8.16; contract SmurfConstants { // Roles bytes32 constant public URI_SETTER_ROLE = keccak256("URI_SETTER_ROLE"); bytes32 constant public PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 constant public MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 constant public RARIBLE_ROLE = keccak256("RARIBLE_ROLE"); // Used for checking signature bytes32 constant public CRYSTAL_TYPE_HASH = keccak256("MintCrystal(address owner,uint token)"); bytes32 constant public CRYSTALS_TYPE_HASH = keccak256("MintCrystals(address owner,uint[] tokens)"); // Crystals uint[25] public PERCENTAGES_BPS; uint[5] public PHASE_QUANTITY; // General Smurfs uint public constant CRYSTAL_RANGES = 25; uint public constant PHASE_RANGES = 100_000; uint public constant REVEALED_RANGE = 1_000_000; uint public constant MAX_SUPPLY_PER_SMURF = 50; uint public constant PHASE_CRYSTALS = 0; uint public constant PHASE_HACKER_SMURF = 1; uint public constant PHASE_BUCKET = 2; uint public constant PHASE_BLUELIST = 3; uint public constant PHASE_FRENS = 4; uint public constant MAX_PHASE_ID = 5; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.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 ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal onlyInitializing { } function __ERC721Enumerable_init_unchained() internal onlyInitializing { } // 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(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { //require(index < ERC721Upgradeable.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); //return _ownedTokens[owner][index]; revert("Smurf: IERC721Enumerable was deprecated"); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { //return _allTokens.length; revert("Smurf: IERC721Enumerable was deprecated"); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { //require(index < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); //return _allTokens[index]; revert("Smurf: IERC721Enumerable was deprecated"); } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[46] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; interface ISmurfMint { function mintHackerSmurf(uint _qty) external; function mintBucketSmurf(address _to, uint _qty) external; function mintBlueListSmurf(address _to, uint _qty) external; function mintFrensSmurf(address _to, uint _qty) external; function mintCrystalSmurfs(uint[] memory _crystalIds, bytes memory _signatures) external payable; }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"phase","type":"uint256"}],"name":"CrystalsMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CRYSTALS_TYPE_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CRYSTAL_RANGES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CRYSTAL_TYPE_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PHASE_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PER_SMURF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"PERCENTAGES_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_BLUELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_BUCKET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_CRYSTALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_FRENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_HACKER_SMURF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"PHASE_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_RANGES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RARIBLE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED_RANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"URI_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__approverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__blockToGetSeedFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__bucketDefinedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__contractUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"__crystalHasBeenUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"__givenSmurfsForPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__isCrystalMintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"__phaseQuantities","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__provenanceHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__shuffleSeed","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__tokenUriBase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__unshuffledProvenanceHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__withdrawalWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256[]","name":"_crystalIds","type":"uint256[]"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"checkApprovals","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_assumedOwner","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"checkOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_crystalId","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_crystalIds","type":"uint256[]"}],"name":"getTotalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"uint96","name":"_royaltyValue","type":"uint96"},{"internalType":"address","name":"_approverAddress","type":"address"},{"internalType":"address","name":"_withdrawalWallet","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"array","type":"uint256[]"}],"name":"insertionSort","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintBlueListSmurf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintBucketSmurf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_crystalIds","type":"uint256[]"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintCrystalSmurfs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintFrensSmurf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintHackerSmurf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordSeedFromDefinedBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"address","name":"_newApproverAddress","type":"address"}],"name":"setApproverAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractUri","type":"string"}],"name":"setContractUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_phaseQuantities","type":"uint256[]"}],"name":"setPhaseQuantities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceFromBucketAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"uint96","name":"_royaltyValue","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUriBase","type":"string"}],"name":"setTokenUriBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"setUnshuffledProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWithdrawalWallet","type":"address"}],"name":"setWithdrawalWallet","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":"switchCrystalMintingPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200001c62000022565b620000e4565b600054610100900460ff16156200008f5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff9081161015620000e2576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6148b480620000f46000396000f3fe6080604052600436106104945760003560e01c80636c85cbc911610260578063c87b56dd11610144578063da35aa02116100c1578063e63ab1e911610085578063e63ab1e914610dfa578063e757223014610e1c578063e7c34d5114610b2d578063e8a3d48514610e3c578063e985e9c514610e51578063fcf4d26714610e9a57600080fd5b8063da35aa0214610d76578063dae3264414610da4578063dc67e87814610db9578063dcee971614610dd0578063de825f1014610de557600080fd5b8063cf8fc3b111610108578063cf8fc3b114610cdf578063d4efa4f714610cff578063d539139314610d14578063d547741f14610d36578063d9b4de0a14610d5657600080fd5b8063c87b56dd14610c3e578063ca45c21714610c5e578063cc7ceb8814610c7e578063ccb4807b14610c9e578063cde2ce4614610cbe57600080fd5b80639ebeb0f8116101dd578063a3c8f7ca116101a1578063a3c8f7ca14610b62578063b7c5cbde14610b82578063b88d4fde14610bb6578063ba52e3ee14610bd6578063bd39683614610c07578063c21b471b14610c1e57600080fd5b80639ebeb0f814610ad25780639fca0dd614610af2578063a06b1b1814610b12578063a217fddf14610b2d578063a22cb46514610b4257600080fd5b806388fb21bf1161022457806388fb21bf14610a4857806391d1485414610a5d57806395d89b4114610a7d578063964b6f3414610a925780639add50c114610ab257600080fd5b80636c85cbc9146109b157806370a08231146109d157806375796f76146109f15780637f34571014610a115780638456cb5914610a3357600080fd5b80633f8f1ef511610387578063506d0bea116103045780635c975abb116102c85780635c975abb14610900578063600b03fa146109185780636297206f1461092f5780636352211e1461095c5780636533a6fc1461097c5780636a263e651461099c57600080fd5b8063506d0bea1461085657806351a6cc4f1461087657806351c5dafb1461088b5780635439fd48146108ab5780635c8e2b7e146108df57600080fd5b8063472e24de1161034b578063472e24de146107d8578063480a8c5e146107ef5780634d06b7e81461080f5780634da84bd0146108245780634f6ccce71461083b57600080fd5b80633f8f1ef51461074c578063417153ef1461076357806342842e0e1461077857806342966c6814610798578063459eff3d146107b857600080fd5b8063285f6e5811610415578063363cc64c116103d9578063363cc64c146106bb57806336568abe146106db5780633665740c146106fb5780633ccfd60b1461072f5780633f4ba83a1461073757600080fd5b8063285f6e58146106055780632a55205a146106255780632f2ff15d146106645780632f745c5914610684578063342cd54f146106a457600080fd5b8063099b6bfa1161045c578063099b6bfa1461055d5780631722c1fe1461057d57806318160ddd146105a057806323b872dd146105b5578063248a9ca3146105d557600080fd5b8063012883b31461049957806301ffc9a7146104ae57806306fdde03146104e3578063081812fc14610505578063095ea7b31461053d575b600080fd5b6104ac6104a7366004613d6a565b610eaf565b005b3480156104ba57600080fd5b506104ce6104c9366004613e17565b611131565b60405190151581526020015b60405180910390f35b3480156104ef57600080fd5b506104f8611167565b6040516104da9190613e84565b34801561051157600080fd5b50610525610520366004613e97565b6111f9565b6040516001600160a01b0390911681526020016104da565b34801561054957600080fd5b506104ac610558366004613ec7565b611220565b34801561056957600080fd5b506104ac610578366004613e97565b611335565b34801561058957600080fd5b50610592603281565b6040519081526020016104da565b3480156105ac57600080fd5b506105926114b8565b3480156105c157600080fd5b506104ac6105d0366004613ef1565b611513565b3480156105e157600080fd5b506105926105f0366004613e97565b600090815260fb602052604090206001015490565b34801561061157600080fd5b50610592610620366004613e97565b611545565b34801561063157600080fd5b50610645610640366004613f2d565b61155d565b604080516001600160a01b0390931683526020830191909152016104da565b34801561067057600080fd5b506104ac61067f366004613f4f565b61160d565b34801561069057600080fd5b5061059261069f366004613ec7565b6114b8565b3480156106b057600080fd5b506105926101ed5481565b3480156106c757600080fd5b506104ac6106d6366004613ec7565b611632565b3480156106e757600080fd5b506104ac6106f6366004613f4f565b611670565b34801561070757600080fd5b506105927f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf81565b6104ce6116ee565b34801561074357600080fd5b506104ac611756565b34801561075857600080fd5b506105926101ec5481565b34801561076f57600080fd5b50610592601981565b34801561078457600080fd5b506104ac610793366004613ef1565b611779565b3480156107a457600080fd5b506104ac6107b3366004613e97565b611794565b3480156107c457600080fd5b506105926107d3366004613f7b565b6117c2565b3480156107e457600080fd5b50610592620186a081565b3480156107fb57600080fd5b506104ac61080a366004613fc7565b611818565b34801561081b57600080fd5b50610592600281565b34801561083057600080fd5b506105926101ee5481565b34801561084757600080fd5b5061059261069f366004613e97565b34801561086257600080fd5b506104ac610871366004613ec7565b611b4e565b34801561088257600080fd5b50610592600181565b34801561089757600080fd5b506104ac6108a6366004613f7b565b611b7a565b3480156108b757600080fd5b506105927f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff81565b3480156108eb57600080fd5b506101e554610525906001600160a01b031681565b34801561090c57600080fd5b5060c95460ff166104ce565b34801561092457600080fd5b50610592620f424081565b34801561093b57600080fd5b5061094f61094a366004613f7b565b611ba1565b6040516104da9190614056565b34801561096857600080fd5b50610525610977366004613e97565b611c9b565b34801561098857600080fd5b506104ac6109973660046140c1565b611cfb565b3480156109a857600080fd5b50610592600381565b3480156109bd57600080fd5b506104ac6109cc36600461412a565b611d28565b3480156109dd57600080fd5b506105926109ec36600461419e565b611e61565b3480156109fd57600080fd5b506104ac610a0c36600461419e565b611ee7565b348015610a1d57600080fd5b5061059260008051602061481f83398151915281565b348015610a3f57600080fd5b506104ac611f92565b348015610a5457600080fd5b506104f8611fb2565b348015610a6957600080fd5b506104ce610a78366004613f4f565b612041565b348015610a8957600080fd5b506104f861206c565b348015610a9e57600080fd5b506104ac610aad366004613e97565b61207b565b348015610abe57600080fd5b50610592610acd366004613e97565b61215b565b348015610ade57600080fd5b506104ce610aed366004613f7b565b61216c565b348015610afe57600080fd5b506104ac610b0d366004613ec7565b6121db565b348015610b1e57600080fd5b506101ea546104ce9060ff1681565b348015610b3957600080fd5b50610592600081565b348015610b4e57600080fd5b506104ac610b5d3660046141b9565b612207565b348015610b6e57600080fd5b50610592610b7d366004613e97565b612212565b348015610b8e57600080fd5b506105927f15adcf77330e34bfd8890e275686909e196bc26f91273dca371235300c18e6e981565b348015610bc257600080fd5b506104ac610bd13660046141f5565b612234565b348015610be257600080fd5b506104ce610bf1366004613e97565b6101eb6020526000908152604090205460ff1681565b348015610c1357600080fd5b506105926101ef5481565b348015610c2a57600080fd5b506104ac610c3936600461425d565b61226c565b348015610c4a57600080fd5b506104f8610c59366004613e97565b6122fa565b348015610c6a57600080fd5b506104ce610c79366004614287565b612361565b348015610c8a57600080fd5b506104ac610c99366004613e97565b6123cd565b348015610caa57600080fd5b506104ac610cb93660046140c1565b612437565b348015610cca57600080fd5b506101e654610525906001600160a01b031681565b348015610ceb57600080fd5b506104ac610cfa36600461419e565b612464565b348015610d0b57600080fd5b506104ac61250d565b348015610d2057600080fd5b5061059260008051602061485f83398151915281565b348015610d4257600080fd5b506104ac610d51366004613f4f565b6125c1565b348015610d6257600080fd5b506104ac610d71366004613e97565b6125e6565b348015610d8257600080fd5b50610592610d91366004613e97565b6101e36020526000908152604090205481565b348015610db057600080fd5b506104f8612612565b348015610dc557600080fd5b506105926101e75481565b348015610ddc57600080fd5b50610592600581565b348015610df157600080fd5b506104ac612620565b348015610e0657600080fd5b5061059260008051602061483f83398151915281565b348015610e2857600080fd5b50610592610e37366004613e97565b612649565b348015610e4857600080fd5b506104f86126a0565b348015610e5d57600080fd5b506104ce610e6c3660046142d5565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610ea657600080fd5b50610592600481565b6101ea5460ff16610f175760405162461bcd60e51b815260206004820152602760248201527f536d7572663a2052656465656d696e67206372797374616c73206973206e6f74604482015266081bdc195b995960ca1b60648201526084015b60405180910390fd5b610f1f6126b0565b6000610f2a846117c2565b9050803414610f745760405162461bcd60e51b8152602060048201526016602482015275536d7572663a20496e636f727265637420707269636560501b6044820152606401610f0e565b610f7d84611ba1565b9350610fc0338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d2892505050565b60005b84518110156110e6576101eb6000868381518110610fe357610fe36142ff565b60209081029190910181015182528101919091526040016000205460ff16156110695760405162461bcd60e51b815260206004820152603260248201527f536d7572663a204372797374616c2068617320616c7265616479206265656e206044820152717573656420666f72206d696e74696e67202160701b6064820152608401610f0e565b60016101eb6000878481518110611082576110826142ff565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506110d4338683815181106110c5576110c56142ff565b602002602001015160006126f8565b806110de8161432b565b915050610fc3565b50336001600160a01b03167f23e62fa4e885eb787c43fa56a14c705a3ff63a8149105ce06fd0be2f57ec8127856000604051611123929190614344565b60405180910390a250505050565b60006387f1629d60e01b6001600160e01b031983160161115357506000919050565b61115c82612781565b92915050565b919050565b60606065805461117690614366565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290614366565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b5050505050905090565b6000611204826127a6565b506000908152606960205260409020546001600160a01b031690565b600061122b82611c9b565b9050806001600160a01b0316836001600160a01b0316036112985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f0e565b336001600160a01b03821614806112b457506112b48133610e6c565b6113265760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f0e565b6113308383612805565b505050565b600061134081612873565b6113486126b0565b6101ed54156113a45760405162461bcd60e51b815260206004820152602260248201527f536d7572663a2050726f76656e616e6365206861736820616c72656164792073604482015261195d60f21b6064820152608401610f0e565b60008290036113f15760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f0e565b6101ee546000036114445760405162461bcd60e51b815260206004820152601a60248201527f536d7572663a2053687566666c6573656564206e6f74207365740000000000006044820152606401610f0e565b6101ec5482036114b15760405162461bcd60e51b815260206004820152603260248201527f536d7572663a20556e73687566666c656420616e642073687566666c65642068604482015271617368657320617265207468652073616d6560701b6064820152608401610f0e565b506101ed55565b60405162461bcd60e51b815260206004820152602760248201527f536d7572663a2049455243373231456e756d657261626c6520776173206465706044820152661c9958d85d195960ca1b6064820152600090608401610f0e565b61151e335b8261287d565b61153a5760405162461bcd60e51b8152600401610f0e906143a0565b6113308383836128fb565b6101c5816019811061155657600080fd5b0154905081565b6000828152610160602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916115d457506040805180820190915261015f546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906115f3906001600160601b0316876143ed565b6115fd9190614422565b91519350909150505b9250929050565b600082815260fb602052604090206001015461162881612873565b6113308383612a6c565b7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf61165c81612873565b6116646126b0565b61133082846002612af2565b6001600160a01b03811633146116e05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f0e565b6116ea8282612c71565b5050565b6000806116fa81612873565b6101e6546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611748576040519150601f19603f3d011682016040523d82523d6000602084013e61174d565b606091505b50909392505050565b60008051602061483f83398151915261176e81612873565b611776612cd8565b50565b61133083838360405180602001604052806000815250612234565b61179d33611518565b6117b95760405162461bcd60e51b8152600401610f0e906143a0565b61177681612d2a565b60008060005b8351811015611811576117f38482815181106117e6576117e66142ff565b6020026020010151612649565b6117fd9083614436565b9150806118098161432b565b9150506117c8565b5092915050565b600054610100900460ff16158080156118385750600054600160ff909116105b806118525750303b158015611852575060005460ff166001145b6118b55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0e565b6000805460ff1916600117905580156118d8576000805461ff0019166101001790555b6040805161032081018252611f4081526113886020820152610fa091810191909152610bb8606082018190526080820181905260a08201526109c460c0820181905260e0820181905261010082018190526101208201526107d06101408201819052610160820181905261018082018190526101a082018190526101c08201526105dc6101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e082018190526103008201526119b8906101c5906019613c0f565b50611a0b6040518060400160405280601081526020016f4c6567656e6461727920536d7572667360801b815250604051806040016040528060088152602001671514d4ce881311d160c21b815250612dcd565b611a13612dfe565b611a1b612e25565b611a23612dfe565b611a2b612dfe565b611a726040518060400160405280600c81526020016b536d757266536f636965747960a01b815250604051806040016040528060018152602001603160f81b815250612e54565b611a7d600033612a6c565b611a9560008051602061481f83398151915233612a6c565b611aad60008051602061483f83398151915233612a6c565b611ac560008051602061485f83398151915233612a6c565b611acf8585612e85565b6101e580546001600160a01b038086166001600160a01b0319928316179092556101e68054928516929091169190911790558015611b47576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b60008051602061485f833981519152611b6681612873565b611b6e6126b0565b61133082846003612af2565b6000611b8581612873565b611b8d6126b0565b8151611330906101e4906020850190613c53565b805160609060015b81811015611c93576000848281518110611bc557611bc56142ff565b6020026020010151905060008290505b600081118015611c0757508186611bed600184614449565b81518110611bfd57611bfd6142ff565b6020026020010151115b15611c5f5785611c18600183614449565b81518110611c2857611c286142ff565b6020026020010151868281518110611c4257611c426142ff565b602090810291909101015280611c578161445c565b915050611bd5565b81868281518110611c7257611c726142ff565b60200260200101818152505050508080611c8b9061432b565b915050611ba9565b509192915050565b6000818152606760205260408120546001600160a01b03168061115c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f0e565b60008051602061481f833981519152611d1381612873565b611d1b6126b0565b6101e961133083826144b9565b60007f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff8484604051602001611d5d9190614579565b60405160208183030381529060405280519060200120604051602001611d9f939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012090506000611dc282612f83565b90506000611dd08285612fd1565b6101e5549091506001600160a01b03808316911614611e59576040805162461bcd60e51b81526020600482015260248101919091527f536d7572663a20546865207369676e6174757265206164647265737320646f6560448201527f73206e6f74206d61746368207468652070726f766964656420616464726573736064820152608401610f0e565b505050505050565b60006001600160a01b038216611ecb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f0e565b506001600160a01b031660009081526068602052604090205490565b6000611ef281612873565b611efa6126b0565b6001600160a01b038216611f6e5760405162461bcd60e51b815260206004820152603560248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c6044820152746964207769746864726177616c206164647265737360581b6064820152608401610f0e565b506101e680546001600160a01b0319166001600160a01b0392909216919091179055565b60008051602061483f833981519152611faa81612873565b611776612fed565b6101e98054611fc090614366565b80601f0160208091040260200160405190810160405280929190818152602001828054611fec90614366565b80156120395780601f1061200e57610100808354040283529160200191612039565b820191906000526020600020905b81548152906001019060200180831161201c57829003601f168201915b505050505081565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461117690614366565b600061208681612873565b61208e6126b0565b6101ec54156120f55760405162461bcd60e51b815260206004820152602d60248201527f536d7572663a20556e73687566666c65642070726f76656e616e63652068617360448201526c1a08185b1c9958591e481cd95d609a1b6064820152608401610f0e565b60008290036121425760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f0e565b6101ec829055612153436064614436565b6101ef555050565b6101de816005811061155657600080fd5b60006001815b835181101561181157600084828151811061218f5761218f6142ff565b602002602001015190506121ba816000908152606760205260409020546001600160a01b0316151590565b6121c8576000925050611811565b50806121d38161432b565b915050612172565b60008051602061485f8339815191526121f381612873565b6121fb6126b0565b61133082846004612af2565b6116ea33838361302a565b6101e4818154811061222357600080fd5b600091825260209091200154905081565b61223e338361287d565b61225a5760405162461bcd60e51b8152600401610f0e906143a0565b612266848484846130f8565b50505050565b600061227781612873565b61227f6126b0565b6001600160a01b0383166122f05760405162461bcd60e51b815260206004820152603260248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015271696420726f79616c7479206164647265737360701b6064820152608401610f0e565b6113308383612e85565b6000818152606760205260409020546060906001600160a01b03161561234d576101e96123268361312b565b6040516020016123379291906145af565b6040516020818303038152906040529050919050565b505060408051602081019091526000815290565b60006001815b83518110156123c557846001600160a01b031661239c85838151811061238f5761238f6142ff565b6020026020010151611c9b565b6001600160a01b0316146123b357600091506123c5565b806123bd8161432b565b915050612367565b509392505050565b60006123d881612873565b6123e06126b0565b600082116124305760405162461bcd60e51b815260206004820152601b60248201527f536d7572663a2050726963652063616e6e6f74206265207a65726f00000000006044820152606401610f0e565b506101e755565b60008051602061481f83398151915261244f81612873565b6124576126b0565b6101e861133083826144b9565b600061246f81612873565b6124776126b0565b6001600160a01b0382166124e95760405162461bcd60e51b815260206004820152603360248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015272696420617070726f766572206164647265737360681b6064820152608401610f0e565b506101e580546001600160a01b0319166001600160a01b0392909216919091179055565b600061251881612873565b6125206126b0565b6101ef5443116125655760405162461bcd60e51b815260206004820152601060248201526f536d7572663a20546f6f206561726c7960801b6044820152606401610f0e565b6101ef5461257590610100614436565b43106125b55760405162461bcd60e51b815260206004820152600f60248201526e536d7572663a20546f6f206c61746560881b6044820152606401610f0e565b506101ef54406101ee55565b600082815260fb60205260409020600101546125dc81612873565b6113308383612c71565b60008051602061485f8339815191526125fe81612873565b6126066126b0565b6116ea82336001612af2565b6101e88054611fc090614366565b600061262b81612873565b6126336126b0565b506101ea805460ff19811660ff90911615179055565b600080612657601984614643565b905060006127106101e7546101c58460198110612676576126766142ff565b015461268490612710614449565b61268e91906143ed565b6126989190614422565b949350505050565b60606101e8805461117690614366565b60c95460ff16156126f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f0e565b565b612705620186a0826143ed565b821015801561272b5750620186a061271e826001614436565b61272891906143ed565b82105b6127775760405162461bcd60e51b815260206004820152601f60248201527f536d7572663a20546f6b656e206f7574206f662070686173652072616e6765006044820152606401610f0e565b61133083836131be565b60006001600160e01b0319821663152a902d60e11b148061115c575061115c826131d8565b6000818152606760205260409020546001600160a01b03166117765760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f0e565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061283a82611c9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61177681336131fd565b60008061288983611c9b565b9050806001600160a01b0316846001600160a01b031614806128d057506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806126985750836001600160a01b03166128e9846111f9565b6001600160a01b031614949350505050565b826001600160a01b031661290e82611c9b565b6001600160a01b0316146129345760405162461bcd60e51b8152600401610f0e90614657565b6001600160a01b0382166129965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f0e565b6129a38383836001613256565b826001600160a01b03166129b682611c9b565b6001600160a01b0316146129dc5760405162461bcd60e51b8152600401610f0e90614657565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260688552838620805460001901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612a768282612041565b6116ea57600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055612aae3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612afa6126b0565b6005612b07826001614436565b1115612b555760405162461bcd60e51b815260206004820152601c60248201527f536d7572663a205068617365204944206f7574206f662072616e6765000000006044820152606401610f0e565b60008181526101e36020526040812054612b72620186a0846143ed565b612b7c9190614436565b90506101e48281548110612b9257612b926142ff565b9060005260206000200154846101e3600085815260200190815260200160002054612bbd9190614436565b1115612c1b5760405162461bcd60e51b815260206004820152602760248201527f536d7572663a205175616e7469747920776f756c6420657863656564206d617860448201526620737570706c7960c81b6064820152608401610f0e565b60008281526101e3602052604081208054869290612c3a908490614436565b90915550600090505b84811015611b4757612c5f84612c598484614436565b856126f8565b80612c698161432b565b915050612c43565b612c7b8282612041565b156116ea57600082815260fb602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b612ce061326a565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612d3582611c9b565b9050612d45816000846001613256565b612d4e82611c9b565b600083815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16612df45760405162461bcd60e51b8152600401610f0e9061469c565b6116ea82826132b3565b600054610100900460ff166126f65760405162461bcd60e51b8152600401610f0e9061469c565b600054610100900460ff16612e4c5760405162461bcd60e51b8152600401610f0e9061469c565b6126f66132f3565b600054610100900460ff16612e7b5760405162461bcd60e51b8152600401610f0e9061469c565b6116ea8282613326565b6127106001600160601b0382161115612ef35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610f0e565b6001600160a01b038216612f495760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f0e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b9091021761015f55565b600061115c612f90613369565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000612fe085856133eb565b915091506123c58161342d565b612ff56126b0565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d0d3390565b816001600160a01b0316836001600160a01b03160361308b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f0e565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6131038484846128fb565b61310f84848484613577565b6122665760405162461bcd60e51b8152600401610f0e906146e7565b6060600061313883613678565b600101905060008167ffffffffffffffff81111561315857613158613ca3565b6040519080825280601f01601f191660200182016040528015613182576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461318c57509392505050565b6116ea828260405180602001604052806000815250613750565b60006001600160e01b03198216637965db0b60e01b148061115c575061115c82613783565b6132078282612041565b6116ea57613214816137a8565b61321f8360206137ba565b604051602001613230929190614739565b60408051601f198184030181529082905262461bcd60e51b8252610f0e91600401613e84565b61325e6126b0565b6122668484848461395d565b60c95460ff166126f65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f0e565b600054610100900460ff166132da5760405162461bcd60e51b8152600401610f0e9061469c565b60656132e683826144b9565b50606661133082826144b9565b600054610100900460ff1661331a5760405162461bcd60e51b8152600401610f0e9061469c565b60c9805460ff19169055565b600054610100900460ff1661334d5760405162461bcd60e51b8152600401610f0e9061469c565b8151602092830120815191909201206101919190915561019255565b60006133e67f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6133996101915490565b610192546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b60008082516041036134215760208301516040840151606085015160001a61341587828585613962565b94509450505050611606565b50600090506002611606565b6000816004811115613441576134416147ae565b036134495750565b600181600481111561345d5761345d6147ae565b036134aa5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610f0e565b60028160048111156134be576134be6147ae565b0361350b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610f0e565b600381600481111561351f5761351f6147ae565b036117765760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610f0e565b60006001600160a01b0384163b1561366d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135bb9033908990889088906004016147c4565b6020604051808303816000875af19250505080156135f6575060408051601f3d908101601f191682019092526135f391810190614801565b60015b613653573d808015613624576040519150601f19603f3d011682016040523d82523d6000602084013e613629565b606091505b50805160000361364b5760405162461bcd60e51b8152600401610f0e906146e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612698565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106136b75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106136e3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061370157662386f26fc10000830492506010015b6305f5e1008310613719576305f5e100830492506008015b612710831061372d57612710830492506004015b6064831061373f576064830492506002015b600a831061115c5760010192915050565b61375a8383613a26565b6137676000848484613577565b6113305760405162461bcd60e51b8152600401610f0e906146e7565b60006001600160e01b0319821663780e9d6360e01b148061115c575061115c82613bbf565b606061115c6001600160a01b03831660145b606060006137c98360026143ed565b6137d4906002614436565b67ffffffffffffffff8111156137ec576137ec613ca3565b6040519080825280601f01601f191660200182016040528015613816576020820181803683370190505b509050600360fc1b81600081518110613831576138316142ff565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613860576138606142ff565b60200101906001600160f81b031916908160001a90535060006138848460026143ed565b61388f906001614436565b90505b6001811115613907576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106138c3576138c36142ff565b1a60f81b8282815181106138d9576138d96142ff565b60200101906001600160f81b031916908160001a90535060049490941c936139008161445c565b9050613892565b5083156139565760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f0e565b9392505050565b612266565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156139995750600090506003613a1d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156139ed573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a1657600060019250925050613a1d565b9150600090505b94509492505050565b6001600160a01b038216613a7c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f0e565b6000818152606760205260409020546001600160a01b031615613ae15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f0e565b613aef600083836001613256565b6000818152606760205260409020546001600160a01b031615613b545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f0e565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166380ac58cd60e01b1480613bf057506001600160e01b03198216635b5e139f60e01b145b8061115c57506301ffc9a760e01b6001600160e01b031983161461115c565b8260198101928215613c43579160200282015b82811115613c43578251829061ffff16905591602001919060010190613c22565b50613c4f929150613c8e565b5090565b828054828255906000526020600020908101928215613c43579160200282015b82811115613c43578251825591602001919060010190613c73565b5b80821115613c4f5760008155600101613c8f565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ce257613ce2613ca3565b604052919050565b600082601f830112613cfb57600080fd5b8135602067ffffffffffffffff821115613d1757613d17613ca3565b8160051b613d26828201613cb9565b9283528481018201928281019087851115613d4057600080fd5b83870192505b84831015613d5f57823582529183019190830190613d46565b979650505050505050565b600080600060408486031215613d7f57600080fd5b833567ffffffffffffffff80821115613d9757600080fd5b613da387838801613cea565b94506020860135915080821115613db957600080fd5b818601915086601f830112613dcd57600080fd5b813581811115613ddc57600080fd5b876020828501011115613dee57600080fd5b6020830194508093505050509250925092565b6001600160e01b03198116811461177657600080fd5b600060208284031215613e2957600080fd5b813561395681613e01565b60005b83811015613e4f578181015183820152602001613e37565b50506000910152565b60008151808452613e70816020860160208601613e34565b601f01601f19169290920160200192915050565b6020815260006139566020830184613e58565b600060208284031215613ea957600080fd5b5035919050565b80356001600160a01b038116811461116257600080fd5b60008060408385031215613eda57600080fd5b613ee383613eb0565b946020939093013593505050565b600080600060608486031215613f0657600080fd5b613f0f84613eb0565b9250613f1d60208501613eb0565b9150604084013590509250925092565b60008060408385031215613f4057600080fd5b50508035926020909101359150565b60008060408385031215613f6257600080fd5b82359150613f7260208401613eb0565b90509250929050565b600060208284031215613f8d57600080fd5b813567ffffffffffffffff811115613fa457600080fd5b61269884828501613cea565b80356001600160601b038116811461116257600080fd5b60008060008060808587031215613fdd57600080fd5b613fe685613eb0565b9350613ff460208601613fb0565b925061400260408601613eb0565b915061401060608601613eb0565b905092959194509250565b600081518084526020808501945080840160005b8381101561404b5781518752958201959082019060010161402f565b509495945050505050565b602081526000613956602083018461401b565b600067ffffffffffffffff83111561408357614083613ca3565b614096601f8401601f1916602001613cb9565b90508281528383830111156140aa57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156140d357600080fd5b813567ffffffffffffffff8111156140ea57600080fd5b8201601f810184136140fb57600080fd5b61269884823560208401614069565b600082601f83011261411b57600080fd5b61395683833560208501614069565b60008060006060848603121561413f57600080fd5b61414884613eb0565b9250602084013567ffffffffffffffff8082111561416557600080fd5b61417187838801613cea565b9350604086013591508082111561418757600080fd5b506141948682870161410a565b9150509250925092565b6000602082840312156141b057600080fd5b61395682613eb0565b600080604083850312156141cc57600080fd5b6141d583613eb0565b9150602083013580151581146141ea57600080fd5b809150509250929050565b6000806000806080858703121561420b57600080fd5b61421485613eb0565b935061422260208601613eb0565b925060408501359150606085013567ffffffffffffffff81111561424557600080fd5b6142518782880161410a565b91505092959194509250565b6000806040838503121561427057600080fd5b61427983613eb0565b9150613f7260208401613fb0565b6000806040838503121561429a57600080fd5b6142a383613eb0565b9150602083013567ffffffffffffffff8111156142bf57600080fd5b6142cb85828601613cea565b9150509250929050565b600080604083850312156142e857600080fd5b6142f183613eb0565b9150613f7260208401613eb0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161433d5761433d614315565b5060010190565b604081526000614357604083018561401b565b90508260208301529392505050565b600181811c9082168061437a57607f821691505b60208210810361439a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561440757614407614315565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826144315761443161440c565b500490565b8082018082111561115c5761115c614315565b8181038181111561115c5761115c614315565b60008161446b5761446b614315565b506000190190565b601f82111561133057600081815260208120601f850160051c8101602086101561449a5750805b601f850160051c820191505b81811015611e59578281556001016144a6565b815167ffffffffffffffff8111156144d3576144d3613ca3565b6144e7816144e18454614366565b84614473565b602080601f83116001811461451c57600084156145045750858301515b600019600386901b1c1916600185901b178555611e59565b600085815260208120601f198616915b8281101561454b5788860151825594840194600190910190840161452c565b50858210156145695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b815160009082906020808601845b838110156145a357815185529382019390820190600101614587565b50929695505050505050565b60008084546145bd81614366565b600182811680156145d557600181146145ea57614619565b60ff1984168752821515830287019450614619565b8860005260208060002060005b858110156146105781548a8201529084019082016145f7565b50505082870194505b50602f60f81b8452865192506146358382860160208a01613e34565b919092010195945050505050565b6000826146525761465261440c565b500690565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614771816017850160208801613e34565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516147a2816028840160208801613e34565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906147f790830184613e58565b9695505050505050565b60006020828403121561481357600080fd5b815161395681613e0156fe7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220e82f96637f5770103f8041bb896c82e8fc86d1bbf385f7d7f8023fa38c951c1964736f6c63430008100033
Deployed Bytecode
0x6080604052600436106104945760003560e01c80636c85cbc911610260578063c87b56dd11610144578063da35aa02116100c1578063e63ab1e911610085578063e63ab1e914610dfa578063e757223014610e1c578063e7c34d5114610b2d578063e8a3d48514610e3c578063e985e9c514610e51578063fcf4d26714610e9a57600080fd5b8063da35aa0214610d76578063dae3264414610da4578063dc67e87814610db9578063dcee971614610dd0578063de825f1014610de557600080fd5b8063cf8fc3b111610108578063cf8fc3b114610cdf578063d4efa4f714610cff578063d539139314610d14578063d547741f14610d36578063d9b4de0a14610d5657600080fd5b8063c87b56dd14610c3e578063ca45c21714610c5e578063cc7ceb8814610c7e578063ccb4807b14610c9e578063cde2ce4614610cbe57600080fd5b80639ebeb0f8116101dd578063a3c8f7ca116101a1578063a3c8f7ca14610b62578063b7c5cbde14610b82578063b88d4fde14610bb6578063ba52e3ee14610bd6578063bd39683614610c07578063c21b471b14610c1e57600080fd5b80639ebeb0f814610ad25780639fca0dd614610af2578063a06b1b1814610b12578063a217fddf14610b2d578063a22cb46514610b4257600080fd5b806388fb21bf1161022457806388fb21bf14610a4857806391d1485414610a5d57806395d89b4114610a7d578063964b6f3414610a925780639add50c114610ab257600080fd5b80636c85cbc9146109b157806370a08231146109d157806375796f76146109f15780637f34571014610a115780638456cb5914610a3357600080fd5b80633f8f1ef511610387578063506d0bea116103045780635c975abb116102c85780635c975abb14610900578063600b03fa146109185780636297206f1461092f5780636352211e1461095c5780636533a6fc1461097c5780636a263e651461099c57600080fd5b8063506d0bea1461085657806351a6cc4f1461087657806351c5dafb1461088b5780635439fd48146108ab5780635c8e2b7e146108df57600080fd5b8063472e24de1161034b578063472e24de146107d8578063480a8c5e146107ef5780634d06b7e81461080f5780634da84bd0146108245780634f6ccce71461083b57600080fd5b80633f8f1ef51461074c578063417153ef1461076357806342842e0e1461077857806342966c6814610798578063459eff3d146107b857600080fd5b8063285f6e5811610415578063363cc64c116103d9578063363cc64c146106bb57806336568abe146106db5780633665740c146106fb5780633ccfd60b1461072f5780633f4ba83a1461073757600080fd5b8063285f6e58146106055780632a55205a146106255780632f2ff15d146106645780632f745c5914610684578063342cd54f146106a457600080fd5b8063099b6bfa1161045c578063099b6bfa1461055d5780631722c1fe1461057d57806318160ddd146105a057806323b872dd146105b5578063248a9ca3146105d557600080fd5b8063012883b31461049957806301ffc9a7146104ae57806306fdde03146104e3578063081812fc14610505578063095ea7b31461053d575b600080fd5b6104ac6104a7366004613d6a565b610eaf565b005b3480156104ba57600080fd5b506104ce6104c9366004613e17565b611131565b60405190151581526020015b60405180910390f35b3480156104ef57600080fd5b506104f8611167565b6040516104da9190613e84565b34801561051157600080fd5b50610525610520366004613e97565b6111f9565b6040516001600160a01b0390911681526020016104da565b34801561054957600080fd5b506104ac610558366004613ec7565b611220565b34801561056957600080fd5b506104ac610578366004613e97565b611335565b34801561058957600080fd5b50610592603281565b6040519081526020016104da565b3480156105ac57600080fd5b506105926114b8565b3480156105c157600080fd5b506104ac6105d0366004613ef1565b611513565b3480156105e157600080fd5b506105926105f0366004613e97565b600090815260fb602052604090206001015490565b34801561061157600080fd5b50610592610620366004613e97565b611545565b34801561063157600080fd5b50610645610640366004613f2d565b61155d565b604080516001600160a01b0390931683526020830191909152016104da565b34801561067057600080fd5b506104ac61067f366004613f4f565b61160d565b34801561069057600080fd5b5061059261069f366004613ec7565b6114b8565b3480156106b057600080fd5b506105926101ed5481565b3480156106c757600080fd5b506104ac6106d6366004613ec7565b611632565b3480156106e757600080fd5b506104ac6106f6366004613f4f565b611670565b34801561070757600080fd5b506105927f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf81565b6104ce6116ee565b34801561074357600080fd5b506104ac611756565b34801561075857600080fd5b506105926101ec5481565b34801561076f57600080fd5b50610592601981565b34801561078457600080fd5b506104ac610793366004613ef1565b611779565b3480156107a457600080fd5b506104ac6107b3366004613e97565b611794565b3480156107c457600080fd5b506105926107d3366004613f7b565b6117c2565b3480156107e457600080fd5b50610592620186a081565b3480156107fb57600080fd5b506104ac61080a366004613fc7565b611818565b34801561081b57600080fd5b50610592600281565b34801561083057600080fd5b506105926101ee5481565b34801561084757600080fd5b5061059261069f366004613e97565b34801561086257600080fd5b506104ac610871366004613ec7565b611b4e565b34801561088257600080fd5b50610592600181565b34801561089757600080fd5b506104ac6108a6366004613f7b565b611b7a565b3480156108b757600080fd5b506105927f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff81565b3480156108eb57600080fd5b506101e554610525906001600160a01b031681565b34801561090c57600080fd5b5060c95460ff166104ce565b34801561092457600080fd5b50610592620f424081565b34801561093b57600080fd5b5061094f61094a366004613f7b565b611ba1565b6040516104da9190614056565b34801561096857600080fd5b50610525610977366004613e97565b611c9b565b34801561098857600080fd5b506104ac6109973660046140c1565b611cfb565b3480156109a857600080fd5b50610592600381565b3480156109bd57600080fd5b506104ac6109cc36600461412a565b611d28565b3480156109dd57600080fd5b506105926109ec36600461419e565b611e61565b3480156109fd57600080fd5b506104ac610a0c36600461419e565b611ee7565b348015610a1d57600080fd5b5061059260008051602061481f83398151915281565b348015610a3f57600080fd5b506104ac611f92565b348015610a5457600080fd5b506104f8611fb2565b348015610a6957600080fd5b506104ce610a78366004613f4f565b612041565b348015610a8957600080fd5b506104f861206c565b348015610a9e57600080fd5b506104ac610aad366004613e97565b61207b565b348015610abe57600080fd5b50610592610acd366004613e97565b61215b565b348015610ade57600080fd5b506104ce610aed366004613f7b565b61216c565b348015610afe57600080fd5b506104ac610b0d366004613ec7565b6121db565b348015610b1e57600080fd5b506101ea546104ce9060ff1681565b348015610b3957600080fd5b50610592600081565b348015610b4e57600080fd5b506104ac610b5d3660046141b9565b612207565b348015610b6e57600080fd5b50610592610b7d366004613e97565b612212565b348015610b8e57600080fd5b506105927f15adcf77330e34bfd8890e275686909e196bc26f91273dca371235300c18e6e981565b348015610bc257600080fd5b506104ac610bd13660046141f5565b612234565b348015610be257600080fd5b506104ce610bf1366004613e97565b6101eb6020526000908152604090205460ff1681565b348015610c1357600080fd5b506105926101ef5481565b348015610c2a57600080fd5b506104ac610c3936600461425d565b61226c565b348015610c4a57600080fd5b506104f8610c59366004613e97565b6122fa565b348015610c6a57600080fd5b506104ce610c79366004614287565b612361565b348015610c8a57600080fd5b506104ac610c99366004613e97565b6123cd565b348015610caa57600080fd5b506104ac610cb93660046140c1565b612437565b348015610cca57600080fd5b506101e654610525906001600160a01b031681565b348015610ceb57600080fd5b506104ac610cfa36600461419e565b612464565b348015610d0b57600080fd5b506104ac61250d565b348015610d2057600080fd5b5061059260008051602061485f83398151915281565b348015610d4257600080fd5b506104ac610d51366004613f4f565b6125c1565b348015610d6257600080fd5b506104ac610d71366004613e97565b6125e6565b348015610d8257600080fd5b50610592610d91366004613e97565b6101e36020526000908152604090205481565b348015610db057600080fd5b506104f8612612565b348015610dc557600080fd5b506105926101e75481565b348015610ddc57600080fd5b50610592600581565b348015610df157600080fd5b506104ac612620565b348015610e0657600080fd5b5061059260008051602061483f83398151915281565b348015610e2857600080fd5b50610592610e37366004613e97565b612649565b348015610e4857600080fd5b506104f86126a0565b348015610e5d57600080fd5b506104ce610e6c3660046142d5565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610ea657600080fd5b50610592600481565b6101ea5460ff16610f175760405162461bcd60e51b815260206004820152602760248201527f536d7572663a2052656465656d696e67206372797374616c73206973206e6f74604482015266081bdc195b995960ca1b60648201526084015b60405180910390fd5b610f1f6126b0565b6000610f2a846117c2565b9050803414610f745760405162461bcd60e51b8152602060048201526016602482015275536d7572663a20496e636f727265637420707269636560501b6044820152606401610f0e565b610f7d84611ba1565b9350610fc0338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d2892505050565b60005b84518110156110e6576101eb6000868381518110610fe357610fe36142ff565b60209081029190910181015182528101919091526040016000205460ff16156110695760405162461bcd60e51b815260206004820152603260248201527f536d7572663a204372797374616c2068617320616c7265616479206265656e206044820152717573656420666f72206d696e74696e67202160701b6064820152608401610f0e565b60016101eb6000878481518110611082576110826142ff565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506110d4338683815181106110c5576110c56142ff565b602002602001015160006126f8565b806110de8161432b565b915050610fc3565b50336001600160a01b03167f23e62fa4e885eb787c43fa56a14c705a3ff63a8149105ce06fd0be2f57ec8127856000604051611123929190614344565b60405180910390a250505050565b60006387f1629d60e01b6001600160e01b031983160161115357506000919050565b61115c82612781565b92915050565b919050565b60606065805461117690614366565b80601f01602080910402602001604051908101604052809291908181526020018280546111a290614366565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b5050505050905090565b6000611204826127a6565b506000908152606960205260409020546001600160a01b031690565b600061122b82611c9b565b9050806001600160a01b0316836001600160a01b0316036112985760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f0e565b336001600160a01b03821614806112b457506112b48133610e6c565b6113265760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f0e565b6113308383612805565b505050565b600061134081612873565b6113486126b0565b6101ed54156113a45760405162461bcd60e51b815260206004820152602260248201527f536d7572663a2050726f76656e616e6365206861736820616c72656164792073604482015261195d60f21b6064820152608401610f0e565b60008290036113f15760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f0e565b6101ee546000036114445760405162461bcd60e51b815260206004820152601a60248201527f536d7572663a2053687566666c6573656564206e6f74207365740000000000006044820152606401610f0e565b6101ec5482036114b15760405162461bcd60e51b815260206004820152603260248201527f536d7572663a20556e73687566666c656420616e642073687566666c65642068604482015271617368657320617265207468652073616d6560701b6064820152608401610f0e565b506101ed55565b60405162461bcd60e51b815260206004820152602760248201527f536d7572663a2049455243373231456e756d657261626c6520776173206465706044820152661c9958d85d195960ca1b6064820152600090608401610f0e565b61151e335b8261287d565b61153a5760405162461bcd60e51b8152600401610f0e906143a0565b6113308383836128fb565b6101c5816019811061155657600080fd5b0154905081565b6000828152610160602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916115d457506040805180820190915261015f546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906115f3906001600160601b0316876143ed565b6115fd9190614422565b91519350909150505b9250929050565b600082815260fb602052604090206001015461162881612873565b6113308383612a6c565b7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf61165c81612873565b6116646126b0565b61133082846002612af2565b6001600160a01b03811633146116e05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f0e565b6116ea8282612c71565b5050565b6000806116fa81612873565b6101e6546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611748576040519150601f19603f3d011682016040523d82523d6000602084013e61174d565b606091505b50909392505050565b60008051602061483f83398151915261176e81612873565b611776612cd8565b50565b61133083838360405180602001604052806000815250612234565b61179d33611518565b6117b95760405162461bcd60e51b8152600401610f0e906143a0565b61177681612d2a565b60008060005b8351811015611811576117f38482815181106117e6576117e66142ff565b6020026020010151612649565b6117fd9083614436565b9150806118098161432b565b9150506117c8565b5092915050565b600054610100900460ff16158080156118385750600054600160ff909116105b806118525750303b158015611852575060005460ff166001145b6118b55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f0e565b6000805460ff1916600117905580156118d8576000805461ff0019166101001790555b6040805161032081018252611f4081526113886020820152610fa091810191909152610bb8606082018190526080820181905260a08201526109c460c0820181905260e0820181905261010082018190526101208201526107d06101408201819052610160820181905261018082018190526101a082018190526101c08201526105dc6101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e082018190526103008201526119b8906101c5906019613c0f565b50611a0b6040518060400160405280601081526020016f4c6567656e6461727920536d7572667360801b815250604051806040016040528060088152602001671514d4ce881311d160c21b815250612dcd565b611a13612dfe565b611a1b612e25565b611a23612dfe565b611a2b612dfe565b611a726040518060400160405280600c81526020016b536d757266536f636965747960a01b815250604051806040016040528060018152602001603160f81b815250612e54565b611a7d600033612a6c565b611a9560008051602061481f83398151915233612a6c565b611aad60008051602061483f83398151915233612a6c565b611ac560008051602061485f83398151915233612a6c565b611acf8585612e85565b6101e580546001600160a01b038086166001600160a01b0319928316179092556101e68054928516929091169190911790558015611b47576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b60008051602061485f833981519152611b6681612873565b611b6e6126b0565b61133082846003612af2565b6000611b8581612873565b611b8d6126b0565b8151611330906101e4906020850190613c53565b805160609060015b81811015611c93576000848281518110611bc557611bc56142ff565b6020026020010151905060008290505b600081118015611c0757508186611bed600184614449565b81518110611bfd57611bfd6142ff565b6020026020010151115b15611c5f5785611c18600183614449565b81518110611c2857611c286142ff565b6020026020010151868281518110611c4257611c426142ff565b602090810291909101015280611c578161445c565b915050611bd5565b81868281518110611c7257611c726142ff565b60200260200101818152505050508080611c8b9061432b565b915050611ba9565b509192915050565b6000818152606760205260408120546001600160a01b03168061115c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f0e565b60008051602061481f833981519152611d1381612873565b611d1b6126b0565b6101e961133083826144b9565b60007f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff8484604051602001611d5d9190614579565b60405160208183030381529060405280519060200120604051602001611d9f939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012090506000611dc282612f83565b90506000611dd08285612fd1565b6101e5549091506001600160a01b03808316911614611e59576040805162461bcd60e51b81526020600482015260248101919091527f536d7572663a20546865207369676e6174757265206164647265737320646f6560448201527f73206e6f74206d61746368207468652070726f766964656420616464726573736064820152608401610f0e565b505050505050565b60006001600160a01b038216611ecb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f0e565b506001600160a01b031660009081526068602052604090205490565b6000611ef281612873565b611efa6126b0565b6001600160a01b038216611f6e5760405162461bcd60e51b815260206004820152603560248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c6044820152746964207769746864726177616c206164647265737360581b6064820152608401610f0e565b506101e680546001600160a01b0319166001600160a01b0392909216919091179055565b60008051602061483f833981519152611faa81612873565b611776612fed565b6101e98054611fc090614366565b80601f0160208091040260200160405190810160405280929190818152602001828054611fec90614366565b80156120395780601f1061200e57610100808354040283529160200191612039565b820191906000526020600020905b81548152906001019060200180831161201c57829003601f168201915b505050505081565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461117690614366565b600061208681612873565b61208e6126b0565b6101ec54156120f55760405162461bcd60e51b815260206004820152602d60248201527f536d7572663a20556e73687566666c65642070726f76656e616e63652068617360448201526c1a08185b1c9958591e481cd95d609a1b6064820152608401610f0e565b60008290036121425760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f0e565b6101ec829055612153436064614436565b6101ef555050565b6101de816005811061155657600080fd5b60006001815b835181101561181157600084828151811061218f5761218f6142ff565b602002602001015190506121ba816000908152606760205260409020546001600160a01b0316151590565b6121c8576000925050611811565b50806121d38161432b565b915050612172565b60008051602061485f8339815191526121f381612873565b6121fb6126b0565b61133082846004612af2565b6116ea33838361302a565b6101e4818154811061222357600080fd5b600091825260209091200154905081565b61223e338361287d565b61225a5760405162461bcd60e51b8152600401610f0e906143a0565b612266848484846130f8565b50505050565b600061227781612873565b61227f6126b0565b6001600160a01b0383166122f05760405162461bcd60e51b815260206004820152603260248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015271696420726f79616c7479206164647265737360701b6064820152608401610f0e565b6113308383612e85565b6000818152606760205260409020546060906001600160a01b03161561234d576101e96123268361312b565b6040516020016123379291906145af565b6040516020818303038152906040529050919050565b505060408051602081019091526000815290565b60006001815b83518110156123c557846001600160a01b031661239c85838151811061238f5761238f6142ff565b6020026020010151611c9b565b6001600160a01b0316146123b357600091506123c5565b806123bd8161432b565b915050612367565b509392505050565b60006123d881612873565b6123e06126b0565b600082116124305760405162461bcd60e51b815260206004820152601b60248201527f536d7572663a2050726963652063616e6e6f74206265207a65726f00000000006044820152606401610f0e565b506101e755565b60008051602061481f83398151915261244f81612873565b6124576126b0565b6101e861133083826144b9565b600061246f81612873565b6124776126b0565b6001600160a01b0382166124e95760405162461bcd60e51b815260206004820152603360248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015272696420617070726f766572206164647265737360681b6064820152608401610f0e565b506101e580546001600160a01b0319166001600160a01b0392909216919091179055565b600061251881612873565b6125206126b0565b6101ef5443116125655760405162461bcd60e51b815260206004820152601060248201526f536d7572663a20546f6f206561726c7960801b6044820152606401610f0e565b6101ef5461257590610100614436565b43106125b55760405162461bcd60e51b815260206004820152600f60248201526e536d7572663a20546f6f206c61746560881b6044820152606401610f0e565b506101ef54406101ee55565b600082815260fb60205260409020600101546125dc81612873565b6113308383612c71565b60008051602061485f8339815191526125fe81612873565b6126066126b0565b6116ea82336001612af2565b6101e88054611fc090614366565b600061262b81612873565b6126336126b0565b506101ea805460ff19811660ff90911615179055565b600080612657601984614643565b905060006127106101e7546101c58460198110612676576126766142ff565b015461268490612710614449565b61268e91906143ed565b6126989190614422565b949350505050565b60606101e8805461117690614366565b60c95460ff16156126f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f0e565b565b612705620186a0826143ed565b821015801561272b5750620186a061271e826001614436565b61272891906143ed565b82105b6127775760405162461bcd60e51b815260206004820152601f60248201527f536d7572663a20546f6b656e206f7574206f662070686173652072616e6765006044820152606401610f0e565b61133083836131be565b60006001600160e01b0319821663152a902d60e11b148061115c575061115c826131d8565b6000818152606760205260409020546001600160a01b03166117765760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f0e565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061283a82611c9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61177681336131fd565b60008061288983611c9b565b9050806001600160a01b0316846001600160a01b031614806128d057506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806126985750836001600160a01b03166128e9846111f9565b6001600160a01b031614949350505050565b826001600160a01b031661290e82611c9b565b6001600160a01b0316146129345760405162461bcd60e51b8152600401610f0e90614657565b6001600160a01b0382166129965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f0e565b6129a38383836001613256565b826001600160a01b03166129b682611c9b565b6001600160a01b0316146129dc5760405162461bcd60e51b8152600401610f0e90614657565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260688552838620805460001901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612a768282612041565b6116ea57600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055612aae3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612afa6126b0565b6005612b07826001614436565b1115612b555760405162461bcd60e51b815260206004820152601c60248201527f536d7572663a205068617365204944206f7574206f662072616e6765000000006044820152606401610f0e565b60008181526101e36020526040812054612b72620186a0846143ed565b612b7c9190614436565b90506101e48281548110612b9257612b926142ff565b9060005260206000200154846101e3600085815260200190815260200160002054612bbd9190614436565b1115612c1b5760405162461bcd60e51b815260206004820152602760248201527f536d7572663a205175616e7469747920776f756c6420657863656564206d617860448201526620737570706c7960c81b6064820152608401610f0e565b60008281526101e3602052604081208054869290612c3a908490614436565b90915550600090505b84811015611b4757612c5f84612c598484614436565b856126f8565b80612c698161432b565b915050612c43565b612c7b8282612041565b156116ea57600082815260fb602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b612ce061326a565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612d3582611c9b565b9050612d45816000846001613256565b612d4e82611c9b565b600083815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16612df45760405162461bcd60e51b8152600401610f0e9061469c565b6116ea82826132b3565b600054610100900460ff166126f65760405162461bcd60e51b8152600401610f0e9061469c565b600054610100900460ff16612e4c5760405162461bcd60e51b8152600401610f0e9061469c565b6126f66132f3565b600054610100900460ff16612e7b5760405162461bcd60e51b8152600401610f0e9061469c565b6116ea8282613326565b6127106001600160601b0382161115612ef35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610f0e565b6001600160a01b038216612f495760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f0e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b9091021761015f55565b600061115c612f90613369565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000612fe085856133eb565b915091506123c58161342d565b612ff56126b0565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d0d3390565b816001600160a01b0316836001600160a01b03160361308b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f0e565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6131038484846128fb565b61310f84848484613577565b6122665760405162461bcd60e51b8152600401610f0e906146e7565b6060600061313883613678565b600101905060008167ffffffffffffffff81111561315857613158613ca3565b6040519080825280601f01601f191660200182016040528015613182576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461318c57509392505050565b6116ea828260405180602001604052806000815250613750565b60006001600160e01b03198216637965db0b60e01b148061115c575061115c82613783565b6132078282612041565b6116ea57613214816137a8565b61321f8360206137ba565b604051602001613230929190614739565b60408051601f198184030181529082905262461bcd60e51b8252610f0e91600401613e84565b61325e6126b0565b6122668484848461395d565b60c95460ff166126f65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f0e565b600054610100900460ff166132da5760405162461bcd60e51b8152600401610f0e9061469c565b60656132e683826144b9565b50606661133082826144b9565b600054610100900460ff1661331a5760405162461bcd60e51b8152600401610f0e9061469c565b60c9805460ff19169055565b600054610100900460ff1661334d5760405162461bcd60e51b8152600401610f0e9061469c565b8151602092830120815191909201206101919190915561019255565b60006133e67f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6133996101915490565b610192546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b60008082516041036134215760208301516040840151606085015160001a61341587828585613962565b94509450505050611606565b50600090506002611606565b6000816004811115613441576134416147ae565b036134495750565b600181600481111561345d5761345d6147ae565b036134aa5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610f0e565b60028160048111156134be576134be6147ae565b0361350b5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610f0e565b600381600481111561351f5761351f6147ae565b036117765760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610f0e565b60006001600160a01b0384163b1561366d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135bb9033908990889088906004016147c4565b6020604051808303816000875af19250505080156135f6575060408051601f3d908101601f191682019092526135f391810190614801565b60015b613653573d808015613624576040519150601f19603f3d011682016040523d82523d6000602084013e613629565b606091505b50805160000361364b5760405162461bcd60e51b8152600401610f0e906146e7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612698565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106136b75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106136e3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061370157662386f26fc10000830492506010015b6305f5e1008310613719576305f5e100830492506008015b612710831061372d57612710830492506004015b6064831061373f576064830492506002015b600a831061115c5760010192915050565b61375a8383613a26565b6137676000848484613577565b6113305760405162461bcd60e51b8152600401610f0e906146e7565b60006001600160e01b0319821663780e9d6360e01b148061115c575061115c82613bbf565b606061115c6001600160a01b03831660145b606060006137c98360026143ed565b6137d4906002614436565b67ffffffffffffffff8111156137ec576137ec613ca3565b6040519080825280601f01601f191660200182016040528015613816576020820181803683370190505b509050600360fc1b81600081518110613831576138316142ff565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613860576138606142ff565b60200101906001600160f81b031916908160001a90535060006138848460026143ed565b61388f906001614436565b90505b6001811115613907576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106138c3576138c36142ff565b1a60f81b8282815181106138d9576138d96142ff565b60200101906001600160f81b031916908160001a90535060049490941c936139008161445c565b9050613892565b5083156139565760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f0e565b9392505050565b612266565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156139995750600090506003613a1d565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156139ed573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613a1657600060019250925050613a1d565b9150600090505b94509492505050565b6001600160a01b038216613a7c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f0e565b6000818152606760205260409020546001600160a01b031615613ae15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f0e565b613aef600083836001613256565b6000818152606760205260409020546001600160a01b031615613b545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f0e565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166380ac58cd60e01b1480613bf057506001600160e01b03198216635b5e139f60e01b145b8061115c57506301ffc9a760e01b6001600160e01b031983161461115c565b8260198101928215613c43579160200282015b82811115613c43578251829061ffff16905591602001919060010190613c22565b50613c4f929150613c8e565b5090565b828054828255906000526020600020908101928215613c43579160200282015b82811115613c43578251825591602001919060010190613c73565b5b80821115613c4f5760008155600101613c8f565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613ce257613ce2613ca3565b604052919050565b600082601f830112613cfb57600080fd5b8135602067ffffffffffffffff821115613d1757613d17613ca3565b8160051b613d26828201613cb9565b9283528481018201928281019087851115613d4057600080fd5b83870192505b84831015613d5f57823582529183019190830190613d46565b979650505050505050565b600080600060408486031215613d7f57600080fd5b833567ffffffffffffffff80821115613d9757600080fd5b613da387838801613cea565b94506020860135915080821115613db957600080fd5b818601915086601f830112613dcd57600080fd5b813581811115613ddc57600080fd5b876020828501011115613dee57600080fd5b6020830194508093505050509250925092565b6001600160e01b03198116811461177657600080fd5b600060208284031215613e2957600080fd5b813561395681613e01565b60005b83811015613e4f578181015183820152602001613e37565b50506000910152565b60008151808452613e70816020860160208601613e34565b601f01601f19169290920160200192915050565b6020815260006139566020830184613e58565b600060208284031215613ea957600080fd5b5035919050565b80356001600160a01b038116811461116257600080fd5b60008060408385031215613eda57600080fd5b613ee383613eb0565b946020939093013593505050565b600080600060608486031215613f0657600080fd5b613f0f84613eb0565b9250613f1d60208501613eb0565b9150604084013590509250925092565b60008060408385031215613f4057600080fd5b50508035926020909101359150565b60008060408385031215613f6257600080fd5b82359150613f7260208401613eb0565b90509250929050565b600060208284031215613f8d57600080fd5b813567ffffffffffffffff811115613fa457600080fd5b61269884828501613cea565b80356001600160601b038116811461116257600080fd5b60008060008060808587031215613fdd57600080fd5b613fe685613eb0565b9350613ff460208601613fb0565b925061400260408601613eb0565b915061401060608601613eb0565b905092959194509250565b600081518084526020808501945080840160005b8381101561404b5781518752958201959082019060010161402f565b509495945050505050565b602081526000613956602083018461401b565b600067ffffffffffffffff83111561408357614083613ca3565b614096601f8401601f1916602001613cb9565b90508281528383830111156140aa57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156140d357600080fd5b813567ffffffffffffffff8111156140ea57600080fd5b8201601f810184136140fb57600080fd5b61269884823560208401614069565b600082601f83011261411b57600080fd5b61395683833560208501614069565b60008060006060848603121561413f57600080fd5b61414884613eb0565b9250602084013567ffffffffffffffff8082111561416557600080fd5b61417187838801613cea565b9350604086013591508082111561418757600080fd5b506141948682870161410a565b9150509250925092565b6000602082840312156141b057600080fd5b61395682613eb0565b600080604083850312156141cc57600080fd5b6141d583613eb0565b9150602083013580151581146141ea57600080fd5b809150509250929050565b6000806000806080858703121561420b57600080fd5b61421485613eb0565b935061422260208601613eb0565b925060408501359150606085013567ffffffffffffffff81111561424557600080fd5b6142518782880161410a565b91505092959194509250565b6000806040838503121561427057600080fd5b61427983613eb0565b9150613f7260208401613fb0565b6000806040838503121561429a57600080fd5b6142a383613eb0565b9150602083013567ffffffffffffffff8111156142bf57600080fd5b6142cb85828601613cea565b9150509250929050565b600080604083850312156142e857600080fd5b6142f183613eb0565b9150613f7260208401613eb0565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161433d5761433d614315565b5060010190565b604081526000614357604083018561401b565b90508260208301529392505050565b600181811c9082168061437a57607f821691505b60208210810361439a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561440757614407614315565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826144315761443161440c565b500490565b8082018082111561115c5761115c614315565b8181038181111561115c5761115c614315565b60008161446b5761446b614315565b506000190190565b601f82111561133057600081815260208120601f850160051c8101602086101561449a5750805b601f850160051c820191505b81811015611e59578281556001016144a6565b815167ffffffffffffffff8111156144d3576144d3613ca3565b6144e7816144e18454614366565b84614473565b602080601f83116001811461451c57600084156145045750858301515b600019600386901b1c1916600185901b178555611e59565b600085815260208120601f198616915b8281101561454b5788860151825594840194600190910190840161452c565b50858210156145695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b815160009082906020808601845b838110156145a357815185529382019390820190600101614587565b50929695505050505050565b60008084546145bd81614366565b600182811680156145d557600181146145ea57614619565b60ff1984168752821515830287019450614619565b8860005260208060002060005b858110156146105781548a8201529084019082016145f7565b50505082870194505b50602f60f81b8452865192506146358382860160208a01613e34565b919092010195945050505050565b6000826146525761465261440c565b500690565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614771816017850160208801613e34565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516147a2816028840160208801613e34565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906147f790830184613e58565b9695505050505050565b60006020828403121561481357600080fd5b815161395681613e0156fe7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220e82f96637f5770103f8041bb896c82e8fc86d1bbf385f7d7f8023fa38c951c1964736f6c63430008100033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.