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 Source Code Verified (Exact Match)
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, msg.sender); 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, bool _isLegendaryHolder) public view returns (uint) { uint rank = _crystalId % CRYSTAL_RANGES; uint discountExpiryBps; uint discountBps = PERCENTAGES_BPS[rank]; if (!_isLegendaryHolder) { if (block.timestamp >= DISCOUNT_EXPIRY_START_TIMESTAMP) { discountExpiryBps = (((block.timestamp - DISCOUNT_EXPIRY_START_TIMESTAMP)/DISCOUNT_DECREASE_PERIOD) + 1)*DISCOUNT_DECREASE_BPS; } if (discountExpiryBps <= discountBps) { discountBps -= discountExpiryBps; // No underflow possible because a <= b <==> 0 <= b - a } else { discountBps = 0; } } uint price = ((10000-discountBps)*__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, address owner) public view returns (uint) { bool isLegendaryHolder = balanceOf(owner) != 0; uint totalPrice; for (uint i; i<_crystalIds.length; i++) { totalPrice += getPrice(_crystalIds[i], isLegendaryHolder); } return totalPrice; } function getPrices(uint[] memory _crystalIds, address owner) public view returns (uint[] memory) { bool isLegendaryHolder = balanceOf(owner) != 0; uint[] memory prices = new uint[](_crystalIds.length); for (uint i; i<_crystalIds.length; i++) { prices[i] = getPrice(_crystalIds[i], isLegendaryHolder); } return prices; } 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; uint public constant DISCOUNT_EXPIRY_START_TIMESTAMP = 1687305600; uint public constant DISCOUNT_DECREASE_PERIOD = 1 weeks; uint public constant DISCOUNT_DECREASE_BPS = 500; }
// 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":"DISCOUNT_DECREASE_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISCOUNT_DECREASE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISCOUNT_EXPIRY_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"internalType":"bool","name":"_isLegendaryHolder","type":"bool"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_crystalIds","type":"uint256[]"},{"internalType":"address","name":"owner","type":"address"}],"name":"getPrices","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[]"},{"internalType":"address","name":"owner","type":"address"}],"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
60806040523480156200001157600080fd5b506200001c62000022565b620000e4565b600054610100900460ff16156200008f5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff9081161015620000e2576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b614ac480620000f46000396000f3fe6080604052600436106104c05760003560e01c806370a0823111610276578063c87b56dd1161014f578063da35aa02116100c1578063e456e0f611610085578063e456e0f614610e8b578063e63ab1e914610eab578063e7c34d5114610b86578063e8a3d48514610ecd578063e985e9c514610ee2578063fcf4d26714610f2b57600080fd5b8063da35aa0214610e07578063dae3264414610e35578063dc67e87814610e4a578063dcee971614610e61578063de825f1014610e7657600080fd5b8063ce57589611610113578063ce57589614610d50578063cf8fc3b114610d70578063d4efa4f714610d90578063d539139314610da5578063d547741f14610dc7578063d9b4de0a14610de757600080fd5b8063c87b56dd14610caf578063ca45c21714610ccf578063cc7ceb8814610cef578063ccb4807b14610d0f578063cde2ce4614610d2f57600080fd5b80639fca0dd6116101e8578063a3c8f7ca116101ac578063a3c8f7ca14610bd3578063b7c5cbde14610bf3578063b88d4fde14610c27578063ba52e3ee14610c47578063bd39683614610c78578063c21b471b14610c8f57600080fd5b80639fca0dd614610b4b578063a06b1b1814610b6b578063a217fddf14610b86578063a22cb46514610b9b578063a2a197d414610bbb57600080fd5b806388fb21bf1161023a57806388fb21bf14610aa157806391d1485414610ab657806395d89b4114610ad6578063964b6f3414610aeb5780639add50c114610b0b5780639ebeb0f814610b2b57600080fd5b806370a0823114610a1457806375796f7614610a345780637972a78e14610a545780637f34571014610a6a5780638456cb5914610a8c57600080fd5b8063417153ef116103a85780635439fd481161031a5780636297206f116102de5780636297206f1461095b5780636352211e146109885780636533a6fc146109a85780636a263e65146109c85780636af6cfb0146109dd5780636c85cbc9146109f457600080fd5b80635439fd48146108b75780635705b61a146108eb5780635c8e2b7e1461090b5780635c975abb1461092c578063600b03fa1461094457600080fd5b80634d06b7e81161036c5780634d06b7e81461081b5780634da84bd0146108305780634f6ccce714610847578063506d0bea1461086257806351a6cc4f1461088257806351c5dafb1461089757600080fd5b8063417153ef1461078f57806342842e0e146107a457806342966c68146107c4578063472e24de146107e4578063480a8c5e146107fb57600080fd5b8063285f6e5811610441578063363cc64c11610405578063363cc64c146106e757806336568abe146107075780633665740c146107275780633ccfd60b1461075b5780633f4ba83a146107635780633f8f1ef51461077857600080fd5b8063285f6e58146106315780632a55205a146106515780632f2ff15d146106905780632f745c59146106b0578063342cd54f146106d057600080fd5b8063099b6bfa11610488578063099b6bfa146105895780631722c1fe146105a957806318160ddd146105cc57806323b872dd146105e1578063248a9ca31461060157600080fd5b8063012883b3146104c557806301ffc9a7146104da57806306fdde031461050f578063081812fc14610531578063095ea7b314610569575b600080fd5b6104d86104d3366004613f1d565b610f40565b005b3480156104e657600080fd5b506104fa6104f5366004613fc9565b6111c3565b60405190151581526020015b60405180910390f35b34801561051b57600080fd5b506105246111f9565b6040516105069190614036565b34801561053d57600080fd5b5061055161054c366004614049565b61128b565b6040516001600160a01b039091168152602001610506565b34801561057557600080fd5b506104d8610584366004614079565b6112b2565b34801561059557600080fd5b506104d86105a4366004614049565b6113c7565b3480156105b557600080fd5b506105be603281565b604051908152602001610506565b3480156105d857600080fd5b506105be61154a565b3480156105ed57600080fd5b506104d86105fc3660046140a3565b6115a5565b34801561060d57600080fd5b506105be61061c366004614049565b600090815260fb602052604090206001015490565b34801561063d57600080fd5b506105be61064c366004614049565b6115d7565b34801561065d57600080fd5b5061067161066c3660046140df565b6115ef565b604080516001600160a01b039093168352602083019190915201610506565b34801561069c57600080fd5b506104d86106ab366004614101565b61169f565b3480156106bc57600080fd5b506105be6106cb366004614079565b61154a565b3480156106dc57600080fd5b506105be6101ed5481565b3480156106f357600080fd5b506104d8610702366004614079565b6116c4565b34801561071357600080fd5b506104d8610722366004614101565b611702565b34801561073357600080fd5b506105be7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf81565b6104fa611780565b34801561076f57600080fd5b506104d86117e8565b34801561078457600080fd5b506105be6101ec5481565b34801561079b57600080fd5b506105be601981565b3480156107b057600080fd5b506104d86107bf3660046140a3565b61180b565b3480156107d057600080fd5b506104d86107df366004614049565b611826565b3480156107f057600080fd5b506105be620186a081565b34801561080757600080fd5b506104d8610816366004614144565b611854565b34801561082757600080fd5b506105be600281565b34801561083c57600080fd5b506105be6101ee5481565b34801561085357600080fd5b506105be6106cb366004614049565b34801561086e57600080fd5b506104d861087d366004614079565b611b8a565b34801561088e57600080fd5b506105be600181565b3480156108a357600080fd5b506104d86108b2366004614198565b611bb6565b3480156108c357600080fd5b506105be7f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff81565b3480156108f757600080fd5b506105be6109063660046141dc565b611bdd565b34801561091757600080fd5b506101e554610551906001600160a01b031681565b34801561093857600080fd5b5060c95460ff166104fa565b34801561095057600080fd5b506105be620f424081565b34801561096757600080fd5b5061097b610976366004614198565b611ca1565b604051610506919061423a565b34801561099457600080fd5b506105516109a3366004614049565b611d9b565b3480156109b457600080fd5b506104d86109c33660046142a4565b611dfb565b3480156109d457600080fd5b506105be600381565b3480156109e957600080fd5b506105be62093a8081565b348015610a0057600080fd5b506104d8610a0f36600461430c565b611e28565b348015610a2057600080fd5b506105be610a2f36600461437f565b611f61565b348015610a4057600080fd5b506104d8610a4f36600461437f565b611fe7565b348015610a6057600080fd5b506105be6101f481565b348015610a7657600080fd5b506105be600080516020614a2f83398151915281565b348015610a9857600080fd5b506104d8612092565b348015610aad57600080fd5b506105246120b2565b348015610ac257600080fd5b506104fa610ad1366004614101565b612141565b348015610ae257600080fd5b5061052461216c565b348015610af757600080fd5b506104d8610b06366004614049565b61217b565b348015610b1757600080fd5b506105be610b26366004614049565b61225b565b348015610b3757600080fd5b506104fa610b46366004614198565b61226c565b348015610b5757600080fd5b506104d8610b66366004614079565b6122e2565b348015610b7757600080fd5b506101ea546104fa9060ff1681565b348015610b9257600080fd5b506105be600081565b348015610ba757600080fd5b506104d8610bb636600461439a565b61230e565b348015610bc757600080fd5b506105be6364923d8081565b348015610bdf57600080fd5b506105be610bee366004614049565b612319565b348015610bff57600080fd5b506105be7f15adcf77330e34bfd8890e275686909e196bc26f91273dca371235300c18e6e981565b348015610c3357600080fd5b506104d8610c423660046143c4565b61233b565b348015610c5357600080fd5b506104fa610c62366004614049565b6101eb6020526000908152604090205460ff1681565b348015610c8457600080fd5b506105be6101ef5481565b348015610c9b57600080fd5b506104d8610caa36600461442b565b612373565b348015610cbb57600080fd5b50610524610cca366004614049565b612401565b348015610cdb57600080fd5b506104fa610cea366004614455565b612468565b348015610cfb57600080fd5b506104d8610d0a366004614049565b6124d4565b348015610d1b57600080fd5b506104d8610d2a3660046142a4565b61253e565b348015610d3b57600080fd5b506101e654610551906001600160a01b031681565b348015610d5c57600080fd5b506105be610d6b3660046144a2565b61256b565b348015610d7c57600080fd5b506104d8610d8b36600461437f565b6125d2565b348015610d9c57600080fd5b506104d861267b565b348015610db157600080fd5b506105be600080516020614a6f83398151915281565b348015610dd357600080fd5b506104d8610de2366004614101565b61272f565b348015610df357600080fd5b506104d8610e02366004614049565b612754565b348015610e1357600080fd5b506105be610e22366004614049565b6101e36020526000908152604090205481565b348015610e4157600080fd5b50610524612780565b348015610e5657600080fd5b506105be6101e75481565b348015610e6d57600080fd5b506105be600581565b348015610e8257600080fd5b506104d861278e565b348015610e9757600080fd5b5061097b610ea63660046144a2565b6127b7565b348015610eb757600080fd5b506105be600080516020614a4f83398151915281565b348015610ed957600080fd5b50610524612861565b348015610eee57600080fd5b506104fa610efd3660046144e6565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610f3757600080fd5b506105be600481565b6101ea5460ff16610fa85760405162461bcd60e51b815260206004820152602760248201527f536d7572663a2052656465656d696e67206372797374616c73206973206e6f74604482015266081bdc195b995960ca1b60648201526084015b60405180910390fd5b610fb0612871565b6000610fbc843361256b565b90508034146110065760405162461bcd60e51b8152602060048201526016602482015275536d7572663a20496e636f727265637420707269636560501b6044820152606401610f9f565b61100f84611ca1565b9350611052338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e2892505050565b60005b8451811015611178576101eb600086838151811061107557611075614510565b60209081029190910181015182528101919091526040016000205460ff16156110fb5760405162461bcd60e51b815260206004820152603260248201527f536d7572663a204372797374616c2068617320616c7265616479206265656e206044820152717573656420666f72206d696e74696e67202160701b6064820152608401610f9f565b60016101eb600087848151811061111457611114614510565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111663386838151811061115757611157614510565b602002602001015160006128b9565b806111708161453c565b915050611055565b50336001600160a01b03167f23e62fa4e885eb787c43fa56a14c705a3ff63a8149105ce06fd0be2f57ec81278560006040516111b5929190614555565b60405180910390a250505050565b60006387f1629d60e01b6001600160e01b03198316016111e557506000919050565b6111ee82612942565b92915050565b919050565b60606065805461120890614577565b80601f016020809104026020016040519081016040528092919081815260200182805461123490614577565b80156112815780601f1061125657610100808354040283529160200191611281565b820191906000526020600020905b81548152906001019060200180831161126457829003601f168201915b5050505050905090565b600061129682612967565b506000908152606960205260409020546001600160a01b031690565b60006112bd82611d9b565b9050806001600160a01b0316836001600160a01b03160361132a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f9f565b336001600160a01b038216148061134657506113468133610efd565b6113b85760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f9f565b6113c283836129c6565b505050565b60006113d281612a34565b6113da612871565b6101ed54156114365760405162461bcd60e51b815260206004820152602260248201527f536d7572663a2050726f76656e616e6365206861736820616c72656164792073604482015261195d60f21b6064820152608401610f9f565b60008290036114835760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f9f565b6101ee546000036114d65760405162461bcd60e51b815260206004820152601a60248201527f536d7572663a2053687566666c6573656564206e6f74207365740000000000006044820152606401610f9f565b6101ec5482036115435760405162461bcd60e51b815260206004820152603260248201527f536d7572663a20556e73687566666c656420616e642073687566666c65642068604482015271617368657320617265207468652073616d6560701b6064820152608401610f9f565b506101ed55565b60405162461bcd60e51b815260206004820152602760248201527f536d7572663a2049455243373231456e756d657261626c6520776173206465706044820152661c9958d85d195960ca1b6064820152600090608401610f9f565b6115b0335b82612a3e565b6115cc5760405162461bcd60e51b8152600401610f9f906145b1565b6113c2838383612abd565b6101c581601981106115e857600080fd5b0154905081565b6000828152610160602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161166657506040805180820190915261015f546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611685906001600160601b0316876145fe565b61168f9190614633565b91519350909150505b9250929050565b600082815260fb60205260409020600101546116ba81612a34565b6113c28383612c2e565b7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf6116ee81612a34565b6116f6612871565b6113c282846002612cb4565b6001600160a01b03811633146117725760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f9f565b61177c8282612e33565b5050565b60008061178c81612a34565b6101e6546040516001600160a01b03909116904790600081818185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b50909392505050565b600080516020614a4f83398151915261180081612a34565b611808612e9a565b50565b6113c28383836040518060200160405280600081525061233b565b61182f336115aa565b61184b5760405162461bcd60e51b8152600401610f9f906145b1565b61180881612eec565b600054610100900460ff16158080156118745750600054600160ff909116105b8061188e5750303b15801561188e575060005460ff166001145b6118f15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f9f565b6000805460ff191660011790558015611914576000805461ff0019166101001790555b6040805161032081018252611f4081526113886020820152610fa091810191909152610bb8606082018190526080820181905260a08201526109c460c0820181905260e0820181905261010082018190526101208201526107d06101408201819052610160820181905261018082018190526101a082018190526101c08201526105dc6101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e082018190526103008201526119f4906101c5906019613dcf565b50611a476040518060400160405280601081526020016f4c6567656e6461727920536d7572667360801b815250604051806040016040528060088152602001671514d4ce881311d160c21b815250612f8f565b611a4f612fc0565b611a57612fe7565b611a5f612fc0565b611a67612fc0565b611aae6040518060400160405280600c81526020016b536d757266536f636965747960a01b815250604051806040016040528060018152602001603160f81b815250613016565b611ab9600033612c2e565b611ad1600080516020614a2f83398151915233612c2e565b611ae9600080516020614a4f83398151915233612c2e565b611b01600080516020614a6f83398151915233612c2e565b611b0b8585613047565b6101e580546001600160a01b038086166001600160a01b0319928316179092556101e68054928516929091169190911790558015611b83576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b600080516020614a6f833981519152611ba281612a34565b611baa612871565b6113c282846003612cb4565b6000611bc181612a34565b611bc9612871565b81516113c2906101e4906020850190613e13565b600080611beb601985614647565b90506000806101c58360198110611c0457611c04614510565b0154905084611c6b576364923d804210611c4f576101f462093a80611c2d6364923d804261465b565b611c379190614633565b611c4290600161466e565b611c4c91906145fe565b91505b808211611c6757611c60828261465b565b9050611c6b565b5060005b60006127106101e75483612710611c82919061465b565b611c8c91906145fe565b611c969190614633565b979650505050505050565b805160609060015b81811015611d93576000848281518110611cc557611cc5614510565b6020026020010151905060008290505b600081118015611d0757508186611ced60018461465b565b81518110611cfd57611cfd614510565b6020026020010151115b15611d5f5785611d1860018361465b565b81518110611d2857611d28614510565b6020026020010151868281518110611d4257611d42614510565b602090810291909101015280611d5781614681565b915050611cd5565b81868281518110611d7257611d72614510565b60200260200101818152505050508080611d8b9061453c565b915050611ca9565b509192915050565b6000818152606760205260408120546001600160a01b0316806111ee5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f9f565b600080516020614a2f833981519152611e1381612a34565b611e1b612871565b6101e96113c283826146de565b60007f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff8484604051602001611e5d919061479d565b60405160208183030381529060405280519060200120604051602001611e9f939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012090506000611ec282613145565b90506000611ed08285613193565b6101e5549091506001600160a01b03808316911614611f59576040805162461bcd60e51b81526020600482015260248101919091527f536d7572663a20546865207369676e6174757265206164647265737320646f6560448201527f73206e6f74206d61746368207468652070726f766964656420616464726573736064820152608401610f9f565b505050505050565b60006001600160a01b038216611fcb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f9f565b506001600160a01b031660009081526068602052604090205490565b6000611ff281612a34565b611ffa612871565b6001600160a01b03821661206e5760405162461bcd60e51b815260206004820152603560248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c6044820152746964207769746864726177616c206164647265737360581b6064820152608401610f9f565b506101e680546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020614a4f8339815191526120aa81612a34565b6118086131af565b6101e980546120c090614577565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90614577565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b505050505081565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461120890614577565b600061218681612a34565b61218e612871565b6101ec54156121f55760405162461bcd60e51b815260206004820152602d60248201527f536d7572663a20556e73687566666c65642070726f76656e616e63652068617360448201526c1a08185b1c9958591e481cd95d609a1b6064820152608401610f9f565b60008290036122425760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f9f565b6101ec82905561225343606461466e565b6101ef555050565b6101de81600581106115e857600080fd5b60006001815b83518110156122db57600084828151811061228f5761228f614510565b602002602001015190506122ba816000908152606760205260409020546001600160a01b0316151590565b6122c85760009250506122db565b50806122d38161453c565b915050612272565b5092915050565b600080516020614a6f8339815191526122fa81612a34565b612302612871565b6113c282846004612cb4565b61177c3383836131ec565b6101e4818154811061232a57600080fd5b600091825260209091200154905081565b6123453383612a3e565b6123615760405162461bcd60e51b8152600401610f9f906145b1565b61236d848484846132ba565b50505050565b600061237e81612a34565b612386612871565b6001600160a01b0383166123f75760405162461bcd60e51b815260206004820152603260248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015271696420726f79616c7479206164647265737360701b6064820152608401610f9f565b6113c28383613047565b6000818152606760205260409020546060906001600160a01b031615612454576101e961242d836132ed565b60405160200161243e9291906147d3565b6040516020818303038152906040529050919050565b505060408051602081019091526000815290565b60006001815b83518110156124cc57846001600160a01b03166124a385838151811061249657612496614510565b6020026020010151611d9b565b6001600160a01b0316146124ba57600091506124cc565b806124c48161453c565b91505061246e565b509392505050565b60006124df81612a34565b6124e7612871565b600082116125375760405162461bcd60e51b815260206004820152601b60248201527f536d7572663a2050726963652063616e6e6f74206265207a65726f00000000006044820152606401610f9f565b506101e755565b600080516020614a2f83398151915261255681612a34565b61255e612871565b6101e86113c283826146de565b60008061257783611f61565b151590506000805b85518110156125c9576125ab86828151811061259d5761259d614510565b602002602001015184611bdd565b6125b5908361466e565b9150806125c18161453c565b91505061257f565b50949350505050565b60006125dd81612a34565b6125e5612871565b6001600160a01b0382166126575760405162461bcd60e51b815260206004820152603360248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015272696420617070726f766572206164647265737360681b6064820152608401610f9f565b506101e580546001600160a01b0319166001600160a01b0392909216919091179055565b600061268681612a34565b61268e612871565b6101ef5443116126d35760405162461bcd60e51b815260206004820152601060248201526f536d7572663a20546f6f206561726c7960801b6044820152606401610f9f565b6101ef546126e39061010061466e565b43106127235760405162461bcd60e51b815260206004820152600f60248201526e536d7572663a20546f6f206c61746560881b6044820152606401610f9f565b506101ef54406101ee55565b600082815260fb602052604090206001015461274a81612a34565b6113c28383612e33565b600080516020614a6f83398151915261276c81612a34565b612774612871565b61177c82336001612cb4565b6101e880546120c090614577565b600061279981612a34565b6127a1612871565b506101ea805460ff19811660ff90911615179055565b606060006127c483611f61565b600014159050600084516001600160401b038111156127e5576127e5613e63565b60405190808252806020026020018201604052801561280e578160200160208202803683370190505b50905060005b85518110156125c95761283286828151811061259d5761259d614510565b82828151811061284457612844614510565b6020908102919091010152806128598161453c565b915050612814565b60606101e8805461120890614577565b60c95460ff16156128b75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f9f565b565b6128c6620186a0826145fe565b82101580156128ec5750620186a06128df82600161466e565b6128e991906145fe565b82105b6129385760405162461bcd60e51b815260206004820152601f60248201527f536d7572663a20546f6b656e206f7574206f662070686173652072616e6765006044820152606401610f9f565b6113c2838361337f565b60006001600160e01b0319821663152a902d60e11b14806111ee57506111ee82613399565b6000818152606760205260409020546001600160a01b03166118085760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f9f565b600081815260696020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129fb82611d9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61180881336133be565b600080612a4a83611d9b565b9050806001600160a01b0316846001600160a01b03161480612a9157506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b80612ab55750836001600160a01b0316612aaa8461128b565b6001600160a01b0316145b949350505050565b826001600160a01b0316612ad082611d9b565b6001600160a01b031614612af65760405162461bcd60e51b8152600401610f9f90614867565b6001600160a01b038216612b585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f9f565b612b658383836001613417565b826001600160a01b0316612b7882611d9b565b6001600160a01b031614612b9e5760405162461bcd60e51b8152600401610f9f90614867565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260688552838620805460001901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612c388282612141565b61177c57600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055612c703390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612cbc612871565b6005612cc982600161466e565b1115612d175760405162461bcd60e51b815260206004820152601c60248201527f536d7572663a205068617365204944206f7574206f662072616e6765000000006044820152606401610f9f565b60008181526101e36020526040812054612d34620186a0846145fe565b612d3e919061466e565b90506101e48281548110612d5457612d54614510565b9060005260206000200154846101e3600085815260200190815260200160002054612d7f919061466e565b1115612ddd5760405162461bcd60e51b815260206004820152602760248201527f536d7572663a205175616e7469747920776f756c6420657863656564206d617860448201526620737570706c7960c81b6064820152608401610f9f565b60008281526101e3602052604081208054869290612dfc90849061466e565b90915550600090505b84811015611b8357612e2184612e1b848461466e565b856128b9565b80612e2b8161453c565b915050612e05565b612e3d8282612141565b1561177c57600082815260fb602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b612ea261342b565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ef782611d9b565b9050612f07816000846001613417565b612f1082611d9b565b600083815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16612fb65760405162461bcd60e51b8152600401610f9f906148ac565b61177c8282613474565b600054610100900460ff166128b75760405162461bcd60e51b8152600401610f9f906148ac565b600054610100900460ff1661300e5760405162461bcd60e51b8152600401610f9f906148ac565b6128b76134b4565b600054610100900460ff1661303d5760405162461bcd60e51b8152600401610f9f906148ac565b61177c82826134e7565b6127106001600160601b03821611156130b55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610f9f565b6001600160a01b03821661310b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f9f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b9091021761015f55565b60006111ee61315261352a565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006131a285856135ac565b915091506124cc816135ee565b6131b7612871565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ecf3390565b816001600160a01b0316836001600160a01b03160361324d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f9f565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6132c5848484612abd565b6132d184848484613738565b61236d5760405162461bcd60e51b8152600401610f9f906148f7565b606060006132fa83613839565b60010190506000816001600160401b0381111561331957613319613e63565b6040519080825280601f01601f191660200182016040528015613343576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461334d57509392505050565b61177c828260405180602001604052806000815250613911565b60006001600160e01b03198216637965db0b60e01b14806111ee57506111ee82613944565b6133c88282612141565b61177c576133d581613969565b6133e083602061397b565b6040516020016133f1929190614949565b60408051601f198184030181529082905262461bcd60e51b8252610f9f91600401614036565b61341f612871565b61236d84848484613b1d565b60c95460ff166128b75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f9f565b600054610100900460ff1661349b5760405162461bcd60e51b8152600401610f9f906148ac565b60656134a783826146de565b5060666113c282826146de565b600054610100900460ff166134db5760405162461bcd60e51b8152600401610f9f906148ac565b60c9805460ff19169055565b600054610100900460ff1661350e5760405162461bcd60e51b8152600401610f9f906148ac565b8151602092830120815191909201206101919190915561019255565b60006135a77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61355a6101915490565b610192546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b60008082516041036135e25760208301516040840151606085015160001a6135d687828585613b22565b94509450505050611698565b50600090506002611698565b6000816004811115613602576136026149be565b0361360a5750565b600181600481111561361e5761361e6149be565b0361366b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610f9f565b600281600481111561367f5761367f6149be565b036136cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610f9f565b60038160048111156136e0576136e06149be565b036118085760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610f9f565b60006001600160a01b0384163b1561382e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061377c9033908990889088906004016149d4565b6020604051808303816000875af19250505080156137b7575060408051601f3d908101601f191682019092526137b491810190614a11565b60015b613814573d8080156137e5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ea565b606091505b50805160000361380c5760405162461bcd60e51b8152600401610f9f906148f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab5565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106138785772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106138a4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106138c257662386f26fc10000830492506010015b6305f5e10083106138da576305f5e100830492506008015b61271083106138ee57612710830492506004015b60648310613900576064830492506002015b600a83106111ee5760010192915050565b61391b8383613be6565b6139286000848484613738565b6113c25760405162461bcd60e51b8152600401610f9f906148f7565b60006001600160e01b0319821663780e9d6360e01b14806111ee57506111ee82613d7f565b60606111ee6001600160a01b03831660145b6060600061398a8360026145fe565b61399590600261466e565b6001600160401b038111156139ac576139ac613e63565b6040519080825280601f01601f1916602001820160405280156139d6576020820181803683370190505b509050600360fc1b816000815181106139f1576139f1614510565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613a2057613a20614510565b60200101906001600160f81b031916908160001a9053506000613a448460026145fe565b613a4f90600161466e565b90505b6001811115613ac7576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613a8357613a83614510565b1a60f81b828281518110613a9957613a99614510565b60200101906001600160f81b031916908160001a90535060049490941c93613ac081614681565b9050613a52565b508315613b165760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f9f565b9392505050565b61236d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613b595750600090506003613bdd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613bad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613bd657600060019250925050613bdd565b9150600090505b94509492505050565b6001600160a01b038216613c3c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f9f565b6000818152606760205260409020546001600160a01b031615613ca15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f9f565b613caf600083836001613417565b6000818152606760205260409020546001600160a01b031615613d145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f9f565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166380ac58cd60e01b1480613db057506001600160e01b03198216635b5e139f60e01b145b806111ee57506301ffc9a760e01b6001600160e01b03198316146111ee565b8260198101928215613e03579160200282015b82811115613e03578251829061ffff16905591602001919060010190613de2565b50613e0f929150613e4e565b5090565b828054828255906000526020600020908101928215613e03579160200282015b82811115613e03578251825591602001919060010190613e33565b5b80821115613e0f5760008155600101613e4f565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613ea157613ea1613e63565b604052919050565b600082601f830112613eba57600080fd5b813560206001600160401b03821115613ed557613ed5613e63565b8160051b613ee4828201613e79565b9283528481018201928281019087851115613efe57600080fd5b83870192505b84831015611c9657823582529183019190830190613f04565b600080600060408486031215613f3257600080fd5b83356001600160401b0380821115613f4957600080fd5b613f5587838801613ea9565b94506020860135915080821115613f6b57600080fd5b818601915086601f830112613f7f57600080fd5b813581811115613f8e57600080fd5b876020828501011115613fa057600080fd5b6020830194508093505050509250925092565b6001600160e01b03198116811461180857600080fd5b600060208284031215613fdb57600080fd5b8135613b1681613fb3565b60005b83811015614001578181015183820152602001613fe9565b50506000910152565b60008151808452614022816020860160208601613fe6565b601f01601f19169290920160200192915050565b602081526000613b16602083018461400a565b60006020828403121561405b57600080fd5b5035919050565b80356001600160a01b03811681146111f457600080fd5b6000806040838503121561408c57600080fd5b61409583614062565b946020939093013593505050565b6000806000606084860312156140b857600080fd5b6140c184614062565b92506140cf60208501614062565b9150604084013590509250925092565b600080604083850312156140f257600080fd5b50508035926020909101359150565b6000806040838503121561411457600080fd5b8235915061412460208401614062565b90509250929050565b80356001600160601b03811681146111f457600080fd5b6000806000806080858703121561415a57600080fd5b61416385614062565b93506141716020860161412d565b925061417f60408601614062565b915061418d60608601614062565b905092959194509250565b6000602082840312156141aa57600080fd5b81356001600160401b038111156141c057600080fd5b612ab584828501613ea9565b803580151581146111f457600080fd5b600080604083850312156141ef57600080fd5b82359150614124602084016141cc565b600081518084526020808501945080840160005b8381101561422f57815187529582019590820190600101614213565b509495945050505050565b602081526000613b1660208301846141ff565b60006001600160401b0383111561426657614266613e63565b614279601f8401601f1916602001613e79565b905082815283838301111561428d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156142b657600080fd5b81356001600160401b038111156142cc57600080fd5b8201601f810184136142dd57600080fd5b612ab58482356020840161424d565b600082601f8301126142fd57600080fd5b613b168383356020850161424d565b60008060006060848603121561432157600080fd5b61432a84614062565b925060208401356001600160401b038082111561434657600080fd5b61435287838801613ea9565b9350604086013591508082111561436857600080fd5b50614375868287016142ec565b9150509250925092565b60006020828403121561439157600080fd5b613b1682614062565b600080604083850312156143ad57600080fd5b6143b683614062565b9150614124602084016141cc565b600080600080608085870312156143da57600080fd5b6143e385614062565b93506143f160208601614062565b92506040850135915060608501356001600160401b0381111561441357600080fd5b61441f878288016142ec565b91505092959194509250565b6000806040838503121561443e57600080fd5b61444783614062565b91506141246020840161412d565b6000806040838503121561446857600080fd5b61447183614062565b915060208301356001600160401b0381111561448c57600080fd5b61449885828601613ea9565b9150509250929050565b600080604083850312156144b557600080fd5b82356001600160401b038111156144cb57600080fd5b6144d785828601613ea9565b92505061412460208401614062565b600080604083850312156144f957600080fd5b61450283614062565b915061412460208401614062565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161454e5761454e614526565b5060010190565b60408152600061456860408301856141ff565b90508260208301529392505050565b600181811c9082168061458b57607f821691505b6020821081036145ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561461857614618614526565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826146425761464261461d565b500490565b6000826146565761465661461d565b500690565b818103818111156111ee576111ee614526565b808201808211156111ee576111ee614526565b60008161469057614690614526565b506000190190565b601f8211156113c257600081815260208120601f850160051c810160208610156146bf5750805b601f850160051c820191505b81811015611f59578281556001016146cb565b81516001600160401b038111156146f7576146f7613e63565b61470b816147058454614577565b84614698565b602080601f83116001811461474057600084156147285750858301515b600019600386901b1c1916600185901b178555611f59565b600085815260208120601f198616915b8281101561476f57888601518255948401946001909101908401614750565b508582101561478d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b815160009082906020808601845b838110156147c7578151855293820193908201906001016147ab565b50929695505050505050565b60008084546147e181614577565b600182811680156147f9576001811461480e5761483d565b60ff198416875282151583028701945061483d565b8860005260208060002060005b858110156148345781548a82015290840190820161481b565b50505082870194505b50602f60f81b8452865192506148598382860160208a01613fe6565b919092010195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614981816017850160208801613fe6565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516149b2816028840160208801613fe6565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614a079083018461400a565b9695505050505050565b600060208284031215614a2357600080fd5b8151613b1681613fb356fe7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220558b464ad0d2b24a66a302f208f18193b2102e1af2e4e033a4e8ceba0cde903264736f6c63430008100033
Deployed Bytecode
0x6080604052600436106104c05760003560e01c806370a0823111610276578063c87b56dd1161014f578063da35aa02116100c1578063e456e0f611610085578063e456e0f614610e8b578063e63ab1e914610eab578063e7c34d5114610b86578063e8a3d48514610ecd578063e985e9c514610ee2578063fcf4d26714610f2b57600080fd5b8063da35aa0214610e07578063dae3264414610e35578063dc67e87814610e4a578063dcee971614610e61578063de825f1014610e7657600080fd5b8063ce57589611610113578063ce57589614610d50578063cf8fc3b114610d70578063d4efa4f714610d90578063d539139314610da5578063d547741f14610dc7578063d9b4de0a14610de757600080fd5b8063c87b56dd14610caf578063ca45c21714610ccf578063cc7ceb8814610cef578063ccb4807b14610d0f578063cde2ce4614610d2f57600080fd5b80639fca0dd6116101e8578063a3c8f7ca116101ac578063a3c8f7ca14610bd3578063b7c5cbde14610bf3578063b88d4fde14610c27578063ba52e3ee14610c47578063bd39683614610c78578063c21b471b14610c8f57600080fd5b80639fca0dd614610b4b578063a06b1b1814610b6b578063a217fddf14610b86578063a22cb46514610b9b578063a2a197d414610bbb57600080fd5b806388fb21bf1161023a57806388fb21bf14610aa157806391d1485414610ab657806395d89b4114610ad6578063964b6f3414610aeb5780639add50c114610b0b5780639ebeb0f814610b2b57600080fd5b806370a0823114610a1457806375796f7614610a345780637972a78e14610a545780637f34571014610a6a5780638456cb5914610a8c57600080fd5b8063417153ef116103a85780635439fd481161031a5780636297206f116102de5780636297206f1461095b5780636352211e146109885780636533a6fc146109a85780636a263e65146109c85780636af6cfb0146109dd5780636c85cbc9146109f457600080fd5b80635439fd48146108b75780635705b61a146108eb5780635c8e2b7e1461090b5780635c975abb1461092c578063600b03fa1461094457600080fd5b80634d06b7e81161036c5780634d06b7e81461081b5780634da84bd0146108305780634f6ccce714610847578063506d0bea1461086257806351a6cc4f1461088257806351c5dafb1461089757600080fd5b8063417153ef1461078f57806342842e0e146107a457806342966c68146107c4578063472e24de146107e4578063480a8c5e146107fb57600080fd5b8063285f6e5811610441578063363cc64c11610405578063363cc64c146106e757806336568abe146107075780633665740c146107275780633ccfd60b1461075b5780633f4ba83a146107635780633f8f1ef51461077857600080fd5b8063285f6e58146106315780632a55205a146106515780632f2ff15d146106905780632f745c59146106b0578063342cd54f146106d057600080fd5b8063099b6bfa11610488578063099b6bfa146105895780631722c1fe146105a957806318160ddd146105cc57806323b872dd146105e1578063248a9ca31461060157600080fd5b8063012883b3146104c557806301ffc9a7146104da57806306fdde031461050f578063081812fc14610531578063095ea7b314610569575b600080fd5b6104d86104d3366004613f1d565b610f40565b005b3480156104e657600080fd5b506104fa6104f5366004613fc9565b6111c3565b60405190151581526020015b60405180910390f35b34801561051b57600080fd5b506105246111f9565b6040516105069190614036565b34801561053d57600080fd5b5061055161054c366004614049565b61128b565b6040516001600160a01b039091168152602001610506565b34801561057557600080fd5b506104d8610584366004614079565b6112b2565b34801561059557600080fd5b506104d86105a4366004614049565b6113c7565b3480156105b557600080fd5b506105be603281565b604051908152602001610506565b3480156105d857600080fd5b506105be61154a565b3480156105ed57600080fd5b506104d86105fc3660046140a3565b6115a5565b34801561060d57600080fd5b506105be61061c366004614049565b600090815260fb602052604090206001015490565b34801561063d57600080fd5b506105be61064c366004614049565b6115d7565b34801561065d57600080fd5b5061067161066c3660046140df565b6115ef565b604080516001600160a01b039093168352602083019190915201610506565b34801561069c57600080fd5b506104d86106ab366004614101565b61169f565b3480156106bc57600080fd5b506105be6106cb366004614079565b61154a565b3480156106dc57600080fd5b506105be6101ed5481565b3480156106f357600080fd5b506104d8610702366004614079565b6116c4565b34801561071357600080fd5b506104d8610722366004614101565b611702565b34801561073357600080fd5b506105be7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf81565b6104fa611780565b34801561076f57600080fd5b506104d86117e8565b34801561078457600080fd5b506105be6101ec5481565b34801561079b57600080fd5b506105be601981565b3480156107b057600080fd5b506104d86107bf3660046140a3565b61180b565b3480156107d057600080fd5b506104d86107df366004614049565b611826565b3480156107f057600080fd5b506105be620186a081565b34801561080757600080fd5b506104d8610816366004614144565b611854565b34801561082757600080fd5b506105be600281565b34801561083c57600080fd5b506105be6101ee5481565b34801561085357600080fd5b506105be6106cb366004614049565b34801561086e57600080fd5b506104d861087d366004614079565b611b8a565b34801561088e57600080fd5b506105be600181565b3480156108a357600080fd5b506104d86108b2366004614198565b611bb6565b3480156108c357600080fd5b506105be7f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff81565b3480156108f757600080fd5b506105be6109063660046141dc565b611bdd565b34801561091757600080fd5b506101e554610551906001600160a01b031681565b34801561093857600080fd5b5060c95460ff166104fa565b34801561095057600080fd5b506105be620f424081565b34801561096757600080fd5b5061097b610976366004614198565b611ca1565b604051610506919061423a565b34801561099457600080fd5b506105516109a3366004614049565b611d9b565b3480156109b457600080fd5b506104d86109c33660046142a4565b611dfb565b3480156109d457600080fd5b506105be600381565b3480156109e957600080fd5b506105be62093a8081565b348015610a0057600080fd5b506104d8610a0f36600461430c565b611e28565b348015610a2057600080fd5b506105be610a2f36600461437f565b611f61565b348015610a4057600080fd5b506104d8610a4f36600461437f565b611fe7565b348015610a6057600080fd5b506105be6101f481565b348015610a7657600080fd5b506105be600080516020614a2f83398151915281565b348015610a9857600080fd5b506104d8612092565b348015610aad57600080fd5b506105246120b2565b348015610ac257600080fd5b506104fa610ad1366004614101565b612141565b348015610ae257600080fd5b5061052461216c565b348015610af757600080fd5b506104d8610b06366004614049565b61217b565b348015610b1757600080fd5b506105be610b26366004614049565b61225b565b348015610b3757600080fd5b506104fa610b46366004614198565b61226c565b348015610b5757600080fd5b506104d8610b66366004614079565b6122e2565b348015610b7757600080fd5b506101ea546104fa9060ff1681565b348015610b9257600080fd5b506105be600081565b348015610ba757600080fd5b506104d8610bb636600461439a565b61230e565b348015610bc757600080fd5b506105be6364923d8081565b348015610bdf57600080fd5b506105be610bee366004614049565b612319565b348015610bff57600080fd5b506105be7f15adcf77330e34bfd8890e275686909e196bc26f91273dca371235300c18e6e981565b348015610c3357600080fd5b506104d8610c423660046143c4565b61233b565b348015610c5357600080fd5b506104fa610c62366004614049565b6101eb6020526000908152604090205460ff1681565b348015610c8457600080fd5b506105be6101ef5481565b348015610c9b57600080fd5b506104d8610caa36600461442b565b612373565b348015610cbb57600080fd5b50610524610cca366004614049565b612401565b348015610cdb57600080fd5b506104fa610cea366004614455565b612468565b348015610cfb57600080fd5b506104d8610d0a366004614049565b6124d4565b348015610d1b57600080fd5b506104d8610d2a3660046142a4565b61253e565b348015610d3b57600080fd5b506101e654610551906001600160a01b031681565b348015610d5c57600080fd5b506105be610d6b3660046144a2565b61256b565b348015610d7c57600080fd5b506104d8610d8b36600461437f565b6125d2565b348015610d9c57600080fd5b506104d861267b565b348015610db157600080fd5b506105be600080516020614a6f83398151915281565b348015610dd357600080fd5b506104d8610de2366004614101565b61272f565b348015610df357600080fd5b506104d8610e02366004614049565b612754565b348015610e1357600080fd5b506105be610e22366004614049565b6101e36020526000908152604090205481565b348015610e4157600080fd5b50610524612780565b348015610e5657600080fd5b506105be6101e75481565b348015610e6d57600080fd5b506105be600581565b348015610e8257600080fd5b506104d861278e565b348015610e9757600080fd5b5061097b610ea63660046144a2565b6127b7565b348015610eb757600080fd5b506105be600080516020614a4f83398151915281565b348015610ed957600080fd5b50610524612861565b348015610eee57600080fd5b506104fa610efd3660046144e6565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b348015610f3757600080fd5b506105be600481565b6101ea5460ff16610fa85760405162461bcd60e51b815260206004820152602760248201527f536d7572663a2052656465656d696e67206372797374616c73206973206e6f74604482015266081bdc195b995960ca1b60648201526084015b60405180910390fd5b610fb0612871565b6000610fbc843361256b565b90508034146110065760405162461bcd60e51b8152602060048201526016602482015275536d7572663a20496e636f727265637420707269636560501b6044820152606401610f9f565b61100f84611ca1565b9350611052338585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e2892505050565b60005b8451811015611178576101eb600086838151811061107557611075614510565b60209081029190910181015182528101919091526040016000205460ff16156110fb5760405162461bcd60e51b815260206004820152603260248201527f536d7572663a204372797374616c2068617320616c7265616479206265656e206044820152717573656420666f72206d696e74696e67202160701b6064820152608401610f9f565b60016101eb600087848151811061111457611114614510565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506111663386838151811061115757611157614510565b602002602001015160006128b9565b806111708161453c565b915050611055565b50336001600160a01b03167f23e62fa4e885eb787c43fa56a14c705a3ff63a8149105ce06fd0be2f57ec81278560006040516111b5929190614555565b60405180910390a250505050565b60006387f1629d60e01b6001600160e01b03198316016111e557506000919050565b6111ee82612942565b92915050565b919050565b60606065805461120890614577565b80601f016020809104026020016040519081016040528092919081815260200182805461123490614577565b80156112815780601f1061125657610100808354040283529160200191611281565b820191906000526020600020905b81548152906001019060200180831161126457829003601f168201915b5050505050905090565b600061129682612967565b506000908152606960205260409020546001600160a01b031690565b60006112bd82611d9b565b9050806001600160a01b0316836001600160a01b03160361132a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610f9f565b336001600160a01b038216148061134657506113468133610efd565b6113b85760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610f9f565b6113c283836129c6565b505050565b60006113d281612a34565b6113da612871565b6101ed54156114365760405162461bcd60e51b815260206004820152602260248201527f536d7572663a2050726f76656e616e6365206861736820616c72656164792073604482015261195d60f21b6064820152608401610f9f565b60008290036114835760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f9f565b6101ee546000036114d65760405162461bcd60e51b815260206004820152601a60248201527f536d7572663a2053687566666c6573656564206e6f74207365740000000000006044820152606401610f9f565b6101ec5482036115435760405162461bcd60e51b815260206004820152603260248201527f536d7572663a20556e73687566666c656420616e642073687566666c65642068604482015271617368657320617265207468652073616d6560701b6064820152608401610f9f565b506101ed55565b60405162461bcd60e51b815260206004820152602760248201527f536d7572663a2049455243373231456e756d657261626c6520776173206465706044820152661c9958d85d195960ca1b6064820152600090608401610f9f565b6115b0335b82612a3e565b6115cc5760405162461bcd60e51b8152600401610f9f906145b1565b6113c2838383612abd565b6101c581601981106115e857600080fd5b0154905081565b6000828152610160602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161166657506040805180820190915261015f546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090611685906001600160601b0316876145fe565b61168f9190614633565b91519350909150505b9250929050565b600082815260fb60205260409020600101546116ba81612a34565b6113c28383612c2e565b7f239063461b16cb4c5773fced172b4c54baf19a655284de30e92d53028e069fbf6116ee81612a34565b6116f6612871565b6113c282846002612cb4565b6001600160a01b03811633146117725760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f9f565b61177c8282612e33565b5050565b60008061178c81612a34565b6101e6546040516001600160a01b03909116904790600081818185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b50909392505050565b600080516020614a4f83398151915261180081612a34565b611808612e9a565b50565b6113c28383836040518060200160405280600081525061233b565b61182f336115aa565b61184b5760405162461bcd60e51b8152600401610f9f906145b1565b61180881612eec565b600054610100900460ff16158080156118745750600054600160ff909116105b8061188e5750303b15801561188e575060005460ff166001145b6118f15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610f9f565b6000805460ff191660011790558015611914576000805461ff0019166101001790555b6040805161032081018252611f4081526113886020820152610fa091810191909152610bb8606082018190526080820181905260a08201526109c460c0820181905260e0820181905261010082018190526101208201526107d06101408201819052610160820181905261018082018190526101a082018190526101c08201526105dc6101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e082018190526103008201526119f4906101c5906019613dcf565b50611a476040518060400160405280601081526020016f4c6567656e6461727920536d7572667360801b815250604051806040016040528060088152602001671514d4ce881311d160c21b815250612f8f565b611a4f612fc0565b611a57612fe7565b611a5f612fc0565b611a67612fc0565b611aae6040518060400160405280600c81526020016b536d757266536f636965747960a01b815250604051806040016040528060018152602001603160f81b815250613016565b611ab9600033612c2e565b611ad1600080516020614a2f83398151915233612c2e565b611ae9600080516020614a4f83398151915233612c2e565b611b01600080516020614a6f83398151915233612c2e565b611b0b8585613047565b6101e580546001600160a01b038086166001600160a01b0319928316179092556101e68054928516929091169190911790558015611b83576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050565b600080516020614a6f833981519152611ba281612a34565b611baa612871565b6113c282846003612cb4565b6000611bc181612a34565b611bc9612871565b81516113c2906101e4906020850190613e13565b600080611beb601985614647565b90506000806101c58360198110611c0457611c04614510565b0154905084611c6b576364923d804210611c4f576101f462093a80611c2d6364923d804261465b565b611c379190614633565b611c4290600161466e565b611c4c91906145fe565b91505b808211611c6757611c60828261465b565b9050611c6b565b5060005b60006127106101e75483612710611c82919061465b565b611c8c91906145fe565b611c969190614633565b979650505050505050565b805160609060015b81811015611d93576000848281518110611cc557611cc5614510565b6020026020010151905060008290505b600081118015611d0757508186611ced60018461465b565b81518110611cfd57611cfd614510565b6020026020010151115b15611d5f5785611d1860018361465b565b81518110611d2857611d28614510565b6020026020010151868281518110611d4257611d42614510565b602090810291909101015280611d5781614681565b915050611cd5565b81868281518110611d7257611d72614510565b60200260200101818152505050508080611d8b9061453c565b915050611ca9565b509192915050565b6000818152606760205260408120546001600160a01b0316806111ee5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f9f565b600080516020614a2f833981519152611e1381612a34565b611e1b612871565b6101e96113c283826146de565b60007f48bbc88168cbf6795f0eaa068fc76c72d7920d59f12ae891922226430d2b09ff8484604051602001611e5d919061479d565b60405160208183030381529060405280519060200120604051602001611e9f939291909283526001600160a01b03919091166020830152604082015260600190565b6040516020818303038152906040528051906020012090506000611ec282613145565b90506000611ed08285613193565b6101e5549091506001600160a01b03808316911614611f59576040805162461bcd60e51b81526020600482015260248101919091527f536d7572663a20546865207369676e6174757265206164647265737320646f6560448201527f73206e6f74206d61746368207468652070726f766964656420616464726573736064820152608401610f9f565b505050505050565b60006001600160a01b038216611fcb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610f9f565b506001600160a01b031660009081526068602052604090205490565b6000611ff281612a34565b611ffa612871565b6001600160a01b03821661206e5760405162461bcd60e51b815260206004820152603560248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c6044820152746964207769746864726177616c206164647265737360581b6064820152608401610f9f565b506101e680546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020614a4f8339815191526120aa81612a34565b6118086131af565b6101e980546120c090614577565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90614577565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b505050505081565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461120890614577565b600061218681612a34565b61218e612871565b6101ec54156121f55760405162461bcd60e51b815260206004820152602d60248201527f536d7572663a20556e73687566666c65642070726f76656e616e63652068617360448201526c1a08185b1c9958591e481cd95d609a1b6064820152608401610f9f565b60008290036122425760405162461bcd60e51b81526020600482015260196024820152780536d7572663a2050726f76696465642068617368206973203603c1b6044820152606401610f9f565b6101ec82905561225343606461466e565b6101ef555050565b6101de81600581106115e857600080fd5b60006001815b83518110156122db57600084828151811061228f5761228f614510565b602002602001015190506122ba816000908152606760205260409020546001600160a01b0316151590565b6122c85760009250506122db565b50806122d38161453c565b915050612272565b5092915050565b600080516020614a6f8339815191526122fa81612a34565b612302612871565b6113c282846004612cb4565b61177c3383836131ec565b6101e4818154811061232a57600080fd5b600091825260209091200154905081565b6123453383612a3e565b6123615760405162461bcd60e51b8152600401610f9f906145b1565b61236d848484846132ba565b50505050565b600061237e81612a34565b612386612871565b6001600160a01b0383166123f75760405162461bcd60e51b815260206004820152603260248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015271696420726f79616c7479206164647265737360701b6064820152608401610f9f565b6113c28383613047565b6000818152606760205260409020546060906001600160a01b031615612454576101e961242d836132ed565b60405160200161243e9291906147d3565b6040516020818303038152906040529050919050565b505060408051602081019091526000815290565b60006001815b83518110156124cc57846001600160a01b03166124a385838151811061249657612496614510565b6020026020010151611d9b565b6001600160a01b0316146124ba57600091506124cc565b806124c48161453c565b91505061246e565b509392505050565b60006124df81612a34565b6124e7612871565b600082116125375760405162461bcd60e51b815260206004820152601b60248201527f536d7572663a2050726963652063616e6e6f74206265207a65726f00000000006044820152606401610f9f565b506101e755565b600080516020614a2f83398151915261255681612a34565b61255e612871565b6101e86113c283826146de565b60008061257783611f61565b151590506000805b85518110156125c9576125ab86828151811061259d5761259d614510565b602002602001015184611bdd565b6125b5908361466e565b9150806125c18161453c565b91505061257f565b50949350505050565b60006125dd81612a34565b6125e5612871565b6001600160a01b0382166126575760405162461bcd60e51b815260206004820152603360248201527f536d7572663a2061646472657373207a65726f206973206e6f7420612076616c604482015272696420617070726f766572206164647265737360681b6064820152608401610f9f565b506101e580546001600160a01b0319166001600160a01b0392909216919091179055565b600061268681612a34565b61268e612871565b6101ef5443116126d35760405162461bcd60e51b815260206004820152601060248201526f536d7572663a20546f6f206561726c7960801b6044820152606401610f9f565b6101ef546126e39061010061466e565b43106127235760405162461bcd60e51b815260206004820152600f60248201526e536d7572663a20546f6f206c61746560881b6044820152606401610f9f565b506101ef54406101ee55565b600082815260fb602052604090206001015461274a81612a34565b6113c28383612e33565b600080516020614a6f83398151915261276c81612a34565b612774612871565b61177c82336001612cb4565b6101e880546120c090614577565b600061279981612a34565b6127a1612871565b506101ea805460ff19811660ff90911615179055565b606060006127c483611f61565b600014159050600084516001600160401b038111156127e5576127e5613e63565b60405190808252806020026020018201604052801561280e578160200160208202803683370190505b50905060005b85518110156125c95761283286828151811061259d5761259d614510565b82828151811061284457612844614510565b6020908102919091010152806128598161453c565b915050612814565b60606101e8805461120890614577565b60c95460ff16156128b75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f9f565b565b6128c6620186a0826145fe565b82101580156128ec5750620186a06128df82600161466e565b6128e991906145fe565b82105b6129385760405162461bcd60e51b815260206004820152601f60248201527f536d7572663a20546f6b656e206f7574206f662070686173652072616e6765006044820152606401610f9f565b6113c2838361337f565b60006001600160e01b0319821663152a902d60e11b14806111ee57506111ee82613399565b6000818152606760205260409020546001600160a01b03166118085760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610f9f565b600081815260696020526040902080546001600160a01b0319166001600160a01b03841690811790915581906129fb82611d9b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61180881336133be565b600080612a4a83611d9b565b9050806001600160a01b0316846001600160a01b03161480612a9157506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b80612ab55750836001600160a01b0316612aaa8461128b565b6001600160a01b0316145b949350505050565b826001600160a01b0316612ad082611d9b565b6001600160a01b031614612af65760405162461bcd60e51b8152600401610f9f90614867565b6001600160a01b038216612b585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610f9f565b612b658383836001613417565b826001600160a01b0316612b7882611d9b565b6001600160a01b031614612b9e5760405162461bcd60e51b8152600401610f9f90614867565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260688552838620805460001901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b612c388282612141565b61177c57600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055612c703390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b612cbc612871565b6005612cc982600161466e565b1115612d175760405162461bcd60e51b815260206004820152601c60248201527f536d7572663a205068617365204944206f7574206f662072616e6765000000006044820152606401610f9f565b60008181526101e36020526040812054612d34620186a0846145fe565b612d3e919061466e565b90506101e48281548110612d5457612d54614510565b9060005260206000200154846101e3600085815260200190815260200160002054612d7f919061466e565b1115612ddd5760405162461bcd60e51b815260206004820152602760248201527f536d7572663a205175616e7469747920776f756c6420657863656564206d617860448201526620737570706c7960c81b6064820152608401610f9f565b60008281526101e3602052604081208054869290612dfc90849061466e565b90915550600090505b84811015611b8357612e2184612e1b848461466e565b856128b9565b80612e2b8161453c565b915050612e05565b612e3d8282612141565b1561177c57600082815260fb602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b612ea261342b565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ef782611d9b565b9050612f07816000846001613417565b612f1082611d9b565b600083815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16612fb65760405162461bcd60e51b8152600401610f9f906148ac565b61177c8282613474565b600054610100900460ff166128b75760405162461bcd60e51b8152600401610f9f906148ac565b600054610100900460ff1661300e5760405162461bcd60e51b8152600401610f9f906148ac565b6128b76134b4565b600054610100900460ff1661303d5760405162461bcd60e51b8152600401610f9f906148ac565b61177c82826134e7565b6127106001600160601b03821611156130b55760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610f9f565b6001600160a01b03821661310b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610f9f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b9091021761015f55565b60006111ee61315261352a565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006131a285856135ac565b915091506124cc816135ee565b6131b7612871565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612ecf3390565b816001600160a01b0316836001600160a01b03160361324d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f9f565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6132c5848484612abd565b6132d184848484613738565b61236d5760405162461bcd60e51b8152600401610f9f906148f7565b606060006132fa83613839565b60010190506000816001600160401b0381111561331957613319613e63565b6040519080825280601f01601f191660200182016040528015613343576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461334d57509392505050565b61177c828260405180602001604052806000815250613911565b60006001600160e01b03198216637965db0b60e01b14806111ee57506111ee82613944565b6133c88282612141565b61177c576133d581613969565b6133e083602061397b565b6040516020016133f1929190614949565b60408051601f198184030181529082905262461bcd60e51b8252610f9f91600401614036565b61341f612871565b61236d84848484613b1d565b60c95460ff166128b75760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f9f565b600054610100900460ff1661349b5760405162461bcd60e51b8152600401610f9f906148ac565b60656134a783826146de565b5060666113c282826146de565b600054610100900460ff166134db5760405162461bcd60e51b8152600401610f9f906148ac565b60c9805460ff19169055565b600054610100900460ff1661350e5760405162461bcd60e51b8152600401610f9f906148ac565b8151602092830120815191909201206101919190915561019255565b60006135a77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61355a6101915490565b610192546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b905090565b60008082516041036135e25760208301516040840151606085015160001a6135d687828585613b22565b94509450505050611698565b50600090506002611698565b6000816004811115613602576136026149be565b0361360a5750565b600181600481111561361e5761361e6149be565b0361366b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610f9f565b600281600481111561367f5761367f6149be565b036136cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610f9f565b60038160048111156136e0576136e06149be565b036118085760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610f9f565b60006001600160a01b0384163b1561382e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061377c9033908990889088906004016149d4565b6020604051808303816000875af19250505080156137b7575060408051601f3d908101601f191682019092526137b491810190614a11565b60015b613814573d8080156137e5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ea565b606091505b50805160000361380c5760405162461bcd60e51b8152600401610f9f906148f7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612ab5565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106138785772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106138a4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106138c257662386f26fc10000830492506010015b6305f5e10083106138da576305f5e100830492506008015b61271083106138ee57612710830492506004015b60648310613900576064830492506002015b600a83106111ee5760010192915050565b61391b8383613be6565b6139286000848484613738565b6113c25760405162461bcd60e51b8152600401610f9f906148f7565b60006001600160e01b0319821663780e9d6360e01b14806111ee57506111ee82613d7f565b60606111ee6001600160a01b03831660145b6060600061398a8360026145fe565b61399590600261466e565b6001600160401b038111156139ac576139ac613e63565b6040519080825280601f01601f1916602001820160405280156139d6576020820181803683370190505b509050600360fc1b816000815181106139f1576139f1614510565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613a2057613a20614510565b60200101906001600160f81b031916908160001a9053506000613a448460026145fe565b613a4f90600161466e565b90505b6001811115613ac7576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613a8357613a83614510565b1a60f81b828281518110613a9957613a99614510565b60200101906001600160f81b031916908160001a90535060049490941c93613ac081614681565b9050613a52565b508315613b165760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f9f565b9392505050565b61236d565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115613b595750600090506003613bdd565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613bad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116613bd657600060019250925050613bdd565b9150600090505b94509492505050565b6001600160a01b038216613c3c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f9f565b6000818152606760205260409020546001600160a01b031615613ca15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f9f565b613caf600083836001613417565b6000818152606760205260409020546001600160a01b031615613d145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f9f565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982166380ac58cd60e01b1480613db057506001600160e01b03198216635b5e139f60e01b145b806111ee57506301ffc9a760e01b6001600160e01b03198316146111ee565b8260198101928215613e03579160200282015b82811115613e03578251829061ffff16905591602001919060010190613de2565b50613e0f929150613e4e565b5090565b828054828255906000526020600020908101928215613e03579160200282015b82811115613e03578251825591602001919060010190613e33565b5b80821115613e0f5760008155600101613e4f565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613ea157613ea1613e63565b604052919050565b600082601f830112613eba57600080fd5b813560206001600160401b03821115613ed557613ed5613e63565b8160051b613ee4828201613e79565b9283528481018201928281019087851115613efe57600080fd5b83870192505b84831015611c9657823582529183019190830190613f04565b600080600060408486031215613f3257600080fd5b83356001600160401b0380821115613f4957600080fd5b613f5587838801613ea9565b94506020860135915080821115613f6b57600080fd5b818601915086601f830112613f7f57600080fd5b813581811115613f8e57600080fd5b876020828501011115613fa057600080fd5b6020830194508093505050509250925092565b6001600160e01b03198116811461180857600080fd5b600060208284031215613fdb57600080fd5b8135613b1681613fb3565b60005b83811015614001578181015183820152602001613fe9565b50506000910152565b60008151808452614022816020860160208601613fe6565b601f01601f19169290920160200192915050565b602081526000613b16602083018461400a565b60006020828403121561405b57600080fd5b5035919050565b80356001600160a01b03811681146111f457600080fd5b6000806040838503121561408c57600080fd5b61409583614062565b946020939093013593505050565b6000806000606084860312156140b857600080fd5b6140c184614062565b92506140cf60208501614062565b9150604084013590509250925092565b600080604083850312156140f257600080fd5b50508035926020909101359150565b6000806040838503121561411457600080fd5b8235915061412460208401614062565b90509250929050565b80356001600160601b03811681146111f457600080fd5b6000806000806080858703121561415a57600080fd5b61416385614062565b93506141716020860161412d565b925061417f60408601614062565b915061418d60608601614062565b905092959194509250565b6000602082840312156141aa57600080fd5b81356001600160401b038111156141c057600080fd5b612ab584828501613ea9565b803580151581146111f457600080fd5b600080604083850312156141ef57600080fd5b82359150614124602084016141cc565b600081518084526020808501945080840160005b8381101561422f57815187529582019590820190600101614213565b509495945050505050565b602081526000613b1660208301846141ff565b60006001600160401b0383111561426657614266613e63565b614279601f8401601f1916602001613e79565b905082815283838301111561428d57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156142b657600080fd5b81356001600160401b038111156142cc57600080fd5b8201601f810184136142dd57600080fd5b612ab58482356020840161424d565b600082601f8301126142fd57600080fd5b613b168383356020850161424d565b60008060006060848603121561432157600080fd5b61432a84614062565b925060208401356001600160401b038082111561434657600080fd5b61435287838801613ea9565b9350604086013591508082111561436857600080fd5b50614375868287016142ec565b9150509250925092565b60006020828403121561439157600080fd5b613b1682614062565b600080604083850312156143ad57600080fd5b6143b683614062565b9150614124602084016141cc565b600080600080608085870312156143da57600080fd5b6143e385614062565b93506143f160208601614062565b92506040850135915060608501356001600160401b0381111561441357600080fd5b61441f878288016142ec565b91505092959194509250565b6000806040838503121561443e57600080fd5b61444783614062565b91506141246020840161412d565b6000806040838503121561446857600080fd5b61447183614062565b915060208301356001600160401b0381111561448c57600080fd5b61449885828601613ea9565b9150509250929050565b600080604083850312156144b557600080fd5b82356001600160401b038111156144cb57600080fd5b6144d785828601613ea9565b92505061412460208401614062565b600080604083850312156144f957600080fd5b61450283614062565b915061412460208401614062565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161454e5761454e614526565b5060010190565b60408152600061456860408301856141ff565b90508260208301529392505050565b600181811c9082168061458b57607f821691505b6020821081036145ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b600081600019048311821515161561461857614618614526565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826146425761464261461d565b500490565b6000826146565761465661461d565b500690565b818103818111156111ee576111ee614526565b808201808211156111ee576111ee614526565b60008161469057614690614526565b506000190190565b601f8211156113c257600081815260208120601f850160051c810160208610156146bf5750805b601f850160051c820191505b81811015611f59578281556001016146cb565b81516001600160401b038111156146f7576146f7613e63565b61470b816147058454614577565b84614698565b602080601f83116001811461474057600084156147285750858301515b600019600386901b1c1916600185901b178555611f59565b600085815260208120601f198616915b8281101561476f57888601518255948401946001909101908401614750565b508582101561478d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b815160009082906020808601845b838110156147c7578151855293820193908201906001016147ab565b50929695505050505050565b60008084546147e181614577565b600182811680156147f9576001811461480e5761483d565b60ff198416875282151583028701945061483d565b8860005260208060002060005b858110156148345781548a82015290840190820161481b565b50505082870194505b50602f60f81b8452865192506148598382860160208a01613fe6565b919092010195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614981816017850160208801613fe6565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516149b2816028840160208801613fe6565b01602801949350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614a079083018461400a565b9695505050505050565b600060208284031215614a2357600080fd5b8151613b1681613fb356fe7804d923f43a17d325d77e781528e0793b2edd9890ab45fc64efd7b4b427744c65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220558b464ad0d2b24a66a302f208f18193b2102e1af2e4e033a4e8ceba0cde903264736f6c63430008100033
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.