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
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MaviaNFTLand
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./MaviaNFT.sol"; /** * @title Mavia NFT Land * @notice This contract contains base implementation of Mavia NFT Land * @dev This contract is inherited from MaviaNFT * @author mavia.com, reviewed by King * Copyright (c) 2021 Mavia */ contract MaviaNFTLand is MaviaNFT { /** * @dev Upgradable initializer * @param _pUri URI string */ function MaviaNFTLandInit(string memory _pUri) external initializer { __MaviaNFT_init("Mavia Land", "LAND", _pUri); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; /** @title An OpenSea delegate proxy contract which we include for whitelisting. @author OpenSea */ //solhint-disable-next-line no-empty-blocks contract OwnableDelegateProxy { } /** @title An OpenSea proxy registry contract which we include for whitelisting. @author OpenSea */ contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IMintableNFT { function fMint(address _pTo, uint256 _pId) external; /* onlyRole(MINTER_ROLE) */ function fMintType( address _pTo, uint256 _pId, uint256 _pType ) external; /* onlyRole(MINTER_ROLE) */ function fBulkMint( address _pTo, uint256 _pFromId, uint256 _pToId ) external; /* onlyRole(MINTER_ROLE) */ function fBulkMintType( address _pTo, uint256 _pFromId, uint256 _pToId, uint256 _pType ) external; /* onlyRole(MINTER_ROLE) */ }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./IMintableNFT.sol"; import "./IBurnableNFT.sol"; // solhint-disable no-empty-blocks interface IMaviaNFT is IMintableNFT, IBurnableNFT { }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IMaviaCreator { /** * @dev Gets the creator of the token * @param _id ID of the token * @return Address of the creator */ function fGetCreator(uint256 _id) external view returns (address); /** * @dev Sets the creator of the token * @param _id ID of the token * @param _creator Address of the creator for the token */ function fSetCreator(uint256 _id, address _creator) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; interface IBurnableNFT { function fBurn(uint256 _pId) external; /* onlyRole(BURNER_ROLE) || NFT owner */ function fBulkBurn(uint256 _pFromId, uint256 _pToId) external; /* onlyRole(BURNER_ROLE) */ }
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "./interfaces/IMaviaNFT.sol"; import "./interfaces/IMaviaCreator.sol"; import "./utils/OpenseaDelegate.sol"; /** * @title Mavia NFT * @notice This contract contains base implementation of Mavia NFT contracts * @dev This contract will have all the base functions related to ERC721 NFT * @author mavia.com, reviewed by King * Copyright (c) 2021 Mavia */ contract MaviaNFT is ERC721Upgradeable, OwnableUpgradeable, AccessControlUpgradeable, IMaviaNFT, IMaviaCreator { bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant CREATOR_ROLE = keccak256("CREATOR_ROLE"); bytes32 public constant APPROVER_ROLE = keccak256("APPROVER_ROLE"); mapping(uint256 => address) private _creators; mapping(uint256 => uint256) private _ownTime; string public uri; address public proxyRegistryAddress; bool public isOpenSeaProxyActive; mapping(uint256 => uint256) public typeIds; bytes32 public constant EDITOR_ROLE = keccak256("EDITOR_ROLE"); mapping(address => bool) public isInBlacklist; event SetURI(string _uri); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 _interfaceId) public view virtual override(ERC721Upgradeable, AccessControlUpgradeable) returns (bool) { return _interfaceId == type(IMaviaNFT).interfaceId || _interfaceId == type(IMaviaCreator).interfaceId || super.supportsInterface(_interfaceId); } /** * @dev Upgradable initializer * @param _pName Token name * @param _pSymbol Token symbol * @param _pUri URI string */ function __MaviaNFT_init( string memory _pName, string memory _pSymbol, string memory _pUri ) internal initializer { __Ownable_init(); __AccessControl_init(); __ERC721_init(_pName, _pSymbol); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); uri = _pUri; } /** * @dev Return of base uri */ function _baseURI() internal view virtual override returns (string memory) { return uri; } /** * @notice Active opensea proxy - Emergency case * @dev This function is only callable by owner * @param _pProxyRegistryAddress Address of opensea proxy * @param _pIsOpenSeaProxyActive Active opensea proxy by assigning true value */ function fActiveOpenseaProxy(address _pProxyRegistryAddress, bool _pIsOpenSeaProxyActive) external onlyRole(EDITOR_ROLE) { proxyRegistryAddress = _pProxyRegistryAddress; isOpenSeaProxyActive = _pIsOpenSeaProxyActive; } /** * @dev Sets a new URI for all token types, by relying on the token type ID * @dev This function is only callable by owner * @param _pUri String of uri */ function fSetURI(string memory _pUri) external onlyRole(EDITOR_ROLE) { uri = _pUri; emit SetURI(_pUri); } /** * @notice Set nft type * @dev Set NFT type by the contract owner * @param _pTypeId Type id: 0 common, 1 rare, 2 legendary * @param _pIds Token ids * Required Statements * - MaviaNFT:01 Invalid ids */ function fSetTypeIds(uint256 _pTypeId, uint256[] memory _pIds) external onlyRole(EDITOR_ROLE) { require(_pIds.length > 0, "MaviaNFT:01"); for (uint i = 0; i < _pIds.length; i++) { typeIds[_pIds[i]] = _pTypeId; } } /** * @dev Transfer multi NFTs * @param _pTo Address of the token owner * @param _pIds Token ids * Required Statements * - MaviaNFT:01 Invalid ids */ function fBulkTransfer(address _pTo, uint256[] memory _pIds) external { require(_pIds.length > 0, "MaviaNFT:01"); for (uint i = 0; i < _pIds.length; i++) { transferFrom(_msgSender(), _pTo, _pIds[i]); } } /** * @dev Function to add a account to blacklist */ function fSetBlacklist(address _pAccount, bool _pStatus) external onlyRole(EDITOR_ROLE) { require(isInBlacklist[_pAccount] != _pStatus, "0x1"); isInBlacklist[_pAccount] = _pStatus; } /** * @dev Revoke NFT ownership * @param _pOwner Address of the token owner * @param _pIds Token ids * Required Statements * - MaviaNFT:01 Invalid ids */ function fRevokeNFTOwnership(address _pOwner, uint256[] memory _pIds) external onlyRole(EDITOR_ROLE) { require(_pIds.length > 0, "MaviaNFT:01"); for (uint i = 0; i < _pIds.length; i++) { _transfer(_pOwner, _msgSender(), _pIds[i]); } } /** * @dev Mint a new NFT * @param _pTo Address of the token owner * @param _pId Token id */ function fMint(address _pTo, uint256 _pId) external override onlyRole(MINTER_ROLE) { _mint(_pTo, _pId); typeIds[_pId] = 0; } /** * @dev Mint a new NFT * @param _pTo Address of the token owner * @param _pId Token id * @param _pType Token type */ function fMintType( address _pTo, uint256 _pId, uint256 _pType ) external override onlyRole(MINTER_ROLE) { _mint(_pTo, _pId); typeIds[_pId] = _pType; } /** * @dev Mint a Bulk NFT * @param _pTo Address of the token owner * @param _pFromId Token id from * @param _pToId Token id to */ function fBulkMint( address _pTo, uint256 _pFromId, uint256 _pToId ) external override onlyRole(MINTER_ROLE) { for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) { _mint(_pTo, id_); typeIds[id_] = 0; } } /** * @dev Mint a Bulk NFT * @param _pTo Address of the token owner * @param _pFromId token id from * @param _pToId token id to * @param _pType Token type */ function fBulkMintType( address _pTo, uint256 _pFromId, uint256 _pToId, uint256 _pType ) external override onlyRole(MINTER_ROLE) { for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) { _mint(_pTo, id_); typeIds[id_] = _pType; } } /** * @notice Burn an NFT * @dev Burn an NFT by the token owner and Burner role * @param _pId Token id * Required Statements * - MaviaNFT:01 Only owner of NFT or whoever has burner role can burn */ function fBurn(uint256 _pId) external override { require(ownerOf(_pId) == _msgSender() || hasRole(BURNER_ROLE, _msgSender()), "MaviaNFT:01"); _burn(_pId); } /** * @notice Burn a Bulk NFT * @dev Burn an NFT by the token owner and Burner role * @param _pFromId Token id * @param _pToId Token id */ function fBulkBurn(uint256 _pFromId, uint256 _pToId) external override onlyRole(BURNER_ROLE) { for (uint256 id_ = _pFromId; id_ <= _pToId; id_++) { _burn(id_); } } /** * @notice Set creator * @dev Whoever has creator role, can change creator * @param _pId Token ID * @param _pAccount Token creator */ function fSetCreator(uint256 _pId, address _pAccount) external override onlyRole(CREATOR_ROLE) { _creators[_pId] = _pAccount; } /** * @dev Get creator * @param _pId token ID */ function fGetCreator(uint256 _pId) external view override returns (address) { return _creators[_pId]; } /** * @dev Get own Time * @param _pId token ID */ function fGetOwnTime(uint256 _pId) external view returns (uint256) { return _ownTime[_pId]; } /** * @dev See {IERC721-isApprovedForAll}. * @param _pAccount Address of Owner * @param _pOperator Address of operator */ function isApprovedForAll(address _pAccount, address _pOperator) public view override returns (bool) { ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (isOpenSeaProxyActive && address(proxyRegistry.proxies(_pAccount)) == _pOperator) { return true; } return hasRole(APPROVER_ROLE, _pOperator) || super.isApprovedForAll(_pAccount, _pOperator); } /** * @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 _pFrom, address _pTo, uint256 _pTokenId ) internal override { require(!isInBlacklist[_pFrom] && !isInBlacklist[_pTo], "NFT: Blacklist"); _ownTime[_pTokenId] = block.timestamp; super._transfer(_pFrom, _pTo, _pTokenId); } /** * @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 _pTo, uint256 _pTokenId) internal override { _creators[_pTokenId] = _pTo; _ownTime[_pTokenId] = block.timestamp; super._mint(_pTo, _pTokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 _pTokenId) internal override { _ownTime[_pTokenId] = block.timestamp; super._burn(_pTokenId); } }
// SPDX-License-Identifier: MIT 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 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 initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT 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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer { _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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overriden 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(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 of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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` 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 {} uint256[44] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 a proxied contract can't have 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. * * 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. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT 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 initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"}],"name":"SetURI","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":"APPROVER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CREATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EDITOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_pUri","type":"string"}],"name":"MaviaNFTLandInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pProxyRegistryAddress","type":"address"},{"internalType":"bool","name":"_pIsOpenSeaProxyActive","type":"bool"}],"name":"fActiveOpenseaProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"}],"name":"fBulkBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"}],"name":"fBulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pFromId","type":"uint256"},{"internalType":"uint256","name":"_pToId","type":"uint256"},{"internalType":"uint256","name":"_pType","type":"uint256"}],"name":"fBulkMintType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256[]","name":"_pIds","type":"uint256[]"}],"name":"fBulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fGetCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fGetOwnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pId","type":"uint256"}],"name":"fMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pTo","type":"address"},{"internalType":"uint256","name":"_pId","type":"uint256"},{"internalType":"uint256","name":"_pType","type":"uint256"}],"name":"fMintType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pOwner","type":"address"},{"internalType":"uint256[]","name":"_pIds","type":"uint256[]"}],"name":"fRevokeNFTOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pAccount","type":"address"},{"internalType":"bool","name":"_pStatus","type":"bool"}],"name":"fSetBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pId","type":"uint256"},{"internalType":"address","name":"_pAccount","type":"address"}],"name":"fSetCreator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pTypeId","type":"uint256"},{"internalType":"uint256[]","name":"_pIds","type":"uint256[]"}],"name":"fSetTypeIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_pUri","type":"string"}],"name":"fSetURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pAccount","type":"address"},{"internalType":"address","name":"_pOperator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isInBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenSeaProxyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612ec5806100206000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c80638da5cb5b11610167578063b88d4fde116100ce578063d547741f11610087578063d547741f14610671578063d69e212214610684578063e985e9c514610697578063eac989f8146106aa578063f1ee4c5b146106b2578063f2fde38b146106c557600080fd5b8063b88d4fde146105e7578063c46cddf8146105fa578063c48a6f851461060d578063c87b56dd14610636578063cd7c032614610649578063d53913931461065c57600080fd5b8063a22cb46511610120578063a22cb46514610566578063a3b5004714610579578063a602382314610599578063a853211a146105ac578063aa2f7335146105c1578063add0ca68146105d457600080fd5b80638da5cb5b146104fb57806391d148541461050c57806395d89b411461051f578063977027ec146105275780639caf9b001461053a578063a217fddf1461055e57600080fd5b80634245962b1161020b5780636e3ca37b116101c45780636e3ca37b1461048057806370a0823114610493578063715018a6146104a657806374a62ffa146104ae5780637a191851146104c15780638aeda25a146104d457600080fd5b80634245962b146103f957806342842e0e1461042057806345d594d8146104335780635e0cc644146104465780636352211e146104595780636c529a261461046c57600080fd5b806323b872dd1161025d57806323b872dd14610363578063248a9ca314610376578063282c51f3146103995780632ba78b3d146103c05780632f2ff15d146103d357806336568abe146103e657600080fd5b806301ffc9a7146102a557806306fdde03146102cd578063081812fc146102e2578063095ea7b31461030d57806309b519ac14610322578063132f060614610335575b600080fd5b6102b86102b3366004612982565b6106d8565b60405190151581526020015b60405180910390f35b6102d5610716565b6040516102c49190612b79565b6102f56102f0366004612946565b6107a8565b6040516001600160a01b0390911681526020016102c4565b61032061031b3660046128ad565b610842565b005b61032061033036600461290c565b610958565b610355610343366004612946565b600090815260fc602052604090205490565b6040519081526020016102c4565b610320610371366004612771565b6109af565b610355610384366004612946565b600090815260c9602052604090206001015490565b6103557f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6103206103ce366004612946565b6109e0565b6103206103e136600461295e565b610a4c565b6103206103f436600461295e565b610a72565b6103557f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf81565b61032061042e366004612771565b610af0565b61032061044136600461295e565b610b0b565b6103206104543660046128d8565b610b65565b6102f5610467366004612946565b610bb9565b60fe546102b890600160a01b900460ff1681565b61032061048e366004612a1c565b610c30565b6103556104a136600461271d565b610cce565b610320610d55565b6103206104bc3660046129d6565b610dbb565b6103206104cf36600461282e565b610e70565b6103557f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f81565b6097546001600160a01b03166102f5565b6102b861051a36600461295e565b610ee1565b6102d5610f0c565b61032061053536600461287c565b610f1b565b6102b861054836600461271d565b6101006020526000908152604090205460ff1681565b610355600081565b61032061057436600461287c565b610f62565b610355610587366004612946565b60ff6020526000908152604090205481565b6103206105a73660046128ad565b611027565b610355600080516020612e7083398151915281565b6103206105cf3660046129d6565b61105d565b6103206105e236600461287c565b6110c5565b6103206105f53660046127b1565b611161565b610320610608366004612a4b565b611193565b6102f561061b366004612946565b600090815260fb60205260409020546001600160a01b031690565b6102d5610644366004612946565b6111e2565b60fe546102f5906001600160a01b031681565b610355600080516020612e5083398151915281565b61032061067f36600461295e565b6112bd565b61032061069236600461282e565b6112e3565b6102b86106a5366004612739565b61136d565b6102d5611489565b6103206106c03660046128d8565b611517565b6103206106d336600461271d565b61154e565b60006001600160e01b03198216158061070157506001600160e01b0319821663815ffb5d60e01b145b80610710575061071082611616565b92915050565b60606065805461072590612d78565b80601f016020809104026020016040519081016040528092919081815260200182805461075190612d78565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166108265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061084d82610bb9565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081d565b336001600160a01b03821614806108d757506108d7813361136d565b6109495760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081d565b610953838361163b565b505050565b600080516020612e5083398151915261097181336116a9565b835b8381116109a757610984868261170d565b600081815260ff602052604090208390558061099f81612db3565b915050610973565b505050505050565b6109b9338261174b565b6109d55760405162461bcd60e51b815260040161081d90612c51565b61095383838361181a565b336109ea82610bb9565b6001600160a01b03161480610a245750610a247f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610ee1565b610a405760405162461bcd60e51b815260040161081d90612c2c565b610a49816118b7565b50565b600082815260c96020526040902060010154610a6881336116a9565b61095383836118d1565b6001600160a01b0381163314610ae25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161081d565b610aec8282611957565b5050565b61095383838360405180602001604052806000815250611161565b7f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f610b3681336116a9565b50600091825260fb602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600080516020612e50833981519152610b7e81336116a9565b825b828111610bb257610b91858261170d565b600081815260ff602052604081205580610baa81612db3565b915050610b80565b5050505050565b6000818152606760205260408120546001600160a01b0316806107105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081d565b600080516020612e70833981519152610c4981336116a9565b6000825111610c6a5760405162461bcd60e51b815260040161081d90612c2c565b60005b8251811015610cc8578360ff6000858481518110610c9b57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610cc090612db3565b915050610c6d565b50505050565b60006001600160a01b038216610d395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081d565b506001600160a01b031660009081526068602052604090205490565b6097546001600160a01b03163314610daf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081d565b610db960006119be565b565b600054610100900460ff1680610dd4575060005460ff16155b610df05760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015610e12576000805461ffff19166101011790555b610e5b6040518060400160405280600a81526020016913585d9a584813185b9960b21b815250604051806040016040528060048152602001631310539160e21b81525084611a10565b8015610aec576000805461ff00191690555050565b6000815111610e915760405162461bcd60e51b815260040161081d90612c2c565b60005b815181101561095357610ecf3384848481518110610ec257634e487b7160e01b600052603260045260246000fd5b60200260200101516109af565b80610ed981612db3565b915050610e94565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461072590612d78565b600080516020612e70833981519152610f3481336116a9565b5060fe8054911515600160a01b026001600160a81b03199092166001600160a01b0390931692909217179055565b6001600160a01b038216331415610fbb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081d565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080516020612e5083398151915261104081336116a9565b61104a838361170d565b50600090815260ff602052604081205550565b600080516020612e7083398151915261107681336116a9565b81516110899060fd9060208501906125a9565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a826040516110b99190612b79565b60405180910390a15050565b600080516020612e708339815191526110de81336116a9565b6001600160a01b0383166000908152610100602052604090205460ff16151582151514156111345760405162461bcd60e51b815260206004820152600360248201526230783160e81b604482015260640161081d565b506001600160a01b0391909116600090815261010060205260409020805460ff1916911515919091179055565b61116b338361174b565b6111875760405162461bcd60e51b815260040161081d90612c51565b610cc884848484611ab7565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486111be81336116a9565b825b828111610cc8576111d0816118b7565b806111da81612db3565b9150506111c0565b6000818152606760205260409020546060906001600160a01b03166112615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081d565b600061126b611aea565b9050600081511161128b57604051806020016040528060008152506112b6565b8061129584611af9565b6040516020016112a6929190612a98565b6040516020818303038152906040525b9392505050565b600082815260c960205260409020600101546112d981336116a9565b6109538383611957565b600080516020612e708339815191526112fc81336116a9565b600082511161131d5760405162461bcd60e51b815260040161081d90612c2c565b60005b8251811015610cc85761135b843385848151811061134e57634e487b7160e01b600052603260045260246000fd5b602002602001015161181a565b8061136581612db3565b915050611320565b60fe546000906001600160a01b03811690600160a01b900460ff168015611418575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b1580156113d557600080fd5b505afa1580156113e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140d91906129ba565b6001600160a01b0316145b15611427576001915050610710565b6114517f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf84610ee1565b8061148157506001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60fd805461149690612d78565b80601f01602080910402602001604051908101604052809291908181526020018280546114c290612d78565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b600080516020612e5083398151915261153081336116a9565b61153a848461170d565b50600091825260ff60205260409091205550565b6097546001600160a01b031633146115a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081d565b6001600160a01b03811661160d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a49816119be565b60006001600160e01b03198216637965db0b60e01b1480610710575061071082611c13565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167082610bb9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116b38282610ee1565b610aec576116cb816001600160a01b03166014611c63565b6116d6836020611c63565b6040516020016116e7929190612ac7565b60408051601f198184030181529082905262461bcd60e51b825261081d91600401612b79565b600081815260fb6020908152604080832080546001600160a01b0319166001600160a01b03871617905560fc9091529020429055610aec8282611e45565b6000818152606760205260408120546001600160a01b03166117c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081d565b60006117cf83610bb9565b9050806001600160a01b0316846001600160a01b0316148061180a5750836001600160a01b03166117ff846107a8565b6001600160a01b0316145b806114815750611481818561136d565b6001600160a01b0383166000908152610100602052604090205460ff1615801561185e57506001600160a01b0382166000908152610100602052604090205460ff16155b61189b5760405162461bcd60e51b815260206004820152600e60248201526d1391950e88109b1858dadb1a5cdd60921b604482015260640161081d565b600081815260fc60205260409020429055610953838383611f87565b600081815260fc60205260409020429055610a4981612127565b6118db8282610ee1565b610aec57600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556119133390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119618282610ee1565b15610aec57600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611a29575060005460ff16155b611a455760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015611a67576000805461ffff19166101011790555b611a6f6121c2565b611a7761223d565b611a8184846122ac565b611a8c600033612333565b8151611a9f9060fd9060208501906125a9565b508015610cc8576000805461ff001916905550505050565b611ac284848461181a565b611ace8484848461233d565b610cc85760405162461bcd60e51b815260040161081d90612b8c565b606060fd805461072590612d78565b606081611b1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b475780611b3181612db3565b9150611b409050600a83612ceb565b9150611b21565b60008167ffffffffffffffff811115611b7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b9a576020820181803683370190505b5090505b841561148157611baf600183612d1e565b9150611bbc600a86612dce565b611bc7906030612cd3565b60f81b818381518110611bea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c0c600a86612ceb565b9450611b9e565b60006001600160e01b031982166380ac58cd60e01b1480611c4457506001600160e01b03198216635b5e139f60e01b145b8061071057506301ffc9a760e01b6001600160e01b0319831614610710565b60606000611c72836002612cff565b611c7d906002612cd3565b67ffffffffffffffff811115611ca357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ccd576020820181803683370190505b509050600360fc1b81600081518110611cf657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d3357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d57846002612cff565b611d62906001612cd3565b90505b6001811115611df6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611da457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611dc857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611def81612d61565b9050611d65565b5083156112b65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161081d565b6001600160a01b038216611e9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081d565b6000818152606760205260409020546001600160a01b031615611f005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081d565b6001600160a01b0382166000908152606860205260408120805460019290611f29908490612cd3565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316611f9a82610bb9565b6001600160a01b0316146120025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081d565b6001600160a01b0382166120645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b61206f60008261163b565b6001600160a01b0383166000908152606860205260408120805460019290612098908490612d1e565b90915550506001600160a01b03821660009081526068602052604081208054600192906120c6908490612cd3565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061213282610bb9565b905061213f60008361163b565b6001600160a01b0381166000908152606860205260408120805460019290612168908490612d1e565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16806121db575060005460ff16155b6121f75760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612219576000805461ffff19166101011790555b61222161244a565b6122296124b4565b8015610a49576000805461ff001916905550565b600054610100900460ff1680612256575060005460ff16155b6122725760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612294576000805461ffff19166101011790555b61229c61244a565b6122a461244a565b61222961244a565b600054610100900460ff16806122c5575060005460ff16155b6122e15760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612303576000805461ffff19166101011790555b61230b61244a565b61231361244a565b61231d8383612514565b8015610953576000805461ff0019169055505050565b610aec82826118d1565b60006001600160a01b0384163b1561243f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612381903390899088908890600401612b3c565b602060405180830381600087803b15801561239b57600080fd5b505af19250505080156123cb575060408051601f3d908101601f191682019092526123c89181019061299e565b60015b612425573d8080156123f9576040519150601f19603f3d011682016040523d82523d6000602084013e6123fe565b606091505b50805161241d5760405162461bcd60e51b815260040161081d90612b8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611481565b506001949350505050565b600054610100900460ff1680612463575060005460ff16155b61247f5760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612229576000805461ffff19166101011790558015610a49576000805461ff001916905550565b600054610100900460ff16806124cd575060005460ff16155b6124e95760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff1615801561250b576000805461ffff19166101011790555b612229336119be565b600054610100900460ff168061252d575060005460ff16155b6125495760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff1615801561256b576000805461ffff19166101011790555b825161257e9060659060208601906125a9565b5081516125929060669060208501906125a9565b508015610953576000805461ff0019169055505050565b8280546125b590612d78565b90600052602060002090601f0160209004810192826125d7576000855561261d565b82601f106125f057805160ff191683800117855561261d565b8280016001018555821561261d579182015b8281111561261d578251825591602001919060010190612602565b5061262992915061262d565b5090565b5b80821115612629576000815560010161262e565b600067ffffffffffffffff83111561265c5761265c612e0e565b61266f601f8401601f1916602001612ca2565b905082815283838301111561268357600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126aa578081fd5b8135602067ffffffffffffffff8211156126c6576126c6612e0e565b8160051b6126d5828201612ca2565b8381528281019086840183880185018910156126ef578687fd5b8693505b858410156127115780358352600193909301929184019184016126f3565b50979650505050505050565b60006020828403121561272e578081fd5b81356112b681612e24565b6000806040838503121561274b578081fd5b823561275681612e24565b9150602083013561276681612e24565b809150509250929050565b600080600060608486031215612785578081fd5b833561279081612e24565b925060208401356127a081612e24565b929592945050506040919091013590565b600080600080608085870312156127c6578081fd5b84356127d181612e24565b935060208501356127e181612e24565b925060408501359150606085013567ffffffffffffffff811115612803578182fd5b8501601f81018713612813578182fd5b61282287823560208401612642565b91505092959194509250565b60008060408385031215612840578182fd5b823561284b81612e24565b9150602083013567ffffffffffffffff811115612866578182fd5b6128728582860161269a565b9150509250929050565b6000806040838503121561288e578182fd5b823561289981612e24565b915060208301358015158114612766578182fd5b600080604083850312156128bf578182fd5b82356128ca81612e24565b946020939093013593505050565b6000806000606084860312156128ec578283fd5b83356128f781612e24565b95602085013595506040909401359392505050565b60008060008060808587031215612921578384fd5b843561292c81612e24565b966020860135965060408601359560600135945092505050565b600060208284031215612957578081fd5b5035919050565b60008060408385031215612970578182fd5b82359150602083013561276681612e24565b600060208284031215612993578081fd5b81356112b681612e39565b6000602082840312156129af578081fd5b81516112b681612e39565b6000602082840312156129cb578081fd5b81516112b681612e24565b6000602082840312156129e7578081fd5b813567ffffffffffffffff8111156129fd578182fd5b8201601f81018413612a0d578182fd5b61148184823560208401612642565b60008060408385031215612a2e578182fd5b82359150602083013567ffffffffffffffff811115612866578182fd5b60008060408385031215612a5d578182fd5b50508035926020909101359150565b60008151808452612a84816020860160208601612d35565b601f01601f19169290920160200192915050565b60008351612aaa818460208801612d35565b835190830190612abe818360208801612d35565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612aff816017850160208801612d35565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612b30816028840160208801612d35565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6f90830184612a6c565b9695505050505050565b6020815260006112b66020830184612a6c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252600b908201526a4d617669614e46543a303160a81b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ccb57612ccb612e0e565b604052919050565b60008219821115612ce657612ce6612de2565b500190565b600082612cfa57612cfa612df8565b500490565b6000816000190483118215151615612d1957612d19612de2565b500290565b600082821015612d3057612d30612de2565b500390565b60005b83811015612d50578181015183820152602001612d38565b83811115610cc85750506000910152565b600081612d7057612d70612de2565b506000190190565b600181811c90821680612d8c57607f821691505b60208210811415612dad57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc757612dc7612de2565b5060010190565b600082612ddd57612ddd612df8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a4957600080fd5b6001600160e01b031981168114610a4957600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a621d1167972f621f75904fb065136bc8b53c7ba1c60ccd3a7758fbee465851e9ca2646970667358221220d1b324c3fde5261e35610da44d8b745d9ce5734ffeda4a695c047d43d194dda664736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102a05760003560e01c80638da5cb5b11610167578063b88d4fde116100ce578063d547741f11610087578063d547741f14610671578063d69e212214610684578063e985e9c514610697578063eac989f8146106aa578063f1ee4c5b146106b2578063f2fde38b146106c557600080fd5b8063b88d4fde146105e7578063c46cddf8146105fa578063c48a6f851461060d578063c87b56dd14610636578063cd7c032614610649578063d53913931461065c57600080fd5b8063a22cb46511610120578063a22cb46514610566578063a3b5004714610579578063a602382314610599578063a853211a146105ac578063aa2f7335146105c1578063add0ca68146105d457600080fd5b80638da5cb5b146104fb57806391d148541461050c57806395d89b411461051f578063977027ec146105275780639caf9b001461053a578063a217fddf1461055e57600080fd5b80634245962b1161020b5780636e3ca37b116101c45780636e3ca37b1461048057806370a0823114610493578063715018a6146104a657806374a62ffa146104ae5780637a191851146104c15780638aeda25a146104d457600080fd5b80634245962b146103f957806342842e0e1461042057806345d594d8146104335780635e0cc644146104465780636352211e146104595780636c529a261461046c57600080fd5b806323b872dd1161025d57806323b872dd14610363578063248a9ca314610376578063282c51f3146103995780632ba78b3d146103c05780632f2ff15d146103d357806336568abe146103e657600080fd5b806301ffc9a7146102a557806306fdde03146102cd578063081812fc146102e2578063095ea7b31461030d57806309b519ac14610322578063132f060614610335575b600080fd5b6102b86102b3366004612982565b6106d8565b60405190151581526020015b60405180910390f35b6102d5610716565b6040516102c49190612b79565b6102f56102f0366004612946565b6107a8565b6040516001600160a01b0390911681526020016102c4565b61032061031b3660046128ad565b610842565b005b61032061033036600461290c565b610958565b610355610343366004612946565b600090815260fc602052604090205490565b6040519081526020016102c4565b610320610371366004612771565b6109af565b610355610384366004612946565b600090815260c9602052604090206001015490565b6103557f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6103206103ce366004612946565b6109e0565b6103206103e136600461295e565b610a4c565b6103206103f436600461295e565b610a72565b6103557f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf81565b61032061042e366004612771565b610af0565b61032061044136600461295e565b610b0b565b6103206104543660046128d8565b610b65565b6102f5610467366004612946565b610bb9565b60fe546102b890600160a01b900460ff1681565b61032061048e366004612a1c565b610c30565b6103556104a136600461271d565b610cce565b610320610d55565b6103206104bc3660046129d6565b610dbb565b6103206104cf36600461282e565b610e70565b6103557f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f81565b6097546001600160a01b03166102f5565b6102b861051a36600461295e565b610ee1565b6102d5610f0c565b61032061053536600461287c565b610f1b565b6102b861054836600461271d565b6101006020526000908152604090205460ff1681565b610355600081565b61032061057436600461287c565b610f62565b610355610587366004612946565b60ff6020526000908152604090205481565b6103206105a73660046128ad565b611027565b610355600080516020612e7083398151915281565b6103206105cf3660046129d6565b61105d565b6103206105e236600461287c565b6110c5565b6103206105f53660046127b1565b611161565b610320610608366004612a4b565b611193565b6102f561061b366004612946565b600090815260fb60205260409020546001600160a01b031690565b6102d5610644366004612946565b6111e2565b60fe546102f5906001600160a01b031681565b610355600080516020612e5083398151915281565b61032061067f36600461295e565b6112bd565b61032061069236600461282e565b6112e3565b6102b86106a5366004612739565b61136d565b6102d5611489565b6103206106c03660046128d8565b611517565b6103206106d336600461271d565b61154e565b60006001600160e01b03198216158061070157506001600160e01b0319821663815ffb5d60e01b145b80610710575061071082611616565b92915050565b60606065805461072590612d78565b80601f016020809104026020016040519081016040528092919081815260200182805461075190612d78565b801561079e5780601f106107735761010080835404028352916020019161079e565b820191906000526020600020905b81548152906001019060200180831161078157829003601f168201915b5050505050905090565b6000818152606760205260408120546001600160a01b03166108265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152606960205260409020546001600160a01b031690565b600061084d82610bb9565b9050806001600160a01b0316836001600160a01b031614156108bb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161081d565b336001600160a01b03821614806108d757506108d7813361136d565b6109495760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161081d565b610953838361163b565b505050565b600080516020612e5083398151915261097181336116a9565b835b8381116109a757610984868261170d565b600081815260ff602052604090208390558061099f81612db3565b915050610973565b505050505050565b6109b9338261174b565b6109d55760405162461bcd60e51b815260040161081d90612c51565b61095383838361181a565b336109ea82610bb9565b6001600160a01b03161480610a245750610a247f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610ee1565b610a405760405162461bcd60e51b815260040161081d90612c2c565b610a49816118b7565b50565b600082815260c96020526040902060010154610a6881336116a9565b61095383836118d1565b6001600160a01b0381163314610ae25760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161081d565b610aec8282611957565b5050565b61095383838360405180602001604052806000815250611161565b7f828634d95e775031b9ff576b159a8509d3053581a8c9c4d7d86899e0afcd882f610b3681336116a9565b50600091825260fb602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b600080516020612e50833981519152610b7e81336116a9565b825b828111610bb257610b91858261170d565b600081815260ff602052604081205580610baa81612db3565b915050610b80565b5050505050565b6000818152606760205260408120546001600160a01b0316806107105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161081d565b600080516020612e70833981519152610c4981336116a9565b6000825111610c6a5760405162461bcd60e51b815260040161081d90612c2c565b60005b8251811015610cc8578360ff6000858481518110610c9b57634e487b7160e01b600052603260045260246000fd5b60200260200101518152602001908152602001600020819055508080610cc090612db3565b915050610c6d565b50505050565b60006001600160a01b038216610d395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161081d565b506001600160a01b031660009081526068602052604090205490565b6097546001600160a01b03163314610daf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081d565b610db960006119be565b565b600054610100900460ff1680610dd4575060005460ff16155b610df05760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015610e12576000805461ffff19166101011790555b610e5b6040518060400160405280600a81526020016913585d9a584813185b9960b21b815250604051806040016040528060048152602001631310539160e21b81525084611a10565b8015610aec576000805461ff00191690555050565b6000815111610e915760405162461bcd60e51b815260040161081d90612c2c565b60005b815181101561095357610ecf3384848481518110610ec257634e487b7160e01b600052603260045260246000fd5b60200260200101516109af565b80610ed981612db3565b915050610e94565b600091825260c9602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606066805461072590612d78565b600080516020612e70833981519152610f3481336116a9565b5060fe8054911515600160a01b026001600160a81b03199092166001600160a01b0390931692909217179055565b6001600160a01b038216331415610fbb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081d565b336000818152606a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080516020612e5083398151915261104081336116a9565b61104a838361170d565b50600090815260ff602052604081205550565b600080516020612e7083398151915261107681336116a9565b81516110899060fd9060208501906125a9565b507f562bf0237fa5139edc73ec903039c3a552e19ae62cc8292da62afeea43024b0a826040516110b99190612b79565b60405180910390a15050565b600080516020612e708339815191526110de81336116a9565b6001600160a01b0383166000908152610100602052604090205460ff16151582151514156111345760405162461bcd60e51b815260206004820152600360248201526230783160e81b604482015260640161081d565b506001600160a01b0391909116600090815261010060205260409020805460ff1916911515919091179055565b61116b338361174b565b6111875760405162461bcd60e51b815260040161081d90612c51565b610cc884848484611ab7565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8486111be81336116a9565b825b828111610cc8576111d0816118b7565b806111da81612db3565b9150506111c0565b6000818152606760205260409020546060906001600160a01b03166112615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161081d565b600061126b611aea565b9050600081511161128b57604051806020016040528060008152506112b6565b8061129584611af9565b6040516020016112a6929190612a98565b6040516020818303038152906040525b9392505050565b600082815260c960205260409020600101546112d981336116a9565b6109538383611957565b600080516020612e708339815191526112fc81336116a9565b600082511161131d5760405162461bcd60e51b815260040161081d90612c2c565b60005b8251811015610cc85761135b843385848151811061134e57634e487b7160e01b600052603260045260246000fd5b602002602001015161181a565b8061136581612db3565b915050611320565b60fe546000906001600160a01b03811690600160a01b900460ff168015611418575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b1580156113d557600080fd5b505afa1580156113e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140d91906129ba565b6001600160a01b0316145b15611427576001915050610710565b6114517f408a36151f841709116a4e8aca4e0202874f7f54687dcb863b1ea4672dc9d8cf84610ee1565b8061148157506001600160a01b038085166000908152606a602090815260408083209387168352929052205460ff165b949350505050565b60fd805461149690612d78565b80601f01602080910402602001604051908101604052809291908181526020018280546114c290612d78565b801561150f5780601f106114e45761010080835404028352916020019161150f565b820191906000526020600020905b8154815290600101906020018083116114f257829003601f168201915b505050505081565b600080516020612e5083398151915261153081336116a9565b61153a848461170d565b50600091825260ff60205260409091205550565b6097546001600160a01b031633146115a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081d565b6001600160a01b03811661160d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a49816119be565b60006001600160e01b03198216637965db0b60e01b1480610710575061071082611c13565b600081815260696020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167082610bb9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116b38282610ee1565b610aec576116cb816001600160a01b03166014611c63565b6116d6836020611c63565b6040516020016116e7929190612ac7565b60408051601f198184030181529082905262461bcd60e51b825261081d91600401612b79565b600081815260fb6020908152604080832080546001600160a01b0319166001600160a01b03871617905560fc9091529020429055610aec8282611e45565b6000818152606760205260408120546001600160a01b03166117c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161081d565b60006117cf83610bb9565b9050806001600160a01b0316846001600160a01b0316148061180a5750836001600160a01b03166117ff846107a8565b6001600160a01b0316145b806114815750611481818561136d565b6001600160a01b0383166000908152610100602052604090205460ff1615801561185e57506001600160a01b0382166000908152610100602052604090205460ff16155b61189b5760405162461bcd60e51b815260206004820152600e60248201526d1391950e88109b1858dadb1a5cdd60921b604482015260640161081d565b600081815260fc60205260409020429055610953838383611f87565b600081815260fc60205260409020429055610a4981612127565b6118db8282610ee1565b610aec57600082815260c9602090815260408083206001600160a01b03851684529091529020805460ff191660011790556119133390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119618282610ee1565b15610aec57600082815260c9602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b609780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff1680611a29575060005460ff16155b611a455760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015611a67576000805461ffff19166101011790555b611a6f6121c2565b611a7761223d565b611a8184846122ac565b611a8c600033612333565b8151611a9f9060fd9060208501906125a9565b508015610cc8576000805461ff001916905550505050565b611ac284848461181a565b611ace8484848461233d565b610cc85760405162461bcd60e51b815260040161081d90612b8c565b606060fd805461072590612d78565b606081611b1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b475780611b3181612db3565b9150611b409050600a83612ceb565b9150611b21565b60008167ffffffffffffffff811115611b7057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b9a576020820181803683370190505b5090505b841561148157611baf600183612d1e565b9150611bbc600a86612dce565b611bc7906030612cd3565b60f81b818381518110611bea57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611c0c600a86612ceb565b9450611b9e565b60006001600160e01b031982166380ac58cd60e01b1480611c4457506001600160e01b03198216635b5e139f60e01b145b8061071057506301ffc9a760e01b6001600160e01b0319831614610710565b60606000611c72836002612cff565b611c7d906002612cd3565b67ffffffffffffffff811115611ca357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ccd576020820181803683370190505b509050600360fc1b81600081518110611cf657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d3357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d57846002612cff565b611d62906001612cd3565b90505b6001811115611df6576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611da457634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611dc857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611def81612d61565b9050611d65565b5083156112b65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161081d565b6001600160a01b038216611e9b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081d565b6000818152606760205260409020546001600160a01b031615611f005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081d565b6001600160a01b0382166000908152606860205260408120805460019290611f29908490612cd3565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b826001600160a01b0316611f9a82610bb9565b6001600160a01b0316146120025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161081d565b6001600160a01b0382166120645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b61206f60008261163b565b6001600160a01b0383166000908152606860205260408120805460019290612098908490612d1e565b90915550506001600160a01b03821660009081526068602052604081208054600192906120c6908490612cd3565b909155505060008181526067602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061213282610bb9565b905061213f60008361163b565b6001600160a01b0381166000908152606860205260408120805460019290612168908490612d1e565b909155505060008281526067602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600054610100900460ff16806121db575060005460ff16155b6121f75760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612219576000805461ffff19166101011790555b61222161244a565b6122296124b4565b8015610a49576000805461ff001916905550565b600054610100900460ff1680612256575060005460ff16155b6122725760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612294576000805461ffff19166101011790555b61229c61244a565b6122a461244a565b61222961244a565b600054610100900460ff16806122c5575060005460ff16155b6122e15760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612303576000805461ffff19166101011790555b61230b61244a565b61231361244a565b61231d8383612514565b8015610953576000805461ff0019169055505050565b610aec82826118d1565b60006001600160a01b0384163b1561243f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612381903390899088908890600401612b3c565b602060405180830381600087803b15801561239b57600080fd5b505af19250505080156123cb575060408051601f3d908101601f191682019092526123c89181019061299e565b60015b612425573d8080156123f9576040519150601f19603f3d011682016040523d82523d6000602084013e6123fe565b606091505b50805161241d5760405162461bcd60e51b815260040161081d90612b8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611481565b506001949350505050565b600054610100900460ff1680612463575060005460ff16155b61247f5760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff16158015612229576000805461ffff19166101011790558015610a49576000805461ff001916905550565b600054610100900460ff16806124cd575060005460ff16155b6124e95760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff1615801561250b576000805461ffff19166101011790555b612229336119be565b600054610100900460ff168061252d575060005460ff16155b6125495760405162461bcd60e51b815260040161081d90612bde565b600054610100900460ff1615801561256b576000805461ffff19166101011790555b825161257e9060659060208601906125a9565b5081516125929060669060208501906125a9565b508015610953576000805461ff0019169055505050565b8280546125b590612d78565b90600052602060002090601f0160209004810192826125d7576000855561261d565b82601f106125f057805160ff191683800117855561261d565b8280016001018555821561261d579182015b8281111561261d578251825591602001919060010190612602565b5061262992915061262d565b5090565b5b80821115612629576000815560010161262e565b600067ffffffffffffffff83111561265c5761265c612e0e565b61266f601f8401601f1916602001612ca2565b905082815283838301111561268357600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126aa578081fd5b8135602067ffffffffffffffff8211156126c6576126c6612e0e565b8160051b6126d5828201612ca2565b8381528281019086840183880185018910156126ef578687fd5b8693505b858410156127115780358352600193909301929184019184016126f3565b50979650505050505050565b60006020828403121561272e578081fd5b81356112b681612e24565b6000806040838503121561274b578081fd5b823561275681612e24565b9150602083013561276681612e24565b809150509250929050565b600080600060608486031215612785578081fd5b833561279081612e24565b925060208401356127a081612e24565b929592945050506040919091013590565b600080600080608085870312156127c6578081fd5b84356127d181612e24565b935060208501356127e181612e24565b925060408501359150606085013567ffffffffffffffff811115612803578182fd5b8501601f81018713612813578182fd5b61282287823560208401612642565b91505092959194509250565b60008060408385031215612840578182fd5b823561284b81612e24565b9150602083013567ffffffffffffffff811115612866578182fd5b6128728582860161269a565b9150509250929050565b6000806040838503121561288e578182fd5b823561289981612e24565b915060208301358015158114612766578182fd5b600080604083850312156128bf578182fd5b82356128ca81612e24565b946020939093013593505050565b6000806000606084860312156128ec578283fd5b83356128f781612e24565b95602085013595506040909401359392505050565b60008060008060808587031215612921578384fd5b843561292c81612e24565b966020860135965060408601359560600135945092505050565b600060208284031215612957578081fd5b5035919050565b60008060408385031215612970578182fd5b82359150602083013561276681612e24565b600060208284031215612993578081fd5b81356112b681612e39565b6000602082840312156129af578081fd5b81516112b681612e39565b6000602082840312156129cb578081fd5b81516112b681612e24565b6000602082840312156129e7578081fd5b813567ffffffffffffffff8111156129fd578182fd5b8201601f81018413612a0d578182fd5b61148184823560208401612642565b60008060408385031215612a2e578182fd5b82359150602083013567ffffffffffffffff811115612866578182fd5b60008060408385031215612a5d578182fd5b50508035926020909101359150565b60008151808452612a84816020860160208601612d35565b601f01601f19169290920160200192915050565b60008351612aaa818460208801612d35565b835190830190612abe818360208801612d35565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612aff816017850160208801612d35565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612b30816028840160208801612d35565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6f90830184612a6c565b9695505050505050565b6020815260006112b66020830184612a6c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252600b908201526a4d617669614e46543a303160a81b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ccb57612ccb612e0e565b604052919050565b60008219821115612ce657612ce6612de2565b500190565b600082612cfa57612cfa612df8565b500490565b6000816000190483118215151615612d1957612d19612de2565b500290565b600082821015612d3057612d30612de2565b500390565b60005b83811015612d50578181015183820152602001612d38565b83811115610cc85750506000910152565b600081612d7057612d70612de2565b506000190190565b600181811c90821680612d8c57607f821691505b60208210811415612dad57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dc757612dc7612de2565b5060010190565b600082612ddd57612ddd612df8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a4957600080fd5b6001600160e01b031981168114610a4957600080fdfe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a621d1167972f621f75904fb065136bc8b53c7ba1c60ccd3a7758fbee465851e9ca2646970667358221220d1b324c3fde5261e35610da44d8b745d9ce5734ffeda4a695c047d43d194dda664736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.