Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 16005119 | 730 days ago | IN | 0 ETH | 0.09255398 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GenArtERC721V4
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "../access/GenArtAccessUpgradable.sol"; import "../interface/IGenArtPaymentSplitterV4.sol"; import "../interface/IGenArtERC721.sol"; /** * @dev GEN.ART ERC721 V4 * Implements the extentions {IERC721Enumerable} and {IERC2981}. * Inherits access control from {GenArtAccess}. */ contract GenArtERC721V4 is ERC721EnumerableUpgradeable, GenArtAccessUpgradable, IGenArtERC721 { struct CollectionInfo { uint256 id; uint256 maxSupply; address artist; } CollectionInfo public _info; address public _royaltyReceiver; address public _mainMinter; mapping(address => bool) public _minters; string private _uri; bool public _reservedMinted = false; bool public _paused = true; /** *@dev Emitted on mint */ event Mint( uint256 tokenId, uint256 collectionId, uint256 membershipId, address to, bytes32 hash ); constructor() { _disableInitializers(); } /** * @dev Initialize contract * Note This method has to be called right after the creation of the clone. * If not, the contract can be taken over by some attacker. */ function initialize( string memory name, string memory symbol, string memory uri, uint256 id, uint256 maxSupply, address admin, address artist, address minter, address paymentSplitter ) public override initializer { __GenArtAccessUpgradable_init(admin, artist); __ERC721_init(name, symbol); _uri = uri; _info = CollectionInfo(id, maxSupply, artist); _minters[minter] = true; _mainMinter = minter; _royaltyReceiver = paymentSplitter; } /** * @dev Helper method to check allowed minters */ function _checkMint() internal view { require(_minters[_msgSender()], "only minter allowed"); } /** * @dev Mint a token * @param to address to mint to * @param membershipId address to mint to */ function mint(address to, uint256 membershipId) external override { _checkMint(); _mintOne(to, membershipId); } /** * @dev Creates the token and its hash */ function _mintOne(address to, uint256 membershipId) internal virtual { uint256 tokenId = _info.id * 100_000 + totalSupply() + 1; bytes32 hash = keccak256( abi.encodePacked(tokenId, block.number, block.timestamp, to) ); _safeMint(to, tokenId); emit Mint(tokenId, _info.id, membershipId, to, hash); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721EnumerableUpgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Get royalty info see {IERC2981} */ function royaltyInfo(uint256, uint256 salePrice_) external view virtual override returns (address, uint256) { return ( _royaltyReceiver, ((IGenArtPaymentSplitterV4(_royaltyReceiver).getTotalShares(1)) * salePrice_) / 10_000 ); } /** *@dev Get collection info */ function getInfo() external view virtual override returns ( string memory, string memory, address, address, uint256, uint256, uint256 ) { return ( name(), symbol(), _info.artist, _mainMinter, _info.id, _info.maxSupply, totalSupply() ); } /** *@dev Get all tokens owned by an address */ function getTokensByOwner(address _owner) external view virtual override returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } /** *@dev Pause and unpause minting */ function setPaused(bool paused) public onlyAdmin { _paused = paused; } /** *@dev Reserved mints can only be called by admins * Only one possible mint. Token will be sent to sender */ function mintReserved() public onlyAdmin { require(!_reservedMinted, "GenArtERC721: reserved already minted"); _mintOne(msg.sender, 0); _reservedMinted = true; } /** *@dev Set receiver of royalties */ function setRoyaltyReceiver(address receiver) public onlyGenArtAdmin { _royaltyReceiver = receiver; } /** *@dev add minter */ function setMinter( address minter, bool enable, bool mainMinter ) public onlyGenArtAdmin { _minters[minter] = enable; if (enable && mainMinter) { _mainMinter = minter; } } /** * @dev Set base uri */ function setBaseURI(string memory uri) public onlyGenArtAdmin { _uri = uri; } /** * @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 overriden in child contracts. */ function _baseURI() internal view virtual override returns (string memory) { return _uri; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /** * @dev This implements access control for owner and admins */ abstract contract GenArtAccessUpgradable is OwnableUpgradeable { mapping(address => bool) public admins; address public genArtAdmin; function __GenArtAccessUpgradable_init(address owner, address admin) internal onlyInitializing { __GenArtAccessUpgradable_init_unchained(owner, admin); } function __GenArtAccessUpgradable_init_unchained( address owner, address admin ) internal onlyInitializing { _transferOwnership(owner); genArtAdmin = owner; admins[admin] = true; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyAdmin() { address sender = _msgSender(); require( owner() == sender || admins[sender], "GenArtAccessUpgradable: caller is not the owner nor admin" ); _; } /** * @dev Throws if called by any account other than the ECLIPSE admin. */ modifier onlyGenArtAdmin() { address sender = _msgSender(); require( genArtAdmin == sender, "GenArtAccessUpgradable: caller is not eclipse admin" ); _; } function setGenArtAdmin(address admin) public onlyGenArtAdmin { genArtAdmin = admin; } function setAdminAccess(address admin, bool access) public onlyGenArtAdmin { admins[admin] = access; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IGenArtPaymentSplitterV4 { function splitPayment() external payable; function getTotalShares(uint8 _payment) external view returns (uint256); function release(address account) external; function updatePayee( uint8 paymentType, uint256 payeeIndex, address newPayee ) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC721MetadataUpgradeable.sol"; interface IGenArtERC721 is IERC721MetadataUpgradeable, IERC2981Upgradeable, IERC721EnumerableUpgradeable { function initialize( string memory name, string memory symbol, string memory uri, uint256 id, uint256 maxSupply, address admin, address artist, address minter, address paymentSplitter ) external; function getTokensByOwner(address _owner) external view returns (uint256[] memory); function getInfo() external view returns ( string memory, string memory, address, address, uint256, uint256, uint256 ); function mint(address to, uint256 membershipId) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal onlyInitializing { } function __ERC721Enumerable_init_unchained() internal onlyInitializing { } // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721EnumerableUpgradeable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and 'to' cannot be the zero address at the same time. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Hook that is called before any batch token transfer. For now this is limited * to batch minting by the {ERC721Consecutive} extension. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeConsecutiveTokenTransfer( address, address, uint256, uint96 size ) internal virtual override { // We revert because enumerability is not supported with consecutive batch minting. // This conditional is only needed to silence spurious warnings about unreachable code. if (size > 0) { revert("ERC721Enumerable: consecutive transfers not supported"); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721Upgradeable.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721Upgradeable.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Internal function that returns the initialized version. Returns `_initialized` */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Internal function that returns the initialized version. Returns `_initializing` */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../token/ERC721/extensions/IERC721EnumerableUpgradeable.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../token/ERC721/extensions/IERC721MetadataUpgradeable.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any (single) token transfer. This includes minting and burning. * See {_beforeConsecutiveTokenTransfer}. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any (single) transfer of tokens. This includes minting and burning. * See {_afterConsecutiveTokenTransfer}. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called before consecutive token transfers. * Calling conditions are similar to {_beforeTokenTransfer}. * * The default implementation include balances updates that extensions such as {ERC721Consecutive} cannot perform * directly. */ function _beforeConsecutiveTokenTransfer( address from, address to, uint256, /*first*/ uint96 size ) internal virtual { if (from != address(0)) { _balances[from] -= size; } if (to != address(0)) { _balances[to] += size; } } /** * @dev Hook that is called after consecutive token transfers. * Calling conditions are similar to {_afterTokenTransfer}. */ function _afterConsecutiveTokenTransfer( address, /*from*/ address, /*to*/ uint256, /*first*/ uint96 /*size*/ ) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collectionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"membershipId","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_info","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"artist","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mainMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reservedMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_royaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genArtAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInfo","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"paymentSplitter","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"membershipId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","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":"admin","type":"address"},{"internalType":"bool","name":"access","type":"bool"}],"name":"setAdminAccess","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"setGenArtAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"enable","type":"bool"},{"internalType":"bool","name":"mainMinter","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"setRoyaltyReceiver","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":"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600061010460006101000a81548160ff021916908315150217905550600161010460016101000a81548160ff0219169083151502179055503480156200004957600080fd5b506200005a6200006060201b60201c565b6200020b565b600060019054906101000a900460ff1615620000b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000aa906200015f565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff161015620001255760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff6040516200011c919062000181565b60405180910390a15b565b6000620001366027836200019e565b91506200014382620001bc565b604082019050919050565b6200015981620001af565b82525050565b600060208201905081810360008301526200017a8162000127565b9050919050565b60006020820190506200019860008301846200014e565b92915050565b600082825260208201905092915050565b600060ff82169050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b61523e806200021b6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80635a9b0b891161013b578063b88d4fde116100b8578063e985e9c51161007c578063e985e9c5146106e1578063ec8c890414610711578063f2fde38b1461071b578063f65a0b3e14610737578063fdc6283f146107535761023d565b8063b88d4fde14610639578063c75efc7214610655578063c87b56dd14610673578063d0ba06f0146106a3578063e637f98f146106c35761023d565b80638dc251e3116100ff5780638dc251e3146105a957806395d89b41146105c557806399863754146105e35780639f1be4af146105ff578063a22cb4651461061d5761023d565b80635a9b0b89146104fd5780636352211e1461052157806370a0823114610551578063715018a6146105815780638da5cb5b1461058b5761023d565b80632a55205a116101c957806340c10f191161018d57806340c10f191461044957806342842e0e14610465578063429b62e5146104815780634f6ccce7146104b157806355f804b3146104e15761023d565b80632a55205a1461036c5780632f5ed3671461039d5780632f745c59146103b95780633575597d146103e957806340398d67146104195761023d565b80630eaef531116102105780630eaef531146102dc57806316c38b3c146102f857806316c61ccc1461031457806318160ddd1461033257806323b872dd146103505761023d565b806301ffc9a71461024257806306fdde0314610272578063081812fc14610290578063095ea7b3146102c0575b600080fd5b61025c60048036038101906102579190613b7d565b610771565b6040516102699190614350565b60405180910390f35b61027a6107eb565b6040516102879190614386565b60405180910390f35b6102aa60048036038101906102a59190613d1e565b61087d565b6040516102b7919061429e565b60405180910390f35b6102da60048036038101906102d59190613b18565b6108c3565b005b6102f660048036038101906102f19190613ac9565b6109db565b005b610312600480360381019061030d9190613b54565b610b27565b005b61031c610c1b565b6040516103299190614350565b60405180910390f35b61033a610c2f565b60405161034791906146c5565b60405180910390f35b61036a600480360381019061036591906139c3565b610c3c565b005b61038660048036038101906103819190613d70565b610c9c565b604051610394929190614305565b60405180910390f35b6103b760048036038101906103b29190613c10565b610d93565b005b6103d360048036038101906103ce9190613b18565b61106c565b6040516103e091906146c5565b60405180910390f35b61040360048036038101906103fe919061395e565b611111565b6040516104109190614350565b60405180910390f35b610433600480360381019061042e919061395e565b611132565b604051610440919061432e565b60405180910390f35b610463600480360381019061045e9190613b18565b61122c565b005b61047f600480360381019061047a91906139c3565b611242565b005b61049b6004803603810190610496919061395e565b611262565b6040516104a89190614350565b60405180910390f35b6104cb60048036038101906104c69190613d1e565b611282565b6040516104d891906146c5565b60405180910390f35b6104fb60048036038101906104f69190613bcf565b611319565b005b6105056113d1565b60405161051897969594939291906143a8565b60405180910390f35b61053b60048036038101906105369190613d1e565b611461565b604051610548919061429e565b60405180910390f35b61056b6004803603810190610566919061395e565b6114e8565b60405161057891906146c5565b60405180910390f35b6105896115a0565b005b6105936115b4565b6040516105a0919061429e565b60405180910390f35b6105c360048036038101906105be919061395e565b6115de565b005b6105cd6116c0565b6040516105da9190614386565b60405180910390f35b6105fd60048036038101906105f8919061395e565b611752565b005b610607611833565b6040516106149190614350565b60405180910390f35b61063760048036038101906106329190613a8d565b611847565b005b610653600480360381019061064e9190613a12565b61185d565b005b61065d6118bf565b60405161066a919061429e565b60405180910390f35b61068d60048036038101906106889190613d1e565b6118e5565b60405161069a9190614386565b60405180910390f35b6106ab61194d565b6040516106ba939291906146e0565b60405180910390f35b6106cb611985565b6040516106d8919061429e565b60405180910390f35b6106fb60048036038101906106f69190613987565b6119ac565b6040516107089190614350565b60405180910390f35b610719611a40565b005b6107356004803603810190610730919061395e565b611b90565b005b610751600480360381019061074c9190613a8d565b611c14565b005b61075b611d0c565b604051610768919061429e565b60405180910390f35b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506107e382611d33565b5b9050919050565b6060606580546107fa90614a61565b80601f016020809104026020016040519081016040528092919081815260200182805461082690614a61565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611dad565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ce82611461565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690614625565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095e611df8565b73ffffffffffffffffffffffffffffffffffffffff16148061098d575061098c81610987611df8565b6119ac565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390614665565b60405180910390fd5b6109d68383611e00565b505050565b60006109e5611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90614645565b60405180910390fd5b8261010260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550828015610ad95750815b15610b21578361010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50505050565b6000610b31611df8565b90508073ffffffffffffffffffffffffffffffffffffffff16610b526115b4565b73ffffffffffffffffffffffffffffffffffffffff161480610bbd575060fb60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906145c5565b60405180910390fd5b8161010460016101000a81548160ff0219169083151502179055505050565b61010460019054906101000a900460ff1681565b6000609980549050905090565b610c4d610c47611df8565b82611eb9565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614425565b60405180910390fd5b610c97838383611f4e565b505050565b60008061010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127108461010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636191643d60016040518263ffffffff1660e01b8152600401610d24919061436b565b60206040518083038186803b158015610d3c57600080fd5b505afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d749190613d47565b610d7e91906148f4565b610d8891906148c3565b915091509250929050565b60008060019054906101000a900460ff16159050808015610dc45750600160008054906101000a900460ff1660ff16105b80610df15750610dd330612244565b158015610df05750600160008054906101000a900460ff1660ff16145b5b610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790614565565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610e6d576001600060016101000a81548160ff0219169083151502179055505b610e778585612267565b610e818a8a6122c4565b876101039080519060200190610e9892919061376d565b5060405180606001604052808881526020018781526020018573ffffffffffffffffffffffffffffffffffffffff1681525060fd600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600161010260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508261010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508161010060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156110605760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611057919061436b565b60405180910390a15b50505050505050505050565b6000611077836114e8565b82106110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614445565b60405180910390fd5b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6101026020528060005260406000206000915054906101000a900460ff1681565b6060600061113f836114e8565b905060008167ffffffffffffffff811115611183577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111b15781602001602082028036833780820191505090505b50905060005b82811015611221576111c9858261106c565b828281518110611202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061121990614ac4565b9150506111b7565b508092505050919050565b611234612321565b61123e82826123b7565b5050565b61125d8383836040518060200160405280600081525061185d565b505050565b60fb6020528060005260406000206000915054906101000a900460ff1681565b600061128c610c2f565b82106112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614685565b60405180910390fd5b60998281548110611307577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000611323611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614645565b60405180910390fd5b8161010390805190602001906113cc92919061376d565b505050565b60608060008060008060006113e46107eb565b6113ec6116c0565b60fd60020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660fd6000015460fd6001015461144a610c2f565b965096509650965096509650965090919293949596565b60008061146d83612472565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614605565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090614545565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a86124af565b6115b2600061252d565b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115e8611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614645565b60405180910390fd5b8161010060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6060606680546116cf90614a61565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb90614a61565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b5050505050905090565b600061175c611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614645565b60405180910390fd5b8160fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61010460009054906101000a900460ff1681565b611859611852611df8565b83836125f3565b5050565b61186e611868611df8565b83611eb9565b6118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614425565b60405180910390fd5b6118b984848484612760565b50505050565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606118f082611dad565b60006118fa6127bc565b9050600081511161191a5760405180602001604052806000815250611945565b806119248461284f565b60405160200161193592919061422c565b6040516020818303038152906040525b915050919050565b60fd8060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b61010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611a4a611df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611a6b6115b4565b73ffffffffffffffffffffffffffffffffffffffff161480611ad6575060fb60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906145c5565b60405180910390fd5b61010460009054906101000a900460ff1615611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90614525565b60405180910390fd5b611b713360006123b7565b600161010460006101000a81548160ff02191690831515021790555050565b611b986124af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90614485565b60405180910390fd5b611c118161252d565b50565b6000611c1e611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790614645565b60405180910390fd5b8160fb60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b61010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611da65750611da582612973565b5b9050919050565b611db681612a55565b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614605565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7383611461565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611ec583611461565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f075750611f0681856119ac565b5b80611f4557508373ffffffffffffffffffffffffffffffffffffffff16611f2d8461087d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f6e82611461565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906144a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906144e5565b60405180910390fd5b61203f838383612a96565b8273ffffffffffffffffffffffffffffffffffffffff1661205f82611461565b73ffffffffffffffffffffffffffffffffffffffff16146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906144a5565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223f838383612baa565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906146a5565b60405180910390fd5b6122c08282612baf565b5050565b600060019054906101000a900460ff16612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a906146a5565b60405180910390fd5b61231d8282612ca4565b5050565b610102600061232e611df8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac906145e5565b60405180910390fd5b565b600060016123c3610c2f565b620186a060fd600001546123d791906148f4565b6123e1919061486d565b6123eb919061486d565b90506000814342866040516020016124069493929190614250565b6040516020818303038152906040528051906020012090506124288483612d25565b7f45bb2f23e93e3ce1e0ac83c6a2a2be3d211bd77b0528874929dd09e8e0bf7d558260fd60000154858785604051612464959493929190614717565b60405180910390a150505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6124b7611df8565b73ffffffffffffffffffffffffffffffffffffffff166124d56115b4565b73ffffffffffffffffffffffffffffffffffffffff161461252b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612522906145a5565b60405180910390fd5b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265990614505565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127539190614350565b60405180910390a3505050565b61276b848484611f4e565b61277784848484612d43565b6127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90614465565b60405180910390fd5b50505050565b606061010380546127cc90614a61565b80601f01602080910402602001604051908101604052809291908181526020018280546127f890614a61565b80156128455780601f1061281a57610100808354040283529160200191612845565b820191906000526020600020905b81548152906001019060200180831161282857829003601f168201915b5050505050905090565b60606000600161285e84612eda565b01905060008167ffffffffffffffff8111156128a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128d55781602001600182028036833780820191505090505b509050600082602001820190505b600115612968578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612952577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b049450600085141561296357612968565b6128e3565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a4e5750612a4d82613111565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612a7783612472565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612aa183838361317b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ae457612adf81613180565b612b23565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b2257612b2183826131c9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b6657612b6181613336565b612ba5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ba457612ba38282613479565b5b5b505050565b505050565b600060019054906101000a900460ff16612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf5906146a5565b60405180910390fd5b612c078261252d565b8160fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160fb60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600060019054906101000a900460ff16612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea906146a5565b60405180910390fd5b8160659080519060200190612d0992919061376d565b508060669080519060200190612d2092919061376d565b505050565b612d3f8282604051806020016040528060008152506134f8565b5050565b6000612d648473ffffffffffffffffffffffffffffffffffffffff16612244565b15612ecd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d8d611df8565b8786866040518563ffffffff1660e01b8152600401612daf94939291906142b9565b602060405180830381600087803b158015612dc957600080fd5b505af1925050508015612dfa57506040513d601f19601f82011682018060405250810190612df79190613ba6565b60015b612e7d573d8060008114612e2a576040519150601f19603f3d011682016040523d82523d6000602084013e612e2f565b606091505b50600081511415612e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6c90614465565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ed2565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f5e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f54577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612fc1576d04ee2d6d415b85acef81000000008381612fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061301657662386f26fc10000838161300c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e1008310613065576305f5e100838161305b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106130b05761271083816130a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106130f957606483816130ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613108576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b609980549050609a600083815260200190815260200160002081905550609981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d6846114e8565b6131e0919061494e565b90506000609860008481526020019081526020016000205490508181146132c5576000609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080609760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816098600083815260200190815260200160002081905550505b6098600084815260200190815260200160002060009055609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160998054905061334a919061494e565b90506000609a60008481526020019081526020016000205490506000609983815481106133a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080609983815481106133e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081609a600083815260200190815260200160002081905550609a600085815260200190815260200160002060009055609980548061345d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613484836114e8565b905081609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806098600084815260200190815260200160002081905550505050565b6135028383613553565b61350f6000848484612d43565b61354e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354590614465565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ba90614585565b60405180910390fd5b6135cc81612a55565b1561360c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613603906144c5565b60405180910390fd5b61361860008383612a96565b61362181612a55565b15613661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613658906144c5565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461376960008383612baa565b5050565b82805461377990614a61565b90600052602060002090601f01602090048101928261379b57600085556137e2565b82601f106137b457805160ff19168380011785556137e2565b828001600101855582156137e2579182015b828111156137e15782518255916020019190600101906137c6565b5b5090506137ef91906137f3565b5090565b5b8082111561380c5760008160009055506001016137f4565b5090565b600061382361381e8461478f565b61476a565b90508281526020810184848401111561383b57600080fd5b613846848285614a1f565b509392505050565b600061386161385c846147c0565b61476a565b90508281526020810184848401111561387957600080fd5b613884848285614a1f565b509392505050565b60008135905061389b816151ac565b92915050565b6000813590506138b0816151c3565b92915050565b6000813590506138c5816151da565b92915050565b6000815190506138da816151da565b92915050565b600082601f8301126138f157600080fd5b8135613901848260208601613810565b91505092915050565b600082601f83011261391b57600080fd5b813561392b84826020860161384e565b91505092915050565b600081359050613943816151f1565b92915050565b600081519050613958816151f1565b92915050565b60006020828403121561397057600080fd5b600061397e8482850161388c565b91505092915050565b6000806040838503121561399a57600080fd5b60006139a88582860161388c565b92505060206139b98582860161388c565b9150509250929050565b6000806000606084860312156139d857600080fd5b60006139e68682870161388c565b93505060206139f78682870161388c565b9250506040613a0886828701613934565b9150509250925092565b60008060008060808587031215613a2857600080fd5b6000613a368782880161388c565b9450506020613a478782880161388c565b9350506040613a5887828801613934565b925050606085013567ffffffffffffffff811115613a7557600080fd5b613a81878288016138e0565b91505092959194509250565b60008060408385031215613aa057600080fd5b6000613aae8582860161388c565b9250506020613abf858286016138a1565b9150509250929050565b600080600060608486031215613ade57600080fd5b6000613aec8682870161388c565b9350506020613afd868287016138a1565b9250506040613b0e868287016138a1565b9150509250925092565b60008060408385031215613b2b57600080fd5b6000613b398582860161388c565b9250506020613b4a85828601613934565b9150509250929050565b600060208284031215613b6657600080fd5b6000613b74848285016138a1565b91505092915050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138b6565b91505092915050565b600060208284031215613bb857600080fd5b6000613bc6848285016138cb565b91505092915050565b600060208284031215613be157600080fd5b600082013567ffffffffffffffff811115613bfb57600080fd5b613c078482850161390a565b91505092915050565b60008060008060008060008060006101208a8c031215613c2f57600080fd5b60008a013567ffffffffffffffff811115613c4957600080fd5b613c558c828d0161390a565b99505060208a013567ffffffffffffffff811115613c7257600080fd5b613c7e8c828d0161390a565b98505060408a013567ffffffffffffffff811115613c9b57600080fd5b613ca78c828d0161390a565b9750506060613cb88c828d01613934565b9650506080613cc98c828d01613934565b95505060a0613cda8c828d0161388c565b94505060c0613ceb8c828d0161388c565b93505060e0613cfc8c828d0161388c565b925050610100613d0e8c828d0161388c565b9150509295985092959850929598565b600060208284031215613d3057600080fd5b6000613d3e84828501613934565b91505092915050565b600060208284031215613d5957600080fd5b6000613d6784828501613949565b91505092915050565b60008060408385031215613d8357600080fd5b6000613d9185828601613934565b9250506020613da285828601613934565b9150509250929050565b6000613db883836141f7565b60208301905092915050565b613dcd81614982565b82525050565b613de4613ddf82614982565b614b0d565b82525050565b6000613df582614801565b613dff818561482f565b9350613e0a836147f1565b8060005b83811015613e3b578151613e228882613dac565b9750613e2d83614822565b925050600181019050613e0e565b5085935050505092915050565b613e5181614994565b82525050565b613e60816149a0565b82525050565b6000613e718261480c565b613e7b8185614840565b9350613e8b818560208601614a2e565b613e9481614bf7565b840191505092915050565b613ea881614a0d565b82525050565b6000613eb982614817565b613ec38185614851565b9350613ed3818560208601614a2e565b613edc81614bf7565b840191505092915050565b6000613ef282614817565b613efc8185614862565b9350613f0c818560208601614a2e565b80840191505092915050565b6000613f25602d83614851565b9150613f3082614c15565b604082019050919050565b6000613f48602b83614851565b9150613f5382614c64565b604082019050919050565b6000613f6b603283614851565b9150613f7682614cb3565b604082019050919050565b6000613f8e602683614851565b9150613f9982614d02565b604082019050919050565b6000613fb1602583614851565b9150613fbc82614d51565b604082019050919050565b6000613fd4601c83614851565b9150613fdf82614da0565b602082019050919050565b6000613ff7602483614851565b915061400282614dc9565b604082019050919050565b600061401a601983614851565b915061402582614e18565b602082019050919050565b600061403d602583614851565b915061404882614e41565b604082019050919050565b6000614060602983614851565b915061406b82614e90565b604082019050919050565b6000614083602e83614851565b915061408e82614edf565b604082019050919050565b60006140a6602083614851565b91506140b182614f2e565b602082019050919050565b60006140c9602083614851565b91506140d482614f57565b602082019050919050565b60006140ec603983614851565b91506140f782614f80565b604082019050919050565b600061410f601383614851565b915061411a82614fcf565b602082019050919050565b6000614132601883614851565b915061413d82614ff8565b602082019050919050565b6000614155602183614851565b915061416082615021565b604082019050919050565b6000614178603383614851565b915061418382615070565b604082019050919050565b600061419b603d83614851565b91506141a6826150bf565b604082019050919050565b60006141be602c83614851565b91506141c98261510e565b604082019050919050565b60006141e1602b83614851565b91506141ec8261515d565b604082019050919050565b614200816149f6565b82525050565b61420f816149f6565b82525050565b614226614221826149f6565b614b31565b82525050565b60006142388285613ee7565b91506142448284613ee7565b91508190509392505050565b600061425c8287614215565b60208201915061426c8286614215565b60208201915061427c8285614215565b60208201915061428c8284613dd3565b60148201915081905095945050505050565b60006020820190506142b36000830184613dc4565b92915050565b60006080820190506142ce6000830187613dc4565b6142db6020830186613dc4565b6142e86040830185614206565b81810360608301526142fa8184613e66565b905095945050505050565b600060408201905061431a6000830185613dc4565b6143276020830184614206565b9392505050565b600060208201905081810360008301526143488184613dea565b905092915050565b60006020820190506143656000830184613e48565b92915050565b60006020820190506143806000830184613e9f565b92915050565b600060208201905081810360008301526143a08184613eae565b905092915050565b600060e08201905081810360008301526143c2818a613eae565b905081810360208301526143d68189613eae565b90506143e56040830188613dc4565b6143f26060830187613dc4565b6143ff6080830186614206565b61440c60a0830185614206565b61441960c0830184614206565b98975050505050505050565b6000602082019050818103600083015261443e81613f18565b9050919050565b6000602082019050818103600083015261445e81613f3b565b9050919050565b6000602082019050818103600083015261447e81613f5e565b9050919050565b6000602082019050818103600083015261449e81613f81565b9050919050565b600060208201905081810360008301526144be81613fa4565b9050919050565b600060208201905081810360008301526144de81613fc7565b9050919050565b600060208201905081810360008301526144fe81613fea565b9050919050565b6000602082019050818103600083015261451e8161400d565b9050919050565b6000602082019050818103600083015261453e81614030565b9050919050565b6000602082019050818103600083015261455e81614053565b9050919050565b6000602082019050818103600083015261457e81614076565b9050919050565b6000602082019050818103600083015261459e81614099565b9050919050565b600060208201905081810360008301526145be816140bc565b9050919050565b600060208201905081810360008301526145de816140df565b9050919050565b600060208201905081810360008301526145fe81614102565b9050919050565b6000602082019050818103600083015261461e81614125565b9050919050565b6000602082019050818103600083015261463e81614148565b9050919050565b6000602082019050818103600083015261465e8161416b565b9050919050565b6000602082019050818103600083015261467e8161418e565b9050919050565b6000602082019050818103600083015261469e816141b1565b9050919050565b600060208201905081810360008301526146be816141d4565b9050919050565b60006020820190506146da6000830184614206565b92915050565b60006060820190506146f56000830186614206565b6147026020830185614206565b61470f6040830184613dc4565b949350505050565b600060a08201905061472c6000830188614206565b6147396020830187614206565b6147466040830186614206565b6147536060830185613dc4565b6147606080830184613e57565b9695505050505050565b6000614774614785565b90506147808282614a93565b919050565b6000604051905090565b600067ffffffffffffffff8211156147aa576147a9614bc8565b5b6147b382614bf7565b9050602081019050919050565b600067ffffffffffffffff8211156147db576147da614bc8565b5b6147e482614bf7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614878826149f6565b9150614883836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148b8576148b7614b3b565b5b828201905092915050565b60006148ce826149f6565b91506148d9836149f6565b9250826148e9576148e8614b6a565b5b828204905092915050565b60006148ff826149f6565b915061490a836149f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494357614942614b3b565b5b828202905092915050565b6000614959826149f6565b9150614964836149f6565b92508282101561497757614976614b3b565b5b828203905092915050565b600061498d826149d6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a1882614a00565b9050919050565b82818337600083830152505050565b60005b83811015614a4c578082015181840152602081019050614a31565b83811115614a5b576000848401525b50505050565b60006002820490506001821680614a7957607f821691505b60208210811415614a8d57614a8c614b99565b5b50919050565b614a9c82614bf7565b810181811067ffffffffffffffff82111715614abb57614aba614bc8565b5b80604052505050565b6000614acf826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0257614b01614b3b565b5b600182019050919050565b6000614b1882614b1f565b9050919050565b6000614b2a82614c08565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e4172744552433732313a20726573657276656420616c7265616479206d60008201527f696e746564000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47656e41727441636365737355706772616461626c653a2063616c6c6572206960008201527f73206e6f7420746865206f776e6572206e6f722061646d696e00000000000000602082015250565b7f6f6e6c79206d696e74657220616c6c6f77656400000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f47656e41727441636365737355706772616461626c653a2063616c6c6572206960008201527f73206e6f742065636c697073652061646d696e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6151b581614982565b81146151c057600080fd5b50565b6151cc81614994565b81146151d757600080fd5b50565b6151e3816149aa565b81146151ee57600080fd5b50565b6151fa816149f6565b811461520557600080fd5b5056fea26469706673582212208775833ccd52c7296ce8759aabb490bc12d3c1b94e0f35cd5444ef83428664bf64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023d5760003560e01c80635a9b0b891161013b578063b88d4fde116100b8578063e985e9c51161007c578063e985e9c5146106e1578063ec8c890414610711578063f2fde38b1461071b578063f65a0b3e14610737578063fdc6283f146107535761023d565b8063b88d4fde14610639578063c75efc7214610655578063c87b56dd14610673578063d0ba06f0146106a3578063e637f98f146106c35761023d565b80638dc251e3116100ff5780638dc251e3146105a957806395d89b41146105c557806399863754146105e35780639f1be4af146105ff578063a22cb4651461061d5761023d565b80635a9b0b89146104fd5780636352211e1461052157806370a0823114610551578063715018a6146105815780638da5cb5b1461058b5761023d565b80632a55205a116101c957806340c10f191161018d57806340c10f191461044957806342842e0e14610465578063429b62e5146104815780634f6ccce7146104b157806355f804b3146104e15761023d565b80632a55205a1461036c5780632f5ed3671461039d5780632f745c59146103b95780633575597d146103e957806340398d67146104195761023d565b80630eaef531116102105780630eaef531146102dc57806316c38b3c146102f857806316c61ccc1461031457806318160ddd1461033257806323b872dd146103505761023d565b806301ffc9a71461024257806306fdde0314610272578063081812fc14610290578063095ea7b3146102c0575b600080fd5b61025c60048036038101906102579190613b7d565b610771565b6040516102699190614350565b60405180910390f35b61027a6107eb565b6040516102879190614386565b60405180910390f35b6102aa60048036038101906102a59190613d1e565b61087d565b6040516102b7919061429e565b60405180910390f35b6102da60048036038101906102d59190613b18565b6108c3565b005b6102f660048036038101906102f19190613ac9565b6109db565b005b610312600480360381019061030d9190613b54565b610b27565b005b61031c610c1b565b6040516103299190614350565b60405180910390f35b61033a610c2f565b60405161034791906146c5565b60405180910390f35b61036a600480360381019061036591906139c3565b610c3c565b005b61038660048036038101906103819190613d70565b610c9c565b604051610394929190614305565b60405180910390f35b6103b760048036038101906103b29190613c10565b610d93565b005b6103d360048036038101906103ce9190613b18565b61106c565b6040516103e091906146c5565b60405180910390f35b61040360048036038101906103fe919061395e565b611111565b6040516104109190614350565b60405180910390f35b610433600480360381019061042e919061395e565b611132565b604051610440919061432e565b60405180910390f35b610463600480360381019061045e9190613b18565b61122c565b005b61047f600480360381019061047a91906139c3565b611242565b005b61049b6004803603810190610496919061395e565b611262565b6040516104a89190614350565b60405180910390f35b6104cb60048036038101906104c69190613d1e565b611282565b6040516104d891906146c5565b60405180910390f35b6104fb60048036038101906104f69190613bcf565b611319565b005b6105056113d1565b60405161051897969594939291906143a8565b60405180910390f35b61053b60048036038101906105369190613d1e565b611461565b604051610548919061429e565b60405180910390f35b61056b6004803603810190610566919061395e565b6114e8565b60405161057891906146c5565b60405180910390f35b6105896115a0565b005b6105936115b4565b6040516105a0919061429e565b60405180910390f35b6105c360048036038101906105be919061395e565b6115de565b005b6105cd6116c0565b6040516105da9190614386565b60405180910390f35b6105fd60048036038101906105f8919061395e565b611752565b005b610607611833565b6040516106149190614350565b60405180910390f35b61063760048036038101906106329190613a8d565b611847565b005b610653600480360381019061064e9190613a12565b61185d565b005b61065d6118bf565b60405161066a919061429e565b60405180910390f35b61068d60048036038101906106889190613d1e565b6118e5565b60405161069a9190614386565b60405180910390f35b6106ab61194d565b6040516106ba939291906146e0565b60405180910390f35b6106cb611985565b6040516106d8919061429e565b60405180910390f35b6106fb60048036038101906106f69190613987565b6119ac565b6040516107089190614350565b60405180910390f35b610719611a40565b005b6107356004803603810190610730919061395e565b611b90565b005b610751600480360381019061074c9190613a8d565b611c14565b005b61075b611d0c565b604051610768919061429e565b60405180910390f35b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506107e382611d33565b5b9050919050565b6060606580546107fa90614a61565b80601f016020809104026020016040519081016040528092919081815260200182805461082690614a61565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611dad565b6069600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ce82611461565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690614625565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095e611df8565b73ffffffffffffffffffffffffffffffffffffffff16148061098d575061098c81610987611df8565b6119ac565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390614665565b60405180910390fd5b6109d68383611e00565b505050565b60006109e5611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e90614645565b60405180910390fd5b8261010260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550828015610ad95750815b15610b21578361010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50505050565b6000610b31611df8565b90508073ffffffffffffffffffffffffffffffffffffffff16610b526115b4565b73ffffffffffffffffffffffffffffffffffffffff161480610bbd575060fb60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906145c5565b60405180910390fd5b8161010460016101000a81548160ff0219169083151502179055505050565b61010460019054906101000a900460ff1681565b6000609980549050905090565b610c4d610c47611df8565b82611eb9565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614425565b60405180910390fd5b610c97838383611f4e565b505050565b60008061010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127108461010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636191643d60016040518263ffffffff1660e01b8152600401610d24919061436b565b60206040518083038186803b158015610d3c57600080fd5b505afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d749190613d47565b610d7e91906148f4565b610d8891906148c3565b915091509250929050565b60008060019054906101000a900460ff16159050808015610dc45750600160008054906101000a900460ff1660ff16105b80610df15750610dd330612244565b158015610df05750600160008054906101000a900460ff1660ff16145b5b610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790614565565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610e6d576001600060016101000a81548160ff0219169083151502179055505b610e778585612267565b610e818a8a6122c4565b876101039080519060200190610e9892919061376d565b5060405180606001604052808881526020018781526020018573ffffffffffffffffffffffffffffffffffffffff1681525060fd600082015181600001556020820151816001015560408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050600161010260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508261010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508161010060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156110605760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611057919061436b565b60405180910390a15b50505050505050505050565b6000611077836114e8565b82106110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90614445565b60405180910390fd5b609760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6101026020528060005260406000206000915054906101000a900460ff1681565b6060600061113f836114e8565b905060008167ffffffffffffffff811115611183577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111b15781602001602082028036833780820191505090505b50905060005b82811015611221576111c9858261106c565b828281518110611202577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061121990614ac4565b9150506111b7565b508092505050919050565b611234612321565b61123e82826123b7565b5050565b61125d8383836040518060200160405280600081525061185d565b505050565b60fb6020528060005260406000206000915054906101000a900460ff1681565b600061128c610c2f565b82106112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490614685565b60405180910390fd5b60998281548110611307577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000611323611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614645565b60405180910390fd5b8161010390805190602001906113cc92919061376d565b505050565b60608060008060008060006113e46107eb565b6113ec6116c0565b60fd60020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660fd6000015460fd6001015461144a610c2f565b965096509650965096509650965090919293949596565b60008061146d83612472565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690614605565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090614545565b60405180910390fd5b606860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a86124af565b6115b2600061252d565b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115e8611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190614645565b60405180910390fd5b8161010060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6060606680546116cf90614a61565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb90614a61565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b5050505050905090565b600061175c611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614645565b60405180910390fd5b8160fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61010460009054906101000a900460ff1681565b611859611852611df8565b83836125f3565b5050565b61186e611868611df8565b83611eb9565b6118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a490614425565b60405180910390fd5b6118b984848484612760565b50505050565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606118f082611dad565b60006118fa6127bc565b9050600081511161191a5760405180602001604052806000815250611945565b806119248461284f565b60405160200161193592919061422c565b6040516020818303038152906040525b915050919050565b60fd8060000154908060010154908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083565b61010060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000606a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000611a4a611df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611a6b6115b4565b73ffffffffffffffffffffffffffffffffffffffff161480611ad6575060fb60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906145c5565b60405180910390fd5b61010460009054906101000a900460ff1615611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90614525565b60405180910390fd5b611b713360006123b7565b600161010460006101000a81548160ff02191690831515021790555050565b611b986124af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90614485565b60405180910390fd5b611c118161252d565b50565b6000611c1e611df8565b90508073ffffffffffffffffffffffffffffffffffffffff1660fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790614645565b60405180910390fd5b8160fb60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b61010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611da65750611da582612973565b5b9050919050565b611db681612a55565b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614605565b60405180910390fd5b50565b600033905090565b816069600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e7383611461565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611ec583611461565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f075750611f0681856119ac565b5b80611f4557508373ffffffffffffffffffffffffffffffffffffffff16611f2d8461087d565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f6e82611461565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906144a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906144e5565b60405180910390fd5b61203f838383612a96565b8273ffffffffffffffffffffffffffffffffffffffff1661205f82611461565b73ffffffffffffffffffffffffffffffffffffffff16146120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906144a5565b60405180910390fd5b6069600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001606860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223f838383612baa565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906146a5565b60405180910390fd5b6122c08282612baf565b5050565b600060019054906101000a900460ff16612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a906146a5565b60405180910390fd5b61231d8282612ca4565b5050565b610102600061232e611df8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac906145e5565b60405180910390fd5b565b600060016123c3610c2f565b620186a060fd600001546123d791906148f4565b6123e1919061486d565b6123eb919061486d565b90506000814342866040516020016124069493929190614250565b6040516020818303038152906040528051906020012090506124288483612d25565b7f45bb2f23e93e3ce1e0ac83c6a2a2be3d211bd77b0528874929dd09e8e0bf7d558260fd60000154858785604051612464959493929190614717565b60405180910390a150505050565b60006067600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6124b7611df8565b73ffffffffffffffffffffffffffffffffffffffff166124d56115b4565b73ffffffffffffffffffffffffffffffffffffffff161461252b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612522906145a5565b60405180910390fd5b565b600060c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265990614505565b60405180910390fd5b80606a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127539190614350565b60405180910390a3505050565b61276b848484611f4e565b61277784848484612d43565b6127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90614465565b60405180910390fd5b50505050565b606061010380546127cc90614a61565b80601f01602080910402602001604051908101604052809291908181526020018280546127f890614a61565b80156128455780601f1061281a57610100808354040283529160200191612845565b820191906000526020600020905b81548152906001019060200180831161282857829003601f168201915b5050505050905090565b60606000600161285e84612eda565b01905060008167ffffffffffffffff8111156128a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128d55781602001600182028036833780820191505090505b509050600082602001820190505b600115612968578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612952577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b049450600085141561296357612968565b6128e3565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a4e5750612a4d82613111565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612a7783612472565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612aa183838361317b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ae457612adf81613180565b612b23565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b2257612b2183826131c9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b6657612b6181613336565b612ba5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ba457612ba38282613479565b5b5b505050565b505050565b600060019054906101000a900460ff16612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf5906146a5565b60405180910390fd5b612c078261252d565b8160fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160fb60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600060019054906101000a900460ff16612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea906146a5565b60405180910390fd5b8160659080519060200190612d0992919061376d565b508060669080519060200190612d2092919061376d565b505050565b612d3f8282604051806020016040528060008152506134f8565b5050565b6000612d648473ffffffffffffffffffffffffffffffffffffffff16612244565b15612ecd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d8d611df8565b8786866040518563ffffffff1660e01b8152600401612daf94939291906142b9565b602060405180830381600087803b158015612dc957600080fd5b505af1925050508015612dfa57506040513d601f19601f82011682018060405250810190612df79190613ba6565b60015b612e7d573d8060008114612e2a576040519150601f19603f3d011682016040523d82523d6000602084013e612e2f565b606091505b50600081511415612e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6c90614465565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ed2565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f5e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f54577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612fc1576d04ee2d6d415b85acef81000000008381612fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061301657662386f26fc10000838161300c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e1008310613065576305f5e100838161305b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106130b05761271083816130a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106130f957606483816130ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310613108576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b609980549050609a600083815260200190815260200160002081905550609981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d6846114e8565b6131e0919061494e565b90506000609860008481526020019081526020016000205490508181146132c5576000609760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080609760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816098600083815260200190815260200160002081905550505b6098600084815260200190815260200160002060009055609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160998054905061334a919061494e565b90506000609a60008481526020019081526020016000205490506000609983815481106133a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080609983815481106133e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081609a600083815260200190815260200160002081905550609a600085815260200190815260200160002060009055609980548061345d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613484836114e8565b905081609760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806098600084815260200190815260200160002081905550505050565b6135028383613553565b61350f6000848484612d43565b61354e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354590614465565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ba90614585565b60405180910390fd5b6135cc81612a55565b1561360c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613603906144c5565b60405180910390fd5b61361860008383612a96565b61362181612a55565b15613661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613658906144c5565b60405180910390fd5b6001606860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816067600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461376960008383612baa565b5050565b82805461377990614a61565b90600052602060002090601f01602090048101928261379b57600085556137e2565b82601f106137b457805160ff19168380011785556137e2565b828001600101855582156137e2579182015b828111156137e15782518255916020019190600101906137c6565b5b5090506137ef91906137f3565b5090565b5b8082111561380c5760008160009055506001016137f4565b5090565b600061382361381e8461478f565b61476a565b90508281526020810184848401111561383b57600080fd5b613846848285614a1f565b509392505050565b600061386161385c846147c0565b61476a565b90508281526020810184848401111561387957600080fd5b613884848285614a1f565b509392505050565b60008135905061389b816151ac565b92915050565b6000813590506138b0816151c3565b92915050565b6000813590506138c5816151da565b92915050565b6000815190506138da816151da565b92915050565b600082601f8301126138f157600080fd5b8135613901848260208601613810565b91505092915050565b600082601f83011261391b57600080fd5b813561392b84826020860161384e565b91505092915050565b600081359050613943816151f1565b92915050565b600081519050613958816151f1565b92915050565b60006020828403121561397057600080fd5b600061397e8482850161388c565b91505092915050565b6000806040838503121561399a57600080fd5b60006139a88582860161388c565b92505060206139b98582860161388c565b9150509250929050565b6000806000606084860312156139d857600080fd5b60006139e68682870161388c565b93505060206139f78682870161388c565b9250506040613a0886828701613934565b9150509250925092565b60008060008060808587031215613a2857600080fd5b6000613a368782880161388c565b9450506020613a478782880161388c565b9350506040613a5887828801613934565b925050606085013567ffffffffffffffff811115613a7557600080fd5b613a81878288016138e0565b91505092959194509250565b60008060408385031215613aa057600080fd5b6000613aae8582860161388c565b9250506020613abf858286016138a1565b9150509250929050565b600080600060608486031215613ade57600080fd5b6000613aec8682870161388c565b9350506020613afd868287016138a1565b9250506040613b0e868287016138a1565b9150509250925092565b60008060408385031215613b2b57600080fd5b6000613b398582860161388c565b9250506020613b4a85828601613934565b9150509250929050565b600060208284031215613b6657600080fd5b6000613b74848285016138a1565b91505092915050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138b6565b91505092915050565b600060208284031215613bb857600080fd5b6000613bc6848285016138cb565b91505092915050565b600060208284031215613be157600080fd5b600082013567ffffffffffffffff811115613bfb57600080fd5b613c078482850161390a565b91505092915050565b60008060008060008060008060006101208a8c031215613c2f57600080fd5b60008a013567ffffffffffffffff811115613c4957600080fd5b613c558c828d0161390a565b99505060208a013567ffffffffffffffff811115613c7257600080fd5b613c7e8c828d0161390a565b98505060408a013567ffffffffffffffff811115613c9b57600080fd5b613ca78c828d0161390a565b9750506060613cb88c828d01613934565b9650506080613cc98c828d01613934565b95505060a0613cda8c828d0161388c565b94505060c0613ceb8c828d0161388c565b93505060e0613cfc8c828d0161388c565b925050610100613d0e8c828d0161388c565b9150509295985092959850929598565b600060208284031215613d3057600080fd5b6000613d3e84828501613934565b91505092915050565b600060208284031215613d5957600080fd5b6000613d6784828501613949565b91505092915050565b60008060408385031215613d8357600080fd5b6000613d9185828601613934565b9250506020613da285828601613934565b9150509250929050565b6000613db883836141f7565b60208301905092915050565b613dcd81614982565b82525050565b613de4613ddf82614982565b614b0d565b82525050565b6000613df582614801565b613dff818561482f565b9350613e0a836147f1565b8060005b83811015613e3b578151613e228882613dac565b9750613e2d83614822565b925050600181019050613e0e565b5085935050505092915050565b613e5181614994565b82525050565b613e60816149a0565b82525050565b6000613e718261480c565b613e7b8185614840565b9350613e8b818560208601614a2e565b613e9481614bf7565b840191505092915050565b613ea881614a0d565b82525050565b6000613eb982614817565b613ec38185614851565b9350613ed3818560208601614a2e565b613edc81614bf7565b840191505092915050565b6000613ef282614817565b613efc8185614862565b9350613f0c818560208601614a2e565b80840191505092915050565b6000613f25602d83614851565b9150613f3082614c15565b604082019050919050565b6000613f48602b83614851565b9150613f5382614c64565b604082019050919050565b6000613f6b603283614851565b9150613f7682614cb3565b604082019050919050565b6000613f8e602683614851565b9150613f9982614d02565b604082019050919050565b6000613fb1602583614851565b9150613fbc82614d51565b604082019050919050565b6000613fd4601c83614851565b9150613fdf82614da0565b602082019050919050565b6000613ff7602483614851565b915061400282614dc9565b604082019050919050565b600061401a601983614851565b915061402582614e18565b602082019050919050565b600061403d602583614851565b915061404882614e41565b604082019050919050565b6000614060602983614851565b915061406b82614e90565b604082019050919050565b6000614083602e83614851565b915061408e82614edf565b604082019050919050565b60006140a6602083614851565b91506140b182614f2e565b602082019050919050565b60006140c9602083614851565b91506140d482614f57565b602082019050919050565b60006140ec603983614851565b91506140f782614f80565b604082019050919050565b600061410f601383614851565b915061411a82614fcf565b602082019050919050565b6000614132601883614851565b915061413d82614ff8565b602082019050919050565b6000614155602183614851565b915061416082615021565b604082019050919050565b6000614178603383614851565b915061418382615070565b604082019050919050565b600061419b603d83614851565b91506141a6826150bf565b604082019050919050565b60006141be602c83614851565b91506141c98261510e565b604082019050919050565b60006141e1602b83614851565b91506141ec8261515d565b604082019050919050565b614200816149f6565b82525050565b61420f816149f6565b82525050565b614226614221826149f6565b614b31565b82525050565b60006142388285613ee7565b91506142448284613ee7565b91508190509392505050565b600061425c8287614215565b60208201915061426c8286614215565b60208201915061427c8285614215565b60208201915061428c8284613dd3565b60148201915081905095945050505050565b60006020820190506142b36000830184613dc4565b92915050565b60006080820190506142ce6000830187613dc4565b6142db6020830186613dc4565b6142e86040830185614206565b81810360608301526142fa8184613e66565b905095945050505050565b600060408201905061431a6000830185613dc4565b6143276020830184614206565b9392505050565b600060208201905081810360008301526143488184613dea565b905092915050565b60006020820190506143656000830184613e48565b92915050565b60006020820190506143806000830184613e9f565b92915050565b600060208201905081810360008301526143a08184613eae565b905092915050565b600060e08201905081810360008301526143c2818a613eae565b905081810360208301526143d68189613eae565b90506143e56040830188613dc4565b6143f26060830187613dc4565b6143ff6080830186614206565b61440c60a0830185614206565b61441960c0830184614206565b98975050505050505050565b6000602082019050818103600083015261443e81613f18565b9050919050565b6000602082019050818103600083015261445e81613f3b565b9050919050565b6000602082019050818103600083015261447e81613f5e565b9050919050565b6000602082019050818103600083015261449e81613f81565b9050919050565b600060208201905081810360008301526144be81613fa4565b9050919050565b600060208201905081810360008301526144de81613fc7565b9050919050565b600060208201905081810360008301526144fe81613fea565b9050919050565b6000602082019050818103600083015261451e8161400d565b9050919050565b6000602082019050818103600083015261453e81614030565b9050919050565b6000602082019050818103600083015261455e81614053565b9050919050565b6000602082019050818103600083015261457e81614076565b9050919050565b6000602082019050818103600083015261459e81614099565b9050919050565b600060208201905081810360008301526145be816140bc565b9050919050565b600060208201905081810360008301526145de816140df565b9050919050565b600060208201905081810360008301526145fe81614102565b9050919050565b6000602082019050818103600083015261461e81614125565b9050919050565b6000602082019050818103600083015261463e81614148565b9050919050565b6000602082019050818103600083015261465e8161416b565b9050919050565b6000602082019050818103600083015261467e8161418e565b9050919050565b6000602082019050818103600083015261469e816141b1565b9050919050565b600060208201905081810360008301526146be816141d4565b9050919050565b60006020820190506146da6000830184614206565b92915050565b60006060820190506146f56000830186614206565b6147026020830185614206565b61470f6040830184613dc4565b949350505050565b600060a08201905061472c6000830188614206565b6147396020830187614206565b6147466040830186614206565b6147536060830185613dc4565b6147606080830184613e57565b9695505050505050565b6000614774614785565b90506147808282614a93565b919050565b6000604051905090565b600067ffffffffffffffff8211156147aa576147a9614bc8565b5b6147b382614bf7565b9050602081019050919050565b600067ffffffffffffffff8211156147db576147da614bc8565b5b6147e482614bf7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614878826149f6565b9150614883836149f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148b8576148b7614b3b565b5b828201905092915050565b60006148ce826149f6565b91506148d9836149f6565b9250826148e9576148e8614b6a565b5b828204905092915050565b60006148ff826149f6565b915061490a836149f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561494357614942614b3b565b5b828202905092915050565b6000614959826149f6565b9150614964836149f6565b92508282101561497757614976614b3b565b5b828203905092915050565b600061498d826149d6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614a1882614a00565b9050919050565b82818337600083830152505050565b60005b83811015614a4c578082015181840152602081019050614a31565b83811115614a5b576000848401525b50505050565b60006002820490506001821680614a7957607f821691505b60208210811415614a8d57614a8c614b99565b5b50919050565b614a9c82614bf7565b810181811067ffffffffffffffff82111715614abb57614aba614bc8565b5b80604052505050565b6000614acf826149f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b0257614b01614b3b565b5b600182019050919050565b6000614b1882614b1f565b9050919050565b6000614b2a82614c08565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f47656e4172744552433732313a20726573657276656420616c7265616479206d60008201527f696e746564000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47656e41727441636365737355706772616461626c653a2063616c6c6572206960008201527f73206e6f7420746865206f776e6572206e6f722061646d696e00000000000000602082015250565b7f6f6e6c79206d696e74657220616c6c6f77656400000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f47656e41727441636365737355706772616461626c653a2063616c6c6572206960008201527f73206e6f742065636c697073652061646d696e00000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6151b581614982565b81146151c057600080fd5b50565b6151cc81614994565b81146151d757600080fd5b50565b6151e3816149aa565b81146151ee57600080fd5b50565b6151fa816149f6565b811461520557600080fd5b5056fea26469706673582212208775833ccd52c7296ce8759aabb490bc12d3c1b94e0f35cd5444ef83428664bf64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
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.