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
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Fairxyz721Editions
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 120 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; import {AddressUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import {StringsUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import {FairxyzEditionsUpgradeable} from "./FairxyzEditionsUpgradeable.sol"; import {Fairxyz721Upgradeable} from "../ERC721/Fairxyz721Upgradeable.sol"; import {FairxyzOperatorFiltererUpgradeable} from "../OperatorFilterer/FairxyzOperatorFiltererUpgradeable.sol"; import {EditionCreateParams} from "../interfaces/IFairxyzEditions.sol"; import {IERC2981Upgradeable} from "../interfaces/IERC2981Upgradeable.sol"; import {IFairxyz721Editions} from "../interfaces/IFairxyz721Editions.sol"; import {Stage} from "../interfaces/IFairxyzMintStagesRegistry.sol"; import {ITokenURI} from "../interfaces/ITokenURI.sol"; /** * @title Fair.xyz 721 Editions * @author Fair.xyz Developers * * @dev This contract is the ERC-721 implementation for the Fair.xyz Editions Collections. * @dev It overrides the FairxyzEditionsUpgradeable contract to add ERC-721 specific functionality. * @dev It overrides the Fairxyz721Upgradeable contract to add Editions specific, optimised batch minting functionality. * @dev It also inherits the FairxyzOperatorFiltererUpgradeable contract, adding operator filtering functionality for token approvals and transfers. */ contract Fairxyz721Editions is Fairxyz721Upgradeable, FairxyzOperatorFiltererUpgradeable, IFairxyz721Editions, FairxyzEditionsUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; uint256 internal constant EDITION_RANGE_SIZE = 1_000_000_000; /// @custom:oz-upgrades-unsafe-allow state-variable-immutable uint256 internal immutable MAX_MINTS_PER_TRANSACTION; mapping(uint256 => bool) internal _tokenBurned; mapping(uint256 => address) internal _tokenMinter; mapping(uint256 => Royalty) internal _tokenRoyalty; mapping(uint256 => string) internal _tokenURI; /// @custom:oz-upgrades-unsafe-allow constructor constructor( address fairxyzStagesRegistry_, uint256 maxMintsPerTransaction_, uint256 maxRecipientsPerAirdrop_, address operatorFilterRegistry_, address operatorFilterSubscription_ ) FairxyzEditionsUpgradeable( fairxyzStagesRegistry_, EDITION_RANGE_SIZE - 1, maxRecipientsPerAirdrop_ ) FairxyzOperatorFiltererUpgradeable( operatorFilterRegistry_, operatorFilterSubscription_ ) { MAX_MINTS_PER_TRANSACTION = maxMintsPerTransaction_; _disableInitializers(); } /** * @notice Initialise the collection. * * @param name_ The collection ERC721 token name. * @param symbol_ The collection ERC721 token symbol. * @param owner_ The address which should own the contract after initialization. * @param defaultRoyalty_ The default royalty fraction/percentage for the collection. * @param editions_ Initial editions to create. * @param operatorFilterEnabled_ Whether operator filtering should be enabled. * @param defaultMintingExtension The default minting extension enabled from deployment * @param defaultRoyaltyExtension The default royalty extension enabled from deployment */ function initialize( string memory name_, string memory symbol_, address owner_, uint96 defaultRoyalty_, EditionCreateParams[] calldata editions_, bool operatorFilterEnabled_, address defaultMintingExtension, address defaultRoyaltyExtension ) external initializer { __Fairxyz721_init(name_, symbol_); __FairxyzEditions_init( owner_, defaultMintingExtension, defaultRoyaltyExtension ); __FairxyzOperatorFilterer_init(operatorFilterEnabled_); _batchCreateEditionsWithStages(editions_); _setDefaultRoyalty(owner_, defaultRoyalty_); } // * PUBLIC * // /** * @dev See {IFairxyz721Editions-burn}. */ function burn(uint256 tokenId) external override { if (!_isApprovedOrOwner(msg.sender, tokenId)) revert NotApprovedOrOwner(); uint256 editionId = _tokenEditionId(tokenId); _burn(tokenId); _tokenBurned[tokenId] = true; _editionBurnedCount[editionId]++; } // * ADMIN * // /** * @dev See {IFairxyz721Editions-setTokenRoyalty}. */ function setTokenRoyalty( uint256 tokenId, address receiver, uint96 royaltyFraction ) external override onlyCreator { _setTokenRoyalty(tokenId, receiver, royaltyFraction); } /** * @dev See {IFairxyz721Editions-setTokenURI}. */ function setTokenURI( uint256 tokenId, string calldata uri ) external override onlyCreator { _tokenURI[tokenId] = uri; if (_exists(tokenId)) emit MetadataUpdate(tokenId); } // * INTERNAL * // /** * @dev Calculates the number after which the token IDs in a specific edition start. * * @param editionId the ID of the edition */ function _editionRangeStart( uint256 editionId ) internal pure returns (uint256) { return editionId * EDITION_RANGE_SIZE; } /** * @dev Sets token royalty details, which overrides the edition/default if receiver is not `address(0)` * * @param tokenId the ID of the token to update * @param receiver the address royalty payments should be sent to * @param royaltyFraction the numerator used to calculate the royalty percentage of a sale */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 royaltyFraction ) internal onlyValidRoyaltyFraction(royaltyFraction) { if (receiver == address(0)) { delete _tokenRoyalty[tokenId]; emit TokenRoyalty(tokenId, address(0), 0); return; } _tokenRoyalty[tokenId] = Royalty(receiver, royaltyFraction); emit TokenRoyalty(tokenId, receiver, royaltyFraction); } /** * @dev calculates the edition ID for a given token ID * @dev reverts if the token ID is invalid (never possible) * @dev does not revert if the token ID is possible but does not exist * * @param tokenId the ID of the token to get the edition ID for * * @return editionId the ID of the edition that the token belongs to */ function _tokenEditionId( uint256 tokenId ) internal pure virtual returns (uint256 editionId) { if (tokenId < EDITION_RANGE_SIZE) revert TokenDoesNotExist(); if (tokenId % EDITION_RANGE_SIZE == 0) revert TokenDoesNotExist(); return tokenId / EDITION_RANGE_SIZE; } // * OVERRIDES * // /** * @dev See {IERC721-approve}. * @dev Modified to check operator against Operator Filter Registry. */ function approve( address to, uint256 tokenId ) public override onlyAllowedOperatorApproval(to) { super.approve(to, tokenId); } /** * @dev See {IERC2981Upgradeable-royaltyInfo}. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) public view override returns (address receiver, uint256 royaltyAmount) { if (_royaltyExtension != address(0)) { return IERC2981Upgradeable(_royaltyExtension).royaltyInfo( tokenId, salePrice ); } Royalty memory royalty = _tokenRoyalty[tokenId]; if (royalty.receiver == address(0)) { uint256 editionId = _tokenEditionId(tokenId); royalty = _editionRoyalty[editionId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyalty; } } receiver = royalty.receiver; royaltyAmount = (salePrice * royalty.royaltyFraction) / ROYALTY_DENOMINATOR; } /** * @dev See {IERC721-setApprovalForAll}. * @dev Modified to check operator against Operator Filter Registry. */ function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } /** * @dev See {IERC165Upgradeable-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view override(Fairxyz721Upgradeable, FairxyzEditionsUpgradeable) returns (bool) { return interfaceId == type(IFairxyz721Editions).interfaceId || Fairxyz721Upgradeable.supportsInterface(interfaceId) || super.supportsInterface(interfaceId); } /** * @dev See {IERC721MetadataUpgradeable-tokenURI}. */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { if (!_exists(tokenId)) revert TokenDoesNotExist(); uint256 editionId = _tokenEditionId(tokenId); string memory uri; if (_editionURIExtension[editionId] != address(0)) { uri = ITokenURI(_editionURIExtension[editionId]).tokenURI(tokenId); } else { uri = _tokenURI[tokenId]; } if (bytes(uri).length == 0) { return string( abi.encodePacked( _editionURI[editionId], (tokenId % EDITION_RANGE_SIZE).toString() ) ); } return uri; } /** * @dev See {Fairxyz721Upgradeable-_beforeTokenTransfer}. * @dev Modified to check `msg.sender` against Operator Filter Registry. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 ) internal view override onlyAllowedOperator(msg.sender, from) { // we only want to implement soulbound guard if the token is being transferred between two non-zero addresses if (from == address(0) || to == address(0)) { return; } if (_editions[_tokenEditionId(firstTokenId)].soulbound) { revert NotTransferable(); } } /** * @dev See {FairxyzEditionsUpgradeable-_emitMetadataUpdateEvent}. */ function _emitMetadataUpdateEvent( uint256 editionId, string memory ) internal override { uint256 mintedCount = _editionMintedCount[editionId]; if (mintedCount == 1) { emit MetadataUpdate(_editionRangeStart(editionId) + 1); } if (_editionMintedCount[editionId] > 1) { uint256 rangeStart = _editionRangeStart(editionId); emit BatchMetadataUpdate(rangeStart + 1, rangeStart + mintedCount); return; } } /** * @dev See {OperatorFiltererUpgradeable-_isOperatorFilterAdmin}. */ function _isOperatorFilterAdmin( address sender ) internal view virtual override returns (bool) { return sender == owner() || hasRole(DEFAULT_ADMIN_ROLE, sender); } /** * @dev See {FairxyzEditionsUpgradeable-_mintEditionTokens}. */ function _mintEditionTokens( address recipient, uint256 editionId, uint256 quantity, uint256 editionMintedCount ) internal override { if (quantity == 0 || quantity > MAX_MINTS_PER_TRANSACTION) revert InvalidMintQuantity(); uint256 firstTokenId = _editionRangeStart(editionId) + editionMintedCount + 1; _beforeTokenTransfer(address(0), recipient, firstTokenId, quantity); _tokenMinter[firstTokenId] = recipient; uint256 tokenId = firstTokenId; uint256 stop = firstTokenId + quantity; do { emit Transfer(address(0), recipient, tokenId); unchecked { ++tokenId; } } while (tokenId < stop); if (recipient.isContract()) { tokenId = firstTokenId; do { require( _checkOnERC721Received(address(0), recipient, tokenId, ""), "ERC721: transfer to non ERC721Receiver implementer" ); unchecked { ++tokenId; } } while (tokenId < stop); } __unsafe_increaseBalance(recipient, quantity); _afterTokenTransfer(address(0), recipient, firstTokenId, quantity); } /** * @dev See {Fairxyz721Upgradeable-_ownerOf}. */ function _ownerOf( uint256 tokenId ) internal view override returns (address) { if (_tokenBurned[tokenId]) { return address(0); } address tokenOwner = _owners[tokenId]; if (tokenOwner != address(0)) { return tokenOwner; } uint256 editionId = _tokenEditionId(tokenId); uint256 editionRangeStart = _editionRangeStart(editionId); // return zero address is the token has not been minted if (tokenId > editionRangeStart + _editionMintedCount[editionId]) { return address(0); } while (tokenOwner == address(0) && tokenId > editionRangeStart) { tokenOwner = _tokenMinter[tokenId]; unchecked { --tokenId; } } return tokenOwner; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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: * * ```solidity * 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}: * * ```solidity * 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. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ 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.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./OwnableUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable { function __Ownable2Step_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable2Step_init_unchained() internal onlyInitializing { } address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } /** * @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.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @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.9.0) (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] * ```solidity * 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.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } /** * @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 (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.9.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.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(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.9.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 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @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 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// 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.9.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) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMathUpgradeable { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./AddressUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract MulticallUpgradeable is Initializable { function __Multicall_init() internal onlyInitializing { } function __Multicall_init_unchained() internal onlyInitializing { } /** * @dev Receives and executes a batch of function calls on this contract. * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = AddressUpgradeable.functionDelegateCall(address(this), data[i]); } return results; } /** * @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.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; import "./math/SignedMathUpgradeable.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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value)))); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; import {AccessControlUpgradeable} from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import {Ownable2StepUpgradeable} from "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol"; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import {PausableUpgradeable} from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import {MulticallUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol"; /** * @title Fair.xyz Editions Base Upgradeable * @dev This contract is the base contract for all Fair.xyz Editions contracts. * @dev It inherits the OpenZeppelin AccessControlUpgradeable, Ownable2StepUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable and MulticallUpgradeable contracts. */ abstract contract FairxyzEditionsBaseUpgradeable is Initializable, AccessControlUpgradeable, MulticallUpgradeable, Ownable2StepUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable { /** * @dev See {IERC165Upgradeable-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return AccessControlUpgradeable.supportsInterface(interfaceId); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; /** * @title Fair.xyz Editions Constants * @dev This contract contains all of the constants and immutable values used in the Fair.xyz Editions contracts. * @dev IMPORTANT: This should not have any variables which use storage slots - as a result it is possible to be inherited by upgradeable contracts without the need for a storage 'gap'. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ contract FairxyzEditionsConstants { // * SIGNATURES * // bytes32 internal constant EIP712_NAME_HASH = keccak256("Fair.xyz"); bytes32 internal constant EIP712_VERSION_HASH = keccak256("2.0.0"); bytes32 internal constant EIP712_DOMAIN_TYPE_HASH = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); bytes32 internal constant EIP712_EDITION_MINT_TYPE_HASH = keccak256( "EditionMint(uint256 editionId,address recipient,uint256 quantity,uint256 nonce,uint256 maxMints)" ); // * ROLES * // bytes32 internal constant CREATOR_ROLE = keccak256("CREATOR_ROLE"); bytes32 internal constant EXTERNAL_MINTER_ROLE = keccak256("EXTERNAL_MINTER_ROLE"); uint256 internal constant ROYALTY_DENOMINATOR = 10000; uint256 internal constant SIGNATURE_VALID_BLOCKS = 75; // * IMMUTABLES * // address internal immutable FAIRXYZ_STAGES_REGISTRY; uint256 internal immutable MAX_EDITION_SIZE; uint256 internal immutable MAX_RECIPIENTS_PER_AIRDROP; /// @custom:oz-upgrades-unsafe-allow constructor constructor( address fairxyzStagesRegistry_, uint256 maxEditionSize_, uint256 maxRecipientsPerAirdrop_ ) { FAIRXYZ_STAGES_REGISTRY = fairxyzStagesRegistry_; MAX_EDITION_SIZE = maxEditionSize_; MAX_RECIPIENTS_PER_AIRDROP = maxRecipientsPerAirdrop_; } }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; import {AccessControlUpgradeable} from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import {AddressUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import {StringsUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import {ECDSAUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import {IERC165Upgradeable} from "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; import {FairxyzEditionsBaseUpgradeable} from "./FairxyzEditionsBaseUpgradeable.sol"; import {FairxyzEditionsConstants} from "./FairxyzEditionsConstants.sol"; import {IERC2981Upgradeable} from "../interfaces/IERC2981Upgradeable.sol"; import {Edition, EditionCreateParams, EditionMinter, EditionMintingHandler, IFairxyzEditions} from "../interfaces/IFairxyzEditions.sol"; import {IFairxyzMintStagesRegistry, Stage, FairxyzParameters} from "../interfaces/IFairxyzMintStagesRegistry.sol"; abstract contract FairxyzEditionsUpgradeable is FairxyzEditionsBaseUpgradeable, FairxyzEditionsConstants, IERC2981Upgradeable, IFairxyzEditions { using AddressUpgradeable for address payable; using ECDSAUpgradeable for bytes32; using StringsUpgradeable for uint256; address internal _primarySaleReceiver; Royalty internal _defaultRoyalty; uint256 private _editionsCount; mapping(uint256 => Edition) internal _editions; mapping(uint256 => bool) internal _editionDeleted; mapping(uint256 => uint256) internal _editionBurnedCount; mapping(uint256 => uint256) internal _editionMintedCount; mapping(uint256 => mapping(address => EditionMinter)) private _editionMinters; mapping(uint256 => Royalty) internal _editionRoyalty; mapping(uint256 => mapping(uint256 => mapping(address => uint256))) private _editionStageMints; mapping(uint256 => string) internal _editionURI; mapping(uint256 => address) internal _editionURIExtension; address internal _mintingExtension; address internal _royaltyExtension; modifier onlyDefaultAdmin() { _checkRole(DEFAULT_ADMIN_ROLE); _; } modifier onlyAirdropRoles() { if (!hasRole(CREATOR_ROLE, msg.sender)) { _checkRole(EXTERNAL_MINTER_ROLE); } _; } modifier onlyCreator() { _checkRole(CREATOR_ROLE); _; } modifier onlyExistingEdition(uint256 editionId) { if (!_editionExists(editionId)) revert EditionDoesNotExist(); _; } modifier onlyValidRoyaltyFraction(uint256 royaltyFraction) { if (royaltyFraction > ROYALTY_DENOMINATOR) revert InvalidRoyaltyFraction(); _; } receive() external payable virtual {} /// @custom:oz-upgrades-unsafe-allow constructor constructor( address fairxyzStagesRegistry_, uint256 maxEditionSize_, uint256 maxRecipientsPerAirdrop_ ) FairxyzEditionsConstants( fairxyzStagesRegistry_, maxEditionSize_, maxRecipientsPerAirdrop_ ) { _disableInitializers(); } // * INITIALIZERS * // function __FairxyzEditions_init( address owner_, address defaultMintingExtension_, address defaultRoyaltyExtension_ ) internal onlyInitializing { __FairxyzEditions_init_unchained( owner_, defaultMintingExtension_, defaultRoyaltyExtension_ ); } function __FairxyzEditions_init_unchained( address owner_, address defaultMintingExtension_, address defaultRoyaltyExtension_ ) internal onlyInitializing { if (owner_ == address(0)) { revert ZeroAddress(); } _primarySaleReceiver = owner_; _transferOwnership(owner_); if (defaultMintingExtension_ != address(0)) { _setMintingExtension(defaultMintingExtension_); } if (defaultRoyaltyExtension_ != address(0)) { _setRoyaltyExtension(defaultRoyaltyExtension_); } } // * PUBLIC * // /** * @dev See {IFairxyzEditions-mintEdition}. */ function mintEdition( uint256 editionId, address recipient, uint256 quantity, uint40 signatureNonce, uint256 signatureMaxMints, bytes memory signature ) external payable override returns (EditionMintingHandler memory handler) { bool isExtension; if (_mintingExtension != address(0)) { if (msg.sender != _mintingExtension) revert SenderIsNotExtension(); isExtension = true; } ( FairxyzParameters memory fairxyzParameters, uint256 stageIndex, Stage memory stage ) = _stagesRegistry().viewActiveStage(address(this), editionId); _checkMintSignature( editionId, recipient, quantity, signatureNonce, signatureMaxMints, stage.signatureReleased, signature, fairxyzParameters.fairxyzSigner ); uint256 costPerToken; if (!isExtension) { costPerToken = stage.price + fairxyzParameters.fairxyzFee; _verifyPayment(quantity, costPerToken); } handler = _handleEditionMinting( editionId, recipient, quantity, signatureNonce, signatureMaxMints, stageIndex, stage ); if (!isExtension) { payable(fairxyzParameters.fairxyzWithdrawAddress).sendValue( fairxyzParameters.fairxyzFee * handler.allowedQuantity ); } _handleEmissionAndTransfers( editionId, stageIndex, recipient, handler.allowedQuantity, handler.editionMintedTotal, quantity, costPerToken ); return handler; } /** * @dev See {IFairxyzEditions-editionTotalSupply}. */ function editionTotalSupply( uint256 editionId ) public view virtual override returns (uint256) { return _editionMintedCount[editionId] - _editionBurnedCount[editionId]; } /** * @dev See {IFairxyzEditions-getEdition}. */ function getEdition( uint256 editionId ) public view virtual onlyExistingEdition(editionId) returns (Edition memory) { return _editions[editionId]; } /** * @dev See {IFairxyzEditions-totalSupply}. */ function totalSupply() external view virtual override returns (uint256 supply) { for (uint256 i = 1; i <= _editionsCount; ) { supply += editionTotalSupply(i); unchecked { ++i; } } } // * ADMIN * // /** * @notice Airdrop Tokens for a Single Edition to Multiple Wallets * @dev See {IFairEditionsUpgradeable-airdropEdition}. * * Requirements: * - the edition must exist * - number of recipients must not be greater than `MAX_RECIPIENTS_PER_AIRDROP` * - quantity must not be greater than `MAX_MINTS_PER_TRANSACTION` * * Emits an {EditionAirdrop} event. */ function airdropEdition( uint256 editionId, uint256 quantity, address[] memory recipients ) external virtual override onlyAirdropRoles onlyExistingEdition(editionId) { uint256 numberOfRecipients = recipients.length; if ( numberOfRecipients == 0 || numberOfRecipients > _maxRecipientsPerAirdrop() ) revert InvalidNumberOfRecipients(); // check and update available supply uint256 totalQuantity = numberOfRecipients * quantity; uint256 editionMintedTotal = _editionMintedCount[editionId]; if ( totalQuantity + editionMintedTotal > _editionMintLimit(_editions[editionId].maxSupply) ) revert NotEnoughSupplyRemaining(); _editionMintedCount[editionId] = editionMintedTotal + totalQuantity; uint256 i; do { address recipient = recipients[i]; _mintEditionTokens( recipient, editionId, quantity, editionMintedTotal ); unchecked { editionMintedTotal += quantity; ++i; } } while (i < numberOfRecipients); emit EditionAirdrop( editionId, _stagesRegistry().viewLatestStageIndex(address(this), editionId), // even though airdrops do not count towards stage mints, it is useful to know at what stage it occurred recipients, quantity, editionMintedTotal ); } /** * @notice Add a New Edition * @dev See {IFairxyzEditions-createEdition}. */ function createEditions( EditionCreateParams[] calldata editions ) external virtual override onlyCreator { _batchCreateEditionsWithStages(editions); } /** * @notice Delete Edition * @dev See {IFairxyzEditions-deleteEdition}. */ function deleteEdition( uint256 editionId ) external virtual override onlyCreator onlyExistingEdition(editionId) { if (_editionMintedCount[editionId] > 0) revert EditionAlreadyMinted(); _deleteEdition(editionId); } /** * @notice Disable Signature Requirement for an Edition * @dev See {IFairxyzEditions-releaseEditionSignature}. */ function releaseEditionSignature( uint256 editionId ) external virtual override onlyCreator onlyExistingEdition(editionId) { if (_editions[editionId].signatureReleased) revert EditionSignatureAlreadyReleased(); _editions[editionId].signatureReleased = true; emit EditionSignatureReleased(editionId); } /** * @notice Set Default Royalty * @dev See {IFairxyzEditions-setDefaultRoyalty}. * * Emits a {DefaultRoyalty} event. */ function setDefaultRoyalty( address receiver, uint96 royaltyFraction ) external virtual override onlyDefaultAdmin { _setDefaultRoyalty(receiver, royaltyFraction); } /** * @notice Set Edition Maximum Mints Per Wallet * @dev See {IFairxyzEditions-setEditionMaxMintsPerWallet}. */ function setEditionMaxMintsPerWallet( uint256 editionId, uint40 maxMintsPerWallet ) external virtual override onlyCreator onlyExistingEdition(editionId) { _editions[editionId].maxMintsPerWallet = maxMintsPerWallet; emit EditionMaxMintsPerWallet(editionId, maxMintsPerWallet); } /** * @notice Set Edition Maximum Supply * @dev See {IFairxyzEditions-setEditionMaxSupply}. * * Requirements: * * - the new max supply can't be greater than the current max supply * - the new max supply can't be less than the number of tokens already minted * - the new max supply can't be less than scheduled in current/upcoming mint stages */ function setEditionMaxSupply( uint256 editionId, uint40 maxSupply ) external virtual override onlyCreator onlyExistingEdition(editionId) { if (maxSupply == 0) revert EditionSupplyCanOnlyBeReduced(); if (maxSupply >= _editionMintLimit(_editions[editionId].maxSupply)) revert EditionSupplyCanOnlyBeReduced(); // check that max supply is not less than minted count // it's possible for the owner to airdrop more than stage phase limits so need to be checked separately if (maxSupply < _editionMintedCount[editionId]) revert EditionSupplyLessThanMintedCount(); (, Stage memory finalStage) = _stagesRegistry().viewFinalStage( address(this), editionId ); // if final stage has not yet ended, check that max supply is not less than final stage phaseLimit if ( finalStage.startTime > 0 && // if final stage startTime is 0, it means there is no final stage (finalStage.endTime >= block.timestamp || finalStage.endTime == 0) // if final stage endTime is 0, it means it never ends ) { // if final stage phaseLimit is 0, it means there is no limit and supply can't be reduced if (finalStage.phaseLimit == 0) { revert EditionSupplyLessThanScheduledStagesPhaseLimit(); } if (maxSupply < finalStage.phaseLimit) { revert EditionSupplyLessThanScheduledStagesPhaseLimit(); } } _editions[editionId].maxSupply = maxSupply; emit EditionMaxSupply(editionId, maxSupply); } /** * @notice Set Edition Royalties * @dev See {IFairxyzEditions-setEditionRoyalty}. */ function setEditionRoyalty( uint256 editionId, address receiver, uint96 royaltyFraction ) external virtual override onlyCreator onlyExistingEdition(editionId) onlyValidRoyaltyFraction(royaltyFraction) { if (receiver == address(0)) { delete _editionRoyalty[editionId]; emit EditionRoyalty(editionId, address(0), 0); return; } _editionRoyalty[editionId] = Royalty(receiver, royaltyFraction); emit EditionRoyalty(editionId, receiver, royaltyFraction); } /** * @notice Set Edition Mint Stages * @dev See {IFairxyzEditions-setEditionStages}. * @dev Allows the stages admin to set new stages for an existing edition. * * Requirements: * * - The edition must already exist. * - The new stages phase limits must greater than the number of tokens already minted for the edition. * - The new stages phase limits must be less than or equal to the max supply of the edition. */ function setEditionStages( uint256 editionId, uint256 fromIndex, Stage[] calldata stages ) external virtual override onlyCreator onlyExistingEdition(editionId) { if (stages.length == 0) { _stagesRegistry().cancelStages(address(this), editionId, fromIndex); } else { _stagesRegistry().setStages( address(this), editionId, fromIndex, stages, _editionMintedCount[editionId], _editions[editionId].maxSupply ); } } /** * @notice Set Edition Metadata URI * @dev See {IFairxyzEditions-setEditionURI}. */ function setEditionURI( uint256 editionId, string calldata uri ) external virtual override onlyCreator onlyExistingEdition(editionId) { _setEditionURI(editionId, uri); if (_editionMintedCount[editionId] > 0) _emitMetadataUpdateEvent(editionId, uri); } /** * @notice Set URI Extension for an edition ID * @dev See {IFairxyzEditions-setEditionURIExtension}. * */ function setEditionURIExtension( uint256 editionId, address uriExtension ) external virtual override onlyCreator onlyExistingEdition(editionId) { _setEditionURIExtension(editionId, uriExtension); } /** * @notice Set Primary Sale Receiver * @dev See {IFairxyzEditions-setPrimarySaleReceiver}. * * Emits a {PrimarySaleReceiver} event. */ function setPrimarySaleReceiver( address primarySaleReceiver ) external virtual override onlyDefaultAdmin { if (primarySaleReceiver == address(0)) revert ZeroAddress(); _primarySaleReceiver = primarySaleReceiver; emit PrimarySaleReceiver(primarySaleReceiver); } /** * @notice Set Minting Extension * @dev See {IFairxyzEditions-setMintingExtension}. */ function setMintingExtension( address newMintingExtension ) external virtual override onlyDefaultAdmin { _setMintingExtension(newMintingExtension); } /** * @notice Set Royalty Extension * @dev See {IFairxyzEditions-setRoyaltyExtension}. */ function setRoyaltyExtension( address newRoyaltyExtension ) external virtual override onlyDefaultAdmin { _setRoyaltyExtension(newRoyaltyExtension); } /** * @dev See {IFairxyzEditions-withdraw}. */ function withdraw() external override onlyDefaultAdmin { payable(_primarySaleReceiver).sendValue(address(this).balance); } // * OWNER * // /** * @dev See {IFairxyzEditions-grantDefaultAdmin}. */ function grantDefaultAdmin( address admin ) external virtual override onlyOwner { _grantRole(DEFAULT_ADMIN_ROLE, admin); } // * INTERNAL * // /** * @dev Creates multiple editions and stores the mint stages for them if provided. * * @param editions the editions to create */ function _batchCreateEditionsWithStages( EditionCreateParams[] calldata editions ) internal { uint256 editionsCount = _editionsCount; unchecked { for (uint256 i; i < editions.length; ) { // check edition supply is valid if (editions[i].edition.maxSupply > MAX_EDITION_SIZE) { revert EditionSupplyTooLarge(); } editionsCount++; // store the edition and emit the created event Edition memory edition = editions[i].edition; _editions[editionsCount] = edition; emit EditionCreated( editionsCount, editions[i].externalId, edition ); _setEditionURI(editionsCount, editions[i].uri); // set the initial minting schedule if given for the edition if (editions[i].mintStages.length > 0) { _stagesRegistry().setStages( address(this), editionsCount, 0, editions[i].mintStages, 0, edition.maxSupply ); } ++i; } } _editionsCount = editionsCount; } /** * @dev Calculates the allowed mint quantity based on the requested quantity and current recipient, edition and stage data * @dev Reverts if the calculated quantity is zero * * @param requestedQuantity the desired quantity * @param editionId the ID of the edition to mint from * @param editionMintedTotal the total number of tokens already minted for the edition * @param stage the stage data * @param recipientEditionMints the number of tokens already minted to the recipient for the edition * @param recipientStageMints the number of tokens already minted to the recipient for the stage * @param signatureMaxMints an additional maximum mints restriction encoded in the signature, specific to the recipient at the time of minting */ function _calculateAllowedMintQuantity( uint256 requestedQuantity, uint256 editionId, uint256 editionMintedTotal, Stage memory stage, uint256 recipientEditionMints, uint256 recipientStageMints, uint256 signatureMaxMints ) internal view virtual returns (uint256 quantity) { quantity = requestedQuantity; // recipient stage mints (including previously minted) cannot exceed signature max mints per wallet if (signatureMaxMints > 0) { if (recipientStageMints >= signatureMaxMints) { revert RecipientAllowanceUsed(); } uint256 recipientRemainingMints = signatureMaxMints - recipientStageMints; if (quantity > recipientRemainingMints) { quantity = recipientRemainingMints; } } // recipient stage mints cannot exceed stage mints per wallet if (stage.mintsPerWallet > 0) { if (recipientStageMints >= stage.mintsPerWallet) { revert RecipientStageAllowanceUsed(); } uint256 recipientStageRemainingMints = stage.mintsPerWallet - recipientStageMints; if (quantity > recipientStageRemainingMints) { quantity = recipientStageRemainingMints; } } Edition memory edition = getEdition(editionId); // recipient cannot exceed edition max mints per wallet if (edition.maxMintsPerWallet > 0) { if (recipientEditionMints >= edition.maxMintsPerWallet) { revert RecipientEditionAllowanceUsed(); } uint256 recipientEditionRemainingMints = edition.maxMintsPerWallet - recipientEditionMints; if (quantity > recipientEditionRemainingMints) { quantity = recipientEditionRemainingMints; } } uint256 stagePhaseLimit = stage.phaseLimit; if (stagePhaseLimit == 0) { stagePhaseLimit = MAX_EDITION_SIZE; } // quantity cannot exceed stage remaining mints if (editionMintedTotal >= stagePhaseLimit) { revert StageSoldOut(); } uint256 stageRemainingMints = stagePhaseLimit - editionMintedTotal; if (quantity > stageRemainingMints) { quantity = stageRemainingMints; } } /** * @dev Checks the mint signature is valid and also compares nonce to the state of the contract for the recipient. * * @param editionId the ID of the edition being minted * @param recipient the address of the intended recipient of minted tokens * @param quantity the requested quantity to mint * @param nonce the blocknumber at the time the signature was generated, used to determine reuse/expiry of the signature * @param maxMints an additional limitation on the number of max mints for the recipient and stage for this particular signature (0 is unlimited) * @param signatureReleased whether the signature for the stage has been released * @param signature the signature to check */ function _checkMintSignature( uint256 editionId, address recipient, uint256 quantity, uint256 nonce, uint256 maxMints, bool signatureReleased, bytes memory signature, address fairxyzsigner ) internal virtual { if (signatureReleased || _editions[editionId].signatureReleased) { return; } if (nonce > block.number) { revert InvalidSignatureNonce(); } if (nonce + SIGNATURE_VALID_BLOCKS < block.number) { revert SignatureExpired(); } if (nonce <= _editionMinters[editionId][recipient].lastUsedNonce) { revert SignatureAlreadyUsed(); } bytes32 messageHash = _hashMintParams( editionId, recipient, quantity, nonce, maxMints ); // Ensure the recovered address from the signature is the Fairxyz.xyz signer address if (messageHash.recover(signature) != fairxyzsigner) revert InvalidSignature(); } /** * @dev Verifies that the provided payment is correct based on the required cost per token. * Reverts if the payment amount is not as expected. * * @param quantity number of tokens intended to be minted * @param costPerToken cost associated with minting a single token */ function _verifyPayment(uint256 quantity, uint256 costPerToken) internal { if (msg.value != quantity * costPerToken) { revert IncorrectEthValue(); } } /** * @dev Handles the logic for minting editions. Updates the storage, calculates allowed mint quantity, and * conducts the actual minting operation. * * @param editionId unique identifier of the edition * @param recipient address receiving the minted tokens * @param quantity number of tokens intended to be minted * @param signatureNonce nonce associated with the signature * @param signatureMaxMints maximum number of mints allowed for the signature * @param stageIndex index of the current stage * @param stage current stage data * @return EditionMintingHandler returns a struct with the allowed minting quantity and * total minted editions */ function _handleEditionMinting( uint256 editionId, address recipient, uint256 quantity, uint40 signatureNonce, uint256 signatureMaxMints, uint256 stageIndex, Stage memory stage ) internal returns (EditionMintingHandler memory) { EditionMinter memory editionMinter = _editionMinters[editionId][ recipient ]; uint256 recipientStageMints = _editionStageMints[editionId][stageIndex][ recipient ]; uint256 editionMintedTotal = _editionMintedCount[editionId]; uint256 allowedQuantity = _calculateAllowedMintQuantity( quantity, editionId, editionMintedTotal, stage, editionMinter.mintedCount, recipientStageMints, signatureMaxMints ); unchecked { _editionMinters[editionId][recipient] = EditionMinter( editionMinter.mintedCount + uint40(allowedQuantity), signatureNonce ); _editionStageMints[editionId][stageIndex][ recipient ] += allowedQuantity; _editionMintedCount[editionId] += allowedQuantity; } _mintEditionTokens( recipient, editionId, allowedQuantity, editionMintedTotal ); return EditionMintingHandler(allowedQuantity, editionMintedTotal); } /** * @dev Manages the emission of events and Ether transfers post-minting. Responsible for * sending fees and potentially refunding the sender if the full quantity is not minted. * * @param editionId - Unique identifier of the edition * @param stageIndex - Index of the current stage * @param recipient - Address receiving the minted tokens * @param allowedQuantity - Number of tokens allowed to be minted based on constraints * @param editionMintedTotal - Total number of tokens of the edition minted so far * @param quantity - Number of tokens intended to be minted * @param costPerToken - Cost associated with minting a single token */ function _handleEmissionAndTransfers( uint256 editionId, uint256 stageIndex, address recipient, uint256 allowedQuantity, uint256 editionMintedTotal, uint256 quantity, uint256 costPerToken ) internal { emit EditionStageMint( editionId, stageIndex, recipient, allowedQuantity, editionMintedTotal + allowedQuantity ); if (allowedQuantity < quantity) { uint256 refundAmount = (quantity - allowedQuantity) * costPerToken; payable(msg.sender).sendValue(refundAmount); } } /** * @dev Sets the minting extension for the contract * * Emits an {MintExtension} event * * @param newMintingExtension the new minting extension for the contract */ function _setMintingExtension(address newMintingExtension) internal { _mintingExtension = newMintingExtension; emit MintingExtension(newMintingExtension); } /** * @dev Sets the royalty extension for the contract * * Emits an {RoyaltyExtension} event * * @param newRoyaltyExtension the new royalty extension for the contract */ function _setRoyaltyExtension(address newRoyaltyExtension) internal { _royaltyExtension = newRoyaltyExtension; emit RoyaltyExtension(newRoyaltyExtension); } /** * @dev Marks an edition as deleted. * @dev Deleted editions will be considered as none existent. * * Requirements: * - the edition must exist / not have already been deleted. * * Emits an {EditionDeleted} event. * * @param editionId the ID of the edition */ function _deleteEdition(uint256 editionId) internal virtual { _editionDeleted[editionId] = true; emit EditionDeleted(editionId); } /** * @dev Checks for the existence of an edition based on created and not deleted edition IDs. * * @param editionId the ID of the edition to check */ function _editionExists(uint256 editionId) internal view returns (bool) { if ( editionId == 0 || editionId > _editionsCount || _editionDeleted[editionId] ) return false; return true; } /** * @dev Calculate the mint limit for an edition. * * @param editionMaxSupply the max supply of an edition * * @return limit */ function _editionMintLimit( uint256 editionMaxSupply ) internal view virtual returns (uint256 limit) { if (editionMaxSupply == 0) { limit = MAX_EDITION_SIZE; } else { limit = editionMaxSupply; } } /** * @dev Emits metadata update event used by marketplaces to refresh token metadata. * @dev To be overridden by specific token implementation. * * - ERC-721 should emit ERC-4906 (Batch)MetadataUpdate event. * - ERC-1155 should emit the standard URI event. * * @param editionId the ID of the edition * @param uri the new URI */ function _emitMetadataUpdateEvent( uint256 editionId, string memory uri ) internal virtual; /** * @dev Regenerates the expected signature digest for the mint params. */ function _hashMintParams( uint256 editionId, address recipient, uint256 quantity, uint256 nonce, uint256 maxMints ) internal view returns (bytes32) { bytes32 digest = _hashTypedDataV4( keccak256( abi.encode( EIP712_EDITION_MINT_TYPE_HASH, editionId, recipient, quantity, nonce, maxMints ) ) ); return digest; } /** * @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. */ function _hashTypedDataV4( bytes32 structHash ) internal view returns (bytes32) { bytes32 domainSeparator = keccak256( abi.encode( EIP712_DOMAIN_TYPE_HASH, EIP712_NAME_HASH, EIP712_VERSION_HASH, block.chainid, address(this) ) ); return ECDSAUpgradeable.toTypedDataHash(domainSeparator, structHash); } /** * @dev Returns the maximum number of recipients that can be minted to in a single airdrop. */ function _maxRecipientsPerAirdrop() internal view virtual returns (uint256) { return MAX_RECIPIENTS_PER_AIRDROP; } /** * @dev Mints `quantity` tokens of edition `editionId` to `recipient`. * @dev Intended to be overridden by inheriting contract which implements a particular token standard. * * @param recipient the address the tokens should be minted to * @param editionId the ID of the edition to mint tokens of * @param quantity the quantity of tokens to mint * @param editionMintedCount the number of tokens already minted for the edition */ function _mintEditionTokens( address recipient, uint256 editionId, uint256 quantity, uint256 editionMintedCount ) internal virtual; /** * @dev Sets the default royalty details for the collection. * * @param receiver the address royalty payments should be sent to * @param royaltyFraction the numerator used to calculate the royalty percentage of a sale */ function _setDefaultRoyalty( address receiver, uint96 royaltyFraction ) internal virtual onlyValidRoyaltyFraction(royaltyFraction) { if (receiver == address(0)) { delete _defaultRoyalty; emit DefaultRoyalty(address(0), 0); return; } _defaultRoyalty = Royalty(receiver, royaltyFraction); emit DefaultRoyalty(receiver, royaltyFraction); } /** * @dev Sets the URI for the edition metadata. * * @param editionId the ID of the edition to set the URI for * @param uri the URI to set for the edition metadata */ function _setEditionURI( uint256 editionId, string memory uri ) internal virtual { if (bytes(uri).length == 0) { revert InvalidURI(); } _editionURI[editionId] = uri; emit EditionURI(editionId, uri); } /** * @dev Sets the URI extension for the edition metadata. * * Emits an {EditionURIExtension} event. * * @param editionId the ID of the edition to set the URI extension for * @param uriExtension the address of the contract to use for resolving the URI for then edition tokens */ function _setEditionURIExtension( uint256 editionId, address uriExtension ) internal virtual { _editionURIExtension[editionId] = uriExtension; emit EditionURIExtension(editionId, uriExtension); } /** * @dev Returns the stages registry used for managing mint stages. */ function _stagesRegistry() internal view virtual returns (IFairxyzMintStagesRegistry) { return IFairxyzMintStagesRegistry(FAIRXYZ_STAGES_REGISTRY); } // * OVERRIDES * // /** * @dev See {IERC165Upgradeable-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(FairxyzEditionsBaseUpgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IFairxyzEditions).interfaceId || interfaceId == type(IERC2981Upgradeable).interfaceId || FairxyzEditionsBaseUpgradeable.supportsInterface(interfaceId); } /** * @dev See {IAccessControlUpgradeable-_checkRole}. * @dev Overriden to supersede any access control roles with contract ownership. */ function _checkRole(bytes32 role) internal view virtual override { if (_msgSender() != owner()) _checkRole(role, _msgSender()); } // * PRIVATE * // uint256[36] private __gap; }
// SPDX-License-Identifier: MIT // @ Fair.xyz dev pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/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}. */ abstract contract Fairxyz721Upgradeable 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) internal _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 __Fairxyz721_init( string memory name_, string memory symbol_ ) internal { __Fairxyz721_init_unchained(name_, symbol_); } function __Fairxyz721_init_unchained( string memory name_, string memory symbol_ ) internal { _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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = 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) { require(_exists(tokenId), "ERC721: invalid token ID"); 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); /** * @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 = ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || _tokenApprovals[tokenId] == spender); } /** * @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 = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // 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( ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // 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(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 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 ) internal 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 pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/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. */ interface IERC2981Upgradeable is IERC165Upgradeable { error InvalidRoyaltyFraction(); struct Royalty { address receiver; uint96 royaltyFraction; } /** * @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. * * @param tokenId - the ID of the token being sold * @param salePrice - the sale price * * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount in the same unit of exchange as salePrice */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; interface IFairxyz721Editions { event TokenRoyalty( uint256 indexed tokenId, address receiver, uint96 royaltyFraction ); /** * @notice Burn Token * @dev Burns the token, sending it to the zero address. * * @param tokenId the ID of the token to burn */ function burn(uint256 tokenId) external; /** * @notice Set Token Royalty * @dev updates the token royalty receiver and fraction, which overrides the edition and collection * * @param tokenId the ID of the token to update * @param receiver the address that should receive royalty payments * @param royaltyFraction the portion of the defined denominator that the receiver should be sent from a secondary sale */ function setTokenRoyalty( uint256 tokenId, address receiver, uint96 royaltyFraction ) external; /** * @notice Set Token Metadata URI * @dev updates the metadata URI for a specific token * * @param tokenId the ID of the token * @param uri the new URI for the token metadata */ function setTokenURI(uint256 tokenId, string calldata uri) external; }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; import {Stage} from "../interfaces/IFairxyzMintStagesRegistry.sol"; /** * @param maxMintsPerWallet the maximum number of tokens that can be minted per wallet/account * @param maxSupply the maximum supply for the edition including paid mints and airdrops * @param burnable_ the burnable state of the edition * @param signatureReleased whether the signature is required to mint tokens for the edition * @param soulbound whether the edition tokens are soulbound */ struct Edition { uint40 maxMintsPerWallet; uint40 maxSupply; bool burnable; bool signatureReleased; bool soulbound; } /** * @param externalId the external ID of the edition used to identify it off-chain * @param edition the edition struct * @param uri the URI for the edition/token metadata * @param mintStages the mint stages for the edition */ struct EditionCreateParams { uint256 externalId; Edition edition; string uri; Stage[] mintStages; } struct EditionMinter { uint40 mintedCount; uint40 lastUsedNonce; } struct EditionMintingHandler { uint256 allowedQuantity; uint256 editionMintedTotal; } interface IFairxyzEditions { error EditionAlreadyMinted(); error EditionDoesNotExist(); error EditionSignatureAlreadyReleased(); error EditionSupplyCanOnlyBeReduced(); error EditionSupplyLessThanMintedCount(); error EditionSupplyLessThanScheduledStagesPhaseLimit(); error EditionSupplyTooLarge(); error IncorrectEthValue(); error InvalidMintQuantity(); error InvalidNumberOfRecipients(); error InvalidSignatureNonce(); error InvalidSignature(); error InvalidURI(); error NotApprovedOrOwner(); error NotBurnable(); error NotEnoughSupplyRemaining(); error NotTransferable(); error RecipientAllowanceUsed(); error RecipientEditionAllowanceUsed(); error RecipientStageAllowanceUsed(); error SenderIsNotExtension(); error SignatureAlreadyUsed(); error SignatureExpired(); error StageSoldOut(); error TokenDoesNotExist(); error ZeroAddress(); /// @dev Emitted when the metadata of a range of tokens is changed. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); /// @dev Emitted when the default royalty details are changed. event DefaultRoyalty(address receiver, uint96 royaltyFraction); /// @dev Emitted when edition tokens are airdropped. event EditionAirdrop( uint256 indexed editionId, uint256 indexed stageIndex, address[] recipients, uint256 quantity, uint256 editionMintedCount ); /// @dev Emitted when the burnable state of an edition is changed. event EditionBurnable(uint256 indexed editionId, bool burnable); /// @dev Emitted when a new edition is added. event EditionCreated( uint256 indexed editionId, uint256 externalId, Edition edition ); /// @dev Emitted when an edition is deleted and can no longer be minted. event EditionDeleted(uint256 indexed editionId); /// @dev Emitted when the maximum mints per wallet for an edition is changed. event EditionMaxMintsPerWallet( uint256 indexed editionId, uint256 maxMintsPerWallet ); /// @dev Emitted when the maximum supply for an edition is changed. event EditionMaxSupply(uint256 indexed editionId, uint256 maxSupply); /// @dev Emitted when the royalty details for an edition are changed. event EditionRoyalty( uint256 indexed editionId, address receiver, uint96 royaltyFraction ); /// @dev Emitted when a signature is no longer required to mint tokens for a specific edition. event EditionSignatureReleased(uint256 indexed editionId); // /// @dev Emitted when the soulbound state of an edition is changed. // event EditionSoulbound(uint256 indexed editionId, bool soulbound); /// @dev Emitted when edition tokens are minted during a mint stage. event EditionStageMint( uint256 indexed editionId, uint256 indexed stageIndex, address indexed recipient, uint256 quantity, uint256 editionMintedCount ); /// @dev Emitted when the metadata URI for an edition is changed. event EditionURI(uint256 indexed editionId, string uri); /// @dev Emitted when the token URI extension for an edition is changed event EditionURIExtension(uint256 editionId, address uriExtension); /// @dev Emitted when the metadata of a token is changed. event MetadataUpdate(uint256 _tokenId); /// @dev Emitted when the mint extension is changed. event MintingExtension(address mintingExtension); /// @dev Emitted when the primary sale receiver address is changed. event PrimarySaleReceiver(address primarySaleReceiver_); /// @dev Emitted when the royalty extension is updated event RoyaltyExtension(address royaltyExtension); /** * @dev Mints the same quantity of tokens from an edition to multiple recipients. * * @param editionId the ID of the edition to mint * @param quantity the number of tokens to mint to each recipient * @param recipients addresses to mint to */ function airdropEdition( uint256 editionId, uint256 quantity, address[] memory recipients ) external; /** * @dev Adds new editions at the next token ID/range (depending on standard implemented) * * @param editions the editions to add */ function createEditions(EditionCreateParams[] calldata editions) external; /** * @dev Delete an edition i.e. make it no longer editable or mintable. * * @param editionId the ID of the edition to delete */ function deleteEdition(uint256 editionId) external; /** * @dev Returns the current total supply of tokens for an edition, taking both mints and burns into account. * * @param editionId the ID of the edition * * @return totalSupply the number of tokens in circulation */ function editionTotalSupply( uint256 editionId ) external view returns (uint256 totalSupply); /** * @dev Returns the edition with ID `editionId`. * @dev Should revert if the edition does not exist. * * @param editionId the ID of the edition * * @return edition */ function getEdition( uint256 editionId ) external view returns (Edition memory); /** * @dev Grants the `DEFAULT_ADMIN_ROLE` role to an address. * @dev Intended to be used only by the contract owner. Other admin management is done via AccessControl contract functions. * * @param admin the address to grant the default admin role to */ function grantDefaultAdmin(address admin) external; /** * @dev Mint a quantity of tokens for an edition to a single recipient. * @dev Can be called by any account with a valid signature and the correct value. * * @param editionId the ID of the edition * @param recipient the address to transfer the minted tokens to * @param quantity the quantity of tokens to mint * @param signatureNonce a value that is recorded for signature expiry and reuse prevention, typically a recent block number * @param signatureMaxMints the maximum number of mints specific to the recipient and validated in the signature * @param signature a signature containing the other function params for authorizing the execution */ function mintEdition( uint256 editionId, address recipient, uint256 quantity, uint40 signatureNonce, uint256 signatureMaxMints, bytes memory signature ) external payable returns (EditionMintingHandler memory handler); /** * @dev Turns off signature validation for calls to `mintEdition` for a specific edition i.e. allows signature-less minting. * * @param editionId the ID of the edition */ function releaseEditionSignature(uint256 editionId) external; /** * @dev Set the default royalty receiver and fraction for the collection. * * @param receiver the address to receive royalties * @param royaltyFraction the fraction of the sale price to pay as royalties (out of 10000) */ function setDefaultRoyalty( address receiver, uint96 royaltyFraction ) external; /** * @dev Updates the maximum number of tokens each wallet can mint for an edition. * * @param editionId the ID of the edition to update * @param maxMintsPerWallet the new maximum number of mints */ function setEditionMaxMintsPerWallet( uint256 editionId, uint40 maxMintsPerWallet ) external; /** * @dev Updates the maximum supply available for an edition. * * @param editionId the ID of the edition to update * @param maxSupply the new maximum supply of tokens for the edition */ function setEditionMaxSupply(uint256 editionId, uint40 maxSupply) external; /** * @notice Set Edition Royalty * @dev updates the edition royalty receiver and fraction, which overrides the collection default * * @param editionId the ID of the edition to update * @param receiver the address that should receive royalty payments * @param royaltyFraction the portion of the defined denominator that the receiver should be sent from a secondary sale */ function setEditionRoyalty( uint256 editionId, address receiver, uint96 royaltyFraction ) external; /** * @notice Update Edition Mint Stages * @dev Add and update a range of mint stages for an edition. * * @param editionId the ID of the edition * @param firstStageIndex the index of the first stage being det * @param newStages the new stage data to set */ function setEditionStages( uint256 editionId, uint256 firstStageIndex, Stage[] calldata newStages ) external; /** * @notice Set Edition Metadata URI * @dev updates the edition metadata URI * * @param editionId the ID of the edition to update * @param uri the URI of the metadata for the edition */ function setEditionURI(uint256 editionId, string calldata uri) external; /** * @notice Set Edition URI Extension * @dev Updates the URI extension address for an edition. * * @param editionId the edition ID for which the extension is to be set * @param uriExtension the new URI extension address for the edition ID */ function setEditionURIExtension( uint256 editionId, address uriExtension ) external; /** * @dev Set the address of an extension contract that can mint tokens. * * @param newMintingExtension the new Minting extension address for the edition ID */ function setMintingExtension(address newMintingExtension) external; /** * @dev Updates the address that the contract balance is withdrawn to. * * @param primarySaleReceiver_ the address that should receive funds when withdraw is called */ function setPrimarySaleReceiver(address primarySaleReceiver_) external; /** * @dev Updates the royalties extension address for the contract. * * @param newRoyaltyExtension the contract address of the new royalty extension */ function setRoyaltyExtension(address newRoyaltyExtension) external; /** * @dev returns the current total supply of tokens for the collection, taking both mints and burns into account. * * @return supply the number of tokens in circulation */ function totalSupply() external view returns (uint256 supply); /** * @dev Sends the contract balance to the primary sale receiver address stored in the contract. */ function withdraw() external; }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; struct Stage { uint40 startTime; uint40 endTime; uint40 mintsPerWallet; uint40 phaseLimit; uint96 price; bool signatureReleased; } struct FairxyzParameters { address fairxyzSigner; address fairxyzWithdrawAddress; uint256 fairxyzFee; } interface IFairxyzMintStagesRegistry { error NoActiveStage(); error NoStages(); error NoStagesSpecified(); error PhaseLimitsOverlap(); error SkippedStages(); error StageDoesNotExist(); error StageHasEnded(); error StageHasAlreadyStarted(); error StageLimitAboveMax(); error StageLimitBelowMin(); error StageTimesOverlap(); error TooManyUpcomingStages(); error Unauthorized(); /// @dev Emitted when a range of stages for a schedule are updated. event ScheduleStagesUpdated( address indexed registrant, uint256 indexed scheduleId, uint256 startIndex, Stage[] stages ); /// @dev Emitted when a range of stages for a schedule are cancelled. event ScheduleStagesCancelled( address indexed registrant, uint256 indexed scheduleId, uint256 startIndex ); /** * @dev Cancels all stages from the specified index onwards. * * Requirements: * - `fromIndex` must be less than the total number of stages * * @param registrant the address of the registrant the schedule is managed by * @param scheduleId the id of the schedule to cancel the stages for * @param fromIndex the index from which to cancel stages */ function cancelStages( address registrant, uint256 scheduleId, uint256 fromIndex ) external; /** * @dev Sets the parameters relevant to platform minting on Fair.xyz * * Requirements: * - `msg.sender` must be the contract owner * * @param parameters a struct of parameters for Fair.xyz-related platform minting */ function setFairParameters(FairxyzParameters memory parameters) external; /** * @dev Sets a new series of stages, overwriting any existing stages and cancelling any stages after the last new stage. * * @param registrant the address of the registrant the schedule is managed by * @param scheduleId the id of the schedule to update the stages for * @param firstStageIndex the index from which to update stages * @param stages array of new stages to add to / overwrite existing stages * @param minPhaseLimit the minimum phaseLimit for the new stages e.g. current supply of the token the schedule is for * @param maxPhaseLimit the maximum phaseLimit for the new stages e.g. maximum supply of the token the schedule is for */ function setStages( address registrant, uint256 scheduleId, uint256 firstStageIndex, Stage[] calldata stages, uint256 minPhaseLimit, uint256 maxPhaseLimit ) external; /** * @dev Finds the active stage for a schedule based on the current time being between the start and end times. * @dev Reverts if no active stage is found. * * @param scheduleId The id of the schedule to find the active stage for * * @return fairxyzParameters the parameters around the Fair.xyz signature, withdrawal address and fees * @return index The index of the active stage * @return stage The active stage data */ function viewActiveStage( address registrant, uint256 scheduleId ) external view returns (FairxyzParameters memory fairxyzParameters, uint256 index, Stage memory stage); /** * @dev Finds the final stage for a schedule. * @dev Does not revert. Instead, it returns an empty Stage if no stages exist for the schedule. * * @param scheduleId The id of the schedule to find the final stage for * * @return index The index of the final stage * @return stage The final stage data */ function viewFinalStage( address registrant, uint256 scheduleId ) external view returns (uint256 index, Stage memory stage); /** * @dev Finds the index of the current/upcoming stage which has not yet ended. * @dev A stage may not exist at the returned index if all existing stages have ended. * * @param scheduleId The id of the schedule to find the latest stage index for * * @return index */ function viewLatestStageIndex( address registrant, uint256 scheduleId ) external view returns (uint256 index); /** * @dev Returns the stage data for the specified schedule id and stage index. * @dev Reverts if a stage does not exist or has been deleted at the index. * * @param scheduleId The id of the schedule to get the stage from * @param stageIndex The index of the stage to get * * @return stage */ function viewStage( address registrant, uint256 scheduleId, uint256 stageIndex ) external view returns (Stage memory stage); }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; interface IFairxyzOperatorFiltererUpgradeable { error OnlyAdmin(); /// @dev Emitted when the operator filter is disabled/enabled. event OperatorFilterDisabled(bool disabled); /** * @notice Enable/Disable Operator Filter * @dev Used to turn the operator filter on/off without updating the registry. */ function toggleOperatorFilterDisabled() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; interface ITokenURI { /** * @dev Returns the metadata URI for a given token ID * * @param tokenId The id of the token */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // @author: Fair.xyz dev pragma solidity 0.8.19; import {IOperatorFilterRegistry} from "operator-filter-registry/src/OperatorFilterRegistry.sol"; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "../interfaces/IFairxyzOperatorFiltererUpgradeable.sol"; abstract contract FairxyzOperatorFiltererUpgradeable is Initializable, IFairxyzOperatorFiltererUpgradeable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address public immutable REGISTRY_ADDRESS; /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address public immutable DEFAULT_SUBSCRIPTION_ADDRESS; bool public operatorFilterDisabled; /// @custom:oz-upgrades-unsafe-allow constructor constructor(address registry_, address defaultSubscription_) { REGISTRY_ADDRESS = registry_; DEFAULT_SUBSCRIPTION_ADDRESS = defaultSubscription_; } function __FairxyzOperatorFilterer_init( bool enabled ) internal onlyInitializing { __FairxyzOperatorFilterer_init_unchained(enabled); } function __FairxyzOperatorFilterer_init_unchained( bool enabled ) internal onlyInitializing { if ( enabled && REGISTRY_ADDRESS.code.length > 0 && DEFAULT_SUBSCRIPTION_ADDRESS != address(0) ) { IOperatorFilterRegistry(REGISTRY_ADDRESS).registerAndSubscribe( address(this), DEFAULT_SUBSCRIPTION_ADDRESS ); } else { operatorFilterDisabled = true; } } // * MODIFIERS * // /** * @dev Used to modify transfer functions to check the msg.sender is an allowed operator. * @dev Checks are bypassed if the filter is disabled or msg.sender owns the tokens. * * @param operator the address of the operator that transfer is being attempted by * @param from the address tokens are being transferred from */ modifier onlyAllowedOperator(address operator, address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (REGISTRY_ADDRESS.code.length > 0 && !operatorFilterDisabled) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (operator != from) { // The OperatorFilterRegistry is responsible for checking if the operator is allowed // Reverts with AddressFiltered() if not. IOperatorFilterRegistry(REGISTRY_ADDRESS).isOperatorAllowed( address(this), operator ); } } _; } /** * @dev Used to modify approval functions to check the operator is an allowed operator. * @dev Checks are bypassed if the filter is disabled. * * @param operator the address of the operator that approval is being attempted for */ modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (REGISTRY_ADDRESS.code.length > 0 && !operatorFilterDisabled) { // The OperatorFilterRegistry is responsible for checking if the operator is allowed // Reverts with AddressFiltered() if not. IOperatorFilterRegistry(REGISTRY_ADDRESS).isOperatorAllowed( address(this), operator ); } _; } modifier onlyOperatorFilterAdmin() { if (!_isOperatorFilterAdmin(msg.sender)) { revert OnlyAdmin(); } _; } // * ADMIN * // /** * @dev See {IFairxyzOperatorFiltererUpgradeable-toggleOperatorFilterDisabled}. */ function toggleOperatorFilterDisabled() external virtual override onlyOperatorFilterAdmin { bool disabled = !operatorFilterDisabled; operatorFilterDisabled = disabled; emit OperatorFilterDisabled(disabled); } // * INTERNAL * // /** * @dev Inheriting contract is responsible for implementation */ function _isOperatorFilterAdmin( address operator ) internal view virtual returns (bool); uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {OperatorFilterRegistryErrorsAndEvents} from "./OperatorFilterRegistryErrorsAndEvents.sol"; /** * @title OperatorFilterRegistry * @notice Borrows heavily from the QQL BlacklistOperatorFilter contract: * https://github.com/qql-art/contracts/blob/main/contracts/BlacklistOperatorFilter.sol * @notice This contracts allows tokens or token owners to register specific addresses or codeHashes that may be * * restricted according to the isOperatorAllowed function. */ contract OperatorFilterRegistry is IOperatorFilterRegistry, OperatorFilterRegistryErrorsAndEvents { using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.Bytes32Set; /// @dev initialized accounts have a nonzero codehash (see https://eips.ethereum.org/EIPS/eip-1052) /// Note that this will also be a smart contract's codehash when making calls from its constructor. bytes32 constant EOA_CODEHASH = keccak256(""); mapping(address => EnumerableSet.AddressSet) private _filteredOperators; mapping(address => EnumerableSet.Bytes32Set) private _filteredCodeHashes; mapping(address => address) private _registrations; mapping(address => EnumerableSet.AddressSet) private _subscribers; /** * @notice Restricts method caller to the address or EIP-173 "owner()" */ modifier onlyAddressOrOwner(address addr) { if (msg.sender != addr) { try Ownable(addr).owner() returns (address owner) { if (msg.sender != owner) { revert OnlyAddressOrOwner(); } } catch (bytes memory reason) { if (reason.length == 0) { revert NotOwnable(); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } _; } /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. * Note that this method will *revert* if an operator or its codehash is filtered with an error that is * more informational than a false boolean, so smart contracts that query this method for informational * purposes will need to wrap in a try/catch or perform a low-level staticcall in order to handle the case * that an operator is filtered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != address(0)) { EnumerableSet.AddressSet storage filteredOperatorsRef; EnumerableSet.Bytes32Set storage filteredCodeHashesRef; filteredOperatorsRef = _filteredOperators[registration]; filteredCodeHashesRef = _filteredCodeHashes[registration]; if (filteredOperatorsRef.contains(operator)) { revert AddressFiltered(operator); } if (operator.code.length > 0) { bytes32 codeHash = operator.codehash; if (filteredCodeHashesRef.contains(codeHash)) { revert CodeHashFiltered(operator, codeHash); } } } return true; } ////////////////// // AUTH METHODS // ////////////////// /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external onlyAddressOrOwner(registrant) { if (_registrations[registrant] != address(0)) { revert AlreadyRegistered(); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); } /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address registrant) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = address(0); emit RegistrationUpdated(registrant, false); } /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } if (registrant == subscription) { revert CannotSubscribeToSelf(); } address subscriptionRegistration = _registrations[subscription]; if (subscriptionRegistration == address(0)) { revert NotRegistered(subscription); } if (subscriptionRegistration != subscription) { revert CannotSubscribeToRegistrantWithSubscription(subscription); } _registrations[registrant] = subscription; _subscribers[subscription].add(registrant); emit RegistrationUpdated(registrant, true); emit SubscriptionUpdated(registrant, subscription, true); } /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrantToCopy == registrant) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration != address(0)) { revert AlreadyRegistered(); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _registrations[registrant] = registrant; emit RegistrationUpdated(registrant, true); _copyEntries(registrant, registrantToCopy); } /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; if (!filtered) { bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } } else { bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } } emit OperatorUpdated(registrant, operator, filtered); } /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. * Note that this will allow adding the bytes32(0) codehash, which could result in unexpected behavior, * since calling `isCodeHashFiltered` will return true for bytes32(0), which is the codeHash of any * un-initialized account. Since un-initialized accounts have no code, the registry will not validate * that an un-initalized account's codeHash is not filtered. By the time an account is able to * act as an operator (an account is initialized or a smart contract exclusively in the context of its * constructor), it will have a codeHash of EOA_CODEHASH, which cannot be filtered. */ function updateCodeHash(address registrant, bytes32 codeHash, bool filtered) external onlyAddressOrOwner(registrant) { if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; if (!filtered) { bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } } else { bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } } emit CodeHashUpdated(registrant, codeHash, filtered); } /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrant]; uint256 operatorsLength = operators.length; if (!filtered) { for (uint256 i = 0; i < operatorsLength;) { address operator = operators[i]; bool removed = filteredOperatorsRef.remove(operator); if (!removed) { revert AddressNotFiltered(operator); } unchecked { ++i; } } } else { for (uint256 i = 0; i < operatorsLength;) { address operator = operators[i]; bool added = filteredOperatorsRef.add(operator); if (!added) { revert AddressAlreadyFiltered(operator); } unchecked { ++i; } } } emit OperatorsUpdated(registrant, operators, filtered); } /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. * Note that this will allow adding the bytes32(0) codehash, which could result in unexpected behavior, * since calling `isCodeHashFiltered` will return true for bytes32(0), which is the codeHash of any * un-initialized account. Since un-initialized accounts have no code, the registry will not validate * that an un-initalized account's codeHash is not filtered. By the time an account is able to * act as an operator (an account is initialized or a smart contract exclusively in the context of its * constructor), it will have a codeHash of EOA_CODEHASH, which cannot be filtered. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrant]; uint256 codeHashesLength = codeHashes.length; if (!filtered) { for (uint256 i = 0; i < codeHashesLength;) { bytes32 codeHash = codeHashes[i]; bool removed = filteredCodeHashesRef.remove(codeHash); if (!removed) { revert CodeHashNotFiltered(codeHash); } unchecked { ++i; } } } else { for (uint256 i = 0; i < codeHashesLength;) { bytes32 codeHash = codeHashes[i]; if (codeHash == EOA_CODEHASH) { revert CannotFilterEOAs(); } bool added = filteredCodeHashesRef.add(codeHash); if (!added) { revert CodeHashAlreadyFiltered(codeHash); } unchecked { ++i; } } } emit CodeHashesUpdated(registrant, codeHashes, filtered); } /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address newSubscription) external onlyAddressOrOwner(registrant) { if (registrant == newSubscription) { revert CannotSubscribeToSelf(); } if (newSubscription == address(0)) { revert CannotSubscribeToZeroAddress(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == newSubscription) { revert AlreadySubscribed(newSubscription); } address newSubscriptionRegistration = _registrations[newSubscription]; if (newSubscriptionRegistration == address(0)) { revert NotRegistered(newSubscription); } if (newSubscriptionRegistration != newSubscription) { revert CannotSubscribeToRegistrantWithSubscription(newSubscription); } if (registration != registrant) { _subscribers[registration].remove(registrant); emit SubscriptionUpdated(registrant, registration, false); } _registrations[registrant] = newSubscription; _subscribers[newSubscription].add(registrant); emit SubscriptionUpdated(registrant, newSubscription, true); } /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external onlyAddressOrOwner(registrant) { address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration == registrant) { revert NotSubscribed(); } _subscribers[registration].remove(registrant); _registrations[registrant] = registrant; emit SubscriptionUpdated(registrant, registration, false); if (copyExistingEntries) { _copyEntries(registrant, registration); } } /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external onlyAddressOrOwner(registrant) { if (registrant == registrantToCopy) { revert CannotCopyFromSelf(); } address registration = _registrations[registrant]; if (registration == address(0)) { revert NotRegistered(registrant); } if (registration != registrant) { revert CannotUpdateWhileSubscribed(registration); } address registrantRegistration = _registrations[registrantToCopy]; if (registrantRegistration == address(0)) { revert NotRegistered(registrantToCopy); } _copyEntries(registrant, registrantToCopy); } /// @dev helper to copy entries from registrantToCopy to registrant and emit events function _copyEntries(address registrant, address registrantToCopy) private { EnumerableSet.AddressSet storage filteredOperatorsRef = _filteredOperators[registrantToCopy]; EnumerableSet.Bytes32Set storage filteredCodeHashesRef = _filteredCodeHashes[registrantToCopy]; uint256 filteredOperatorsLength = filteredOperatorsRef.length(); uint256 filteredCodeHashesLength = filteredCodeHashesRef.length(); for (uint256 i = 0; i < filteredOperatorsLength;) { address operator = filteredOperatorsRef.at(i); bool added = _filteredOperators[registrant].add(operator); if (added) { emit OperatorUpdated(registrant, operator, true); } unchecked { ++i; } } for (uint256 i = 0; i < filteredCodeHashesLength;) { bytes32 codehash = filteredCodeHashesRef.at(i); bool added = _filteredCodeHashes[registrant].add(codehash); if (added) { emit CodeHashUpdated(registrant, codehash, true); } unchecked { ++i; } } } ////////////////// // VIEW METHODS // ////////////////// /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address registrant) external view returns (address subscription) { subscription = _registrations[registrant]; if (subscription == address(0)) { revert NotRegistered(registrant); } else if (subscription == registrant) { subscription = address(0); } } /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external view returns (address[] memory) { return _subscribers[registrant].values(); } /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external view returns (address) { return _subscribers[registrant].at(index); } /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].contains(operator); } return _filteredOperators[registrant].contains(operator); } /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external view returns (bool) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external view returns (bool) { bytes32 codeHash = operatorWithCode.codehash; address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].contains(codeHash); } return _filteredCodeHashes[registrant].contains(codeHash); } /** * @notice Returns true if an address has registered */ function isRegistered(address registrant) external view returns (bool) { return _registrations[registrant] != address(0); } /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address registrant) external view returns (address[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].values(); } return _filteredOperators[registrant].values(); } /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address registrant) external view returns (bytes32[] memory) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].values(); } return _filteredCodeHashes[registrant].values(); } /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external view returns (address) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredOperators[registration].at(index); } return _filteredOperators[registrant].at(index); } /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external view returns (bytes32) { address registration = _registrations[registrant]; if (registration != registrant) { return _filteredCodeHashes[registration].at(index); } return _filteredCodeHashes[registrant].at(index); } /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address a) external view returns (bytes32) { return a.codehash; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract OperatorFilterRegistryErrorsAndEvents { /// @notice Emitted when trying to register an address that has no code. error CannotFilterEOAs(); /// @notice Emitted when trying to add an address that is already filtered. error AddressAlreadyFiltered(address operator); /// @notice Emitted when trying to remove an address that is not filtered. error AddressNotFiltered(address operator); /// @notice Emitted when trying to add a codehash that is already filtered. error CodeHashAlreadyFiltered(bytes32 codeHash); /// @notice Emitted when trying to remove a codehash that is not filtered. error CodeHashNotFiltered(bytes32 codeHash); /// @notice Emitted when the caller is not the address or EIP-173 "owner()" error OnlyAddressOrOwner(); /// @notice Emitted when the registrant is not registered. error NotRegistered(address registrant); /// @notice Emitted when the registrant is already registered. error AlreadyRegistered(); /// @notice Emitted when the registrant is already subscribed. error AlreadySubscribed(address subscription); /// @notice Emitted when the registrant is not subscribed. error NotSubscribed(); /// @notice Emitted when trying to update a registration where the registrant is already subscribed. error CannotUpdateWhileSubscribed(address subscription); /// @notice Emitted when trying to subscribe to itself. error CannotSubscribeToSelf(); /// @notice Emitted when trying to subscribe to the zero address. error CannotSubscribeToZeroAddress(); /// @notice Emitted when trying to register and the contract is not ownable (EIP-173 "owner()") error NotOwnable(); /// @notice Emitted when an address is filtered. error AddressFiltered(address filtered); /// @notice Emitted when a codeHash is filtered. error CodeHashFiltered(address account, bytes32 codeHash); /// @notice Emited when trying to register to a registrant with a subscription. error CannotSubscribeToRegistrantWithSubscription(address registrant); /// @notice Emitted when trying to copy a registration from itself. error CannotCopyFromSelf(); /// @notice Emitted when a registration is updated. event RegistrationUpdated(address indexed registrant, bool indexed registered); /// @notice Emitted when an operator is updated. event OperatorUpdated(address indexed registrant, address indexed operator, bool indexed filtered); /// @notice Emitted when multiple operators are updated. event OperatorsUpdated(address indexed registrant, address[] operators, bool indexed filtered); /// @notice Emitted when a codeHash is updated. event CodeHashUpdated(address indexed registrant, bytes32 indexed codeHash, bool indexed filtered); /// @notice Emitted when multiple codeHashes are updated. event CodeHashesUpdated(address indexed registrant, bytes32[] codeHashes, bool indexed filtered); /// @notice Emitted when a subscription is updated. event SubscriptionUpdated(address indexed registrant, address indexed subscription, bool indexed subscribed); }
{ "optimizer": { "enabled": true, "runs": 120 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"fairxyzStagesRegistry_","type":"address"},{"internalType":"uint256","name":"maxMintsPerTransaction_","type":"uint256"},{"internalType":"uint256","name":"maxRecipientsPerAirdrop_","type":"uint256"},{"internalType":"address","name":"operatorFilterRegistry_","type":"address"},{"internalType":"address","name":"operatorFilterSubscription_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EditionAlreadyMinted","type":"error"},{"inputs":[],"name":"EditionDoesNotExist","type":"error"},{"inputs":[],"name":"EditionSignatureAlreadyReleased","type":"error"},{"inputs":[],"name":"EditionSupplyCanOnlyBeReduced","type":"error"},{"inputs":[],"name":"EditionSupplyLessThanMintedCount","type":"error"},{"inputs":[],"name":"EditionSupplyLessThanScheduledStagesPhaseLimit","type":"error"},{"inputs":[],"name":"EditionSupplyTooLarge","type":"error"},{"inputs":[],"name":"IncorrectEthValue","type":"error"},{"inputs":[],"name":"InvalidMintQuantity","type":"error"},{"inputs":[],"name":"InvalidNumberOfRecipients","type":"error"},{"inputs":[],"name":"InvalidRoyaltyFraction","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidSignatureNonce","type":"error"},{"inputs":[],"name":"InvalidURI","type":"error"},{"inputs":[],"name":"NotApprovedOrOwner","type":"error"},{"inputs":[],"name":"NotBurnable","type":"error"},{"inputs":[],"name":"NotEnoughSupplyRemaining","type":"error"},{"inputs":[],"name":"NotTransferable","type":"error"},{"inputs":[],"name":"OnlyAdmin","type":"error"},{"inputs":[],"name":"RecipientAllowanceUsed","type":"error"},{"inputs":[],"name":"RecipientEditionAllowanceUsed","type":"error"},{"inputs":[],"name":"RecipientStageAllowanceUsed","type":"error"},{"inputs":[],"name":"SenderIsNotExtension","type":"error"},{"inputs":[],"name":"SignatureAlreadyUsed","type":"error"},{"inputs":[],"name":"SignatureExpired","type":"error"},{"inputs":[],"name":"StageSoldOut","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"stageIndex","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"editionMintedCount","type":"uint256"}],"name":"EditionAirdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"burnable","type":"bool"}],"name":"EditionBurnable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"externalId","type":"uint256"},{"components":[{"internalType":"uint40","name":"maxMintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"maxSupply","type":"uint40"},{"internalType":"bool","name":"burnable","type":"bool"},{"internalType":"bool","name":"signatureReleased","type":"bool"},{"internalType":"bool","name":"soulbound","type":"bool"}],"indexed":false,"internalType":"struct Edition","name":"edition","type":"tuple"}],"name":"EditionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"EditionDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxMintsPerWallet","type":"uint256"}],"name":"EditionMaxMintsPerWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"EditionMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"EditionRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"EditionSignatureReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"stageIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"editionMintedCount","type":"uint256"}],"name":"EditionStageMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"EditionURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"editionId","type":"uint256"},{"indexed":false,"internalType":"address","name":"uriExtension","type":"address"}],"name":"EditionURIExtension","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mintingExtension","type":"address"}],"name":"MintingExtension","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"disabled","type":"bool"}],"name":"OperatorFilterDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"primarySaleReceiver_","type":"address"}],"name":"PrimarySaleReceiver","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":false,"internalType":"address","name":"royaltyExtension","type":"address"}],"name":"RoyaltyExtension","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"TokenRoyalty","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_SUBSCRIPTION_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REGISTRY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropEdition","outputs":[],"stateMutability":"nonpayable","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":[{"components":[{"internalType":"uint256","name":"externalId","type":"uint256"},{"components":[{"internalType":"uint40","name":"maxMintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"maxSupply","type":"uint40"},{"internalType":"bool","name":"burnable","type":"bool"},{"internalType":"bool","name":"signatureReleased","type":"bool"},{"internalType":"bool","name":"soulbound","type":"bool"}],"internalType":"struct Edition","name":"edition","type":"tuple"},{"internalType":"string","name":"uri","type":"string"},{"components":[{"internalType":"uint40","name":"startTime","type":"uint40"},{"internalType":"uint40","name":"endTime","type":"uint40"},{"internalType":"uint40","name":"mintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"phaseLimit","type":"uint40"},{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"bool","name":"signatureReleased","type":"bool"}],"internalType":"struct Stage[]","name":"mintStages","type":"tuple[]"}],"internalType":"struct EditionCreateParams[]","name":"editions","type":"tuple[]"}],"name":"createEditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"deleteEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"editionTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"getEdition","outputs":[{"components":[{"internalType":"uint40","name":"maxMintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"maxSupply","type":"uint40"},{"internalType":"bool","name":"burnable","type":"bool"},{"internalType":"bool","name":"signatureReleased","type":"bool"},{"internalType":"bool","name":"soulbound","type":"bool"}],"internalType":"struct Edition","name":"","type":"tuple"}],"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":"address","name":"admin","type":"address"}],"name":"grantDefaultAdmin","outputs":[],"stateMutability":"nonpayable","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":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint96","name":"defaultRoyalty_","type":"uint96"},{"components":[{"internalType":"uint256","name":"externalId","type":"uint256"},{"components":[{"internalType":"uint40","name":"maxMintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"maxSupply","type":"uint40"},{"internalType":"bool","name":"burnable","type":"bool"},{"internalType":"bool","name":"signatureReleased","type":"bool"},{"internalType":"bool","name":"soulbound","type":"bool"}],"internalType":"struct Edition","name":"edition","type":"tuple"},{"internalType":"string","name":"uri","type":"string"},{"components":[{"internalType":"uint40","name":"startTime","type":"uint40"},{"internalType":"uint40","name":"endTime","type":"uint40"},{"internalType":"uint40","name":"mintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"phaseLimit","type":"uint40"},{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"bool","name":"signatureReleased","type":"bool"}],"internalType":"struct Stage[]","name":"mintStages","type":"tuple[]"}],"internalType":"struct EditionCreateParams[]","name":"editions_","type":"tuple[]"},{"internalType":"bool","name":"operatorFilterEnabled_","type":"bool"},{"internalType":"address","name":"defaultMintingExtension","type":"address"},{"internalType":"address","name":"defaultRoyaltyExtension","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint40","name":"signatureNonce","type":"uint40"},{"internalType":"uint256","name":"signatureMaxMints","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintEdition","outputs":[{"components":[{"internalType":"uint256","name":"allowedQuantity","type":"uint256"},{"internalType":"uint256","name":"editionMintedTotal","type":"uint256"}],"internalType":"struct EditionMintingHandler","name":"handler","type":"tuple"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"}],"name":"releaseEditionSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"uint40","name":"maxMintsPerWallet","type":"uint40"}],"name":"setEditionMaxMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"uint40","name":"maxSupply","type":"uint40"}],"name":"setEditionMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setEditionRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"uint256","name":"fromIndex","type":"uint256"},{"components":[{"internalType":"uint40","name":"startTime","type":"uint40"},{"internalType":"uint40","name":"endTime","type":"uint40"},{"internalType":"uint40","name":"mintsPerWallet","type":"uint40"},{"internalType":"uint40","name":"phaseLimit","type":"uint40"},{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"bool","name":"signatureReleased","type":"bool"}],"internalType":"struct Stage[]","name":"stages","type":"tuple[]"}],"name":"setEditionStages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setEditionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"editionId","type":"uint256"},{"internalType":"address","name":"uriExtension","type":"address"}],"name":"setEditionURIExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMintingExtension","type":"address"}],"name":"setMintingExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"primarySaleReceiver","type":"address"}],"name":"setPrimarySaleReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRoyaltyExtension","type":"address"}],"name":"setRoyaltyExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleOperatorFilterDisabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040516200627d3803806200627d833981016040819052620000359162000172565b84620000476001633b9aca00620001d0565b6001600160a01b0380851660805280841660a052821660c05260e0819052610100859052846200007662000094565b5050506101208490526200008962000094565b5050505050620001f8565b600054610100900460ff1615620001015760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff9081161462000153576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b80516001600160a01b03811681146200016d57600080fd5b919050565b600080600080600060a086880312156200018b57600080fd5b620001968662000155565b94506020860151935060408601519250620001b46060870162000155565b9150620001c46080870162000155565b90509295509295909350565b81810381811115620001f257634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c05160e0516101005161012051615fe16200029c6000396000613aa601526000612177015260008181613565015281816139370152613f07015260006129d8015260008181610557015281816141f0015261426601526000818161089b01528181610c2401528181610c7901528181611ba701528181611bfc01528181613f7501528181613fe3015281816141bc01526142370152615fe16000f3fe6080604052600436106102e45760003560e01c8063645f3ab711610186578063b1c926e2116100d7578063dd6044ee11610085578063dd6044ee14610937578063e30c397814610957578063e62f774f14610976578063e985e9c514610996578063ebfb8a87146109b6578063ece694cb146109d6578063f2fde38b146109f657600080fd5b8063b1c926e214610849578063b88d4fde14610869578063bd3bf7f314610889578063c0dad79b146108bd578063c87b56dd146108d7578063d547741f146108f7578063d675fee71461091757600080fd5b80639188570b116101345780639188570b1461076557806391d148541461078557806395d89b41146107a5578063a217fddf146107ba578063a22cb465146107cf578063a642c032146107ef578063ac9650d81461081c57600080fd5b8063645f3ab7146106a757806370a08231146106c7578063715018a6146106e757806372c06f5a146106fc57806379ba5097146107115780637dbf7ef0146107265780638da5cb5b1461074657600080fd5b80632ed1fd801161024057806342966c68116101ee57806342966c68146105ce5780634b50ceee146105ee57806350d331c21461060e5780635944c7531461062e5780635c975abb1461064e57806361abd764146106675780636352211e1461068757600080fd5b80632ed1fd80146104e55780632f2ff15d1461050557806333fd20e01461052557806335c133d11461054557806336568abe146105795780633ccfd60b1461059957806342842e0e146105ae57600080fd5b80630c267ed61161029d5780630c267ed6146103d6578063162094c41461040457806318160ddd1461042457806323b872dd14610447578063248a9ca3146104675780632a55205a146104975780632c20722c146104c557600080fd5b806301ffc9a7146102f057806304634d8d146103255780630690a78d1461034757806306fdde0314610367578063081812fc14610389578063095ea7b3146103b657600080fd5b366102eb57005b600080fd5b3480156102fc57600080fd5b5061031061030b366004614bff565b610a16565b60405190151581526020015b60405180910390f35b34801561033157600080fd5b50610345610340366004614c5c565b610a50565b005b34801561035357600080fd5b50610345610362366004614c95565b610a68565b34801561037357600080fd5b5061037c610b41565b60405161031c9190614d60565b34801561039557600080fd5b506103a96103a4366004614d73565b610bd3565b60405161031c9190614d8c565b3480156103c257600080fd5b506103456103d1366004614da0565b610c1f565b6103e96103e4366004614ea2565b610d02565b6040805182518152602092830151928101929092520161031c565b34801561041057600080fd5b5061034561041f366004614c95565b610e90565b34801561043057600080fd5b50610439610f09565b60405190815260200161031c565b34801561045357600080fd5b50610345610462366004614f1f565b610f39565b34801561047357600080fd5b50610439610482366004614d73565b600090815260c9602052604090206001015490565b3480156104a357600080fd5b506104b76104b2366004614f60565b610f6a565b60405161031c929190614f82565b3480156104d157600080fd5b506103456104e0366004614f9b565b611103565b3480156104f157600080fd5b50610345610500366004614fc0565b6111a3565b34801561051157600080fd5b50610345610520366004615002565b6112f8565b34801561053157600080fd5b50610345610540366004614d73565b61131d565b34801561055157600080fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b34801561058557600080fd5b50610345610594366004615002565b6113de565b3480156105a557600080fd5b50610345611458565b3480156105ba57600080fd5b506103456105c9366004614f1f565b61147b565b3480156105da57600080fd5b506103456105e9366004614d73565b611496565b3480156105fa57600080fd5b50610345610609366004615027565b611510565b34801561061a57600080fd5b50610439610629366004614d73565b611526565b34801561063a57600080fd5b50610345610649366004614fc0565b61154c565b34801561065a57600080fd5b506101915460ff16610310565b34801561067357600080fd5b50610345610682366004615027565b61156e565b34801561069357600080fd5b506103a96106a2366004614d73565b611581565b3480156106b357600080fd5b506103456106c23660046150a1565b6115b5565b3480156106d357600080fd5b506104396106e2366004615027565b6116f9565b3480156106f357600080fd5b5061034561177f565b34801561070857600080fd5b50610345611791565b34801561071d57600080fd5b50610345611802565b34801561073257600080fd5b50610345610741366004614f9b565b61187a565b34801561075257600080fd5b5061012d546001600160a01b03166103a9565b34801561077157600080fd5b50610345610780366004615027565b611aeb565b34801561079157600080fd5b506103106107a0366004615002565b611b68565b3480156107b157600080fd5b5061037c611b93565b3480156107c657600080fd5b50610439600081565b3480156107db57600080fd5b506103456107ea366004615182565b611ba2565b3480156107fb57600080fd5b5061080f61080a366004614d73565b611c80565b60405161031c91906151f1565b34801561082857600080fd5b5061083c6108373660046151ff565b611d48565b60405161031c9190615240565b34801561085557600080fd5b506103456108643660046151ff565b611e3c565b34801561087557600080fd5b506103456108843660046152a2565b611e5d565b34801561089557600080fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b3480156108c957600080fd5b506097546103109060ff1681565b3480156108e357600080fd5b5061037c6108f2366004614d73565b611e8f565b34801561090357600080fd5b50610345610912366004615002565b612065565b34801561092357600080fd5b50610345610932366004614d73565b61208a565b34801561094357600080fd5b5061034561095236600461530d565b6120ff565b34801561096357600080fd5b5061015f546001600160a01b03166103a9565b34801561098257600080fd5b50610345610991366004615027565b612337565b3480156109a257600080fd5b506103106109b13660046153d3565b61234a565b3480156109c257600080fd5b506103456109d1366004615401565b612378565b3480156109e257600080fd5b506103456109f1366004615002565b6124d8565b348015610a0257600080fd5b50610345610a11366004615027565b612520565b60006001600160e01b03198216630df23fff60e01b1480610a3b5750610a3b82612593565b80610a4a5750610a4a826125e3565b92915050565b610a5a6000612623565b610a648282612640565b5050565b610a7f600080516020615f45833981519152612623565b82610a8981612718565b610aa65760405163eb49290360e01b815260040160405180910390fd5b610ae68484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061275892505050565b600084815261022d602052604090205415610b3b57610b3b8484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506127d092505050565b50505050565b606060658054610b5090615483565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90615483565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b6000610bde826128a9565b610c035760405162461bcd60e51b8152600401610bfa906154b7565b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b8160007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163b118015610c5d575060975460ff16155b15610cf357604051633185c44d60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c617113490610cb090309085906004016154e9565b602060405180830381865afa158015610ccd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf19190615503565b505b610cfd83836128c6565b505050565b6040805180820190915260008082526020820152610233546000906001600160a01b031615610d5b57610233546001600160a01b03163314610d5757604051634e78ddb760e11b815260040160405180910390fd5b5060015b6000806000610d686129d6565b6001600160a01b031663ff0784f4308d6040518363ffffffff1660e01b8152600401610d95929190614f82565b61014060405180830381865afa158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd791906155d0565b925092509250610dfc8b8b8b8b64ffffffffff168b8660a001518c8a600001516129fa565b600084610e2c57836040015182608001516001600160601b0316610e20919061567b565b9050610e2c8a82612b13565b610e3b8c8c8c8c8c8888612b3c565b955084610e6a5785516040850151610e6a91610e569161568e565b60208601516001600160a01b031690612d3b565b610e818c848d89600001518a602001518f87612e54565b50505050509695505050505050565b610ea7600080516020615f45833981519152612623565b600083815261025c60205260409020610ec1828483615700565b50610ecb836128a9565b15610cfd576040518381527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7906020015b60405180910390a1505050565b600060015b610229548111610f3557610f2181611526565b610f2b908361567b565b9150600101610f0e565b5090565b610f433382612ed8565b610f5f5760405162461bcd60e51b8152600401610bfa906157b9565b610cfd838383612f37565b6102345460009081906001600160a01b031615610ffe576102345460405163152a902d60e11b815260048101869052602481018590526001600160a01b0390911690632a55205a906044016040805180830381865afa158015610fd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff59190615806565b915091506110fc565b600084815261025b60209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160601b0316918301919091526110cd57600061104e8661309b565b600081815261022f60209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160601b0316918301919091529093509091506110cb5760408051808201909152610228546001600160a01b0381168252600160a01b90046001600160601b0316602082015291505b505b80516020820151909350612710906110ee906001600160601b03168661568e565b6110f8919061584a565b9150505b9250929050565b61111a600080516020615f45833981519152612623565b8161112481612718565b6111415760405163eb49290360e01b815260040160405180910390fd5b600083815261022a6020908152604091829020805464ffffffffff191664ffffffffff8616908117909155915191825284917fd5326a6054dc610ac8935df7ac3f2a773f84d8c60fb33ccf2010f0fef6b4930a910160405180910390a2505050565b6111ba600080516020615f45833981519152612623565b826111c481612718565b6111e15760405163eb49290360e01b815260040160405180910390fd5b816001600160601b031661271081111561120e5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b03841661126d57600085815261022f60205260408082208290555186917f01f7eea6f4ba148de2d620a5591f54b4d17e63b7d6438a6ed3ab01aae9593eee916112609190819061585e565b60405180910390a26112f1565b6040805180820182526001600160a01b0380871682526001600160601b03808716602080850191825260008b815261022f90915285902093519051909116600160a01b0291161790555185907f01f7eea6f4ba148de2d620a5591f54b4d17e63b7d6438a6ed3ab01aae9593eee906112e8908790879061585e565b60405180910390a25b5050505050565b600082815260c9602052604090206001015461131381612623565b610cfd83836130fe565b611334600080516020615f45833981519152612623565b8061133e81612718565b61135b5760405163eb49290360e01b815260040160405180910390fd5b600082815261022a6020526040902054600160581b900460ff161561139357604051631a4ae4f360e21b815260040160405180910390fd5b600082815261022a6020526040808220805460ff60581b1916600160581b1790555183917f677fde77e48b5086920a2acd2f6578cff669f61b52dcf91a3c5e27abd5d1706791a25050565b6001600160a01b038116331461144e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bfa565b610a648282613184565b6114626000612623565b61022754611479906001600160a01b031647612d3b565b565b610cfd83838360405180602001604052806000815250611e5d565b6114a03382612ed8565b6114bd5760405163390cdd9b60e21b815260040160405180910390fd5b60006114c88261309b565b90506114d3826131eb565b600082815261025960209081526040808320805460ff1916600117905583835261022c909152812080549161150783615880565b91905055505050565b61151a6000612623565b61152381613272565b50565b600081815261022c602090815260408083205461022d909252822054610a4a9190615899565b611563600080516020615f45833981519152612623565b610cfd8383836132be565b6115786000612623565b611523816133c5565b60008061158d83613411565b90506001600160a01b038116610a4a5760405162461bcd60e51b8152600401610bfa906154b7565b600054610100900460ff16158080156115d55750600054600160ff909116105b806115ef5750303b1580156115ef575060005460ff166001145b6116525760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bfa565b6000805460ff191660011790558015611675576000805461ff0019166101001790555b61167f8a8a6134e8565b61168a8884846134f2565b61169384613524565b61169d8686613554565b6116a78888612640565b80156116ed576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050505050565b60006001600160a01b0382166117635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bfa565b506001600160a01b031660009081526068602052604090205490565b61178761387b565b61147960006138d6565b61179a336138f0565b6117b757604051634755657960e01b815260040160405180910390fd5b6097805460ff81161560ff1990911681179091556040518181527fd8c469bcb7a4be6d69103a5fdb65991249a95423350dc583495ccf5e7c28a88d906020015b60405180910390a150565b61015f5433906001600160a01b031681146118715760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610bfa565b611523816138d6565b611891600080516020615f45833981519152612623565b8161189b81612718565b6118b85760405163eb49290360e01b815260040160405180910390fd5b8164ffffffffff166000036118e0576040516353f9e27b60e01b815260040160405180910390fd5b600083815261022a602052604090205461190790600160281b900464ffffffffff1661392a565b8264ffffffffff161061192d576040516353f9e27b60e01b815260040160405180910390fd5b600083815261022d602052604090205464ffffffffff831610156119645760405163531386e160e11b815260040160405180910390fd5b600061196e6129d6565b6001600160a01b031663c992742830866040518363ffffffff1660e01b815260040161199b929190614f82565b60e060405180830381865afa1580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc91906158ac565b805190925064ffffffffff161580159150611a15575042816020015164ffffffffff16101580611a155750602081015164ffffffffff16155b15611a7957806060015164ffffffffff16600003611a4657604051635d3cc31b60e01b815260040160405180910390fd5b806060015164ffffffffff168364ffffffffff161015611a7957604051635d3cc31b60e01b815260040160405180910390fd5b600084815261022a6020908152604091829020805469ffffffffff00000000001916600160281b64ffffffffff881690810291909117909155915191825285917faec45f6ac9c6eff7c48277895ee5bfcddc83ef921ce67de1131588b3d459574591015b60405180910390a250505050565b611af56000612623565b6001600160a01b038116611b1c5760405163d92e233d60e01b815260040160405180910390fd5b61022780546001600160a01b0319166001600160a01b0383161790556040517f9e9a2b03c288d52a74c3df0782024fc542900a071656ab80d6a0a9fa7dac4efb906117f7908390614d8c565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060668054610b5090615483565b8160007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163b118015611be0575060975460ff16155b15611c7657604051633185c44d60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c617113490611c3390309085906004016154e9565b602060405180830381865afa158015611c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c749190615503565b505b610cfd8383613963565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915281611cb581612718565b611cd25760405163eb49290360e01b815260040160405180910390fd5b600083815261022a6020908152604091829020825160a081018452905464ffffffffff8082168352600160281b8204169282019290925260ff600160501b83048116151593820193909352600160581b8204831615156060820152600160601b9091049091161515608082015291505b50919050565b6060816001600160401b03811115611d6257611d62614ddf565b604051908082528060200260200182016040528015611d9557816020015b6060815260200190600190039081611d805790505b50905060005b82811015611e3557611e0530858584818110611db957611db96158d9565b9050602002810190611dcb91906158ef565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061396e92505050565b828281518110611e1757611e176158d9565b60200260200101819052508080611e2d90615880565b915050611d9b565b5092915050565b611e53600080516020615f45833981519152612623565b610a648282613554565b611e673383612ed8565b611e835760405162461bcd60e51b8152600401610bfa906157b9565b610b3b84848484613993565b6060611e9a826128a9565b611eb75760405163677510db60e11b815260040160405180910390fd5b6000611ec28361309b565b600081815261023260205260409020549091506060906001600160a01b031615611f6c57600082815261023260205260409081902054905163c87b56dd60e01b8152600481018690526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015611f3d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f659190810190615935565b9050612007565b600084815261025c602052604090208054611f8690615483565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb290615483565b8015611fff5780601f10611fd457610100808354040283529160200191611fff565b820191906000526020600020905b815481529060010190602001808311611fe257829003601f168201915b505050505090505b805160000361205e57600082815261023160205260409020612035612030633b9aca00876159ab565b6139c6565b6040516020016120469291906159bf565b60405160208183030381529060405292505050919050565b9392505050565b600082815260c9602052604090206001015461208081612623565b610cfd8383613184565b6120a1600080516020615f45833981519152612623565b806120ab81612718565b6120c85760405163eb49290360e01b815260040160405180910390fd5b600082815261022d6020526040902054156120f657604051632d1f2ea160e11b815260040160405180910390fd5b610a6482613a58565b612117600080516020615f4583398151915233611b68565b612144576121447fd8d9f31cbc479b1a40a972bfa9e3c5573c1526777b06ee93042d7a96dde464ab612623565b8261214e81612718565b61216b5760405163eb49290360e01b815260040160405180910390fd5b815180158061219957507f000000000000000000000000000000000000000000000000000000000000000081115b156121b75760405163ce43e37760e01b815260040160405180910390fd5b60006121c3858361568e565b600087815261022d602090815260408083205461022a90925290912054919250906121fb90600160281b900464ffffffffff1661392a565b612205828461567b565b11156122245760405163740f8e6d60e11b815260040160405180910390fd5b61222e828261567b565b600088815261022d60205260408120919091555b6000868281518110612256576122566158d9565b6020026020010151905061226c818a8a86613a9c565b5090860190600101838110612242576122836129d6565b6001600160a01b0316635a595724308a6040518363ffffffff1660e01b81526004016122b0929190614f82565b602060405180830381865afa1580156122cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f19190615a46565b887f6b4728fec96e4c21cab0a9cf4686ce08822520c9647e5589e6038ef914e599df888a8660405161232593929190615a5f565b60405180910390a35050505050505050565b61233f61387b565b6115236000826130fe565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b61238f600080516020615f45833981519152612623565b8361239981612718565b6123b65760405163eb49290360e01b815260040160405180910390fd5b6000829003612435576123c76129d6565b6040516322a4b15b60e11b815230600482015260248101879052604481018690526001600160a01b03919091169063454962b690606401600060405180830381600087803b15801561241857600080fd5b505af115801561242c573d6000803e3d6000fd5b505050506112f1565b61243d6129d6565b600086815261022d602090815260408083205461022a9092529182902054915163416240df60e01b81526001600160a01b03939093169263416240df9261249f9230928b928b928b928b92600160281b900464ffffffffff1690600401615b71565b600060405180830381600087803b1580156124b957600080fd5b505af11580156124cd573d6000803e3d6000fd5b505050505050505050565b6124ef600080516020615f45833981519152612623565b816124f981612718565b6125165760405163eb49290360e01b815260040160405180910390fd5b610cfd8383613be9565b61252861387b565b61015f80546001600160a01b0383166001600160a01b0319909116811790915561255b61012d546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60006001600160e01b031982166380ac58cd60e01b14806125c457506001600160e01b03198216635b5e139f60e01b145b80610a4a57506301ffc9a760e01b6001600160e01b0319831614610a4a565b60006001600160e01b031982166370b3d42560e01b148061261457506001600160e01b0319821663152a902d60e11b145b80610a4a5750610a4a82613c50565b61012d546001600160a01b03163314611523576115238133613c5b565b806001600160601b031661271081111561266d5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b0383166126b35760006102288190556040517f378e0d79d5bc01ff46b21ccbdabc124751f2f6880425e873742b04c2e3a65c6c91610efc91819061585e565b6040805180820182526001600160a01b0385168082526001600160601b0385166020909201829052600160a01b9091021761022855517f378e0d79d5bc01ff46b21ccbdabc124751f2f6880425e873742b04c2e3a65c6c90610efc908590859061585e565b600081158061272957506102295482115b806127435750600082815261022b602052604090205460ff165b1561275057506000919050565b506001919050565b805160000361277a57604051633ba0191160e01b815260040160405180910390fd5b6000828152610231602052604090206127938282615bc0565b50817f9b769a1125f1947a11ef5a3d43527594ee72858f8c256e64556ab79056b6d315826040516127c49190614d60565b60405180910390a25050565b600082815261022d60205260409020546001819003612830577ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce761281384613cb4565b61281e90600161567b565b60405190815260200160405180910390a15b600083815261022d602052604090205460011015610cfd57600061285384613cb4565b90507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c61288182600161567b565b61288b848461567b565b6040805192835260208301919091520160405180910390a150505050565b6000806128b583613411565b6001600160a01b0316141592915050565b60006128d182611581565b9050806001600160a01b0316836001600160a01b03160361293e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfa565b336001600160a01b038216148061295a575061295a813361234a565b6129cc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bfa565b610cfd8383613cc4565b7f000000000000000000000000000000000000000000000000000000000000000090565b8280612a1c5750600088815261022a6020526040902054600160581b900460ff165b612b095743851115612a415760405163311a269560e21b815260040160405180910390fd5b43612a4d604b8761567b565b1015612a6c57604051630819bdcd60e01b815260040160405180910390fd5b600088815261022e602090815260408083206001600160a01b038b168452909152902054600160281b900464ffffffffff168511612abd5760405163900bb2c960e01b815260040160405180910390fd5b6000612acc8989898989613d32565b90506001600160a01b038216612ae28285613db8565b6001600160a01b0316146124cd57604051638baa579f60e01b815260040160405180910390fd5b5050505050505050565b612b1d818361568e565b3414610a645760405163ab0a033b60e01b815260040160405180910390fd5b6040805180820190915260008082526020820152600088815261022e602090815260408083206001600160a01b038b1680855290835281842082518084018452905464ffffffffff8082168352600160281b9091048116828601528d865261023085528386208987528552838620928652918452828520548d865261022d909452918420548251929490929091612bdd918c918f9186918b9116888e613ddc565b905060405180604001604052808286600001510164ffffffffff1681526020018a64ffffffffff1681525061022e60008e815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548164ffffffffff021916908364ffffffffff1602179055509050508061023060008e8152602001908152602001600020600089815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020600082825401925050819055508061022d60008e815260200190815260200160002060008282540192505081905550612d188b8d8385613a9c565b6040805180820190915290815260208101919091529a9950505050505050505050565b80471015612d8b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bfa565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612dd8576040519150601f19603f3d011682016040523d82523d6000602084013e612ddd565b606091505b5050905080610cfd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bfa565b6001600160a01b03851686887fe7ffccd3613f31162a107541c97a5e4d366eb71ad77d4a6b41dad5f3538d039887612e8c818961567b565b6040805192835260208301919091520160405180910390a481841015612ecf57600081612eb98685615899565b612ec3919061568e565b9050612b093382612d3b565b50505050505050565b600080612ee483611581565b9050806001600160a01b0316846001600160a01b03161480612f0b5750612f0b818561234a565b80612f2f57506000838152606960205260409020546001600160a01b038581169116145b949350505050565b826001600160a01b0316612f4a82611581565b6001600160a01b031614612fae5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bfa565b6001600160a01b0382166130105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfa565b61301d8383836001613f6f565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526068855283862080546000190190559087168086528386208054600101905586865260679094528285208054909216841790915590518493600080516020615f8c83398151915291a4505050565b6000633b9aca008210156130c25760405163677510db60e11b815260040160405180910390fd5b6130d0633b9aca00836159ab565b6000036130f05760405163677510db60e11b815260040160405180910390fd5b610a4a633b9aca008361584a565b6131088282611b68565b610a6457600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556131403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61318e8282611b68565b15610a6457600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006131f682611581565b9050613206816000846001613f6f565b600082815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558685526067909352818420805490911690555184929190600080516020615f8c833981519152908390a45050565b61023480546001600160a01b0319166001600160a01b0383161790556040517f57970653b063d48a2b15715cd37aec748f64734f2a5e339bfb60ec03d885dd8b906117f7908390614d8c565b806001600160601b03166127108111156132eb5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b03831661334a57600084815261025b60205260408082208290555185917f4155153cf804153dcebc59020dc517402922103c1f7242f5e9bf3e5e2d6fc6199161333d9190819061585e565b60405180910390a2610b3b565b6040805180820182526001600160a01b0380861682526001600160601b03808616602080850191825260008a815261025b90915285902093519051909116600160a01b0291161790555184907f4155153cf804153dcebc59020dc517402922103c1f7242f5e9bf3e5e2d6fc61990611add908690869061585e565b61023380546001600160a01b0319166001600160a01b0383161790556040517fbedb80ed59205e9634336d041556da71d717d43d7be4f5b633b210c55eb47743906117f7908390614d8c565b6000818152610259602052604081205460ff161561343157506000919050565b6000828152606760205260409020546001600160a01b031680156134555792915050565b60006134608461309b565b9050600061346d82613cb4565b600083815261022d602052604090205490915061348a908261567b565b85111561349c57506000949350505050565b5b6001600160a01b0383161580156134b357508085115b156134df57600085815261025a6020526040902054600019909501946001600160a01b0316925061349d565b50909392505050565b610a6482826140cd565b600054610100900460ff166135195760405162461bcd60e51b8152600401610bfa90615c79565b610cfd8383836140e6565b600054610100900460ff1661354b5760405162461bcd60e51b8152600401610bfa90615c79565b61152381614189565b6102295460005b82811015613872577f0000000000000000000000000000000000000000000000000000000000000000848483818110613596576135966158d9565b90506020028101906135a89190615cc4565b6135b9906060810190604001615ce4565b64ffffffffff1611156135df576040516374690a7960e01b815260040160405180910390fd5b60019091019060008484838181106135f9576135f96158d9565b905060200281019061360b9190615cc4565b60200180360381019061361e9190615d01565b600084815261022a6020908152604091829020835181549285015193850151606086015160808701511515600160601b0260ff60601b19911515600160581b0260ff60581b19931515600160501b029390931661ffff60501b1964ffffffffff988916600160281b0269ffffffffffffffffffff19909816989095169790971795909517929092169490941793909317929092161790559050827faf1874b81c219a8f1fd4020887b21deb5761445c77c2ad850b65c730388535488686858181106136eb576136eb6158d9565b90506020028101906136fd9190615cc4565b60405161370d9135908590615d98565b60405180910390a26137858386868581811061372b5761372b6158d9565b905060200281019061373d9190615cc4565b61374b9060c08101906158ef565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061275892505050565b6000858584818110613799576137996158d9565b90506020028101906137ab9190615cc4565b6137b99060e0810190615dac565b90501115613869576137c96129d6565b6001600160a01b031663416240df308560008989888181106137ed576137ed6158d9565b90506020028101906137ff9190615cc4565b61380d9060e0810190615dac565b600088602001516040518863ffffffff1660e01b81526004016138369796959493929190615b71565b600060405180830381600087803b15801561385057600080fd5b505af1158015613864573d6000803e3d6000fd5b505050505b5060010161355b565b50610229555050565b61012d546001600160a01b031633146114795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bfa565b61015f80546001600160a01b0319169055611523816142cc565b600061390561012d546001600160a01b031690565b6001600160a01b0316826001600160a01b03161480610a4a5750610a4a600083611b68565b60008160000361395b57507f0000000000000000000000000000000000000000000000000000000000000000919050565b50805b919050565b610a6433838361431f565b606061205e8383604051806060016040528060278152602001615f65602791396143e9565b61399e848484612f37565b6139aa84848484614461565b610b3b5760405162461bcd60e51b8152600401610bfa90615df4565b606060006139d383614562565b60010190506000816001600160401b038111156139f2576139f2614ddf565b6040519080825280601f01601f191660200182016040528015613a1c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613a2657509392505050565b600081815261022b6020526040808220805460ff191660011790555182917fceb5e263cb1044892eb4317ae23f824f0724446b3e2315d6ba5d6a6f203662d891a250565b811580613ac857507f000000000000000000000000000000000000000000000000000000000000000082115b15613ae65760405163011674e560e71b815260040160405180910390fd5b600081613af285613cb4565b613afc919061567b565b613b0790600161567b565b9050613b166000868386613f6f565b600081815261025a6020526040812080546001600160a01b0319166001600160a01b0388161790558190613b4a858361567b565b90505b60405182906001600160a01b03891690600090600080516020615f8c833981519152908290a4816001019150808210613b4d576001600160a01b0387163b15613bda578291505b613bb06000888460405180602001604052806000815250614461565b613bcc5760405162461bcd60e51b8152600401610bfa90615df4565b816001019150808210613b94575b613be4878661463a565b612ecf565b6000828152610232602090815260409182902080546001600160a01b0319166001600160a01b0385169081179091558251858152918201527faf3c488263e5a0e7d23c7ce569ab7f4fabb9797ca892201165364e512afecdd1910160405180910390a15050565b6000610a4a8261466b565b613c658282611b68565b610a6457613c7281614690565b613c7d8360206146a2565b604051602001613c8e929190615e46565b60408051601f198184030181529082905262461bcd60e51b8252610bfa91600401614d60565b6000610a4a633b9aca008361568e565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613cf982611581565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080517f6333dac33c8797dfc272d5fcb15ebb30435be33c66a3e1fc21076e982ecd97a660208201529081018690526001600160a01b03851660608201526080810184905260a0810183905260c081018290526000908190613dad9060e0016040516020818303038152906040528051906020012061483d565b979650505050505050565b6000806000613dc78585614905565b91509150613dd481614947565b509392505050565b868115613e1f57818310613e0357604051632b2c62f760e21b815260040160405180910390fd5b6000613e0f8484615899565b905080821115613e1d578091505b505b604085015164ffffffffff1615613e8457846040015164ffffffffff168310613e5b576040516301a36a3160e31b815260040160405180910390fd5b600083866040015164ffffffffff16613e749190615899565b905080821115613e82578091505b505b6000613e8f88611c80565b805190915064ffffffffff1615613eef57805164ffffffffff168510613ec857604051631ba1ee7960e21b815260040160405180910390fd5b8051600090613edf90879064ffffffffff16615899565b905080831115613eed578092505b505b606086015164ffffffffff166000819003613f2757507f00000000000000000000000000000000000000000000000000000000000000005b808810613f47576040516345b1552d60e01b815260040160405180910390fd5b6000613f538983615899565b905080841115613f61578093505b505050979650505050505050565b338460007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163b118015613fae575060975460ff16155b1561405d57806001600160a01b0316826001600160a01b03161461405d57604051633185c44d60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c61711349061401a90309086906004016154e9565b602060405180830381865afa158015614037573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061405b9190615503565b505b6001600160a01b038616158061407a57506001600160a01b038516155b6140c55761022a600061408c8661309b565b8152602081019190915260400160002054600160601b900460ff16156140c55760405163dc8d8db760e01b815260040160405180910390fd5b505050505050565b60656140d98382615bc0565b506066610cfd8282615bc0565b600054610100900460ff1661410d5760405162461bcd60e51b8152600401610bfa90615c79565b6001600160a01b0383166141345760405163d92e233d60e01b815260040160405180910390fd5b61022780546001600160a01b0319166001600160a01b038516179055614159836138d6565b6001600160a01b0382161561417157614171826133c5565b6001600160a01b03811615610cfd57610cfd81613272565b600054610100900460ff166141b05760405162461bcd60e51b8152600401610bfa90615c79565b8080156141e7575060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163b115b801561421b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156142bc57604051633e9f1edf60e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690637d3e3dbe9061428e9030907f0000000000000000000000000000000000000000000000000000000000000000906004016154e9565b600060405180830381600087803b1580156142a857600080fd5b505af11580156112f1573d6000803e3d6000fd5b6097805460ff1916600117905550565b61012d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361437c5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610bfa565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060600080856001600160a01b0316856040516144069190615eb5565b600060405180830381855af49150503d8060008114614441576040519150601f19603f3d011682016040523d82523d6000602084013e614446565b606091505b509150915061445786838387614a8c565b9695505050505050565b60006001600160a01b0384163b1561455757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906144a5903390899088908890600401615ec7565b6020604051808303816000875af19250505080156144e0575060408051601f3d908101601f191682019092526144dd91810190615efa565b60015b61453d573d80801561450e576040519150601f19603f3d011682016040523d82523d6000602084013e614513565b606091505b5080516000036145355760405162461bcd60e51b8152600401610bfa90615df4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f2f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106145a15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106145cd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106145eb57662386f26fc10000830492506010015b6305f5e1008310614603576305f5e100830492506008015b612710831061461757612710830492506004015b60648310614629576064830492506002015b600a8310610a4a5760010192915050565b6001600160a01b0382166000908152606860205260408120805483929061466290849061567b565b90915550505050565b60006001600160e01b03198216637965db0b60e01b1480610a4a5750610a4a82612593565b6060610a4a6001600160a01b03831660145b606060006146b183600261568e565b6146bc90600261567b565b6001600160401b038111156146d3576146d3614ddf565b6040519080825280601f01601f1916602001820160405280156146fd576020820181803683370190505b509050600360fc1b81600081518110614718576147186158d9565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614747576147476158d9565b60200101906001600160f81b031916908160001a905350600061476b84600261568e565b61477690600161567b565b90505b60018111156147ee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106147aa576147aa6158d9565b1a60f81b8282815181106147c0576147c06158d9565b60200101906001600160f81b031916908160001a90535060049490941c936147e781615f17565b9050614779565b50831561205e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bfa565b604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f36cb08f6aafe2399767bf40e9642429d7535f40e61bd81428cad09095c5d337d918101919091527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0820152600090819060c00160405160208183030381529060405280519060200120905061205e818460405161190160f01b8152600281019290925260228201526042902090565b600080825160410361493b5760208301516040840151606085015160001a61492f87828585614b05565b945094505050506110fc565b506000905060026110fc565b600081600481111561495b5761495b615f2e565b036149635750565b600181600481111561497757614977615f2e565b036149bf5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610bfa565b60028160048111156149d3576149d3615f2e565b03614a205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bfa565b6003816004811115614a3457614a34615f2e565b036115235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bfa565b60608315614afb578251600003614af4576001600160a01b0385163b614af45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bfa565b5081612f2f565b612f2f8383614bbf565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115614b325750600090506003614bb6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614b86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614baf57600060019250925050614bb6565b9150600090505b94509492505050565b815115614bcf5781518083602001fd5b8060405162461bcd60e51b8152600401610bfa9190614d60565b6001600160e01b03198116811461152357600080fd5b600060208284031215614c1157600080fd5b813561205e81614be9565b6001600160a01b038116811461152357600080fd5b803561395e81614c1c565b6001600160601b038116811461152357600080fd5b803561395e81614c3c565b60008060408385031215614c6f57600080fd5b8235614c7a81614c1c565b91506020830135614c8a81614c3c565b809150509250929050565b600080600060408486031215614caa57600080fd5b8335925060208401356001600160401b0380821115614cc857600080fd5b818601915086601f830112614cdc57600080fd5b813581811115614ceb57600080fd5b876020828501011115614cfd57600080fd5b6020830194508093505050509250925092565b60005b83811015614d2b578181015183820152602001614d13565b50506000910152565b60008151808452614d4c816020860160208601614d10565b601f01601f19169290920160200192915050565b60208152600061205e6020830184614d34565b600060208284031215614d8557600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215614db357600080fd5b8235614dbe81614c1c565b946020939093013593505050565b64ffffffffff8116811461152357600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614e1d57614e1d614ddf565b604052919050565b60006001600160401b03821115614e3e57614e3e614ddf565b50601f01601f191660200190565b600082601f830112614e5d57600080fd5b8135614e70614e6b82614e25565b614df5565b818152846020838601011115614e8557600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614ebb57600080fd5b863595506020870135614ecd81614c1c565b9450604087013593506060870135614ee481614dcc565b92506080870135915060a08701356001600160401b03811115614f0657600080fd5b614f1289828a01614e4c565b9150509295509295509295565b600080600060608486031215614f3457600080fd5b8335614f3f81614c1c565b92506020840135614f4f81614c1c565b929592945050506040919091013590565b60008060408385031215614f7357600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b60008060408385031215614fae57600080fd5b823591506020830135614c8a81614dcc565b600080600060608486031215614fd557600080fd5b833592506020840135614fe781614c1c565b91506040840135614ff781614c3c565b809150509250925092565b6000806040838503121561501557600080fd5b823591506020830135614c8a81614c1c565b60006020828403121561503957600080fd5b813561205e81614c1c565b60008083601f84011261505657600080fd5b5081356001600160401b0381111561506d57600080fd5b6020830191508360208260051b85010111156110fc57600080fd5b801515811461152357600080fd5b803561395e81615088565b60008060008060008060008060006101008a8c0312156150c057600080fd5b89356001600160401b03808211156150d757600080fd5b6150e38d838e01614e4c565b9a5060208c01359150808211156150f957600080fd5b6151058d838e01614e4c565b995061511360408d01614c31565b985061512160608d01614c51565b975060808c013591508082111561513757600080fd5b506151448c828d01615044565b9096509450615157905060a08b01615096565b925061516560c08b01614c31565b915061517360e08b01614c31565b90509295985092959850929598565b6000806040838503121561519557600080fd5b82356151a081614c1c565b91506020830135614c8a81615088565b64ffffffffff808251168352806020830151166020840152506040810151151560408301526060810151151560608301526080810151151560808301525050565b60a08101610a4a82846151b0565b6000806020838503121561521257600080fd5b82356001600160401b0381111561522857600080fd5b61523485828601615044565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561529557603f19888603018452615283858351614d34565b94509285019290850190600101615267565b5092979650505050505050565b600080600080608085870312156152b857600080fd5b84356152c381614c1c565b935060208501356152d381614c1c565b92506040850135915060608501356001600160401b038111156152f557600080fd5b61530187828801614e4c565b91505092959194509250565b60008060006060848603121561532257600080fd5b83359250602080850135925060408501356001600160401b038082111561534857600080fd5b818701915087601f83011261535c57600080fd5b81358181111561536e5761536e614ddf565b8060051b915061537f848301614df5565b818152918301840191848101908a84111561539957600080fd5b938501935b838510156153c357843592506153b383614c1c565b828252938501939085019061539e565b8096505050505050509250925092565b600080604083850312156153e657600080fd5b82356153f181614c1c565b91506020830135614c8a81614c1c565b6000806000806060858703121561541757600080fd5b843593506020850135925060408501356001600160401b038082111561543c57600080fd5b818701915087601f83011261545057600080fd5b81358181111561545f57600080fd5b88602060c08302850101111561547457600080fd5b95989497505060200194505050565b600181811c9082168061549757607f821691505b602082108103611d4257634e487b7160e01b600052602260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6001600160a01b0392831681529116602082015260400190565b60006020828403121561551557600080fd5b815161205e81615088565b600060c0828403121561553257600080fd5b60405160c081018181106001600160401b038211171561555457615554614ddf565b8060405250809150825161556781614dcc565b8152602083015161557781614dcc565b6020820152604083015161558a81614dcc565b6040820152606083015161559d81614dcc565b606082015260808301516155b081614c3c565b608082015260a08301516155c381615088565b60a0919091015292915050565b60008060008385036101408112156155e757600080fd5b60608112156155f557600080fd5b50604051606081018181106001600160401b038211171561561857615618614ddf565b604052845161562681614c1c565b8152602085015161563681614c1c565b6020820152604085810151908201526060850151909350915061565c8560808601615520565b90509250925092565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4a57610a4a615665565b8082028115828204841417610a4a57610a4a615665565b601f821115610cfd57600081815260208120601f850160051c810160208610156156cc5750805b601f850160051c820191505b818110156140c5578281556001016156d8565b600019600383901b1c191660019190911b1790565b6001600160401b0383111561571757615717614ddf565b61572b836157258354615483565b836156a5565b6000601f84116001811461575957600085156157475750838201355b61575186826156eb565b8455506112f1565b600083815260209020601f19861690835b8281101561578a578685013582556020948501946001909201910161576a565b50868210156157a75760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b6000806040838503121561581957600080fd5b825161582481614c1c565b6020939093015192949293505050565b634e487b7160e01b600052601260045260246000fd5b60008261585957615859615834565b500490565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60006001820161589257615892615665565b5060010190565b81810381811115610a4a57610a4a615665565b60008060e083850312156158bf57600080fd5b825191506158d08460208501615520565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261590657600080fd5b8301803591506001600160401b0382111561592057600080fd5b6020019150368190038213156110fc57600080fd5b60006020828403121561594757600080fd5b81516001600160401b0381111561595d57600080fd5b8201601f8101841361596e57600080fd5b805161597c614e6b82614e25565b81815285602083850101111561599157600080fd5b6159a2826020830160208601614d10565b95945050505050565b6000826159ba576159ba615834565b500690565b60008084546159cd81615483565b600182811680156159e557600181146159fa57615a29565b60ff1984168752821515830287019450615a29565b8860005260208060002060005b85811015615a205781548a820152908401908201615a07565b50505082870194505b505050508351615a3d818360208801614d10565b01949350505050565b600060208284031215615a5857600080fd5b5051919050565b606080825284519082018190526000906020906080840190828801845b82811015615aa15781516001600160a01b031684529284019290840190600101615a7c565b505050908301949094525060400152919050565b8183526000602080850194508260005b85811015615b66578135615ad881614dcc565b64ffffffffff90811688528284013590615af182614dcc565b9081168885015260409083820135615b0881614dcc565b818116838b0152506060915081840135615b2181614dcc565b16908801526080615b33838201614c51565b6001600160601b03169088015260a0615b4d838201615096565b15159088015260c0968701969190910190600101615ac5565b509495945050505050565b60018060a01b038816815286602082015285604082015260c060608201526000615b9f60c083018688615ab5565b905083608083015264ffffffffff831660a083015298975050505050505050565b81516001600160401b03811115615bd957615bd9614ddf565b615bed81615be78454615483565b846156a5565b602080601f831160018114615c1c5760008415615c0a5750858301515b615c1485826156eb565b8655506140c5565b600085815260208120601f198616915b82811015615c4b57888601518255948401946001909101908401615c2c565b5085821015615c695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000823560fe19833603018112615cda57600080fd5b9190910192915050565b600060208284031215615cf657600080fd5b813561205e81614dcc565b600060a08284031215615d1357600080fd5b60405160a081018181106001600160401b0382111715615d3557615d35614ddf565b6040528235615d4381614dcc565b81526020830135615d5381614dcc565b60208201526040830135615d6681615088565b60408201526060830135615d7981615088565b60608201526080830135615d8c81615088565b60808201529392505050565b82815260c0810161205e60208301846151b0565b6000808335601e19843603018112615dc357600080fd5b8301803591506001600160401b03821115615ddd57600080fd5b602001915060c0810236038213156110fc57600080fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351615e78816017850160208801614d10565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615ea9816028840160208801614d10565b01602801949350505050565b60008251615cda818460208701614d10565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061445790830184614d34565b600060208284031215615f0c57600080fd5b815161205e81614be9565b600081615f2657615f26615665565b506000190190565b634e487b7160e01b600052602160045260246000fdfe828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203a7fc64e7f1c1a31003f318a97dcdc8a0dcc64795d5f7229fd106e343914477a64736f6c634300081300330000000000000000000000006e51c392067d6276de6a52eb8e1934893b99dc3700000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb6
Deployed Bytecode
0x6080604052600436106102e45760003560e01c8063645f3ab711610186578063b1c926e2116100d7578063dd6044ee11610085578063dd6044ee14610937578063e30c397814610957578063e62f774f14610976578063e985e9c514610996578063ebfb8a87146109b6578063ece694cb146109d6578063f2fde38b146109f657600080fd5b8063b1c926e214610849578063b88d4fde14610869578063bd3bf7f314610889578063c0dad79b146108bd578063c87b56dd146108d7578063d547741f146108f7578063d675fee71461091757600080fd5b80639188570b116101345780639188570b1461076557806391d148541461078557806395d89b41146107a5578063a217fddf146107ba578063a22cb465146107cf578063a642c032146107ef578063ac9650d81461081c57600080fd5b8063645f3ab7146106a757806370a08231146106c7578063715018a6146106e757806372c06f5a146106fc57806379ba5097146107115780637dbf7ef0146107265780638da5cb5b1461074657600080fd5b80632ed1fd801161024057806342966c68116101ee57806342966c68146105ce5780634b50ceee146105ee57806350d331c21461060e5780635944c7531461062e5780635c975abb1461064e57806361abd764146106675780636352211e1461068757600080fd5b80632ed1fd80146104e55780632f2ff15d1461050557806333fd20e01461052557806335c133d11461054557806336568abe146105795780633ccfd60b1461059957806342842e0e146105ae57600080fd5b80630c267ed61161029d5780630c267ed6146103d6578063162094c41461040457806318160ddd1461042457806323b872dd14610447578063248a9ca3146104675780632a55205a146104975780632c20722c146104c557600080fd5b806301ffc9a7146102f057806304634d8d146103255780630690a78d1461034757806306fdde0314610367578063081812fc14610389578063095ea7b3146103b657600080fd5b366102eb57005b600080fd5b3480156102fc57600080fd5b5061031061030b366004614bff565b610a16565b60405190151581526020015b60405180910390f35b34801561033157600080fd5b50610345610340366004614c5c565b610a50565b005b34801561035357600080fd5b50610345610362366004614c95565b610a68565b34801561037357600080fd5b5061037c610b41565b60405161031c9190614d60565b34801561039557600080fd5b506103a96103a4366004614d73565b610bd3565b60405161031c9190614d8c565b3480156103c257600080fd5b506103456103d1366004614da0565b610c1f565b6103e96103e4366004614ea2565b610d02565b6040805182518152602092830151928101929092520161031c565b34801561041057600080fd5b5061034561041f366004614c95565b610e90565b34801561043057600080fd5b50610439610f09565b60405190815260200161031c565b34801561045357600080fd5b50610345610462366004614f1f565b610f39565b34801561047357600080fd5b50610439610482366004614d73565b600090815260c9602052604090206001015490565b3480156104a357600080fd5b506104b76104b2366004614f60565b610f6a565b60405161031c929190614f82565b3480156104d157600080fd5b506103456104e0366004614f9b565b611103565b3480156104f157600080fd5b50610345610500366004614fc0565b6111a3565b34801561051157600080fd5b50610345610520366004615002565b6112f8565b34801561053157600080fd5b50610345610540366004614d73565b61131d565b34801561055157600080fd5b506103a97f0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb681565b34801561058557600080fd5b50610345610594366004615002565b6113de565b3480156105a557600080fd5b50610345611458565b3480156105ba57600080fd5b506103456105c9366004614f1f565b61147b565b3480156105da57600080fd5b506103456105e9366004614d73565b611496565b3480156105fa57600080fd5b50610345610609366004615027565b611510565b34801561061a57600080fd5b50610439610629366004614d73565b611526565b34801561063a57600080fd5b50610345610649366004614fc0565b61154c565b34801561065a57600080fd5b506101915460ff16610310565b34801561067357600080fd5b50610345610682366004615027565b61156e565b34801561069357600080fd5b506103a96106a2366004614d73565b611581565b3480156106b357600080fd5b506103456106c23660046150a1565b6115b5565b3480156106d357600080fd5b506104396106e2366004615027565b6116f9565b3480156106f357600080fd5b5061034561177f565b34801561070857600080fd5b50610345611791565b34801561071d57600080fd5b50610345611802565b34801561073257600080fd5b50610345610741366004614f9b565b61187a565b34801561075257600080fd5b5061012d546001600160a01b03166103a9565b34801561077157600080fd5b50610345610780366004615027565b611aeb565b34801561079157600080fd5b506103106107a0366004615002565b611b68565b3480156107b157600080fd5b5061037c611b93565b3480156107c657600080fd5b50610439600081565b3480156107db57600080fd5b506103456107ea366004615182565b611ba2565b3480156107fb57600080fd5b5061080f61080a366004614d73565b611c80565b60405161031c91906151f1565b34801561082857600080fd5b5061083c6108373660046151ff565b611d48565b60405161031c9190615240565b34801561085557600080fd5b506103456108643660046151ff565b611e3c565b34801561087557600080fd5b506103456108843660046152a2565b611e5d565b34801561089557600080fd5b506103a97f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e81565b3480156108c957600080fd5b506097546103109060ff1681565b3480156108e357600080fd5b5061037c6108f2366004614d73565b611e8f565b34801561090357600080fd5b50610345610912366004615002565b612065565b34801561092357600080fd5b50610345610932366004614d73565b61208a565b34801561094357600080fd5b5061034561095236600461530d565b6120ff565b34801561096357600080fd5b5061015f546001600160a01b03166103a9565b34801561098257600080fd5b50610345610991366004615027565b612337565b3480156109a257600080fd5b506103106109b13660046153d3565b61234a565b3480156109c257600080fd5b506103456109d1366004615401565b612378565b3480156109e257600080fd5b506103456109f1366004615002565b6124d8565b348015610a0257600080fd5b50610345610a11366004615027565b612520565b60006001600160e01b03198216630df23fff60e01b1480610a3b5750610a3b82612593565b80610a4a5750610a4a826125e3565b92915050565b610a5a6000612623565b610a648282612640565b5050565b610a7f600080516020615f45833981519152612623565b82610a8981612718565b610aa65760405163eb49290360e01b815260040160405180910390fd5b610ae68484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061275892505050565b600084815261022d602052604090205415610b3b57610b3b8484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506127d092505050565b50505050565b606060658054610b5090615483565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90615483565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b6000610bde826128a9565b610c035760405162461bcd60e51b8152600401610bfa906154b7565b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b8160007f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e6001600160a01b03163b118015610c5d575060975460ff16155b15610cf357604051633185c44d60e21b81526001600160a01b037f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e169063c617113490610cb090309085906004016154e9565b602060405180830381865afa158015610ccd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf19190615503565b505b610cfd83836128c6565b505050565b6040805180820190915260008082526020820152610233546000906001600160a01b031615610d5b57610233546001600160a01b03163314610d5757604051634e78ddb760e11b815260040160405180910390fd5b5060015b6000806000610d686129d6565b6001600160a01b031663ff0784f4308d6040518363ffffffff1660e01b8152600401610d95929190614f82565b61014060405180830381865afa158015610db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd791906155d0565b925092509250610dfc8b8b8b8b64ffffffffff168b8660a001518c8a600001516129fa565b600084610e2c57836040015182608001516001600160601b0316610e20919061567b565b9050610e2c8a82612b13565b610e3b8c8c8c8c8c8888612b3c565b955084610e6a5785516040850151610e6a91610e569161568e565b60208601516001600160a01b031690612d3b565b610e818c848d89600001518a602001518f87612e54565b50505050509695505050505050565b610ea7600080516020615f45833981519152612623565b600083815261025c60205260409020610ec1828483615700565b50610ecb836128a9565b15610cfd576040518381527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7906020015b60405180910390a1505050565b600060015b610229548111610f3557610f2181611526565b610f2b908361567b565b9150600101610f0e565b5090565b610f433382612ed8565b610f5f5760405162461bcd60e51b8152600401610bfa906157b9565b610cfd838383612f37565b6102345460009081906001600160a01b031615610ffe576102345460405163152a902d60e11b815260048101869052602481018590526001600160a01b0390911690632a55205a906044016040805180830381865afa158015610fd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff59190615806565b915091506110fc565b600084815261025b60209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160601b0316918301919091526110cd57600061104e8661309b565b600081815261022f60209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160601b0316918301919091529093509091506110cb5760408051808201909152610228546001600160a01b0381168252600160a01b90046001600160601b0316602082015291505b505b80516020820151909350612710906110ee906001600160601b03168661568e565b6110f8919061584a565b9150505b9250929050565b61111a600080516020615f45833981519152612623565b8161112481612718565b6111415760405163eb49290360e01b815260040160405180910390fd5b600083815261022a6020908152604091829020805464ffffffffff191664ffffffffff8616908117909155915191825284917fd5326a6054dc610ac8935df7ac3f2a773f84d8c60fb33ccf2010f0fef6b4930a910160405180910390a2505050565b6111ba600080516020615f45833981519152612623565b826111c481612718565b6111e15760405163eb49290360e01b815260040160405180910390fd5b816001600160601b031661271081111561120e5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b03841661126d57600085815261022f60205260408082208290555186917f01f7eea6f4ba148de2d620a5591f54b4d17e63b7d6438a6ed3ab01aae9593eee916112609190819061585e565b60405180910390a26112f1565b6040805180820182526001600160a01b0380871682526001600160601b03808716602080850191825260008b815261022f90915285902093519051909116600160a01b0291161790555185907f01f7eea6f4ba148de2d620a5591f54b4d17e63b7d6438a6ed3ab01aae9593eee906112e8908790879061585e565b60405180910390a25b5050505050565b600082815260c9602052604090206001015461131381612623565b610cfd83836130fe565b611334600080516020615f45833981519152612623565b8061133e81612718565b61135b5760405163eb49290360e01b815260040160405180910390fd5b600082815261022a6020526040902054600160581b900460ff161561139357604051631a4ae4f360e21b815260040160405180910390fd5b600082815261022a6020526040808220805460ff60581b1916600160581b1790555183917f677fde77e48b5086920a2acd2f6578cff669f61b52dcf91a3c5e27abd5d1706791a25050565b6001600160a01b038116331461144e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bfa565b610a648282613184565b6114626000612623565b61022754611479906001600160a01b031647612d3b565b565b610cfd83838360405180602001604052806000815250611e5d565b6114a03382612ed8565b6114bd5760405163390cdd9b60e21b815260040160405180910390fd5b60006114c88261309b565b90506114d3826131eb565b600082815261025960209081526040808320805460ff1916600117905583835261022c909152812080549161150783615880565b91905055505050565b61151a6000612623565b61152381613272565b50565b600081815261022c602090815260408083205461022d909252822054610a4a9190615899565b611563600080516020615f45833981519152612623565b610cfd8383836132be565b6115786000612623565b611523816133c5565b60008061158d83613411565b90506001600160a01b038116610a4a5760405162461bcd60e51b8152600401610bfa906154b7565b600054610100900460ff16158080156115d55750600054600160ff909116105b806115ef5750303b1580156115ef575060005460ff166001145b6116525760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bfa565b6000805460ff191660011790558015611675576000805461ff0019166101001790555b61167f8a8a6134e8565b61168a8884846134f2565b61169384613524565b61169d8686613554565b6116a78888612640565b80156116ed576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050505050565b60006001600160a01b0382166117635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bfa565b506001600160a01b031660009081526068602052604090205490565b61178761387b565b61147960006138d6565b61179a336138f0565b6117b757604051634755657960e01b815260040160405180910390fd5b6097805460ff81161560ff1990911681179091556040518181527fd8c469bcb7a4be6d69103a5fdb65991249a95423350dc583495ccf5e7c28a88d906020015b60405180910390a150565b61015f5433906001600160a01b031681146118715760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610bfa565b611523816138d6565b611891600080516020615f45833981519152612623565b8161189b81612718565b6118b85760405163eb49290360e01b815260040160405180910390fd5b8164ffffffffff166000036118e0576040516353f9e27b60e01b815260040160405180910390fd5b600083815261022a602052604090205461190790600160281b900464ffffffffff1661392a565b8264ffffffffff161061192d576040516353f9e27b60e01b815260040160405180910390fd5b600083815261022d602052604090205464ffffffffff831610156119645760405163531386e160e11b815260040160405180910390fd5b600061196e6129d6565b6001600160a01b031663c992742830866040518363ffffffff1660e01b815260040161199b929190614f82565b60e060405180830381865afa1580156119b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119dc91906158ac565b805190925064ffffffffff161580159150611a15575042816020015164ffffffffff16101580611a155750602081015164ffffffffff16155b15611a7957806060015164ffffffffff16600003611a4657604051635d3cc31b60e01b815260040160405180910390fd5b806060015164ffffffffff168364ffffffffff161015611a7957604051635d3cc31b60e01b815260040160405180910390fd5b600084815261022a6020908152604091829020805469ffffffffff00000000001916600160281b64ffffffffff881690810291909117909155915191825285917faec45f6ac9c6eff7c48277895ee5bfcddc83ef921ce67de1131588b3d459574591015b60405180910390a250505050565b611af56000612623565b6001600160a01b038116611b1c5760405163d92e233d60e01b815260040160405180910390fd5b61022780546001600160a01b0319166001600160a01b0383161790556040517f9e9a2b03c288d52a74c3df0782024fc542900a071656ab80d6a0a9fa7dac4efb906117f7908390614d8c565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060668054610b5090615483565b8160007f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e6001600160a01b03163b118015611be0575060975460ff16155b15611c7657604051633185c44d60e21b81526001600160a01b037f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e169063c617113490611c3390309085906004016154e9565b602060405180830381865afa158015611c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c749190615503565b505b610cfd8383613963565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915281611cb581612718565b611cd25760405163eb49290360e01b815260040160405180910390fd5b600083815261022a6020908152604091829020825160a081018452905464ffffffffff8082168352600160281b8204169282019290925260ff600160501b83048116151593820193909352600160581b8204831615156060820152600160601b9091049091161515608082015291505b50919050565b6060816001600160401b03811115611d6257611d62614ddf565b604051908082528060200260200182016040528015611d9557816020015b6060815260200190600190039081611d805790505b50905060005b82811015611e3557611e0530858584818110611db957611db96158d9565b9050602002810190611dcb91906158ef565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061396e92505050565b828281518110611e1757611e176158d9565b60200260200101819052508080611e2d90615880565b915050611d9b565b5092915050565b611e53600080516020615f45833981519152612623565b610a648282613554565b611e673383612ed8565b611e835760405162461bcd60e51b8152600401610bfa906157b9565b610b3b84848484613993565b6060611e9a826128a9565b611eb75760405163677510db60e11b815260040160405180910390fd5b6000611ec28361309b565b600081815261023260205260409020549091506060906001600160a01b031615611f6c57600082815261023260205260409081902054905163c87b56dd60e01b8152600481018690526001600160a01b039091169063c87b56dd90602401600060405180830381865afa158015611f3d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f659190810190615935565b9050612007565b600084815261025c602052604090208054611f8690615483565b80601f0160208091040260200160405190810160405280929190818152602001828054611fb290615483565b8015611fff5780601f10611fd457610100808354040283529160200191611fff565b820191906000526020600020905b815481529060010190602001808311611fe257829003601f168201915b505050505090505b805160000361205e57600082815261023160205260409020612035612030633b9aca00876159ab565b6139c6565b6040516020016120469291906159bf565b60405160208183030381529060405292505050919050565b9392505050565b600082815260c9602052604090206001015461208081612623565b610cfd8383613184565b6120a1600080516020615f45833981519152612623565b806120ab81612718565b6120c85760405163eb49290360e01b815260040160405180910390fd5b600082815261022d6020526040902054156120f657604051632d1f2ea160e11b815260040160405180910390fd5b610a6482613a58565b612117600080516020615f4583398151915233611b68565b612144576121447fd8d9f31cbc479b1a40a972bfa9e3c5573c1526777b06ee93042d7a96dde464ab612623565b8261214e81612718565b61216b5760405163eb49290360e01b815260040160405180910390fd5b815180158061219957507f000000000000000000000000000000000000000000000000000000000000006481115b156121b75760405163ce43e37760e01b815260040160405180910390fd5b60006121c3858361568e565b600087815261022d602090815260408083205461022a90925290912054919250906121fb90600160281b900464ffffffffff1661392a565b612205828461567b565b11156122245760405163740f8e6d60e11b815260040160405180910390fd5b61222e828261567b565b600088815261022d60205260408120919091555b6000868281518110612256576122566158d9565b6020026020010151905061226c818a8a86613a9c565b5090860190600101838110612242576122836129d6565b6001600160a01b0316635a595724308a6040518363ffffffff1660e01b81526004016122b0929190614f82565b602060405180830381865afa1580156122cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f19190615a46565b887f6b4728fec96e4c21cab0a9cf4686ce08822520c9647e5589e6038ef914e599df888a8660405161232593929190615a5f565b60405180910390a35050505050505050565b61233f61387b565b6115236000826130fe565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b61238f600080516020615f45833981519152612623565b8361239981612718565b6123b65760405163eb49290360e01b815260040160405180910390fd5b6000829003612435576123c76129d6565b6040516322a4b15b60e11b815230600482015260248101879052604481018690526001600160a01b03919091169063454962b690606401600060405180830381600087803b15801561241857600080fd5b505af115801561242c573d6000803e3d6000fd5b505050506112f1565b61243d6129d6565b600086815261022d602090815260408083205461022a9092529182902054915163416240df60e01b81526001600160a01b03939093169263416240df9261249f9230928b928b928b928b92600160281b900464ffffffffff1690600401615b71565b600060405180830381600087803b1580156124b957600080fd5b505af11580156124cd573d6000803e3d6000fd5b505050505050505050565b6124ef600080516020615f45833981519152612623565b816124f981612718565b6125165760405163eb49290360e01b815260040160405180910390fd5b610cfd8383613be9565b61252861387b565b61015f80546001600160a01b0383166001600160a01b0319909116811790915561255b61012d546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60006001600160e01b031982166380ac58cd60e01b14806125c457506001600160e01b03198216635b5e139f60e01b145b80610a4a57506301ffc9a760e01b6001600160e01b0319831614610a4a565b60006001600160e01b031982166370b3d42560e01b148061261457506001600160e01b0319821663152a902d60e11b145b80610a4a5750610a4a82613c50565b61012d546001600160a01b03163314611523576115238133613c5b565b806001600160601b031661271081111561266d5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b0383166126b35760006102288190556040517f378e0d79d5bc01ff46b21ccbdabc124751f2f6880425e873742b04c2e3a65c6c91610efc91819061585e565b6040805180820182526001600160a01b0385168082526001600160601b0385166020909201829052600160a01b9091021761022855517f378e0d79d5bc01ff46b21ccbdabc124751f2f6880425e873742b04c2e3a65c6c90610efc908590859061585e565b600081158061272957506102295482115b806127435750600082815261022b602052604090205460ff165b1561275057506000919050565b506001919050565b805160000361277a57604051633ba0191160e01b815260040160405180910390fd5b6000828152610231602052604090206127938282615bc0565b50817f9b769a1125f1947a11ef5a3d43527594ee72858f8c256e64556ab79056b6d315826040516127c49190614d60565b60405180910390a25050565b600082815261022d60205260409020546001819003612830577ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce761281384613cb4565b61281e90600161567b565b60405190815260200160405180910390a15b600083815261022d602052604090205460011015610cfd57600061285384613cb4565b90507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c61288182600161567b565b61288b848461567b565b6040805192835260208301919091520160405180910390a150505050565b6000806128b583613411565b6001600160a01b0316141592915050565b60006128d182611581565b9050806001600160a01b0316836001600160a01b03160361293e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfa565b336001600160a01b038216148061295a575061295a813361234a565b6129cc5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bfa565b610cfd8383613cc4565b7f0000000000000000000000006e51c392067d6276de6a52eb8e1934893b99dc3790565b8280612a1c5750600088815261022a6020526040902054600160581b900460ff165b612b095743851115612a415760405163311a269560e21b815260040160405180910390fd5b43612a4d604b8761567b565b1015612a6c57604051630819bdcd60e01b815260040160405180910390fd5b600088815261022e602090815260408083206001600160a01b038b168452909152902054600160281b900464ffffffffff168511612abd5760405163900bb2c960e01b815260040160405180910390fd5b6000612acc8989898989613d32565b90506001600160a01b038216612ae28285613db8565b6001600160a01b0316146124cd57604051638baa579f60e01b815260040160405180910390fd5b5050505050505050565b612b1d818361568e565b3414610a645760405163ab0a033b60e01b815260040160405180910390fd5b6040805180820190915260008082526020820152600088815261022e602090815260408083206001600160a01b038b1680855290835281842082518084018452905464ffffffffff8082168352600160281b9091048116828601528d865261023085528386208987528552838620928652918452828520548d865261022d909452918420548251929490929091612bdd918c918f9186918b9116888e613ddc565b905060405180604001604052808286600001510164ffffffffff1681526020018a64ffffffffff1681525061022e60008e815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548164ffffffffff021916908364ffffffffff1602179055509050508061023060008e8152602001908152602001600020600089815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020600082825401925050819055508061022d60008e815260200190815260200160002060008282540192505081905550612d188b8d8385613a9c565b6040805180820190915290815260208101919091529a9950505050505050505050565b80471015612d8b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bfa565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612dd8576040519150601f19603f3d011682016040523d82523d6000602084013e612ddd565b606091505b5050905080610cfd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bfa565b6001600160a01b03851686887fe7ffccd3613f31162a107541c97a5e4d366eb71ad77d4a6b41dad5f3538d039887612e8c818961567b565b6040805192835260208301919091520160405180910390a481841015612ecf57600081612eb98685615899565b612ec3919061568e565b9050612b093382612d3b565b50505050505050565b600080612ee483611581565b9050806001600160a01b0316846001600160a01b03161480612f0b5750612f0b818561234a565b80612f2f57506000838152606960205260409020546001600160a01b038581169116145b949350505050565b826001600160a01b0316612f4a82611581565b6001600160a01b031614612fae5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bfa565b6001600160a01b0382166130105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfa565b61301d8383836001613f6f565b600081815260696020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526068855283862080546000190190559087168086528386208054600101905586865260679094528285208054909216841790915590518493600080516020615f8c83398151915291a4505050565b6000633b9aca008210156130c25760405163677510db60e11b815260040160405180910390fd5b6130d0633b9aca00836159ab565b6000036130f05760405163677510db60e11b815260040160405180910390fd5b610a4a633b9aca008361584a565b6131088282611b68565b610a6457600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556131403390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b61318e8282611b68565b15610a6457600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006131f682611581565b9050613206816000846001613f6f565b600082815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080546000190190558685526067909352818420805490911690555184929190600080516020615f8c833981519152908390a45050565b61023480546001600160a01b0319166001600160a01b0383161790556040517f57970653b063d48a2b15715cd37aec748f64734f2a5e339bfb60ec03d885dd8b906117f7908390614d8c565b806001600160601b03166127108111156132eb5760405163d28e6cff60e01b815260040160405180910390fd5b6001600160a01b03831661334a57600084815261025b60205260408082208290555185917f4155153cf804153dcebc59020dc517402922103c1f7242f5e9bf3e5e2d6fc6199161333d9190819061585e565b60405180910390a2610b3b565b6040805180820182526001600160a01b0380861682526001600160601b03808616602080850191825260008a815261025b90915285902093519051909116600160a01b0291161790555184907f4155153cf804153dcebc59020dc517402922103c1f7242f5e9bf3e5e2d6fc61990611add908690869061585e565b61023380546001600160a01b0319166001600160a01b0383161790556040517fbedb80ed59205e9634336d041556da71d717d43d7be4f5b633b210c55eb47743906117f7908390614d8c565b6000818152610259602052604081205460ff161561343157506000919050565b6000828152606760205260409020546001600160a01b031680156134555792915050565b60006134608461309b565b9050600061346d82613cb4565b600083815261022d602052604090205490915061348a908261567b565b85111561349c57506000949350505050565b5b6001600160a01b0383161580156134b357508085115b156134df57600085815261025a6020526040902054600019909501946001600160a01b0316925061349d565b50909392505050565b610a6482826140cd565b600054610100900460ff166135195760405162461bcd60e51b8152600401610bfa90615c79565b610cfd8383836140e6565b600054610100900460ff1661354b5760405162461bcd60e51b8152600401610bfa90615c79565b61152381614189565b6102295460005b82811015613872577f000000000000000000000000000000000000000000000000000000003b9ac9ff848483818110613596576135966158d9565b90506020028101906135a89190615cc4565b6135b9906060810190604001615ce4565b64ffffffffff1611156135df576040516374690a7960e01b815260040160405180910390fd5b60019091019060008484838181106135f9576135f96158d9565b905060200281019061360b9190615cc4565b60200180360381019061361e9190615d01565b600084815261022a6020908152604091829020835181549285015193850151606086015160808701511515600160601b0260ff60601b19911515600160581b0260ff60581b19931515600160501b029390931661ffff60501b1964ffffffffff988916600160281b0269ffffffffffffffffffff19909816989095169790971795909517929092169490941793909317929092161790559050827faf1874b81c219a8f1fd4020887b21deb5761445c77c2ad850b65c730388535488686858181106136eb576136eb6158d9565b90506020028101906136fd9190615cc4565b60405161370d9135908590615d98565b60405180910390a26137858386868581811061372b5761372b6158d9565b905060200281019061373d9190615cc4565b61374b9060c08101906158ef565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061275892505050565b6000858584818110613799576137996158d9565b90506020028101906137ab9190615cc4565b6137b99060e0810190615dac565b90501115613869576137c96129d6565b6001600160a01b031663416240df308560008989888181106137ed576137ed6158d9565b90506020028101906137ff9190615cc4565b61380d9060e0810190615dac565b600088602001516040518863ffffffff1660e01b81526004016138369796959493929190615b71565b600060405180830381600087803b15801561385057600080fd5b505af1158015613864573d6000803e3d6000fd5b505050505b5060010161355b565b50610229555050565b61012d546001600160a01b031633146114795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bfa565b61015f80546001600160a01b0319169055611523816142cc565b600061390561012d546001600160a01b031690565b6001600160a01b0316826001600160a01b03161480610a4a5750610a4a600083611b68565b60008160000361395b57507f000000000000000000000000000000000000000000000000000000003b9ac9ff919050565b50805b919050565b610a6433838361431f565b606061205e8383604051806060016040528060278152602001615f65602791396143e9565b61399e848484612f37565b6139aa84848484614461565b610b3b5760405162461bcd60e51b8152600401610bfa90615df4565b606060006139d383614562565b60010190506000816001600160401b038111156139f2576139f2614ddf565b6040519080825280601f01601f191660200182016040528015613a1c576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084613a2657509392505050565b600081815261022b6020526040808220805460ff191660011790555182917fceb5e263cb1044892eb4317ae23f824f0724446b3e2315d6ba5d6a6f203662d891a250565b811580613ac857507f000000000000000000000000000000000000000000000000000000000000001482115b15613ae65760405163011674e560e71b815260040160405180910390fd5b600081613af285613cb4565b613afc919061567b565b613b0790600161567b565b9050613b166000868386613f6f565b600081815261025a6020526040812080546001600160a01b0319166001600160a01b0388161790558190613b4a858361567b565b90505b60405182906001600160a01b03891690600090600080516020615f8c833981519152908290a4816001019150808210613b4d576001600160a01b0387163b15613bda578291505b613bb06000888460405180602001604052806000815250614461565b613bcc5760405162461bcd60e51b8152600401610bfa90615df4565b816001019150808210613b94575b613be4878661463a565b612ecf565b6000828152610232602090815260409182902080546001600160a01b0319166001600160a01b0385169081179091558251858152918201527faf3c488263e5a0e7d23c7ce569ab7f4fabb9797ca892201165364e512afecdd1910160405180910390a15050565b6000610a4a8261466b565b613c658282611b68565b610a6457613c7281614690565b613c7d8360206146a2565b604051602001613c8e929190615e46565b60408051601f198184030181529082905262461bcd60e51b8252610bfa91600401614d60565b6000610a4a633b9aca008361568e565b600081815260696020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613cf982611581565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b604080517f6333dac33c8797dfc272d5fcb15ebb30435be33c66a3e1fc21076e982ecd97a660208201529081018690526001600160a01b03851660608201526080810184905260a0810183905260c081018290526000908190613dad9060e0016040516020818303038152906040528051906020012061483d565b979650505050505050565b6000806000613dc78585614905565b91509150613dd481614947565b509392505050565b868115613e1f57818310613e0357604051632b2c62f760e21b815260040160405180910390fd5b6000613e0f8484615899565b905080821115613e1d578091505b505b604085015164ffffffffff1615613e8457846040015164ffffffffff168310613e5b576040516301a36a3160e31b815260040160405180910390fd5b600083866040015164ffffffffff16613e749190615899565b905080821115613e82578091505b505b6000613e8f88611c80565b805190915064ffffffffff1615613eef57805164ffffffffff168510613ec857604051631ba1ee7960e21b815260040160405180910390fd5b8051600090613edf90879064ffffffffff16615899565b905080831115613eed578092505b505b606086015164ffffffffff166000819003613f2757507f000000000000000000000000000000000000000000000000000000003b9ac9ff5b808810613f47576040516345b1552d60e01b815260040160405180910390fd5b6000613f538983615899565b905080841115613f61578093505b505050979650505050505050565b338460007f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e6001600160a01b03163b118015613fae575060975460ff16155b1561405d57806001600160a01b0316826001600160a01b03161461405d57604051633185c44d60e21b81526001600160a01b037f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e169063c61711349061401a90309086906004016154e9565b602060405180830381865afa158015614037573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061405b9190615503565b505b6001600160a01b038616158061407a57506001600160a01b038516155b6140c55761022a600061408c8661309b565b8152602081019190915260400160002054600160601b900460ff16156140c55760405163dc8d8db760e01b815260040160405180910390fd5b505050505050565b60656140d98382615bc0565b506066610cfd8282615bc0565b600054610100900460ff1661410d5760405162461bcd60e51b8152600401610bfa90615c79565b6001600160a01b0383166141345760405163d92e233d60e01b815260040160405180910390fd5b61022780546001600160a01b0319166001600160a01b038516179055614159836138d6565b6001600160a01b0382161561417157614171826133c5565b6001600160a01b03811615610cfd57610cfd81613272565b600054610100900460ff166141b05760405162461bcd60e51b8152600401610bfa90615c79565b8080156141e7575060007f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e6001600160a01b03163b115b801561421b57507f0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb66001600160a01b031615155b156142bc57604051633e9f1edf60e11b81526001600160a01b037f000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e1690637d3e3dbe9061428e9030907f0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb6906004016154e9565b600060405180830381600087803b1580156142a857600080fd5b505af11580156112f1573d6000803e3d6000fd5b6097805460ff1916600117905550565b61012d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03160361437c5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610bfa565b6001600160a01b038381166000818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060600080856001600160a01b0316856040516144069190615eb5565b600060405180830381855af49150503d8060008114614441576040519150601f19603f3d011682016040523d82523d6000602084013e614446565b606091505b509150915061445786838387614a8c565b9695505050505050565b60006001600160a01b0384163b1561455757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906144a5903390899088908890600401615ec7565b6020604051808303816000875af19250505080156144e0575060408051601f3d908101601f191682019092526144dd91810190615efa565b60015b61453d573d80801561450e576040519150601f19603f3d011682016040523d82523d6000602084013e614513565b606091505b5080516000036145355760405162461bcd60e51b8152600401610bfa90615df4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f2f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106145a15772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106145cd576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106145eb57662386f26fc10000830492506010015b6305f5e1008310614603576305f5e100830492506008015b612710831061461757612710830492506004015b60648310614629576064830492506002015b600a8310610a4a5760010192915050565b6001600160a01b0382166000908152606860205260408120805483929061466290849061567b565b90915550505050565b60006001600160e01b03198216637965db0b60e01b1480610a4a5750610a4a82612593565b6060610a4a6001600160a01b03831660145b606060006146b183600261568e565b6146bc90600261567b565b6001600160401b038111156146d3576146d3614ddf565b6040519080825280601f01601f1916602001820160405280156146fd576020820181803683370190505b509050600360fc1b81600081518110614718576147186158d9565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614747576147476158d9565b60200101906001600160f81b031916908160001a905350600061476b84600261568e565b61477690600161567b565b90505b60018111156147ee576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106147aa576147aa6158d9565b1a60f81b8282815181106147c0576147c06158d9565b60200101906001600160f81b031916908160001a90535060049490941c936147e781615f17565b9050614779565b50831561205e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bfa565b604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f36cb08f6aafe2399767bf40e9642429d7535f40e61bd81428cad09095c5d337d918101919091527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0820152600090819060c00160405160208183030381529060405280519060200120905061205e818460405161190160f01b8152600281019290925260228201526042902090565b600080825160410361493b5760208301516040840151606085015160001a61492f87828585614b05565b945094505050506110fc565b506000905060026110fc565b600081600481111561495b5761495b615f2e565b036149635750565b600181600481111561497757614977615f2e565b036149bf5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b6044820152606401610bfa565b60028160048111156149d3576149d3615f2e565b03614a205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610bfa565b6003816004811115614a3457614a34615f2e565b036115235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610bfa565b60608315614afb578251600003614af4576001600160a01b0385163b614af45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bfa565b5081612f2f565b612f2f8383614bbf565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b03831115614b325750600090506003614bb6565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614b86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614baf57600060019250925050614bb6565b9150600090505b94509492505050565b815115614bcf5781518083602001fd5b8060405162461bcd60e51b8152600401610bfa9190614d60565b6001600160e01b03198116811461152357600080fd5b600060208284031215614c1157600080fd5b813561205e81614be9565b6001600160a01b038116811461152357600080fd5b803561395e81614c1c565b6001600160601b038116811461152357600080fd5b803561395e81614c3c565b60008060408385031215614c6f57600080fd5b8235614c7a81614c1c565b91506020830135614c8a81614c3c565b809150509250929050565b600080600060408486031215614caa57600080fd5b8335925060208401356001600160401b0380821115614cc857600080fd5b818601915086601f830112614cdc57600080fd5b813581811115614ceb57600080fd5b876020828501011115614cfd57600080fd5b6020830194508093505050509250925092565b60005b83811015614d2b578181015183820152602001614d13565b50506000910152565b60008151808452614d4c816020860160208601614d10565b601f01601f19169290920160200192915050565b60208152600061205e6020830184614d34565b600060208284031215614d8557600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215614db357600080fd5b8235614dbe81614c1c565b946020939093013593505050565b64ffffffffff8116811461152357600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614e1d57614e1d614ddf565b604052919050565b60006001600160401b03821115614e3e57614e3e614ddf565b50601f01601f191660200190565b600082601f830112614e5d57600080fd5b8135614e70614e6b82614e25565b614df5565b818152846020838601011115614e8557600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215614ebb57600080fd5b863595506020870135614ecd81614c1c565b9450604087013593506060870135614ee481614dcc565b92506080870135915060a08701356001600160401b03811115614f0657600080fd5b614f1289828a01614e4c565b9150509295509295509295565b600080600060608486031215614f3457600080fd5b8335614f3f81614c1c565b92506020840135614f4f81614c1c565b929592945050506040919091013590565b60008060408385031215614f7357600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b60008060408385031215614fae57600080fd5b823591506020830135614c8a81614dcc565b600080600060608486031215614fd557600080fd5b833592506020840135614fe781614c1c565b91506040840135614ff781614c3c565b809150509250925092565b6000806040838503121561501557600080fd5b823591506020830135614c8a81614c1c565b60006020828403121561503957600080fd5b813561205e81614c1c565b60008083601f84011261505657600080fd5b5081356001600160401b0381111561506d57600080fd5b6020830191508360208260051b85010111156110fc57600080fd5b801515811461152357600080fd5b803561395e81615088565b60008060008060008060008060006101008a8c0312156150c057600080fd5b89356001600160401b03808211156150d757600080fd5b6150e38d838e01614e4c565b9a5060208c01359150808211156150f957600080fd5b6151058d838e01614e4c565b995061511360408d01614c31565b985061512160608d01614c51565b975060808c013591508082111561513757600080fd5b506151448c828d01615044565b9096509450615157905060a08b01615096565b925061516560c08b01614c31565b915061517360e08b01614c31565b90509295985092959850929598565b6000806040838503121561519557600080fd5b82356151a081614c1c565b91506020830135614c8a81615088565b64ffffffffff808251168352806020830151166020840152506040810151151560408301526060810151151560608301526080810151151560808301525050565b60a08101610a4a82846151b0565b6000806020838503121561521257600080fd5b82356001600160401b0381111561522857600080fd5b61523485828601615044565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561529557603f19888603018452615283858351614d34565b94509285019290850190600101615267565b5092979650505050505050565b600080600080608085870312156152b857600080fd5b84356152c381614c1c565b935060208501356152d381614c1c565b92506040850135915060608501356001600160401b038111156152f557600080fd5b61530187828801614e4c565b91505092959194509250565b60008060006060848603121561532257600080fd5b83359250602080850135925060408501356001600160401b038082111561534857600080fd5b818701915087601f83011261535c57600080fd5b81358181111561536e5761536e614ddf565b8060051b915061537f848301614df5565b818152918301840191848101908a84111561539957600080fd5b938501935b838510156153c357843592506153b383614c1c565b828252938501939085019061539e565b8096505050505050509250925092565b600080604083850312156153e657600080fd5b82356153f181614c1c565b91506020830135614c8a81614c1c565b6000806000806060858703121561541757600080fd5b843593506020850135925060408501356001600160401b038082111561543c57600080fd5b818701915087601f83011261545057600080fd5b81358181111561545f57600080fd5b88602060c08302850101111561547457600080fd5b95989497505060200194505050565b600181811c9082168061549757607f821691505b602082108103611d4257634e487b7160e01b600052602260045260246000fd5b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6001600160a01b0392831681529116602082015260400190565b60006020828403121561551557600080fd5b815161205e81615088565b600060c0828403121561553257600080fd5b60405160c081018181106001600160401b038211171561555457615554614ddf565b8060405250809150825161556781614dcc565b8152602083015161557781614dcc565b6020820152604083015161558a81614dcc565b6040820152606083015161559d81614dcc565b606082015260808301516155b081614c3c565b608082015260a08301516155c381615088565b60a0919091015292915050565b60008060008385036101408112156155e757600080fd5b60608112156155f557600080fd5b50604051606081018181106001600160401b038211171561561857615618614ddf565b604052845161562681614c1c565b8152602085015161563681614c1c565b6020820152604085810151908201526060850151909350915061565c8560808601615520565b90509250925092565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a4a57610a4a615665565b8082028115828204841417610a4a57610a4a615665565b601f821115610cfd57600081815260208120601f850160051c810160208610156156cc5750805b601f850160051c820191505b818110156140c5578281556001016156d8565b600019600383901b1c191660019190911b1790565b6001600160401b0383111561571757615717614ddf565b61572b836157258354615483565b836156a5565b6000601f84116001811461575957600085156157475750838201355b61575186826156eb565b8455506112f1565b600083815260209020601f19861690835b8281101561578a578685013582556020948501946001909201910161576a565b50868210156157a75760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b6000806040838503121561581957600080fd5b825161582481614c1c565b6020939093015192949293505050565b634e487b7160e01b600052601260045260246000fd5b60008261585957615859615834565b500490565b6001600160a01b039290921682526001600160601b0316602082015260400190565b60006001820161589257615892615665565b5060010190565b81810381811115610a4a57610a4a615665565b60008060e083850312156158bf57600080fd5b825191506158d08460208501615520565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b6000808335601e1984360301811261590657600080fd5b8301803591506001600160401b0382111561592057600080fd5b6020019150368190038213156110fc57600080fd5b60006020828403121561594757600080fd5b81516001600160401b0381111561595d57600080fd5b8201601f8101841361596e57600080fd5b805161597c614e6b82614e25565b81815285602083850101111561599157600080fd5b6159a2826020830160208601614d10565b95945050505050565b6000826159ba576159ba615834565b500690565b60008084546159cd81615483565b600182811680156159e557600181146159fa57615a29565b60ff1984168752821515830287019450615a29565b8860005260208060002060005b85811015615a205781548a820152908401908201615a07565b50505082870194505b505050508351615a3d818360208801614d10565b01949350505050565b600060208284031215615a5857600080fd5b5051919050565b606080825284519082018190526000906020906080840190828801845b82811015615aa15781516001600160a01b031684529284019290840190600101615a7c565b505050908301949094525060400152919050565b8183526000602080850194508260005b85811015615b66578135615ad881614dcc565b64ffffffffff90811688528284013590615af182614dcc565b9081168885015260409083820135615b0881614dcc565b818116838b0152506060915081840135615b2181614dcc565b16908801526080615b33838201614c51565b6001600160601b03169088015260a0615b4d838201615096565b15159088015260c0968701969190910190600101615ac5565b509495945050505050565b60018060a01b038816815286602082015285604082015260c060608201526000615b9f60c083018688615ab5565b905083608083015264ffffffffff831660a083015298975050505050505050565b81516001600160401b03811115615bd957615bd9614ddf565b615bed81615be78454615483565b846156a5565b602080601f831160018114615c1c5760008415615c0a5750858301515b615c1485826156eb565b8655506140c5565b600085815260208120601f198616915b82811015615c4b57888601518255948401946001909101908401615c2c565b5085821015615c695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000823560fe19833603018112615cda57600080fd5b9190910192915050565b600060208284031215615cf657600080fd5b813561205e81614dcc565b600060a08284031215615d1357600080fd5b60405160a081018181106001600160401b0382111715615d3557615d35614ddf565b6040528235615d4381614dcc565b81526020830135615d5381614dcc565b60208201526040830135615d6681615088565b60408201526060830135615d7981615088565b60608201526080830135615d8c81615088565b60808201529392505050565b82815260c0810161205e60208301846151b0565b6000808335601e19843603018112615dc357600080fd5b8301803591506001600160401b03821115615ddd57600080fd5b602001915060c0810236038213156110fc57600080fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351615e78816017850160208801614d10565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351615ea9816028840160208801614d10565b01602801949350505050565b60008251615cda818460208701614d10565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061445790830184614d34565b600060208284031215615f0c57600080fd5b815161205e81614be9565b600081615f2657615f26615665565b506000190190565b634e487b7160e01b600052602160045260246000fdfe828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203a7fc64e7f1c1a31003f318a97dcdc8a0dcc64795d5f7229fd106e343914477a64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006e51c392067d6276de6a52eb8e1934893b99dc3700000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb6
-----Decoded View---------------
Arg [0] : fairxyzStagesRegistry_ (address): 0x6e51c392067d6276dE6A52Eb8e1934893b99dC37
Arg [1] : maxMintsPerTransaction_ (uint256): 20
Arg [2] : maxRecipientsPerAirdrop_ (uint256): 100
Arg [3] : operatorFilterRegistry_ (address): 0x000000000000AAeB6D7670E522A718067333cd4E
Arg [4] : operatorFilterSubscription_ (address): 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000006e51c392067d6276de6a52eb8e1934893b99dc37
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [3] : 000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e
Arg [4] : 0000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb6
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.