Source Code
Overview
POL Balance
POL Value
$0.00Cross-Chain Transactions
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:
TimePiecePassport
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// slither-disable-next-line solc-version
pragma solidity 0.8.23;
import {ITimePiecePassport} from "@interfaces/ITimePiecePassport.sol";
import {ERC5192Upgradeable} from "@contracts/ERC5192Upgradeable.sol";
import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import {ERC721Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
import {ERC721EnumerableUpgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol";
import {AccessControlUpgradeable} from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
/// @dev: Using ERC2981Upgradeable directly rather then ERC721RoyaltyUpgradeable since ERC721RoyaltyUpgradeable
/// gives minimal code (see the contract) and would require more explicit overrides in TimePiecePassport because
/// both ERC721EnumerableUpgradeable and ERC721RoyaltyUpgradeable inherit functions from ERC721Upgradeable.
import {ERC2981Upgradeable} from "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol";
/// @custom:oz-upgrades
contract TimePiecePassport is
ITimePiecePassport,
ERC5192Upgradeable,
ERC721EnumerableUpgradeable,
ERC2981Upgradeable,
AccessControlUpgradeable,
UUPSUpgradeable
{
//--------------------------------------------------
// Constants
//--------------------------------------------------
bytes32 public constant ROLE_MINTER = keccak256("ROLE_MINTER");
bytes32 public constant ROLE_CONFIGURATOR = keccak256("ROLE_CONFIGURATOR");
bytes32 public constant ROLE_ROYALTY_CONFIGURATOR =
keccak256("ROLE_ROYALTY_CONFIGURATOR");
bytes32 public constant ROLE_REDEEMER = keccak256("ROLE_REDEEMER");
bytes32 public constant ROLE_UPDATER = keccak256("ROLE_UPDATER");
//--------------------------------------------------
// Variables & ERC7201 Storage
//--------------------------------------------------
/// @custom:storage-location erc7201:openchrono.timepiece.passport
struct TimePiecePassportStorage {
string _baseUriString;
mapping(uint256 => string) tokenIdToDocumentId;
mapping(string => bool) passportNameUsed;
}
// keccak256(abi.encode(uint256(keccak256("openchrono.timepiece.passport")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant TIME_PIECE_PASSPORT_STORAGE_LOCATION =
0xa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f10000;
function _getTimePiecePassportStorageLocation()
private
pure
returns (TimePiecePassportStorage storage store)
{
/* Assembly based on OpenZeppelin's ERC7201 https://eips.ethereum.org/EIPS/eip-7201 */
// solhint-disable no-inline-assembly
// slither-disable-next-line assembly
assembly {
store.slot := TIME_PIECE_PASSPORT_STORAGE_LOCATION
}
}
//--------------------------------------------------
// Initializing
//--------------------------------------------------
/// @param adminAddress: This address is able to register the contract with the
/// Royalty Registry later on if required.
function initialize(
address adminAddress,
address minterAddress,
address configuratorAddress,
address royaltyConfiguratorAddress,
address redeemerAddress,
address updaterAddress,
string calldata _baseUriString
) external initializer {
__ERC721_init("TimePiecePassport", "TPP");
__AccessControl_init_unchained();
_grantRole(DEFAULT_ADMIN_ROLE, adminAddress);
_grantRole(ROLE_MINTER, minterAddress);
_grantRole(ROLE_CONFIGURATOR, configuratorAddress);
_grantRole(ROLE_ROYALTY_CONFIGURATOR, royaltyConfiguratorAddress);
_grantRole(ROLE_REDEEMER, redeemerAddress);
_grantRole(ROLE_UPDATER, updaterAddress);
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
store._baseUriString = _baseUriString;
}
//--------------------------------------------------
// Helpers for external access to ERC7201 storage
//--------------------------------------------------
function tokenIdToDocumentId(
uint256 tokenId
) external view returns (string memory) {
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
return store.tokenIdToDocumentId[tokenId];
}
function passportNameUsed(
string calldata passportName
) external view returns (bool) {
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
return store.passportNameUsed[passportName];
}
//--------------------------------------------------
// ERC-721 related
//--------------------------------------------------
/// @inheritdoc ITimePiecePassport
function mint(
address to,
string calldata passportName,
string calldata documentId
) external virtual override onlyRole(ROLE_MINTER) {
uint256 newId = totalSupply();
_mint(to, newId);
_claimPassportName(passportName);
_updateDocumentId(newId, documentId);
/// @dev Needed for the IERC5192 spec.
_setUnlocked(newId);
emit MintedTimePiecePassport(newId, to, passportName, documentId);
}
function _claimPassportName(string calldata passportName) internal virtual {
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
if (store.passportNameUsed[passportName]) {
revert PassportNameAlreadyClaimed(passportName);
}
store.passportNameUsed[passportName] = true;
}
/// @inheritdoc ITimePiecePassport
function getTimepiecePassport(
uint256 tokenId
) external view virtual override returns (string memory) {
return tokenURI(tokenId);
}
/// @inheritdoc ERC721Upgradeable
function tokenURI(
uint256 tokenId
) public view virtual override returns (string memory) {
_requireOwned(tokenId);
string memory passportBaseURI = _baseURI();
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
return
bytes(passportBaseURI).length > 0
? string(
abi.encodePacked(passportBaseURI, store.tokenIdToDocumentId[tokenId])
)
: "";
}
/// @inheritdoc ITimePiecePassport
function setBaseURI(
string calldata newBaseURI
) external virtual onlyRole(ROLE_CONFIGURATOR) {
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
store._baseUriString = newBaseURI;
}
/// @inheritdoc ERC721Upgradeable
function _baseURI() internal view virtual override returns (string memory) {
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
return store._baseUriString;
}
/** Block redeemeded token transfers with _update transfer hook */
function _update(
address to,
uint256 tokenId,
address auth
) internal virtual override returns (address) {
/// @dev batchSize is already enforced to be 1 by ERC721EnumerableUpgradeable.
if (tokenIdRedeemed(tokenId)) {
revert TokenAlreadyRedeemed(tokenId);
}
return super._update(to, tokenId, auth);
}
/** @dev this function isn't used right now, but it stands to serve for documentation on steps that should be taken when burning */
// function __burn(uint256 tokenId) internal {
// _burn(tokenId);
// // This is the implementation that ERC721RoyaltyUpgradeable would provide
// _resetTokenRoyalty(tokenId);
// }
//--------------------------------------------------
// Document connection
//--------------------------------------------------
/// @notice This function is to be called after the passport has been minted
/// to update the document ID if that updates.
function updateDocumentId(
uint256 tokenId,
string calldata documentId
) external virtual onlyRole(ROLE_MINTER) {
_updateDocumentId(tokenId, documentId);
}
/// @notice This function is called by both mint() and updateDocumentId()
function _updateDocumentId(
uint256 tokenId,
string calldata documentId
) internal virtual {
_requireOwned(tokenId);
TimePiecePassportStorage
storage store = _getTimePiecePassportStorageLocation();
emit UpdateTokenIdDocumentId(
tokenId,
store.tokenIdToDocumentId[tokenId],
documentId
);
store.tokenIdToDocumentId[tokenId] = documentId;
}
//--------------------------------------------------
// ERC-2981 related
//--------------------------------------------------
/// @inheritdoc ITimePiecePassport
function setDefaultRoyalty(
address receiver,
uint96 feeNumerator
) external virtual onlyRole(ROLE_ROYALTY_CONFIGURATOR) {
_assertGreaterThanZero(feeNumerator);
super._setDefaultRoyalty(receiver, feeNumerator);
emit UpdateDefaultRoyalty(RoyaltyInfo(receiver, feeNumerator));
}
/// @inheritdoc ITimePiecePassport
function setTokenRoyalty(
uint256 tokenId,
address receiver,
uint96 feeNumerator
) external virtual onlyRole(ROLE_ROYALTY_CONFIGURATOR) {
_assertGreaterThanZero(feeNumerator);
super._setTokenRoyalty(tokenId, receiver, feeNumerator);
emit UpdateTokenRoyalty(tokenId, RoyaltyInfo(receiver, feeNumerator));
}
/// @inheritdoc ITimePiecePassport
function deleteDefaultRoyalty()
external
virtual
onlyRole(ROLE_ROYALTY_CONFIGURATOR)
{
super._deleteDefaultRoyalty();
emit DeleteDefaultRoyalty();
}
/// @inheritdoc ITimePiecePassport
function resetTokenRoyalty(
uint256 tokenId
) external virtual onlyRole(ROLE_ROYALTY_CONFIGURATOR) {
_resetTokenRoyalty(tokenId);
}
function _resetTokenRoyalty(uint256 tokenId) internal virtual override {
super._resetTokenRoyalty(tokenId);
emit DeleteTokenRoyalty(tokenId);
}
/// @inheritdoc ITimePiecePassport
function feeDenominator() external pure returns (uint96) {
return super._feeDenominator();
}
function _assertGreaterThanZero(uint96 value) internal virtual {
if (value == 0) {
revert ValueIsZero();
}
}
//--------------------------------------------------
// Redeeming
//--------------------------------------------------
/// @inheritdoc ITimePiecePassport
function redeemTimePiecePassport(
uint256 tokenId
) external virtual onlyRole(ROLE_REDEEMER) {
if (tokenIdRedeemed(tokenId)) {
revert TokenAlreadyRedeemed(tokenId);
}
_setLocked(tokenId);
emit RedeemedTimePiecePassport(tokenId);
}
/// @inheritdoc ITimePiecePassport
function tokenIdRedeemed(
uint256 tokenId
) public view virtual override returns (bool) {
return locked(tokenId);
}
//--------------------------------------------------
// ERC-165 related
//--------------------------------------------------
function supportsInterface(
bytes4 interfaceId
)
public
view
virtual
override(
ERC5192Upgradeable,
ERC721EnumerableUpgradeable,
ERC2981Upgradeable,
AccessControlUpgradeable
)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
//--------------------------------------------------
// UUPSUpgradeable
//--------------------------------------------------
/// @inheritdoc UUPSUpgradeable
function _authorizeUpgrade(
address newImplementation
) internal virtual override onlyRole(ROLE_UPDATER) {}
}// SPDX-License-Identifier: MIT
// slither-disable-next-line solc-version
pragma solidity 0.8.23;
import {ERC2981Upgradeable} from "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol";
interface ITimePiecePassport {
//--------------------------------------------------
// Errors
//--------------------------------------------------
error ValueIsZero();
error PassportNameAlreadyClaimed(string passportName);
error TokenAlreadyRedeemed(uint256 tokenId);
//--------------------------------------------------
// Events
//--------------------------------------------------
event MintedTimePiecePassport(
uint256 indexed tokenId,
address to,
string passportName,
string documentId
);
event UpdateTokenIdDocumentId(
uint256 indexed tokenId,
string oldDocumentId,
string newDocumentId
);
/// @dev Not emitting old royalty value since this data is
/// private in ERC2981Upgradeable. We can deduce it via
/// royaltyInfo(), but that seems a bit too much.
event UpdateDefaultRoyalty(ERC2981Upgradeable.RoyaltyInfo newRoyalty);
event UpdateTokenRoyalty(
uint256 tokenId,
ERC2981Upgradeable.RoyaltyInfo newRoyalty
);
event DeleteDefaultRoyalty();
event DeleteTokenRoyalty(uint256 tokenId);
event RedeemedTimePiecePassport(uint256 tokenId);
//--------------------------------------------------
// Functions
//--------------------------------------------------
/// @param to The owner of the watch
/// @param passportName A unique name to avoid double mints.
/// @param documentId The id of the document on external storage
function mint(
address to,
string calldata passportName,
string calldata documentId
) external;
/// @notice The denominator with which to interpret the fee set in {_setTokenRoyalty}
/// and {_setDefaultRoyalty} as a fraction of the sale price. Defaults to 10000
/// so fees are expressed in basis points, but may be customized by an override.
function feeDenominator() external pure returns (uint96);
/// @notice Sets the royalty information that all ids in this contract will default to.
/// @param receiver The addresses of the fee receiver
/// @param feeNumerator The fee numerator, together with the feeDenominator(), determine
/// the fee percentage. Note that feeDenominator() is 10000.
/// So if a fee of 3.24% is desired, feeNumerator should be 324.
function setDefaultRoyalty(address receiver, uint96 feeNumerator) external;
/// @notice Sets the royalty information for a specific token id, overriding the global default.
/// @param tokenId the token ID to apply this fee to.
/// @param receiver The addresses of the fee receiver
/// @param feeNumerator The fee numerator, together with the feeDenominator(), determine
/// the fee percentage. Note that feeDenominator() is 10000.
/// So if a fee of 3.24% is desired, feeNumerator should be 324.
function setTokenRoyalty(
uint256 tokenId,
address receiver,
uint96 feeNumerator
) external;
/// @notice Removes default royalty information.
function deleteDefaultRoyalty() external;
/// @notice Resets royalty information for the token id back to the global default.
function resetTokenRoyalty(uint256 tokenId) external;
/// @notice Returns true if the token was redeemed after an escrow.
function tokenIdRedeemed(uint256 tokenId) external view returns (bool);
/// @notice Redeems a token. On Redeeming a token the token is
/// bounded to the current owner as a soulbound token (ERC-5192).
function redeemTimePiecePassport(uint256 tokenId) external;
/// @notice Alias for tokenURI();
function getTimepiecePassport(
uint256 tokenId
) external view returns (string memory);
/// @notice Sets the base URI for all token IDs.
function setBaseURI(string calldata newBaseURI) external;
}// SPDX-License-Identifier: MIT
// slither-disable-next-line solc-version
pragma solidity 0.8.23;
import {IERC5192} from "@interfaces/IERC5192.sol";
import {ERC165Upgradeable} from "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
abstract contract ERC5192Upgradeable is IERC5192, ERC165Upgradeable {
//--------------------------------------------------
// Variables & ERC7201 Storage
//--------------------------------------------------
/// @custom:storage-location erc7201:openchrono.ERC5192Upgradeable
struct ERC5192UpgradeableStorage {
mapping(uint256 => bool) locked;
}
// keccak256(abi.encode(uint256(keccak256("erc7201:openchrono.ERC5192Upgradeable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant ERC5192_UPGRADEABLE_STORAGE_LOCATION =
0xca6b43e1a9619abbc14cd4c9cb687bfc64fa598db6cb4179c646e2335e3ad200;
function _getERC5192UpgradeableStorage()
private
pure
returns (ERC5192UpgradeableStorage storage store)
{
/* Assembly based on OpenZeppelin's ERC7201 https://eips.ethereum.org/EIPS/eip-7201 */
// solhint-disable no-inline-assembly
// slither-disable-next-line assembly
assembly {
store.slot := ERC5192_UPGRADEABLE_STORAGE_LOCATION
}
}
//--------------------------------------------------
// Initializing
//--------------------------------------------------
function initialize() internal onlyInitializing {
ERC165Upgradeable.__ERC165_init_unchained();
}
//--------------------------------------------------
// IERC5192
//--------------------------------------------------
/// @inheritdoc IERC5192
function locked(uint256 tokenId) public view override returns (bool) {
return _getERC5192UpgradeableStorage().locked[tokenId];
}
//--------------------------------------------------
// Helper functions
//--------------------------------------------------
/// @notice Locks the token and emits `Locked(tokenId)`
// slither-disable-next-line dead-code
function _setLocked(uint256 tokenId) internal virtual {
_getERC5192UpgradeableStorage().locked[tokenId] = true;
emit Locked(tokenId);
}
/// @notice Unlocks the token and emits `UnLocked(tokenId)`
// slither-disable-next-line dead-code
function _setUnlocked(uint256 tokenId) internal virtual {
_getERC5192UpgradeableStorage().locked[tokenId] = false;
emit Unlocked(tokenId);
}
//--------------------------------------------------
// ERC165Upgradeable
//--------------------------------------------------
function supportsInterface(
bytes4 interfaceId
) public view virtual override returns (bool) {
return
interfaceId == type(IERC5192).interfaceId ||
super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.20;
import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";
import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";
import {Initializable} from "./Initializable.sol";
/**
* @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
*
* A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
* `UUPSUpgradeable` with a custom implementation of upgrades.
*
* The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
address private immutable __self = address(this);
/**
* @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`
* and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
* while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.
* If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must
* be the empty byte string if no function should be called, making it impossible to invoke the `receive` function
* during an upgrade.
*/
string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";
/**
* @dev The call is from an unauthorized context.
*/
error UUPSUnauthorizedCallContext();
/**
* @dev The storage `slot` is unsupported as a UUID.
*/
error UUPSUnsupportedProxiableUUID(bytes32 slot);
/**
* @dev Check that the execution is being performed through a delegatecall call and that the execution context is
* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
* fail.
*/
modifier onlyProxy() {
_checkProxy();
_;
}
/**
* @dev Check that the execution is not being performed through a delegate call. This allows a function to be
* callable on the implementing contract but not through proxies.
*/
modifier notDelegated() {
_checkNotDelegated();
_;
}
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual notDelegated returns (bytes32) {
return ERC1967Utils.IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data);
}
/**
* @dev Reverts if the execution is not performed via delegatecall or the execution
* context is not of a proxy with an ERC1967-compliant implementation pointing to self.
* See {_onlyProxy}.
*/
function _checkProxy() internal view virtual {
if (
address(this) == __self || // Must be called through delegatecall
ERC1967Utils.getImplementation() != __self // Must be called through an active proxy
) {
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Reverts if the execution is performed via delegatecall.
* See {notDelegated}.
*/
function _checkNotDelegated() internal view virtual {
if (address(this) != __self) {
// Must not be called through delegatecall
revert UUPSUnauthorizedCallContext();
}
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.
*
* As a security check, {proxiableUUID} is invoked in the new implementation, and the return value
* is expected to be the implementation slot in ERC1967.
*
* Emits an {IERC1967-Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {
try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {
revert UUPSUnsupportedProxiableUUID(slot);
}
ERC1967Utils.upgradeToAndCall(newImplementation, data);
} catch {
// The implementation is not UUPS
revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.20;
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {IERC721Receiver} from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import {IERC721Metadata} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import {ContextUpgradeable} from "../../utils/ContextUpgradeable.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {ERC165Upgradeable} from "../../utils/introspection/ERC165Upgradeable.sol";
import {IERC721Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol";
import {Initializable} from "../../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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721, IERC721Metadata, IERC721Errors {
using Strings for uint256;
/// @custom:storage-location erc7201:openzeppelin.storage.ERC721
struct ERC721Storage {
// Token name
string _name;
// Token symbol
string _symbol;
mapping(uint256 tokenId => address) _owners;
mapping(address owner => uint256) _balances;
mapping(uint256 tokenId => address) _tokenApprovals;
mapping(address owner => mapping(address operator => bool)) _operatorApprovals;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC721")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant ERC721StorageLocation = 0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300;
function _getERC721Storage() private pure returns (ERC721Storage storage $) {
assembly {
$.slot := ERC721StorageLocation
}
}
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {
__ERC721_init_unchained(name_, symbol_);
}
function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
ERC721Storage storage $ = _getERC721Storage();
$._name = name_;
$._symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual returns (uint256) {
ERC721Storage storage $ = _getERC721Storage();
if (owner == address(0)) {
revert ERC721InvalidOwner(address(0));
}
return $._balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual returns (address) {
return _requireOwned(tokenId);
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual returns (string memory) {
ERC721Storage storage $ = _getERC721Storage();
return $._name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual returns (string memory) {
ERC721Storage storage $ = _getERC721Storage();
return $._symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
_requireOwned(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual {
_approve(to, tokenId, _msgSender());
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual returns (address) {
_requireOwned(tokenId);
return _getApproved(tokenId);
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
ERC721Storage storage $ = _getERC721Storage();
return $._operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
// Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
// (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
address previousOwner = _update(to, tokenId, _msgSender());
if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
transferFrom(from, to, tokenId);
_checkOnERC721Received(from, to, tokenId, data);
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*
* IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
* core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
* consistent with ownership. The invariant to preserve is 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`.
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
ERC721Storage storage $ = _getERC721Storage();
return $._owners[tokenId];
}
/**
* @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
*/
function _getApproved(uint256 tokenId) internal view virtual returns (address) {
ERC721Storage storage $ = _getERC721Storage();
return $._tokenApprovals[tokenId];
}
/**
* @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
* particular (ignoring whether it is owned by `owner`).
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
return
spender != address(0) &&
(owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
}
/**
* @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
* Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
* the `spender` for the specific `tokenId`.
*
* WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
* assumption.
*/
function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
if (!_isAuthorized(owner, spender, tokenId)) {
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else {
revert ERC721InsufficientApproval(spender, tokenId);
}
}
}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
* a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
*
* WARNING: Increasing an account's balance using this function tends to be paired with an override of the
* {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
* remain consistent with one another.
*/
function _increaseBalance(address account, uint128 value) internal virtual {
ERC721Storage storage $ = _getERC721Storage();
unchecked {
$._balances[account] += value;
}
}
/**
* @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
* (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that
* `auth` is either the owner of the token, or approved to operate on the token (by the owner).
*
* Emits a {Transfer} event.
*
* NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
ERC721Storage storage $ = _getERC721Storage();
address from = _ownerOf(tokenId);
// Perform (optional) operator check
if (auth != address(0)) {
_checkAuthorized(from, auth, tokenId);
}
// Execute the update
if (from != address(0)) {
// Clear approval. No need to re-authorize or emit the Approval event
_approve(address(0), tokenId, address(0), false);
unchecked {
$._balances[from] -= 1;
}
}
if (to != address(0)) {
unchecked {
$._balances[to] += 1;
}
}
$._owners[tokenId] = to;
emit Transfer(from, to, tokenId);
return from;
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner != address(0)) {
revert ERC721InvalidSender(address(0));
}
}
/**
* @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
_checkOnERC721Received(address(0), to, tokenId, data);
}
/**
* @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 {
address previousOwner = _update(address(0), tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal {
if (to == address(0)) {
revert ERC721InvalidReceiver(address(0));
}
address previousOwner = _update(to, tokenId, address(0));
if (previousOwner == address(0)) {
revert ERC721NonexistentToken(tokenId);
} else if (previousOwner != from) {
revert ERC721IncorrectOwner(from, tokenId, previousOwner);
}
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
* are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
* {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `tokenId` token must exist and be owned by `from`.
* - `to` cannot be the zero address.
* - `from` cannot be the zero address.
* - 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) internal {
_safeTransfer(from, to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
_checkOnERC721Received(from, to, tokenId, data);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
* either the owner of the token, or approved to operate on all tokens held by this owner.
*
* Emits an {Approval} event.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address to, uint256 tokenId, address auth) internal {
_approve(to, tokenId, auth, true);
}
/**
* @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
* emitted in the context of transfers.
*/
function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
ERC721Storage storage $ = _getERC721Storage();
// Avoid reading the owner unless necessary
if (emitEvent || auth != address(0)) {
address owner = _requireOwned(tokenId);
// We do not use _isAuthorized because single-token approvals should not be able to call approve
if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
revert ERC721InvalidApprover(auth);
}
if (emitEvent) {
emit Approval(owner, to, tokenId);
}
}
$._tokenApprovals[tokenId] = to;
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Requirements:
* - operator can't be the address zero.
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
ERC721Storage storage $ = _getERC721Storage();
if (operator == address(0)) {
revert ERC721InvalidOperator(operator);
}
$._operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
* Returns the owner.
*
* Overrides to ownership logic should be done to {_ownerOf}.
*/
function _requireOwned(uint256 tokenId) internal view returns (address) {
address owner = _ownerOf(tokenId);
if (owner == address(0)) {
revert ERC721NonexistentToken(tokenId);
}
return owner;
}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
* recipient doesn't accept the token transfer. 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
*/
function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
if (to.code.length > 0) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
if (retval != IERC721Receiver.onERC721Received.selector) {
revert ERC721InvalidReceiver(to);
}
} catch (bytes memory reason) {
if (reason.length == 0) {
revert ERC721InvalidReceiver(to);
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.20;
import {ERC721Upgradeable} from "../ERC721Upgradeable.sol";
import {IERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {Initializable} from "../../../proxy/utils/Initializable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
* of all the token ids in the contract as well as all token ids owned by each account.
*
* CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
* interfere with enumerability and should not be used together with `ERC721Enumerable`.
*/
abstract contract ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721Enumerable {
/// @custom:storage-location erc7201:openzeppelin.storage.ERC721Enumerable
struct ERC721EnumerableStorage {
mapping(address owner => mapping(uint256 index => uint256)) _ownedTokens;
mapping(uint256 tokenId => uint256) _ownedTokensIndex;
uint256[] _allTokens;
mapping(uint256 tokenId => uint256) _allTokensIndex;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC721Enumerable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant ERC721EnumerableStorageLocation = 0x645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed00;
function _getERC721EnumerableStorage() private pure returns (ERC721EnumerableStorage storage $) {
assembly {
$.slot := ERC721EnumerableStorageLocation
}
}
/**
* @dev An `owner`'s token query was out of bounds for `index`.
*
* NOTE: The owner being `address(0)` indicates a global out of bounds index.
*/
error ERC721OutOfBoundsIndex(address owner, uint256 index);
/**
* @dev Batch mint is not allowed.
*/
error ERC721EnumerableForbiddenBatchMint();
function __ERC721Enumerable_init() internal onlyInitializing {
}
function __ERC721Enumerable_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721Upgradeable) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
if (index >= balanceOf(owner)) {
revert ERC721OutOfBoundsIndex(owner, index);
}
return $._ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
return $._allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual returns (uint256) {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
if (index >= totalSupply()) {
revert ERC721OutOfBoundsIndex(address(0), index);
}
return $._allTokens[index];
}
/**
* @dev See {ERC721-_update}.
*/
function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
address previousOwner = super._update(to, tokenId, auth);
if (previousOwner == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (previousOwner != to) {
_removeTokenFromOwnerEnumeration(previousOwner, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (previousOwner != to) {
_addTokenToOwnerEnumeration(to, tokenId);
}
return previousOwner;
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
uint256 length = balanceOf(to) - 1;
$._ownedTokens[to][length] = tokenId;
$._ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
$._allTokensIndex[tokenId] = $._allTokens.length;
$._allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = balanceOf(from);
uint256 tokenIndex = $._ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = $._ownedTokens[from][lastTokenIndex];
$._ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
$._ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete $._ownedTokensIndex[tokenId];
delete $._ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
ERC721EnumerableStorage storage $ = _getERC721EnumerableStorage();
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = $._allTokens.length - 1;
uint256 tokenIndex = $._allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = $._allTokens[lastTokenIndex];
$._allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
$._allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete $._allTokensIndex[tokenId];
$._allTokens.pop();
}
/**
* See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
*/
function _increaseBalance(address account, uint128 amount) internal virtual override {
if (amount > 0) {
revert ERC721EnumerableForbiddenBatchMint();
}
super._increaseBalance(account, amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";
import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol";
import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol";
import {Initializable} from "../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, IAccessControl, ERC165Upgradeable {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/// @custom:storage-location erc7201:openzeppelin.storage.AccessControl
struct AccessControlStorage {
mapping(bytes32 role => RoleData) _roles;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800;
function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) {
assembly {
$.slot := AccessControlStorageLocation
}
}
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
function __AccessControl_init() internal onlyInitializing {
}
function __AccessControl_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
AccessControlStorage storage $ = _getAccessControlStorage();
return $._roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @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 returns (bytes32) {
AccessControlStorage storage $ = _getAccessControlStorage();
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 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 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 `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
AccessControlStorage storage $ = _getAccessControlStorage();
bytes32 previousAdminRole = getRoleAdmin(role);
$._roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
AccessControlStorage storage $ = _getAccessControlStorage();
if (!hasRole(role, account)) {
$._roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
AccessControlStorage storage $ = _getAccessControlStorage();
if (hasRole(role, account)) {
$._roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.20;
import {IERC2981} from "@openzeppelin/contracts/interfaces/IERC2981.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {ERC165Upgradeable} from "../../utils/introspection/ERC165Upgradeable.sol";
import {Initializable} from "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*/
abstract contract ERC2981Upgradeable is Initializable, IERC2981, ERC165Upgradeable {
struct RoyaltyInfo {
address receiver;
uint96 royaltyFraction;
}
/// @custom:storage-location erc7201:openzeppelin.storage.ERC2981
struct ERC2981Storage {
RoyaltyInfo _defaultRoyaltyInfo;
mapping(uint256 tokenId => RoyaltyInfo) _tokenRoyaltyInfo;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC2981")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant ERC2981StorageLocation = 0xdaedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b00;
function _getERC2981Storage() private pure returns (ERC2981Storage storage $) {
assembly {
$.slot := ERC2981StorageLocation
}
}
/**
* @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
*/
error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);
/**
* @dev The default royalty receiver is invalid.
*/
error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);
/**
* @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
*/
error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);
/**
* @dev The royalty receiver for `tokenId` is invalid.
*/
error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);
function __ERC2981_init() internal onlyInitializing {
}
function __ERC2981_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165Upgradeable) returns (bool) {
return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @inheritdoc IERC2981
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual returns (address, uint256) {
ERC2981Storage storage $ = _getERC2981Storage();
RoyaltyInfo memory royalty = $._tokenRoyaltyInfo[tokenId];
if (royalty.receiver == address(0)) {
royalty = $._defaultRoyaltyInfo;
}
uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();
return (royalty.receiver, royaltyAmount);
}
/**
* @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
* fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
* override.
*/
function _feeDenominator() internal pure virtual returns (uint96) {
return 10000;
}
/**
* @dev Sets the royalty information that all ids in this contract will default to.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
ERC2981Storage storage $ = _getERC2981Storage();
uint256 denominator = _feeDenominator();
if (feeNumerator > denominator) {
// Royalty fee will exceed the sale price
revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
}
if (receiver == address(0)) {
revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
}
$._defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Removes default royalty information.
*/
function _deleteDefaultRoyalty() internal virtual {
ERC2981Storage storage $ = _getERC2981Storage();
delete $._defaultRoyaltyInfo;
}
/**
* @dev Sets the royalty information for a specific token id, overriding the global default.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
ERC2981Storage storage $ = _getERC2981Storage();
uint256 denominator = _feeDenominator();
if (feeNumerator > denominator) {
// Royalty fee will exceed the sale price
revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
}
if (receiver == address(0)) {
revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
}
$._tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Resets royalty information for the token id back to the global default.
*/
function _resetTokenRoyalty(uint256 tokenId) internal virtual {
ERC2981Storage storage $ = _getERC2981Storage();
delete $._tokenRoyaltyInfo[tokenId];
}
}// SPDX-License-Identifier: CC0-1.0
// slither-disable-next-line solc-version
pragma solidity 0.8.23;
// https://eips.ethereum.org/EIPS/eip-5192
interface IERC5192 {
/// @notice Emitted when the locking status is changed to locked.
/// @dev If a token is minted and the status is locked, this event should be emitted.
/// @param tokenId The identifier for a token.
event Locked(uint256 tokenId);
/// @notice Emitted when the locking status is changed to unlocked.
/// @dev If a token is minted and the status is unlocked, this event should be emitted.
/// @param tokenId The identifier for a token.
event Unlocked(uint256 tokenId);
/// @notice Returns the locking status of an Soulbound Token
/// @dev SBTs assigned to zero address are considered invalid, and queries
/// about them do throw.
/// @param tokenId The identifier for an SBT.
function locked(uint256 tokenId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {Initializable} from "../../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);
* }
* ```
*/
abstract contract ERC165Upgradeable is Initializable, IERC165 {
function __ERC165_init() internal onlyInitializing {
}
function __ERC165_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.20;
/**
* @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
* proxy whose upgrades are fully controlled by the current implementation.
*/
interface IERC1822Proxiable {
/**
* @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
* address.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy.
*/
function proxiableUUID() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)
pragma solidity ^0.8.20;
import {IBeacon} from "../beacon/IBeacon.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*/
library ERC1967Utils {
// We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
// This will be fixed in Solidity 0.8.21. At that point we should remove these events.
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev The `implementation` of the proxy is invalid.
*/
error ERC1967InvalidImplementation(address implementation);
/**
* @dev The `admin` of the proxy is invalid.
*/
error ERC1967InvalidAdmin(address admin);
/**
* @dev The `beacon` of the proxy is invalid.
*/
error ERC1967InvalidBeacon(address beacon);
/**
* @dev An upgrade function sees `msg.value > 0` that may be lost.
*/
error ERC1967NonPayable();
/**
* @dev Returns the current implementation address.
*/
function getImplementation() internal view returns (address) {
return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
if (newImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(newImplementation);
}
StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Performs implementation upgrade with additional setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-Upgraded} event.
*/
function upgradeToAndCall(address newImplementation, bytes memory data) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
if (data.length > 0) {
Address.functionDelegateCall(newImplementation, data);
} else {
_checkNonPayable();
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
*/
function getAdmin() internal view returns (address) {
return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
if (newAdmin == address(0)) {
revert ERC1967InvalidAdmin(address(0));
}
StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {IERC1967-AdminChanged} event.
*/
function changeAdmin(address newAdmin) internal {
emit AdminChanged(getAdmin(), newAdmin);
_setAdmin(newAdmin);
}
/**
* @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
* This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
*/
// solhint-disable-next-line private-vars-leading-underscore
bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function getBeacon() internal view returns (address) {
return StorageSlot.getAddressSlot(BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
if (newBeacon.code.length == 0) {
revert ERC1967InvalidBeacon(newBeacon);
}
StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;
address beaconImplementation = IBeacon(newBeacon).implementation();
if (beaconImplementation.code.length == 0) {
revert ERC1967InvalidImplementation(beaconImplementation);
}
}
/**
* @dev Change the beacon and trigger a setup call if data is nonempty.
* This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
* to avoid stuck value in the contract.
*
* Emits an {IERC1967-BeaconUpgraded} event.
*
* CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
* it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
* efficiency.
*/
function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0) {
Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
} else {
_checkNonPayable();
}
}
/**
* @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
* if an upgrade doesn't perform an initialization call.
*/
function _checkNonPayable() private {
if (msg.value > 0) {
revert ERC1967NonPayable();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.20;
/**
* @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 Storage of the initializable contract.
*
* It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
* when using with upgradeable contracts.
*
* @custom:storage-location erc7201:openzeppelin.storage.Initializable
*/
struct InitializableStorage {
/**
* @dev Indicates that the contract has been initialized.
*/
uint64 _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool _initializing;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;
/**
* @dev The contract is already initialized.
*/
error InvalidInitialization();
/**
* @dev The contract is not initializing.
*/
error NotInitializing();
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint64 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 in the context of a constructor an `initializer` may be invoked any
* number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
* production.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
// Cache values to avoid duplicated sloads
bool isTopLevelCall = !$._initializing;
uint64 initialized = $._initialized;
// Allowed calls:
// - initialSetup: the contract is not in the initializing state and no previous version was
// initialized
// - construction: the contract is initialized at version 1 (no reininitialization) and the
// current contract is just being deployed
bool initialSetup = initialized == 0 && isTopLevelCall;
bool construction = initialized == 1 && address(this).code.length == 0;
if (!initialSetup && !construction) {
revert InvalidInitialization();
}
$._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 2**64 - 1 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint64 version) {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing || $._initialized >= version) {
revert InvalidInitialization();
}
$._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() {
_checkInitializing();
_;
}
/**
* @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
*/
function _checkInitializing() internal view virtual {
if (!_isInitializing()) {
revert NotInitializing();
}
}
/**
* @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 {
// solhint-disable-next-line var-name-mixedcase
InitializableStorage storage $ = _getInitializableStorage();
if ($._initializing) {
revert InvalidInitialization();
}
if ($._initialized != type(uint64).max) {
$._initialized = type(uint64).max;
emit Initialized(type(uint64).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint64) {
return _getInitializableStorage()._initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _getInitializableStorage()._initializing;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
assembly {
$.slot := INITIALIZABLE_STORAGE
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
* {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
* a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: 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 address zero.
*
* 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 v5.0.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.20;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be
* reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
import {Initializable} from "../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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.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), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.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, Math.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) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.20;
import {IERC721} from "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @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.
*/
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 `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../utils/introspection/IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(
uint256 tokenId,
uint256 salePrice
) external view returns (address receiver, uint256 royaltyAmount);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.20;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeacon {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {UpgradeableBeacon} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @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 or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* 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.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @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`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) 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 FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @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 towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (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 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
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.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 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.
uint256 twos = denominator & (0 - denominator);
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 (unsignedRoundsUp(rounding) && 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
* towards zero.
*
* 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @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);
}
}
}{
"remappings": [
"@openzeppelin/contracts-upgradeable/=libs/openzeppelin-contracts-upgradeable/contracts/",
"@openzeppelin/contracts/=libs/openzeppelin-contracts/contracts/",
"@openzeppelin/foundry-upgrades/=libs/openzeppelin-foundry-upgrades/src/",
"@contracts/=src/",
"@interfaces/=src/interfaces/",
"ds-test/=libs/ds-test/src/",
"forge-std/=libs/forge-std/src/",
"erc4626-tests/=libs/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
"openzeppelin-contracts-upgradeable/=libs/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=libs/openzeppelin-contracts/",
"openzeppelin-foundry-upgrades/=libs/openzeppelin-foundry-upgrades/src/",
"solidity-stringutils/=libs/openzeppelin-foundry-upgrades/lib/solidity-stringutils/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"string","name":"passportName","type":"string"}],"name":"PassportNameAlreadyClaimed","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenAlreadyRedeemed","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"ValueIsZero","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":[],"name":"DeleteDefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"DeleteTokenRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"string","name":"passportName","type":"string"},{"indexed":false,"internalType":"string","name":"documentId","type":"string"}],"name":"MintedTimePiecePassport","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RedeemedTimePiecePassport","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"indexed":false,"internalType":"struct ERC2981Upgradeable.RoyaltyInfo","name":"newRoyalty","type":"tuple"}],"name":"UpdateDefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"oldDocumentId","type":"string"},{"indexed":false,"internalType":"string","name":"newDocumentId","type":"string"}],"name":"UpdateTokenIdDocumentId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"indexed":false,"internalType":"struct ERC2981Upgradeable.RoyaltyInfo","name":"newRoyalty","type":"tuple"}],"name":"UpdateTokenRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_CONFIGURATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_MINTER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_REDEEMER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ROYALTY_CONFIGURATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_UPDATER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimepiecePassport","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminAddress","type":"address"},{"internalType":"address","name":"minterAddress","type":"address"},{"internalType":"address","name":"configuratorAddress","type":"address"},{"internalType":"address","name":"royaltyConfiguratorAddress","type":"address"},{"internalType":"address","name":"redeemerAddress","type":"address"},{"internalType":"address","name":"updaterAddress","type":"address"},{"internalType":"string","name":"_baseUriString","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"passportName","type":"string"},{"internalType":"string","name":"documentId","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"passportName","type":"string"}],"name":"passportNameUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"redeemTimePiecePassport","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToDocumentId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"documentId","type":"string"}],"name":"updateDocumentId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60a06040523060805234801561001457600080fd5b506080516135b461003e60003960008181611893015281816118bc0152611a2101526135b46000f3fe60806040526004361061027d5760003560e01c80637575eceb1161014f578063aa1b103f116100c1578063d547741f1161007a578063d547741f146107fc578063da049c441461081c578063e985e9c51461083c578063f743f1bf1461085c578063f9743c9e14610890578063fd051b4a146108b057600080fd5b8063aa1b103f14610717578063ad3cb1cc1461072c578063b45a3c0e1461075d578063b88d4fde1461079a578063c87b56dd146107ba578063d39cbbc6146107da57600080fd5b806391d148541161011357806391d148541461066b57806392afc33a1461068b57806395d89b41146106ad57806399071190146106c2578063a217fddf146106e2578063a22cb465146106f757600080fd5b80637575eceb146105b7578063761a49c8146105d75780637dcfdef5146105f757806383d9cfde146106175780638a616bc01461064b57600080fd5b80632f745c59116101f357806352d1902d116101ac57806352d1902d1461050257806355f804b3146105175780635944c753146105375780636352211e1461055757806370a0823114610577578063747583e21461059757600080fd5b80632f745c591461043b57806336568abe1461045b57806342842e0e1461047b5780634f1ef2861461049b5780634f6ccce7146104ae57806350ad9fd1146104ce57600080fd5b8063180b0d7e11610245578063180b0d7e1461035357806318160ddd1461037057806323b872dd1461039c578063248a9ca3146103bc5780632a55205a146103dc5780632f2ff15d1461041b57600080fd5b806301ffc9a71461028257806304634d8d146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461294c565b6108d0565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461299c565b6108e1565b005b3480156102e557600080fd5b506102ee61096a565b6040516102ae9190612a1f565b34801561030757600080fd5b5061031b610316366004612a32565b610a13565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e366004612a4b565b610a28565b34801561035f57600080fd5b5060405161271081526020016102ae565b34801561037c57600080fd5b506000805160206134bf833981519152545b6040519081526020016102ae565b3480156103a857600080fd5b506102d76103b7366004612a75565b610a37565b3480156103c857600080fd5b5061038e6103d7366004612a32565b610ac7565b3480156103e857600080fd5b506103fc6103f7366004612ab1565b610ae9565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561042757600080fd5b506102d7610436366004612ad3565b610bc7565b34801561044757600080fd5b5061038e610456366004612a4b565b610be3565b34801561046757600080fd5b506102d7610476366004612ad3565b610c57565b34801561048757600080fd5b506102d7610496366004612a75565b610c8f565b6102d76104a9366004612b99565b610caa565b3480156104ba57600080fd5b5061038e6104c9366004612a32565b610cc5565b3480156104da57600080fd5b5061038e7f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd81565b34801561050e57600080fd5b5061038e610d3d565b34801561052357600080fd5b506102d7610532366004612c29565b610d5a565b34801561054357600080fd5b506102d7610552366004612c6b565b610da6565b34801561056357600080fd5b5061031b610572366004612a32565b610e37565b34801561058357600080fd5b5061038e610592366004612ca7565b610e42565b3480156105a357600080fd5b506102ee6105b2366004612a32565b610e9e565b3480156105c357600080fd5b506102a26105d2366004612c29565b610ea9565b3480156105e357600080fd5b506102ee6105f2366004612a32565b610f0a565b34801561060357600080fd5b506102d7610612366004612cc2565b610fdb565b34801561062357600080fd5b5061038e7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c0881565b34801561065757600080fd5b506102d7610666366004612a32565b610ffe565b34801561067757600080fd5b506102a2610686366004612ad3565b61101f565b34801561069757600080fd5b5061038e60008051602061355f83398151915281565b3480156106b957600080fd5b506102ee611057565b3480156106ce57600080fd5b506102d76106dd366004612d0e565b611096565b3480156106ee57600080fd5b5061038e600081565b34801561070357600080fd5b506102d7610712366004612d8f565b611139565b34801561072357600080fd5b506102d7611144565b34801561073857600080fd5b506102ee604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561076957600080fd5b506102a2610778366004612a32565b60009081526000805160206134ff833981519152602052604090205460ff1690565b3480156107a657600080fd5b506102d76107b5366004612dcb565b61119f565b3480156107c657600080fd5b506102ee6107d5366004612a32565b6111b6565b3480156107e657600080fd5b5061038e60008051602061351f83398151915281565b34801561080857600080fd5b506102d7610817366004612ad3565b611239565b34801561082857600080fd5b506102a2610837366004612a32565b611255565b34801561084857600080fd5b506102a2610857366004612e33565b611279565b34801561086857600080fd5b5061038e7f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa7281565b34801561089c57600080fd5b506102d76108ab366004612a32565b6112c6565b3480156108bc57600080fd5b506102d76108cb366004612e5d565b61135a565b60006108db8261159a565b92915050565b60008051602061351f8339815191526108f9816115bf565b610902826115cc565b61090c83836115f6565b6040805180820182526001600160a01b03851681526001600160601b038416602082015290517fcc290a69faf1d347181dcdcb6f9400f0b23e4f3d59691685cc8ccea3599c61989161095d91612f04565b60405180910390a1505050565b6060600060008051602061345f8339815191525b905080600001805461098f90612f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90612f2d565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b505050505091505090565b6000610a1e826116a7565b506108db826116df565b610a33828233611719565b5050565b6001600160a01b038216610a6657604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610a73838333611726565b9050836001600160a01b0316816001600160a01b031614610ac1576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610a5d565b50505050565b60009081526000805160206134df833981519152602052604090206001015490565b60008281527fdaedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b01602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829160008051602061353f8339815191529190610b8d57506040805180820190915281546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bac906001600160601b031688612f7d565b610bb69190612f94565b9151945090925050505b9250929050565b610bd082610ac7565b610bd9816115bf565b610ac18383611767565b600060008051602061343f833981519152610bfd84610e42565b8310610c2e5760405163295f44f760e21b81526001600160a01b038516600482015260248101849052604401610a5d565b6001600160a01b0384166000908152602091825260408082208583529092522054905092915050565b6001600160a01b0381163314610c805760405163334bd91960e11b815260040160405180910390fd5b610c8a828261180c565b505050565b610c8a8383836040518060200160405280600081525061119f565b610cb2611888565b610cbb8261192f565b610a338282611959565b600060008051602061343f833981519152610cec6000805160206134bf8339815191525490565b8310610d155760405163295f44f760e21b81526000600482015260248101849052604401610a5d565b806002018381548110610d2a57610d2a612fb6565b9060005260206000200154915050919050565b6000610d47611a16565b5060008051602061347f83398151915290565b7f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa72610d84816115bf565b60008051602061349f83398151915280610d9f84868361301c565b5050505050565b60008051602061351f833981519152610dbe816115bf565b610dc7826115cc565b610dd2848484611a5f565b7f78b8452be1518c778595d1e2d7dc78d65f0b65cb39bfccd334468d0203a37992846040518060400160405280866001600160a01b03168152602001856001600160601b0316815250604051610e299291906130dc565b60405180910390a150505050565b60006108db826116a7565b600060008051602061345f8339815191526001600160a01b038316610e7d576040516322718ad960e21b815260006004820152602401610a5d565b6001600160a01b039092166000908152600390920160205250604090205490565b60606108db826111b6565b60405160009060008051602061349f833981519152907fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000290610eee908690869061310c565b9081526040519081900360200190205460ff1691505092915050565b60008181527fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000160205260409020805460609160008051602061349f83398151915291610f5590612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8190612f2d565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b5050505050915050919050565b60008051602061355f833981519152610ff3816115bf565b610ac1848484611b32565b60008051602061351f833981519152611016816115bf565b610a3382611bd1565b60009182526000805160206134df833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079301805460609160008051602061345f8339815191529161098f90612f2d565b60008051602061355f8339815191526110ae816115bf565b60006110c66000805160206134bf8339815191525490565b90506110d28782611c36565b6110dc8686611c9b565b6110e7818585611b32565b6110f081611d4d565b807f7c6be64375218913ced7619633f140a68571bfde2e0373238982bd7150c878cc8888888888604051611128959493929190613145565b60405180910390a250505050505050565b610a33338383611da1565b60008051602061351f83398151915261115c816115bf565b611173600060008051602061353f83398151915255565b6040517f4a5f27b6a26c1d168b49c56a68ba4bb0aff57144387eb6bd10db8831e9cafdd990600090a150565b6111aa848484610a37565b610ac184848484611e52565b60606111c1826116a7565b5060006111cc611f74565b805190915060008051602061349f833981519152906111fa5760405180602001604052806000815250611231565b81816001016000868152602001908152602001600020604051602001611221929190613189565b6040516020818303038152906040525b949350505050565b61124282610ac7565b61124b816115bf565b610ac1838361180c565b60008181526000805160206134ff833981519152602052604081205460ff166108db565b6001600160a01b0391821660009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c086112f0816115bf565b6112f982611255565b1561131a57604051632e82bdf160e01b815260048101839052602401610a5d565b61132382611f8c565b6040518281527f592b6e1dee5f353c02bdf1e0b75a334922b5f6e1292f750f7d5e286f8e935e459060200160405180910390a15050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156113a05750825b905060008267ffffffffffffffff1660011480156113bd5750303b155b9050811580156113cb575080155b156113e95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561141357845460ff60401b1916600160401b1785555b61146160405180604001604052806011815260200170151a5b59541a5958d954185cdcdc1bdc9d607a1b8152506040518060400160405280600381526020016205450560ec1b815250611fe3565b611469611ff5565b61147460008e611767565b5061148d60008051602061355f8339815191528d611767565b506114b87f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa728c611767565b506114d160008051602061351f8339815191528b611767565b506114fc7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c088a611767565b506115277f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd89611767565b5060008051602061349f83398151915280611543888a8361301c565b5050831561158b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050505050505050565b60006001600160e01b03198216637965db0b60e01b14806108db57506108db82611ffd565b6115c98133612022565b50565b806001600160601b03166000036115c95760405163ba3b5b5960e01b815260040160405180910390fd5b60008051602061353f8339815191526127106001600160601b03831681101561164457604051636f483d0960e01b81526001600160601b038416600482015260248101829052604401610a5d565b6001600160a01b03841661166e57604051635b6cc80560e11b815260006004820152602401610a5d565b50604080518082019091526001600160a01b039093168084526001600160601b039092166020909301839052600160a01b909202179055565b6000806116b38361205b565b90506001600160a01b0381166108db57604051637e27328960e01b815260048101849052602401610a5d565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610c8a8383836001612095565b600061173183611255565b1561175257604051632e82bdf160e01b815260048101849052602401610a5d565b61175d8484846121ab565b90505b9392505050565b60006000805160206134df833981519152611782848461101f565b611802576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556117b83390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019150506108db565b60009150506108db565b60006000805160206134df833981519152611827848461101f565b15611802576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a460019150506108db565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061190f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661190360008051602061347f833981519152546001600160a01b031690565b6001600160a01b031614155b1561192d5760405163703e46dd60e11b815260040160405180910390fd5b565b7f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd610a33816115bf565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156119b3575060408051601f3d908101601f191682019092526119b091810190613218565b60015b6119db57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610a5d565b60008051602061347f8339815191528114611a0c57604051632a87526960e21b815260048101829052602401610a5d565b610c8a83836122a4565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461192d5760405163703e46dd60e11b815260040160405180910390fd5b60008051602061353f8339815191526127106001600160601b038316811015611ab45760405163dfd1fc1b60e01b8152600481018690526001600160601b038416602482015260448101829052606401610a5d565b6001600160a01b038416611ae557604051634b4f842960e11b81526004810186905260006024820152604401610a5d565b506040805180820182526001600160a01b0394851681526001600160601b03938416602080830191825260009788526001909401909352942093519051909116600160a01b029116179055565b611b3b836116a7565b5060008381527fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f10001602052604090819020905160008051602061349f8339815191529185917fcbf78b0514197b42a6b2df6fc0a93b2abca51e122845a19ac2a5b6390a775dfc91611bae9187908790613231565b60405180910390a260008481526001820160205260409020610d9f83858361301c565b60008181527fdaedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b0160205260408120556040518181527f860cf9ca999f8f8c16304a24e9848b1f4f3d203faa1d7d48cf4c31461b9701e8906020015b60405180910390a150565b6001600160a01b038216611c6057604051633250574960e11b815260006004820152602401610a5d565b6000611c6e83836000611726565b90506001600160a01b03811615610c8a576040516339e3563760e11b815260006004820152602401610a5d565b60405160008051602061349f833981519152907fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000290611cdd908590859061310c565b9081526040519081900360200190205460ff1615611d12578282604051632d07b65160e11b8152600401610a5d9291906132d5565b6001816002018484604051611d2892919061310c565b908152604051908190036020019020805491151560ff19909216919091179055505050565b60008181526000805160206134ff8339815191526020908152604091829020805460ff1916905590518281527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429101611c2b565b60008051602061345f8339815191526001600160a01b038316611de257604051630b61174360e31b81526001600160a01b0384166004820152602401610a5d565b6001600160a01b038481166000818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15610ac157604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611e949033908890879087906004016132e9565b6020604051808303816000875af1925050508015611ecf575060408051601f3d908101601f19168201909252611ecc9181019061331c565b60015b611f38573d808015611efd576040519150601f19603f3d011682016040523d82523d6000602084013e611f02565b606091505b508051600003611f3057604051633250574960e11b81526001600160a01b0385166004820152602401610a5d565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610d9f57604051633250574960e11b81526001600160a01b0385166004820152602401610a5d565b6060600060008051602061349f83398151915261097e565b60008181526000805160206134ff8339815191526020908152604091829020805460ff1916600117905590518281527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119101611c2b565b611feb6122fa565b610a338282612343565b61192d6122fa565b60006001600160e01b0319821663152a902d60e11b14806108db57506108db82612374565b61202c828261101f565b610a335760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610a5d565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b60008051602061345f83398151915281806120b857506001600160a01b03831615155b1561217a5760006120c8856116a7565b90506001600160a01b038416158015906120f45750836001600160a01b0316816001600160a01b031614155b801561210757506121058185611279565b155b156121305760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610a5d565b82156121785784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b600093845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6000806121b9858585612399565b90506001600160a01b0381166122425761223d846000805160206134bf833981519152805460008381527f645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0360205260408120829055600182018355919091527fa42f15e5d656f8155fd7419d740a6073999f19cd6e061449ce4a257150545bf20155565b612265565b846001600160a01b0316816001600160a01b0316146122655761226581856124a3565b6001600160a01b0385166122815761227c84612547565b61175d565b846001600160a01b0316816001600160a01b03161461175d5761175d858561261e565b6122ad82612679565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156122f257610c8a82826126de565b610a33612754565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661192d57604051631afcd79f60e31b815260040160405180910390fd5b61234b6122fa565b60008051602061345f833981519152806123658482613339565b5060018101610ac18382613339565b60006001600160e01b0319821663780e9d6360e01b14806108db57506108db82612773565b600060008051602061345f833981519152816123b48561205b565b90506001600160a01b038416156123d0576123d08185876127b3565b6001600160a01b03811615612410576123ed600086600080612095565b6001600160a01b0381166000908152600383016020526040902080546000190190555b6001600160a01b03861615612441576001600160a01b03861660009081526003830160205260409020805460010190555b600085815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b60008051602061343f83398151915260006124bd84610e42565b6000848152600184016020526040902054909150808214612512576001600160a01b03851660009081526020848152604080832085845282528083205484845281842081905583526001860190915290208190555b50600092835260018201602090815260408085208590556001600160a01b039095168452918252838320908352905290812055565b6000805160206134bf8339815191525460008051602061343f83398151915290600090612576906001906133f9565b60008481526003840160205260408120546002850180549394509092849081106125a2576125a2612fb6565b90600052602060002001549050808460020183815481106125c5576125c5612fb6565b6000918252602080832090910192909255828152600386019091526040808220849055868252812055600284018054806126015761260161340c565b600190038181906000526020600020016000905590555050505050565b60008051602061343f8339815191526000600161263a85610e42565b61264491906133f9565b6001600160a01b0390941660009081526020838152604080832087845282528083208690559482526001909301909252502055565b806001600160a01b03163b6000036126af57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610a5d565b60008051602061347f83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516126fb9190613422565b600060405180830381855af49150503d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b509150915061274b858383612817565b95945050505050565b341561192d5760405163b398979f60e01b815260040160405180910390fd5b60006001600160e01b031982166380ac58cd60e01b14806127a457506001600160e01b03198216635b5e139f60e01b145b806108db57506108db82612873565b6127be8383836128a8565b610c8a576001600160a01b0383166127ec57604051637e27328960e01b815260048101829052602401610a5d565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610a5d565b60608261282c576128278261290d565b611760565b815115801561284357506001600160a01b0384163b155b1561286c57604051639996b31560e01b81526001600160a01b0385166004820152602401610a5d565b5080611760565b60006001600160e01b03198216635a2d1e0760e11b14806108db57506301ffc9a760e01b6001600160e01b03198316146108db565b60006001600160a01b0383161580159061175d5750826001600160a01b0316846001600160a01b031614806128e257506128e28484611279565b8061175d5750826001600160a01b03166128fb836116df565b6001600160a01b031614949350505050565b80511561291d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b0319811681146115c957600080fd5b60006020828403121561295e57600080fd5b813561176081612936565b80356001600160a01b038116811461298057600080fd5b919050565b80356001600160601b038116811461298057600080fd5b600080604083850312156129af57600080fd5b6129b883612969565b91506129c660208401612985565b90509250929050565b60005b838110156129ea5781810151838201526020016129d2565b50506000910152565b60008151808452612a0b8160208601602086016129cf565b601f01601f19169290920160200192915050565b60208152600061176060208301846129f3565b600060208284031215612a4457600080fd5b5035919050565b60008060408385031215612a5e57600080fd5b612a6783612969565b946020939093013593505050565b600080600060608486031215612a8a57600080fd5b612a9384612969565b9250612aa160208501612969565b9150604084013590509250925092565b60008060408385031215612ac457600080fd5b50508035926020909101359150565b60008060408385031215612ae657600080fd5b823591506129c660208401612969565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612b1d57600080fd5b813567ffffffffffffffff80821115612b3857612b38612af6565b604051601f8301601f19908116603f01168101908282118183101715612b6057612b60612af6565b81604052838152866020858801011115612b7957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612bac57600080fd5b612bb583612969565b9150602083013567ffffffffffffffff811115612bd157600080fd5b612bdd85828601612b0c565b9150509250929050565b60008083601f840112612bf957600080fd5b50813567ffffffffffffffff811115612c1157600080fd5b602083019150836020828501011115610bc057600080fd5b60008060208385031215612c3c57600080fd5b823567ffffffffffffffff811115612c5357600080fd5b612c5f85828601612be7565b90969095509350505050565b600080600060608486031215612c8057600080fd5b83359250612c9060208501612969565b9150612c9e60408501612985565b90509250925092565b600060208284031215612cb957600080fd5b61176082612969565b600080600060408486031215612cd757600080fd5b83359250602084013567ffffffffffffffff811115612cf557600080fd5b612d0186828701612be7565b9497909650939450505050565b600080600080600060608688031215612d2657600080fd5b612d2f86612969565b9450602086013567ffffffffffffffff80821115612d4c57600080fd5b612d5889838a01612be7565b90965094506040880135915080821115612d7157600080fd5b50612d7e88828901612be7565b969995985093965092949392505050565b60008060408385031215612da257600080fd5b612dab83612969565b915060208301358015158114612dc057600080fd5b809150509250929050565b60008060008060808587031215612de157600080fd5b612dea85612969565b9350612df860208601612969565b925060408501359150606085013567ffffffffffffffff811115612e1b57600080fd5b612e2787828801612b0c565b91505092959194509250565b60008060408385031215612e4657600080fd5b612e4f83612969565b91506129c660208401612969565b60008060008060008060008060e0898b031215612e7957600080fd5b612e8289612969565b9750612e9060208a01612969565b9650612e9e60408a01612969565b9550612eac60608a01612969565b9450612eba60808a01612969565b9350612ec860a08a01612969565b925060c089013567ffffffffffffffff811115612ee457600080fd5b612ef08b828c01612be7565b999c989b5096995094979396929594505050565b81516001600160a01b031681526020808301516001600160601b031690820152604081016108db565b600181811c90821680612f4157607f821691505b602082108103612f6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108db576108db612f67565b600082612fb157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610c8a576000816000526020600020601f850160051c81016020861015612ff55750805b601f850160051c820191505b8181101561301457828155600101613001565b505050505050565b67ffffffffffffffff83111561303457613034612af6565b613048836130428354612f2d565b83612fcc565b6000601f84116001811461307c57600085156130645750838201355b600019600387901b1c1916600186901b178355610d9f565b600083815260209020601f19861690835b828110156130ad578685013582556020948501946001909201910161308d565b50868210156130ca5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b82815260608101611760602083018480516001600160a01b031682526020908101516001600160601b0316910152565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b038616815260606020820181905260009061316a908301868861311c565b828103604084015261317d81858761311c565b98975050505050505050565b60008351602061319d8285602089016129cf565b8184019150600085546131af81612f2d565b600182811680156131c757600181146131dc57613209565b60ff1984168752821515830287019450613209565b89600052602060002060005b84811015613201578154898201529083019087016131e8565b505082870194505b50929998505050505050505050565b60006020828403121561322a57600080fd5b5051919050565b60408152600080855461324381612f2d565b80604086015260606001808416600081146132655760018114613281576132b3565b60ff1985166060890152606084151560051b89010195506132b3565b8a60005260208060002060005b868110156132a95781548b820187015290840190820161328e565b8a01606001975050505b505050505082810360208401526132cb81858761311c565b9695505050505050565b60208152600061175d60208301848661311c565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132cb908301846129f3565b60006020828403121561332e57600080fd5b815161176081612936565b815167ffffffffffffffff81111561335357613353612af6565b613367816133618454612f2d565b84612fcc565b602080601f83116001811461339c57600084156133845750858301515b600019600386901b1c1916600185901b178555613014565b600085815260208120601f198616915b828110156133cb578886015182559484019460019091019084016133ac565b50858210156133e95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156108db576108db612f67565b634e487b7160e01b600052603160045260246000fd5b600082516134348184602087016129cf565b919091019291505056fe645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0080bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f10000645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0202dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800ca6b43e1a9619abbc14cd4c9cb687bfc64fa598db6cb4179c646e2335e3ad2003427f0f6feee50ce2cc8c04fc5f25fa6761b8babc1bc8f8cd60ccf48ce374d58daedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b00aeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b601461a2646970667358221220145ba5db2602c377c3ac8937f08d0418dc0bb6c24d4a819e578eaa7afa32457764736f6c63430008170033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80637575eceb1161014f578063aa1b103f116100c1578063d547741f1161007a578063d547741f146107fc578063da049c441461081c578063e985e9c51461083c578063f743f1bf1461085c578063f9743c9e14610890578063fd051b4a146108b057600080fd5b8063aa1b103f14610717578063ad3cb1cc1461072c578063b45a3c0e1461075d578063b88d4fde1461079a578063c87b56dd146107ba578063d39cbbc6146107da57600080fd5b806391d148541161011357806391d148541461066b57806392afc33a1461068b57806395d89b41146106ad57806399071190146106c2578063a217fddf146106e2578063a22cb465146106f757600080fd5b80637575eceb146105b7578063761a49c8146105d75780637dcfdef5146105f757806383d9cfde146106175780638a616bc01461064b57600080fd5b80632f745c59116101f357806352d1902d116101ac57806352d1902d1461050257806355f804b3146105175780635944c753146105375780636352211e1461055757806370a0823114610577578063747583e21461059757600080fd5b80632f745c591461043b57806336568abe1461045b57806342842e0e1461047b5780634f1ef2861461049b5780634f6ccce7146104ae57806350ad9fd1146104ce57600080fd5b8063180b0d7e11610245578063180b0d7e1461035357806318160ddd1461037057806323b872dd1461039c578063248a9ca3146103bc5780632a55205a146103dc5780632f2ff15d1461041b57600080fd5b806301ffc9a71461028257806304634d8d146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461294c565b6108d0565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461299c565b6108e1565b005b3480156102e557600080fd5b506102ee61096a565b6040516102ae9190612a1f565b34801561030757600080fd5b5061031b610316366004612a32565b610a13565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e366004612a4b565b610a28565b34801561035f57600080fd5b5060405161271081526020016102ae565b34801561037c57600080fd5b506000805160206134bf833981519152545b6040519081526020016102ae565b3480156103a857600080fd5b506102d76103b7366004612a75565b610a37565b3480156103c857600080fd5b5061038e6103d7366004612a32565b610ac7565b3480156103e857600080fd5b506103fc6103f7366004612ab1565b610ae9565b604080516001600160a01b0390931683526020830191909152016102ae565b34801561042757600080fd5b506102d7610436366004612ad3565b610bc7565b34801561044757600080fd5b5061038e610456366004612a4b565b610be3565b34801561046757600080fd5b506102d7610476366004612ad3565b610c57565b34801561048757600080fd5b506102d7610496366004612a75565b610c8f565b6102d76104a9366004612b99565b610caa565b3480156104ba57600080fd5b5061038e6104c9366004612a32565b610cc5565b3480156104da57600080fd5b5061038e7f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd81565b34801561050e57600080fd5b5061038e610d3d565b34801561052357600080fd5b506102d7610532366004612c29565b610d5a565b34801561054357600080fd5b506102d7610552366004612c6b565b610da6565b34801561056357600080fd5b5061031b610572366004612a32565b610e37565b34801561058357600080fd5b5061038e610592366004612ca7565b610e42565b3480156105a357600080fd5b506102ee6105b2366004612a32565b610e9e565b3480156105c357600080fd5b506102a26105d2366004612c29565b610ea9565b3480156105e357600080fd5b506102ee6105f2366004612a32565b610f0a565b34801561060357600080fd5b506102d7610612366004612cc2565b610fdb565b34801561062357600080fd5b5061038e7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c0881565b34801561065757600080fd5b506102d7610666366004612a32565b610ffe565b34801561067757600080fd5b506102a2610686366004612ad3565b61101f565b34801561069757600080fd5b5061038e60008051602061355f83398151915281565b3480156106b957600080fd5b506102ee611057565b3480156106ce57600080fd5b506102d76106dd366004612d0e565b611096565b3480156106ee57600080fd5b5061038e600081565b34801561070357600080fd5b506102d7610712366004612d8f565b611139565b34801561072357600080fd5b506102d7611144565b34801561073857600080fd5b506102ee604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561076957600080fd5b506102a2610778366004612a32565b60009081526000805160206134ff833981519152602052604090205460ff1690565b3480156107a657600080fd5b506102d76107b5366004612dcb565b61119f565b3480156107c657600080fd5b506102ee6107d5366004612a32565b6111b6565b3480156107e657600080fd5b5061038e60008051602061351f83398151915281565b34801561080857600080fd5b506102d7610817366004612ad3565b611239565b34801561082857600080fd5b506102a2610837366004612a32565b611255565b34801561084857600080fd5b506102a2610857366004612e33565b611279565b34801561086857600080fd5b5061038e7f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa7281565b34801561089c57600080fd5b506102d76108ab366004612a32565b6112c6565b3480156108bc57600080fd5b506102d76108cb366004612e5d565b61135a565b60006108db8261159a565b92915050565b60008051602061351f8339815191526108f9816115bf565b610902826115cc565b61090c83836115f6565b6040805180820182526001600160a01b03851681526001600160601b038416602082015290517fcc290a69faf1d347181dcdcb6f9400f0b23e4f3d59691685cc8ccea3599c61989161095d91612f04565b60405180910390a1505050565b6060600060008051602061345f8339815191525b905080600001805461098f90612f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546109bb90612f2d565b8015610a085780601f106109dd57610100808354040283529160200191610a08565b820191906000526020600020905b8154815290600101906020018083116109eb57829003601f168201915b505050505091505090565b6000610a1e826116a7565b506108db826116df565b610a33828233611719565b5050565b6001600160a01b038216610a6657604051633250574960e11b8152600060048201526024015b60405180910390fd5b6000610a73838333611726565b9050836001600160a01b0316816001600160a01b031614610ac1576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610a5d565b50505050565b60009081526000805160206134df833981519152602052604090206001015490565b60008281527fdaedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b01602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829160008051602061353f8339815191529190610b8d57506040805180820190915281546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610bac906001600160601b031688612f7d565b610bb69190612f94565b9151945090925050505b9250929050565b610bd082610ac7565b610bd9816115bf565b610ac18383611767565b600060008051602061343f833981519152610bfd84610e42565b8310610c2e5760405163295f44f760e21b81526001600160a01b038516600482015260248101849052604401610a5d565b6001600160a01b0384166000908152602091825260408082208583529092522054905092915050565b6001600160a01b0381163314610c805760405163334bd91960e11b815260040160405180910390fd5b610c8a828261180c565b505050565b610c8a8383836040518060200160405280600081525061119f565b610cb2611888565b610cbb8261192f565b610a338282611959565b600060008051602061343f833981519152610cec6000805160206134bf8339815191525490565b8310610d155760405163295f44f760e21b81526000600482015260248101849052604401610a5d565b806002018381548110610d2a57610d2a612fb6565b9060005260206000200154915050919050565b6000610d47611a16565b5060008051602061347f83398151915290565b7f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa72610d84816115bf565b60008051602061349f83398151915280610d9f84868361301c565b5050505050565b60008051602061351f833981519152610dbe816115bf565b610dc7826115cc565b610dd2848484611a5f565b7f78b8452be1518c778595d1e2d7dc78d65f0b65cb39bfccd334468d0203a37992846040518060400160405280866001600160a01b03168152602001856001600160601b0316815250604051610e299291906130dc565b60405180910390a150505050565b60006108db826116a7565b600060008051602061345f8339815191526001600160a01b038316610e7d576040516322718ad960e21b815260006004820152602401610a5d565b6001600160a01b039092166000908152600390920160205250604090205490565b60606108db826111b6565b60405160009060008051602061349f833981519152907fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000290610eee908690869061310c565b9081526040519081900360200190205460ff1691505092915050565b60008181527fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000160205260409020805460609160008051602061349f83398151915291610f5590612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8190612f2d565b8015610fce5780601f10610fa357610100808354040283529160200191610fce565b820191906000526020600020905b815481529060010190602001808311610fb157829003601f168201915b5050505050915050919050565b60008051602061355f833981519152610ff3816115bf565b610ac1848484611b32565b60008051602061351f833981519152611016816115bf565b610a3382611bd1565b60009182526000805160206134df833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079301805460609160008051602061345f8339815191529161098f90612f2d565b60008051602061355f8339815191526110ae816115bf565b60006110c66000805160206134bf8339815191525490565b90506110d28782611c36565b6110dc8686611c9b565b6110e7818585611b32565b6110f081611d4d565b807f7c6be64375218913ced7619633f140a68571bfde2e0373238982bd7150c878cc8888888888604051611128959493929190613145565b60405180910390a250505050505050565b610a33338383611da1565b60008051602061351f83398151915261115c816115bf565b611173600060008051602061353f83398151915255565b6040517f4a5f27b6a26c1d168b49c56a68ba4bb0aff57144387eb6bd10db8831e9cafdd990600090a150565b6111aa848484610a37565b610ac184848484611e52565b60606111c1826116a7565b5060006111cc611f74565b805190915060008051602061349f833981519152906111fa5760405180602001604052806000815250611231565b81816001016000868152602001908152602001600020604051602001611221929190613189565b6040516020818303038152906040525b949350505050565b61124282610ac7565b61124b816115bf565b610ac1838361180c565b60008181526000805160206134ff833981519152602052604081205460ff166108db565b6001600160a01b0391821660009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c086112f0816115bf565b6112f982611255565b1561131a57604051632e82bdf160e01b815260048101839052602401610a5d565b61132382611f8c565b6040518281527f592b6e1dee5f353c02bdf1e0b75a334922b5f6e1292f750f7d5e286f8e935e459060200160405180910390a15050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff166000811580156113a05750825b905060008267ffffffffffffffff1660011480156113bd5750303b155b9050811580156113cb575080155b156113e95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561141357845460ff60401b1916600160401b1785555b61146160405180604001604052806011815260200170151a5b59541a5958d954185cdcdc1bdc9d607a1b8152506040518060400160405280600381526020016205450560ec1b815250611fe3565b611469611ff5565b61147460008e611767565b5061148d60008051602061355f8339815191528d611767565b506114b87f9eaf0b4979ef71d092074e60823a72b9d369516834c95b0b5d0b2ecc572eaa728c611767565b506114d160008051602061351f8339815191528b611767565b506114fc7f99833fdbd1f89ee0e890cc76434bf42bc6da3aa3b2985e49d54ced202a154c088a611767565b506115277f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd89611767565b5060008051602061349f83398151915280611543888a8361301c565b5050831561158b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050505050505050565b60006001600160e01b03198216637965db0b60e01b14806108db57506108db82611ffd565b6115c98133612022565b50565b806001600160601b03166000036115c95760405163ba3b5b5960e01b815260040160405180910390fd5b60008051602061353f8339815191526127106001600160601b03831681101561164457604051636f483d0960e01b81526001600160601b038416600482015260248101829052604401610a5d565b6001600160a01b03841661166e57604051635b6cc80560e11b815260006004820152602401610a5d565b50604080518082019091526001600160a01b039093168084526001600160601b039092166020909301839052600160a01b909202179055565b6000806116b38361205b565b90506001600160a01b0381166108db57604051637e27328960e01b815260048101849052602401610a5d565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610c8a8383836001612095565b600061173183611255565b1561175257604051632e82bdf160e01b815260048101849052602401610a5d565b61175d8484846121ab565b90505b9392505050565b60006000805160206134df833981519152611782848461101f565b611802576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556117b83390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019150506108db565b60009150506108db565b60006000805160206134df833981519152611827848461101f565b15611802576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a460019150506108db565b306001600160a01b037f00000000000000000000000057f2d56ef3bb4b4fe100448dc4de2f47774fbd5316148061190f57507f00000000000000000000000057f2d56ef3bb4b4fe100448dc4de2f47774fbd536001600160a01b031661190360008051602061347f833981519152546001600160a01b031690565b6001600160a01b031614155b1561192d5760405163703e46dd60e11b815260040160405180910390fd5b565b7f79045d768ae06769f774e3fcd5ccbe9767617628e47daa12800398064e3a16fd610a33816115bf565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156119b3575060408051601f3d908101601f191682019092526119b091810190613218565b60015b6119db57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610a5d565b60008051602061347f8339815191528114611a0c57604051632a87526960e21b815260048101829052602401610a5d565b610c8a83836122a4565b306001600160a01b037f00000000000000000000000057f2d56ef3bb4b4fe100448dc4de2f47774fbd53161461192d5760405163703e46dd60e11b815260040160405180910390fd5b60008051602061353f8339815191526127106001600160601b038316811015611ab45760405163dfd1fc1b60e01b8152600481018690526001600160601b038416602482015260448101829052606401610a5d565b6001600160a01b038416611ae557604051634b4f842960e11b81526004810186905260006024820152604401610a5d565b506040805180820182526001600160a01b0394851681526001600160601b03938416602080830191825260009788526001909401909352942093519051909116600160a01b029116179055565b611b3b836116a7565b5060008381527fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f10001602052604090819020905160008051602061349f8339815191529185917fcbf78b0514197b42a6b2df6fc0a93b2abca51e122845a19ac2a5b6390a775dfc91611bae9187908790613231565b60405180910390a260008481526001820160205260409020610d9f83858361301c565b60008181527fdaedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b0160205260408120556040518181527f860cf9ca999f8f8c16304a24e9848b1f4f3d203faa1d7d48cf4c31461b9701e8906020015b60405180910390a150565b6001600160a01b038216611c6057604051633250574960e11b815260006004820152602401610a5d565b6000611c6e83836000611726565b90506001600160a01b03811615610c8a576040516339e3563760e11b815260006004820152602401610a5d565b60405160008051602061349f833981519152907fa7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f1000290611cdd908590859061310c565b9081526040519081900360200190205460ff1615611d12578282604051632d07b65160e11b8152600401610a5d9291906132d5565b6001816002018484604051611d2892919061310c565b908152604051908190036020019020805491151560ff19909216919091179055505050565b60008181526000805160206134ff8339815191526020908152604091829020805460ff1916905590518281527ff27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f18429101611c2b565b60008051602061345f8339815191526001600160a01b038316611de257604051630b61174360e31b81526001600160a01b0384166004820152602401610a5d565b6001600160a01b038481166000818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b6001600160a01b0383163b15610ac157604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290611e949033908890879087906004016132e9565b6020604051808303816000875af1925050508015611ecf575060408051601f3d908101601f19168201909252611ecc9181019061331c565b60015b611f38573d808015611efd576040519150601f19603f3d011682016040523d82523d6000602084013e611f02565b606091505b508051600003611f3057604051633250574960e11b81526001600160a01b0385166004820152602401610a5d565b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610d9f57604051633250574960e11b81526001600160a01b0385166004820152602401610a5d565b6060600060008051602061349f83398151915261097e565b60008181526000805160206134ff8339815191526020908152604091829020805460ff1916600117905590518281527f032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a16119101611c2b565b611feb6122fa565b610a338282612343565b61192d6122fa565b60006001600160e01b0319821663152a902d60e11b14806108db57506108db82612374565b61202c828261101f565b610a335760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610a5d565b60009081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b60008051602061345f83398151915281806120b857506001600160a01b03831615155b1561217a5760006120c8856116a7565b90506001600160a01b038416158015906120f45750836001600160a01b0316816001600160a01b031614155b801561210757506121058185611279565b155b156121305760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610a5d565b82156121785784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b600093845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6000806121b9858585612399565b90506001600160a01b0381166122425761223d846000805160206134bf833981519152805460008381527f645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0360205260408120829055600182018355919091527fa42f15e5d656f8155fd7419d740a6073999f19cd6e061449ce4a257150545bf20155565b612265565b846001600160a01b0316816001600160a01b0316146122655761226581856124a3565b6001600160a01b0385166122815761227c84612547565b61175d565b846001600160a01b0316816001600160a01b03161461175d5761175d858561261e565b6122ad82612679565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156122f257610c8a82826126de565b610a33612754565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661192d57604051631afcd79f60e31b815260040160405180910390fd5b61234b6122fa565b60008051602061345f833981519152806123658482613339565b5060018101610ac18382613339565b60006001600160e01b0319821663780e9d6360e01b14806108db57506108db82612773565b600060008051602061345f833981519152816123b48561205b565b90506001600160a01b038416156123d0576123d08185876127b3565b6001600160a01b03811615612410576123ed600086600080612095565b6001600160a01b0381166000908152600383016020526040902080546000190190555b6001600160a01b03861615612441576001600160a01b03861660009081526003830160205260409020805460010190555b600085815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b60008051602061343f83398151915260006124bd84610e42565b6000848152600184016020526040902054909150808214612512576001600160a01b03851660009081526020848152604080832085845282528083205484845281842081905583526001860190915290208190555b50600092835260018201602090815260408085208590556001600160a01b039095168452918252838320908352905290812055565b6000805160206134bf8339815191525460008051602061343f83398151915290600090612576906001906133f9565b60008481526003840160205260408120546002850180549394509092849081106125a2576125a2612fb6565b90600052602060002001549050808460020183815481106125c5576125c5612fb6565b6000918252602080832090910192909255828152600386019091526040808220849055868252812055600284018054806126015761260161340c565b600190038181906000526020600020016000905590555050505050565b60008051602061343f8339815191526000600161263a85610e42565b61264491906133f9565b6001600160a01b0390941660009081526020838152604080832087845282528083208690559482526001909301909252502055565b806001600160a01b03163b6000036126af57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610a5d565b60008051602061347f83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516126fb9190613422565b600060405180830381855af49150503d8060008114612736576040519150601f19603f3d011682016040523d82523d6000602084013e61273b565b606091505b509150915061274b858383612817565b95945050505050565b341561192d5760405163b398979f60e01b815260040160405180910390fd5b60006001600160e01b031982166380ac58cd60e01b14806127a457506001600160e01b03198216635b5e139f60e01b145b806108db57506108db82612873565b6127be8383836128a8565b610c8a576001600160a01b0383166127ec57604051637e27328960e01b815260048101829052602401610a5d565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610a5d565b60608261282c576128278261290d565b611760565b815115801561284357506001600160a01b0384163b155b1561286c57604051639996b31560e01b81526001600160a01b0385166004820152602401610a5d565b5080611760565b60006001600160e01b03198216635a2d1e0760e11b14806108db57506301ffc9a760e01b6001600160e01b03198316146108db565b60006001600160a01b0383161580159061175d5750826001600160a01b0316846001600160a01b031614806128e257506128e28484611279565b8061175d5750826001600160a01b03166128fb836116df565b6001600160a01b031614949350505050565b80511561291d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b0319811681146115c957600080fd5b60006020828403121561295e57600080fd5b813561176081612936565b80356001600160a01b038116811461298057600080fd5b919050565b80356001600160601b038116811461298057600080fd5b600080604083850312156129af57600080fd5b6129b883612969565b91506129c660208401612985565b90509250929050565b60005b838110156129ea5781810151838201526020016129d2565b50506000910152565b60008151808452612a0b8160208601602086016129cf565b601f01601f19169290920160200192915050565b60208152600061176060208301846129f3565b600060208284031215612a4457600080fd5b5035919050565b60008060408385031215612a5e57600080fd5b612a6783612969565b946020939093013593505050565b600080600060608486031215612a8a57600080fd5b612a9384612969565b9250612aa160208501612969565b9150604084013590509250925092565b60008060408385031215612ac457600080fd5b50508035926020909101359150565b60008060408385031215612ae657600080fd5b823591506129c660208401612969565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612b1d57600080fd5b813567ffffffffffffffff80821115612b3857612b38612af6565b604051601f8301601f19908116603f01168101908282118183101715612b6057612b60612af6565b81604052838152866020858801011115612b7957600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215612bac57600080fd5b612bb583612969565b9150602083013567ffffffffffffffff811115612bd157600080fd5b612bdd85828601612b0c565b9150509250929050565b60008083601f840112612bf957600080fd5b50813567ffffffffffffffff811115612c1157600080fd5b602083019150836020828501011115610bc057600080fd5b60008060208385031215612c3c57600080fd5b823567ffffffffffffffff811115612c5357600080fd5b612c5f85828601612be7565b90969095509350505050565b600080600060608486031215612c8057600080fd5b83359250612c9060208501612969565b9150612c9e60408501612985565b90509250925092565b600060208284031215612cb957600080fd5b61176082612969565b600080600060408486031215612cd757600080fd5b83359250602084013567ffffffffffffffff811115612cf557600080fd5b612d0186828701612be7565b9497909650939450505050565b600080600080600060608688031215612d2657600080fd5b612d2f86612969565b9450602086013567ffffffffffffffff80821115612d4c57600080fd5b612d5889838a01612be7565b90965094506040880135915080821115612d7157600080fd5b50612d7e88828901612be7565b969995985093965092949392505050565b60008060408385031215612da257600080fd5b612dab83612969565b915060208301358015158114612dc057600080fd5b809150509250929050565b60008060008060808587031215612de157600080fd5b612dea85612969565b9350612df860208601612969565b925060408501359150606085013567ffffffffffffffff811115612e1b57600080fd5b612e2787828801612b0c565b91505092959194509250565b60008060408385031215612e4657600080fd5b612e4f83612969565b91506129c660208401612969565b60008060008060008060008060e0898b031215612e7957600080fd5b612e8289612969565b9750612e9060208a01612969565b9650612e9e60408a01612969565b9550612eac60608a01612969565b9450612eba60808a01612969565b9350612ec860a08a01612969565b925060c089013567ffffffffffffffff811115612ee457600080fd5b612ef08b828c01612be7565b999c989b5096995094979396929594505050565b81516001600160a01b031681526020808301516001600160601b031690820152604081016108db565b600181811c90821680612f4157607f821691505b602082108103612f6157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108db576108db612f67565b600082612fb157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b601f821115610c8a576000816000526020600020601f850160051c81016020861015612ff55750805b601f850160051c820191505b8181101561301457828155600101613001565b505050505050565b67ffffffffffffffff83111561303457613034612af6565b613048836130428354612f2d565b83612fcc565b6000601f84116001811461307c57600085156130645750838201355b600019600387901b1c1916600186901b178355610d9f565b600083815260209020601f19861690835b828110156130ad578685013582556020948501946001909201910161308d565b50868210156130ca5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b82815260608101611760602083018480516001600160a01b031682526020908101516001600160601b0316910152565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b038616815260606020820181905260009061316a908301868861311c565b828103604084015261317d81858761311c565b98975050505050505050565b60008351602061319d8285602089016129cf565b8184019150600085546131af81612f2d565b600182811680156131c757600181146131dc57613209565b60ff1984168752821515830287019450613209565b89600052602060002060005b84811015613201578154898201529083019087016131e8565b505082870194505b50929998505050505050505050565b60006020828403121561322a57600080fd5b5051919050565b60408152600080855461324381612f2d565b80604086015260606001808416600081146132655760018114613281576132b3565b60ff1985166060890152606084151560051b89010195506132b3565b8a60005260208060002060005b868110156132a95781548b820187015290840190820161328e565b8a01606001975050505b505050505082810360208401526132cb81858761311c565b9695505050505050565b60208152600061175d60208301848661311c565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906132cb908301846129f3565b60006020828403121561332e57600080fd5b815161176081612936565b815167ffffffffffffffff81111561335357613353612af6565b613367816133618454612f2d565b84612fcc565b602080601f83116001811461339c57600084156133845750858301515b600019600386901b1c1916600185901b178555613014565b600085815260208120601f198616915b828110156133cb578886015182559484019460019091019084016133ac565b50858210156133e95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156108db576108db612f67565b634e487b7160e01b600052603160045260246000fd5b600082516134348184602087016129cf565b919091019291505056fe645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0080bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca7d31b242c42507762847a8a0c7302465df2415350c3b3d6f7f0a1e1d1f10000645e039705490088daad89bae25049a34f4a9072d398537b1ab2425f24cbed0202dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800ca6b43e1a9619abbc14cd4c9cb687bfc64fa598db6cb4179c646e2335e3ad2003427f0f6feee50ce2cc8c04fc5f25fa6761b8babc1bc8f8cd60ccf48ce374d58daedc9ab023613a7caf35e703657e986ccfad7e3eb0af93a2853f8d65dd86b00aeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b601461a2646970667358221220145ba5db2602c377c3ac8937f08d0418dc0bb6c24d4a819e578eaa7afa32457764736f6c63430008170033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.