Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multi Chain
Multichain Addresses
N/ALatest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 8337283 | 249 days 12 hrs ago | IN | Create: PoLidoNFT | 0 ETH | 0.02211492 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Txn Hash | Block | From | To | Value | ||
---|---|---|---|---|---|---|
9755679 | 12 hrs 15 mins ago | 0 ETH | ||||
9755679 | 12 hrs 15 mins ago | 0 ETH | ||||
9752539 | 1 day 1 hr ago | 0 ETH | ||||
9745415 | 2 days 6 hrs ago | 0 ETH | ||||
9745354 | 2 days 7 hrs ago | 0 ETH | ||||
9745352 | 2 days 7 hrs ago | 0 ETH | ||||
9739597 | 3 days 7 hrs ago | 0 ETH | ||||
9738514 | 3 days 11 hrs ago | 0 ETH | ||||
9738514 | 3 days 11 hrs ago | 0 ETH | ||||
9738501 | 3 days 11 hrs ago | 0 ETH | ||||
9738501 | 3 days 11 hrs ago | 0 ETH | ||||
9738467 | 3 days 11 hrs ago | 0 ETH | ||||
9734395 | 4 days 4 hrs ago | 0 ETH | ||||
9734395 | 4 days 4 hrs ago | 0 ETH | ||||
9734305 | 4 days 5 hrs ago | 0 ETH | ||||
9733322 | 4 days 9 hrs ago | 0 ETH | ||||
9732714 | 4 days 11 hrs ago | 0 ETH | ||||
9732714 | 4 days 11 hrs ago | 0 ETH | ||||
9732650 | 4 days 12 hrs ago | 0 ETH | ||||
9723302 | 6 days 3 hrs ago | 0 ETH | ||||
9723302 | 6 days 3 hrs ago | 0 ETH | ||||
9721920 | 6 days 9 hrs ago | 0 ETH | ||||
9721920 | 6 days 9 hrs ago | 0 ETH | ||||
9704945 | 9 days 8 hrs ago | 0 ETH | ||||
9704945 | 9 days 8 hrs ago | 0 ETH |
Loading...
Loading
Contract Name:
PoLidoNFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-FileCopyrightText: 2021 ShardLabs // SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721PausableUpgradeable.sol"; /// @title PoLidoNFT. /// @author 2021 ShardLabs. contract PoLidoNFT is OwnableUpgradeable, ERC721Upgradeable, ERC721PausableUpgradeable { /// @notice stMATIC address. address public stMATIC; /// @notice tokenIdIndex. uint256 public tokenIdIndex; /// @notice version. string public version; /// @notice maps the address to array of the owned tokens mapping(address => uint256[]) public owner2Tokens; /// @notice token can be owned by only one address at the time, therefore tokenId is present in only one of those arrays in the mapping /// this mapping stores the index of the tokenId in one of those arrays mapping(uint256 => uint256) public token2Index; /// @notice maps an array of the tokens that are approved to this address mapping(address => uint256[]) public address2Approved; /// @notice token can be approved to only one address at the time, therefore tokenId is present in only one of those arrays in the mapping /// this mapping stores the index of the tokenId in one of those arrays mapping(uint256 => uint256) public tokenId2ApprovedIndex; modifier isLido() { require(msg.sender == stMATIC, "Caller is not stMATIC contract"); _; } function initialize( string memory name_, string memory symbol_, address _stMATIC ) external initializer { __Context_init_unchained(); __ERC165_init_unchained(); __Ownable_init_unchained(); __ERC721_init_unchained(name_, symbol_); __Pausable_init_unchained(); __ERC721Pausable_init_unchained(); stMATIC = _stMATIC; } /// @notice Increments the token supply and mints the token based on that index /// @param _to - Address that will be the owner of minted token /// @return Index of the minted token function mint(address _to) external isLido returns (uint256) { uint256 currentIndex = tokenIdIndex + 1; _mint(_to, currentIndex); tokenIdIndex = currentIndex; return currentIndex; } /// @notice Burn the token with specified _tokenId /// @param _tokenId - Id of the token that will be burned function burn(uint256 _tokenId) external isLido { _burn(_tokenId); } /// @notice Override of the approve function /// @param _to - Address that the token will be approved to /// @param _tokenId - Id of the token that will be approved to _to function approve(address _to, uint256 _tokenId) public override(ERC721Upgradeable) { // If this token was approved before, remove it from the mapping of approvals if (getApproved(_tokenId) != address(0)) { _removeApproval(_tokenId); } super.approve(_to, _tokenId); uint256[] storage approvedTokens = address2Approved[_to]; // Add the new approved token to the mapping approvedTokens.push(_tokenId); tokenId2ApprovedIndex[_tokenId] = approvedTokens.length - 1; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721Upgradeable, ERC721PausableUpgradeable) whenNotPaused { require(from != to, "Invalid operation"); super._beforeTokenTransfer(from, to, tokenId); // Minting if (from == address(0)) { uint256[] storage ownerTokens = owner2Tokens[to]; ownerTokens.push(tokenId); token2Index[tokenId] = ownerTokens.length - 1; } // Burning else if (to == address(0)) { uint256[] storage ownerTokens = owner2Tokens[from]; uint256 ownerTokensLength = ownerTokens.length; uint256 burnedTokenIndexInOwnerTokens = token2Index[tokenId]; uint256 lastOwnerTokensIndex = ownerTokensLength - 1; if ( burnedTokenIndexInOwnerTokens != lastOwnerTokensIndex && ownerTokensLength != 1 ) { uint256 lastOwnerTokenId = ownerTokens[lastOwnerTokensIndex]; // Make the last token have an index of a token we want to burn. // So when we request index of token with id that is currently last in ownerTokens it does not point // to the last slot in ownerTokens, but to a burned token's slot (we will update the slot at the next line) token2Index[lastOwnerTokenId] = burnedTokenIndexInOwnerTokens; // Copy currently last token to the place of a token we want to burn. // So updated pointer in token2Index points to a slot with the correct value. ownerTokens[burnedTokenIndexInOwnerTokens] = ownerTokens[ lastOwnerTokensIndex ]; } ownerTokens.pop(); delete token2Index[tokenId]; if (getApproved(tokenId) != address(0)) { _removeApproval(tokenId); } } // Transferring else if (from != to) { if (getApproved(tokenId) != address(0)) { _removeApproval(tokenId); } uint256[] storage senderTokens = owner2Tokens[from]; uint256[] storage receiverTokens = owner2Tokens[to]; uint256 tokenIndex = token2Index[tokenId]; uint256 ownerTokensLength = senderTokens.length; uint256 removeTokenIndexInOwnerTokens = tokenIndex; uint256 lastOwnerTokensIndex = ownerTokensLength - 1; if ( removeTokenIndexInOwnerTokens != lastOwnerTokensIndex && ownerTokensLength != 1 ) { uint256 lastOwnerTokenId = senderTokens[lastOwnerTokensIndex]; // Make the last token have an index of a token we want to burn. // So when we request index of token with id that is currently last in ownerTokens it does not point // to the last slot in ownerTokens, but to a burned token's slot (we will update the slot at the next line) token2Index[lastOwnerTokenId] = removeTokenIndexInOwnerTokens; // Copy currently last token to the place of a token we want to burn. // So updated pointer in token2Index points to a slot with the correct value. senderTokens[removeTokenIndexInOwnerTokens] = lastOwnerTokenId; } senderTokens.pop(); receiverTokens.push(tokenId); token2Index[tokenId] = receiverTokens.length - 1; } } /// @notice Check if the spender is the owner or is the tokenId approved to him /// @param _spender - Address that will be checked /// @param _tokenId - Token id that will be checked against _spender function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) { return _isApprovedOrOwner(_spender, _tokenId); } /// @notice Set stMATIC contract address /// @param _stMATIC - address of the stMATIC contract function setStMATIC(address _stMATIC) external onlyOwner { stMATIC = _stMATIC; } /// @notice Set PoLidoNFT version /// @param _version - New version that will be set function setVersion(string calldata _version) external onlyOwner { version = _version; } /// @notice Retrieve the array of owned tokens /// @param _address - Address for which the tokens will be retrieved /// @return - Array of owned tokens function getOwnedTokens(address _address) external view returns (uint256[] memory) { return owner2Tokens[_address]; } /// @notice Retrieve the array of approved tokens /// @param _address - Address for which the tokens will be retrieved /// @return - Array of approved tokens function getApprovedTokens(address _address) external view returns (uint256[] memory) { return address2Approved[_address]; } /// @notice Remove the tokenId from the specific users array of approved tokens /// @param _tokenId - Id of the token that will be removed function _removeApproval(uint256 _tokenId) internal { uint256[] storage approvedTokens = address2Approved[ getApproved(_tokenId) ]; uint256 removeApprovedTokenIndexInOwnerTokens = tokenId2ApprovedIndex[ _tokenId ]; uint256 approvedTokensLength = approvedTokens.length; uint256 lastApprovedTokensIndex = approvedTokensLength - 1; if ( removeApprovedTokenIndexInOwnerTokens != lastApprovedTokensIndex && approvedTokensLength != 1 ) { uint256 lastApprovedTokenId = approvedTokens[ lastApprovedTokensIndex ]; // Make the last token have an index of a token we want to burn. // So when we request index of token with id that is currently last in approveTokens // it does not point to the last slot in approveTokens, but to a burned token's slot // (we will update the slot at the next line). tokenId2ApprovedIndex[ lastApprovedTokenId ] = removeApprovedTokenIndexInOwnerTokens; // Copy currently last token to the place of a token we want to burn. // So updated pointer in tokenId2ApprovedIndex points to a slot with the correct value. approvedTokens[ removeApprovedTokenIndexInOwnerTokens ] = lastApprovedTokenId; } approvedTokens.pop(); delete tokenId2ApprovedIndex[_tokenId]; } /// @notice Flips the pause state function togglePause() external onlyOwner { paused() ? _unpause() : _pause(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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); _afterTokenTransfer(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); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "../../../security/PausableUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721PausableUpgradeable is Initializable, ERC721Upgradeable, PausableUpgradeable { function __ERC721Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __ERC721Pausable_init_unchained() internal onlyInitializing { } /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ 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() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"address2Approved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getApprovedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getOwnedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_stMATIC","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"owner2Tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"address","name":"_stMATIC","type":"address"}],"name":"setStMATIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_version","type":"string"}],"name":"setVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stMATIC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"token2Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenId2ApprovedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenIdIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061270b806100206000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063bc83360c116100ad578063d43257111161007c578063d432571114610431578063d9d6165514610451578063ddcdac8814610464578063e985e9c514610477578063f2fde38b146104b357600080fd5b8063bc83360c146103e2578063c4ae316814610403578063c87b56dd1461040b578063cbfe71b11461041e57600080fd5b806395d89b41116100e957806395d89b41146103a1578063a22cb465146103a9578063b26326df146103bc578063b88d4fde146103cf57600080fd5b806370a0823114610362578063715018a614610375578063788bc78c1461037d5780638da5cb5b1461039057600080fd5b806342966c68116101925780635cd6ea36116101615780635cd6ea361461031e5780636352211e146103325780636a627842146103455780636d5a74111461035857600080fd5b806342966c68146102e5578063430c2081146102f857806354fd4d501461030b5780635c975abb1461031357600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806316758d741461029057806323b872dd146102bf57806342842e0e146102d257600080fd5b806301ffc9a71461020057806306fdde0314610228578063077f224a1461023d578063081812fc14610252575b600080fd5b61021361020e36600461222d565b6104c6565b60405190151581526020015b60405180910390f35b610230610518565b60405161021f9190612442565b61025061024b3660046122d9565b6105aa565b005b61026561026036600461234d565b6106b9565b6040516001600160a01b03909116815260200161021f565b61025061028b366004612203565b61074e565b6102b161029e36600461234d565b6101336020526000908152604090205481565b60405190815260200161021f565b6102506102cd36600461210f565b6107cf565b6102506102e036600461210f565b610805565b6102506102f336600461234d565b610820565b610213610306366004612203565b610887565b61023061089a565b60c95460ff16610213565b61012d54610265906001600160a01b031681565b61026561034036600461234d565b610929565b6102b16103533660046120c1565b6109a0565b6102b161012e5481565b6102b16103703660046120c1565b610a2a565b610250610ab1565b61025061038b366004612267565b610ae7565b6033546001600160a01b0316610265565b610230610b1e565b6102506103b73660046121c7565b610b2d565b6102b16103ca366004612203565b610b3c565b6102506103dd36600461214b565b610b6e565b6102b16103f036600461234d565b6101316020526000908152604090205481565b610250610ba0565b61023061041936600461234d565b610be4565b61025061042c3660046120c1565b610ccb565b61044461043f3660046120c1565b610d18565b60405161021f91906123fe565b61044461045f3660046120c1565b610d85565b6102b1610472366004612203565b610df0565b6102136104853660046120dc565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b6102506104c13660046120c1565b610e0d565b60006001600160e01b031982166380ac58cd60e01b14806104f757506001600160e01b03198216635b5e139f60e01b145b8061051257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060978054610527906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610553906125e7565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b600054610100900460ff166105c55760005460ff16156105c9565b303b155b6106315760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600054610100900460ff16158015610653576000805461ffff19166101011790555b61065b610ea5565b610663610ea5565b61066b610ecc565b6106758484610efc565b61067d610f4a565b610685610ea5565b61012d80546001600160a01b0319166001600160a01b03841617905580156106b3576000805461ff00191690555b50505050565b6000818152609960205260408120546001600160a01b03166107325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b506000908152609b60205260409020546001600160a01b031690565b6000610759826106b9565b6001600160a01b0316146107705761077081610f7d565b61077a8282611082565b6001600160a01b03821660009081526101326020908152604082208054600181810183558285529290932090920183905581546107b791906125a4565b60009283526101336020526040909220919091555050565b6107d93382611193565b6107f55760405162461bcd60e51b8152600401610628906124dc565b61080083838361128a565b505050565b61080083838360405180602001604052806000815250610b6e565b61012d546001600160a01b0316331461087b5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f742073744d4154494320636f6e747261637400006044820152606401610628565b61088481611431565b50565b60006108938383611193565b9392505050565b61012f80546108a8906125e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906125e7565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b505050505081565b6000818152609960205260408120546001600160a01b0316806105125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610628565b61012d546000906001600160a01b031633146109fe5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f742073744d4154494320636f6e747261637400006044820152606401610628565b600061012e546001610a109190612578565b9050610a1c83826114d8565b61012e81905590505b919050565b60006001600160a01b038216610a955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610628565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610628906124a7565b610ae56000611626565b565b6033546001600160a01b03163314610b115760405162461bcd60e51b8152600401610628906124a7565b61080061012f8383611f07565b606060988054610527906125e7565b610b38338383611678565b5050565b6101306020528160005260406000208181548110610b5957600080fd5b90600052602060002001600091509150505481565b610b783383611193565b610b945760405162461bcd60e51b8152600401610628906124dc565b6106b384848484611747565b6033546001600160a01b03163314610bca5760405162461bcd60e51b8152600401610628906124a7565b60c95460ff16610bdc57610ae561177a565b610ae5611812565b6000818152609960205260409020546060906001600160a01b0316610c635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610628565b6000610c7a60408051602081019091526000815290565b90506000815111610c9a5760405180602001604052806000815250610893565b80610ca48461188c565b604051602001610cb5929190612392565b6040516020818303038152906040529392505050565b6033546001600160a01b03163314610cf55760405162461bcd60e51b8152600401610628906124a7565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526101326020908152604091829020805483518184028101840190945280845260609392830182828015610d7957602002820191906000526020600020905b815481526020019060010190808311610d65575b50505050509050919050565b6001600160a01b03811660009081526101306020908152604091829020805483518184028101840190945280845260609392830182828015610d795760200282019190600052602060002090815481526020019060010190808311610d655750505050509050919050565b6101326020528160005260406000208181548110610b5957600080fd5b6033546001600160a01b03163314610e375760405162461bcd60e51b8152600401610628906124a7565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b61088481611626565b600054610100900460ff16610ae55760405162461bcd60e51b81526004016106289061252d565b600054610100900460ff16610ef35760405162461bcd60e51b81526004016106289061252d565b610ae533611626565b600054610100900460ff16610f235760405162461bcd60e51b81526004016106289061252d565b8151610f36906097906020850190611f8b565b508051610800906098906020840190611f8b565b600054610100900460ff16610f715760405162461bcd60e51b81526004016106289061252d565b60c9805460ff19169055565b60006101326000610f8d846106b9565b6001600160a01b03168152602080820192909252604090810160009081208582526101339093529081205482549293509190610fca6001836125a4565b9050808314158015610fdd575081600114155b1561103d576000848281548110610ff657610ff6612693565b90600052602060002001549050836101336000838152602001908152602001600020819055508085858154811061102f5761102f612693565b600091825260209091200155505b8380548061104d5761104d61267d565b600190038181906000526020600020016000905590556101336000868152602001908152602001600020600090555050505050565b600061108d82610929565b9050806001600160a01b0316836001600160a01b031614156110fb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610628565b336001600160a01b038216148061111757506111178133610485565b6111895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610628565b610800838361198a565b6000818152609960205260408120546001600160a01b031661120c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b600061121783610929565b9050806001600160a01b0316846001600160a01b031614806112525750836001600160a01b0316611247846106b9565b6001600160a01b0316145b8061128257506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129d82610929565b6001600160a01b0316146113015760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610628565b6001600160a01b0382166113635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b61136e8383836119f8565b61137960008261198a565b6001600160a01b0383166000908152609a602052604081208054600192906113a29084906125a4565b90915550506001600160a01b0382166000908152609a602052604081208054600192906113d0908490612578565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061143c82610929565b905061144a816000846119f8565b61145560008361198a565b6001600160a01b0381166000908152609a6020526040812080546001929061147e9084906125a4565b909155505060008281526099602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03821661152e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610628565b6000818152609960205260409020546001600160a01b0316156115935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610628565b61159f600083836119f8565b6001600160a01b0382166000908152609a602052604081208054600192906115c8908490612578565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610628565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175284848461128a565b61175e84848484611d93565b6106b35760405162461bcd60e51b815260040161062890612455565b60c95460ff16156117c05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117f53390565b6040516001600160a01b03909116815260200160405180910390a1565b60c95460ff1661185b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610628565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336117f5565b6060816118b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118da57806118c481612622565b91506118d39050600a83612590565b91506118b4565b60008167ffffffffffffffff8111156118f5576118f56126a9565b6040519080825280601f01601f19166020018201604052801561191f576020820181803683370190505b5090505b8415611282576119346001836125a4565b9150611941600a8661263d565b61194c906030612578565b60f81b81838151811061196157611961612693565b60200101906001600160f81b031916908160001a905350611983600a86612590565b9450611923565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119bf82610929565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60c95460ff1615611a3e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b816001600160a01b0316836001600160a01b03161415611a945760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21037b832b930ba34b7b760791b6044820152606401610628565b611a9f838383611ea0565b6001600160a01b038316611b00576001600160a01b0382166000908152610130602090815260408220805460018181018355828552929093209092018390558154611aea91906125a4565b6000838152610131602052604090205550505050565b6001600160a01b038216611c38576001600160a01b0383166000908152610130602090815260408083208054858552610131909352908320549092611b466001846125a4565b9050808214158015611b59575082600114155b15611bd5576000848281548110611b7257611b72612693565b9060005260206000200154905082610131600083815260200190815260200160002081905550848281548110611baa57611baa612693565b9060005260206000200154858481548110611bc757611bc7612693565b600091825260209091200155505b83805480611be557611be561267d565b600082815260208082208301600019908101839055909201909255868252610131905260408120819055611c18866106b9565b6001600160a01b031614611c2f57611c2f85610f7d565b50505050505050565b816001600160a01b0316836001600160a01b031614610800576000611c5c826106b9565b6001600160a01b031614611c7357611c7381610f7d565b6001600160a01b038084166000908152610130602090815260408083209386168352808320858452610131909252822054835491929091908290611cb86001846125a4565b9050808214158015611ccb575082600114155b15611d2b576000868281548110611ce457611ce4612693565b906000526020600020015490508261013160008381526020019081526020016000208190555080878481548110611d1d57611d1d612693565b600091825260209091200155505b85805480611d3b57611d3b61267d565b600082815260208082208301600019908101839055909201909255865460018181018955888452919092209091018890558554611d7891906125a4565b60008881526101316020526040902055505050505050505050565b60006001600160a01b0384163b15611e9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd79033908990889088906004016123c1565b602060405180830381600087803b158015611df157600080fd5b505af1925050508015611e21575060408051601f3d908101601f19168201909252611e1e9181019061224a565b60015b611e7b573d808015611e4f576040519150601f19603f3d011682016040523d82523d6000602084013e611e54565b606091505b508051611e735760405162461bcd60e51b815260040161062890612455565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611282565b506001949350505050565b60c95460ff16156108005760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610628565b828054611f13906125e7565b90600052602060002090601f016020900481019282611f355760008555611f7b565b82601f10611f4e5782800160ff19823516178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578235825591602001919060010190611f60565b50611f87929150611fff565b5090565b828054611f97906125e7565b90600052602060002090601f016020900481019282611fb95760008555611f7b565b82601f10611fd257805160ff1916838001178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578251825591602001919060010190611fe4565b5b80821115611f875760008155600101612000565b600067ffffffffffffffff8084111561202f5761202f6126a9565b604051601f8501601f19908116603f01168101908282118183101715612057576120576126a9565b8160405280935085815286868601111561207057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a2557600080fd5b600082601f8301126120b257600080fd5b61089383833560208501612014565b6000602082840312156120d357600080fd5b6108938261208a565b600080604083850312156120ef57600080fd5b6120f88361208a565b91506121066020840161208a565b90509250929050565b60008060006060848603121561212457600080fd5b61212d8461208a565b925061213b6020850161208a565b9150604084013590509250925092565b6000806000806080858703121561216157600080fd5b61216a8561208a565b93506121786020860161208a565b925060408501359150606085013567ffffffffffffffff81111561219b57600080fd5b8501601f810187136121ac57600080fd5b6121bb87823560208401612014565b91505092959194509250565b600080604083850312156121da57600080fd5b6121e38361208a565b9150602083013580151581146121f857600080fd5b809150509250929050565b6000806040838503121561221657600080fd5b61221f8361208a565b946020939093013593505050565b60006020828403121561223f57600080fd5b8135610893816126bf565b60006020828403121561225c57600080fd5b8151610893816126bf565b6000806020838503121561227a57600080fd5b823567ffffffffffffffff8082111561229257600080fd5b818501915085601f8301126122a657600080fd5b8135818111156122b557600080fd5b8660208285010111156122c757600080fd5b60209290920196919550909350505050565b6000806000606084860312156122ee57600080fd5b833567ffffffffffffffff8082111561230657600080fd5b612312878388016120a1565b9450602086013591508082111561232857600080fd5b50612335868287016120a1565b9250506123446040850161208a565b90509250925092565b60006020828403121561235f57600080fd5b5035919050565b6000815180845261237e8160208601602086016125bb565b601f01601f19169290920160200192915050565b600083516123a48184602088016125bb565b8351908301906123b88183602088016125bb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f490830184612366565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124365783518352928401929184019160010161241a565b50909695505050505050565b6020815260006108936020830184612366565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561258b5761258b612651565b500190565b60008261259f5761259f612667565b500490565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b838111156106b35750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461088457600080fdfea264697066735822122010c24f987433cb76961cf382544571953fe89cc8cf5349e92ca05b5df4393f5f64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063bc83360c116100ad578063d43257111161007c578063d432571114610431578063d9d6165514610451578063ddcdac8814610464578063e985e9c514610477578063f2fde38b146104b357600080fd5b8063bc83360c146103e2578063c4ae316814610403578063c87b56dd1461040b578063cbfe71b11461041e57600080fd5b806395d89b41116100e957806395d89b41146103a1578063a22cb465146103a9578063b26326df146103bc578063b88d4fde146103cf57600080fd5b806370a0823114610362578063715018a614610375578063788bc78c1461037d5780638da5cb5b1461039057600080fd5b806342966c68116101925780635cd6ea36116101615780635cd6ea361461031e5780636352211e146103325780636a627842146103455780636d5a74111461035857600080fd5b806342966c68146102e5578063430c2081146102f857806354fd4d501461030b5780635c975abb1461031357600080fd5b8063095ea7b3116101ce578063095ea7b31461027d57806316758d741461029057806323b872dd146102bf57806342842e0e146102d257600080fd5b806301ffc9a71461020057806306fdde0314610228578063077f224a1461023d578063081812fc14610252575b600080fd5b61021361020e36600461222d565b6104c6565b60405190151581526020015b60405180910390f35b610230610518565b60405161021f9190612442565b61025061024b3660046122d9565b6105aa565b005b61026561026036600461234d565b6106b9565b6040516001600160a01b03909116815260200161021f565b61025061028b366004612203565b61074e565b6102b161029e36600461234d565b6101336020526000908152604090205481565b60405190815260200161021f565b6102506102cd36600461210f565b6107cf565b6102506102e036600461210f565b610805565b6102506102f336600461234d565b610820565b610213610306366004612203565b610887565b61023061089a565b60c95460ff16610213565b61012d54610265906001600160a01b031681565b61026561034036600461234d565b610929565b6102b16103533660046120c1565b6109a0565b6102b161012e5481565b6102b16103703660046120c1565b610a2a565b610250610ab1565b61025061038b366004612267565b610ae7565b6033546001600160a01b0316610265565b610230610b1e565b6102506103b73660046121c7565b610b2d565b6102b16103ca366004612203565b610b3c565b6102506103dd36600461214b565b610b6e565b6102b16103f036600461234d565b6101316020526000908152604090205481565b610250610ba0565b61023061041936600461234d565b610be4565b61025061042c3660046120c1565b610ccb565b61044461043f3660046120c1565b610d18565b60405161021f91906123fe565b61044461045f3660046120c1565b610d85565b6102b1610472366004612203565b610df0565b6102136104853660046120dc565b6001600160a01b039182166000908152609c6020908152604080832093909416825291909152205460ff1690565b6102506104c13660046120c1565b610e0d565b60006001600160e01b031982166380ac58cd60e01b14806104f757506001600160e01b03198216635b5e139f60e01b145b8061051257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060978054610527906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610553906125e7565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b600054610100900460ff166105c55760005460ff16156105c9565b303b155b6106315760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600054610100900460ff16158015610653576000805461ffff19166101011790555b61065b610ea5565b610663610ea5565b61066b610ecc565b6106758484610efc565b61067d610f4a565b610685610ea5565b61012d80546001600160a01b0319166001600160a01b03841617905580156106b3576000805461ff00191690555b50505050565b6000818152609960205260408120546001600160a01b03166107325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b506000908152609b60205260409020546001600160a01b031690565b6000610759826106b9565b6001600160a01b0316146107705761077081610f7d565b61077a8282611082565b6001600160a01b03821660009081526101326020908152604082208054600181810183558285529290932090920183905581546107b791906125a4565b60009283526101336020526040909220919091555050565b6107d93382611193565b6107f55760405162461bcd60e51b8152600401610628906124dc565b61080083838361128a565b505050565b61080083838360405180602001604052806000815250610b6e565b61012d546001600160a01b0316331461087b5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f742073744d4154494320636f6e747261637400006044820152606401610628565b61088481611431565b50565b60006108938383611193565b9392505050565b61012f80546108a8906125e7565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906125e7565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b505050505081565b6000818152609960205260408120546001600160a01b0316806105125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610628565b61012d546000906001600160a01b031633146109fe5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f742073744d4154494320636f6e747261637400006044820152606401610628565b600061012e546001610a109190612578565b9050610a1c83826114d8565b61012e81905590505b919050565b60006001600160a01b038216610a955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610628565b506001600160a01b03166000908152609a602052604090205490565b6033546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610628906124a7565b610ae56000611626565b565b6033546001600160a01b03163314610b115760405162461bcd60e51b8152600401610628906124a7565b61080061012f8383611f07565b606060988054610527906125e7565b610b38338383611678565b5050565b6101306020528160005260406000208181548110610b5957600080fd5b90600052602060002001600091509150505481565b610b783383611193565b610b945760405162461bcd60e51b8152600401610628906124dc565b6106b384848484611747565b6033546001600160a01b03163314610bca5760405162461bcd60e51b8152600401610628906124a7565b60c95460ff16610bdc57610ae561177a565b610ae5611812565b6000818152609960205260409020546060906001600160a01b0316610c635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610628565b6000610c7a60408051602081019091526000815290565b90506000815111610c9a5760405180602001604052806000815250610893565b80610ca48461188c565b604051602001610cb5929190612392565b6040516020818303038152906040529392505050565b6033546001600160a01b03163314610cf55760405162461bcd60e51b8152600401610628906124a7565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526101326020908152604091829020805483518184028101840190945280845260609392830182828015610d7957602002820191906000526020600020905b815481526020019060010190808311610d65575b50505050509050919050565b6001600160a01b03811660009081526101306020908152604091829020805483518184028101840190945280845260609392830182828015610d795760200282019190600052602060002090815481526020019060010190808311610d655750505050509050919050565b6101326020528160005260406000208181548110610b5957600080fd5b6033546001600160a01b03163314610e375760405162461bcd60e51b8152600401610628906124a7565b6001600160a01b038116610e9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b61088481611626565b600054610100900460ff16610ae55760405162461bcd60e51b81526004016106289061252d565b600054610100900460ff16610ef35760405162461bcd60e51b81526004016106289061252d565b610ae533611626565b600054610100900460ff16610f235760405162461bcd60e51b81526004016106289061252d565b8151610f36906097906020850190611f8b565b508051610800906098906020840190611f8b565b600054610100900460ff16610f715760405162461bcd60e51b81526004016106289061252d565b60c9805460ff19169055565b60006101326000610f8d846106b9565b6001600160a01b03168152602080820192909252604090810160009081208582526101339093529081205482549293509190610fca6001836125a4565b9050808314158015610fdd575081600114155b1561103d576000848281548110610ff657610ff6612693565b90600052602060002001549050836101336000838152602001908152602001600020819055508085858154811061102f5761102f612693565b600091825260209091200155505b8380548061104d5761104d61267d565b600190038181906000526020600020016000905590556101336000868152602001908152602001600020600090555050505050565b600061108d82610929565b9050806001600160a01b0316836001600160a01b031614156110fb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610628565b336001600160a01b038216148061111757506111178133610485565b6111895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610628565b610800838361198a565b6000818152609960205260408120546001600160a01b031661120c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610628565b600061121783610929565b9050806001600160a01b0316846001600160a01b031614806112525750836001600160a01b0316611247846106b9565b6001600160a01b0316145b8061128257506001600160a01b038082166000908152609c602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129d82610929565b6001600160a01b0316146113015760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610628565b6001600160a01b0382166113635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b61136e8383836119f8565b61137960008261198a565b6001600160a01b0383166000908152609a602052604081208054600192906113a29084906125a4565b90915550506001600160a01b0382166000908152609a602052604081208054600192906113d0908490612578565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061143c82610929565b905061144a816000846119f8565b61145560008361198a565b6001600160a01b0381166000908152609a6020526040812080546001929061147e9084906125a4565b909155505060008281526099602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03821661152e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610628565b6000818152609960205260409020546001600160a01b0316156115935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610628565b61159f600083836119f8565b6001600160a01b0382166000908152609a602052604081208054600192906115c8908490612578565b909155505060008181526099602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610628565b6001600160a01b038381166000818152609c6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175284848461128a565b61175e84848484611d93565b6106b35760405162461bcd60e51b815260040161062890612455565b60c95460ff16156117c05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117f53390565b6040516001600160a01b03909116815260200160405180910390a1565b60c95460ff1661185b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610628565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336117f5565b6060816118b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118da57806118c481612622565b91506118d39050600a83612590565b91506118b4565b60008167ffffffffffffffff8111156118f5576118f56126a9565b6040519080825280601f01601f19166020018201604052801561191f576020820181803683370190505b5090505b8415611282576119346001836125a4565b9150611941600a8661263d565b61194c906030612578565b60f81b81838151811061196157611961612693565b60200101906001600160f81b031916908160001a905350611983600a86612590565b9450611923565b6000818152609b6020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119bf82610929565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60c95460ff1615611a3e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610628565b816001600160a01b0316836001600160a01b03161415611a945760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b21037b832b930ba34b7b760791b6044820152606401610628565b611a9f838383611ea0565b6001600160a01b038316611b00576001600160a01b0382166000908152610130602090815260408220805460018181018355828552929093209092018390558154611aea91906125a4565b6000838152610131602052604090205550505050565b6001600160a01b038216611c38576001600160a01b0383166000908152610130602090815260408083208054858552610131909352908320549092611b466001846125a4565b9050808214158015611b59575082600114155b15611bd5576000848281548110611b7257611b72612693565b9060005260206000200154905082610131600083815260200190815260200160002081905550848281548110611baa57611baa612693565b9060005260206000200154858481548110611bc757611bc7612693565b600091825260209091200155505b83805480611be557611be561267d565b600082815260208082208301600019908101839055909201909255868252610131905260408120819055611c18866106b9565b6001600160a01b031614611c2f57611c2f85610f7d565b50505050505050565b816001600160a01b0316836001600160a01b031614610800576000611c5c826106b9565b6001600160a01b031614611c7357611c7381610f7d565b6001600160a01b038084166000908152610130602090815260408083209386168352808320858452610131909252822054835491929091908290611cb86001846125a4565b9050808214158015611ccb575082600114155b15611d2b576000868281548110611ce457611ce4612693565b906000526020600020015490508261013160008381526020019081526020016000208190555080878481548110611d1d57611d1d612693565b600091825260209091200155505b85805480611d3b57611d3b61267d565b600082815260208082208301600019908101839055909201909255865460018181018955888452919092209091018890558554611d7891906125a4565b60008881526101316020526040902055505050505050505050565b60006001600160a01b0384163b15611e9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd79033908990889088906004016123c1565b602060405180830381600087803b158015611df157600080fd5b505af1925050508015611e21575060408051601f3d908101601f19168201909252611e1e9181019061224a565b60015b611e7b573d808015611e4f576040519150601f19603f3d011682016040523d82523d6000602084013e611e54565b606091505b508051611e735760405162461bcd60e51b815260040161062890612455565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611282565b506001949350505050565b60c95460ff16156108005760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610628565b828054611f13906125e7565b90600052602060002090601f016020900481019282611f355760008555611f7b565b82601f10611f4e5782800160ff19823516178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578235825591602001919060010190611f60565b50611f87929150611fff565b5090565b828054611f97906125e7565b90600052602060002090601f016020900481019282611fb95760008555611f7b565b82601f10611fd257805160ff1916838001178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578251825591602001919060010190611fe4565b5b80821115611f875760008155600101612000565b600067ffffffffffffffff8084111561202f5761202f6126a9565b604051601f8501601f19908116603f01168101908282118183101715612057576120576126a9565b8160405280935085815286868601111561207057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a2557600080fd5b600082601f8301126120b257600080fd5b61089383833560208501612014565b6000602082840312156120d357600080fd5b6108938261208a565b600080604083850312156120ef57600080fd5b6120f88361208a565b91506121066020840161208a565b90509250929050565b60008060006060848603121561212457600080fd5b61212d8461208a565b925061213b6020850161208a565b9150604084013590509250925092565b6000806000806080858703121561216157600080fd5b61216a8561208a565b93506121786020860161208a565b925060408501359150606085013567ffffffffffffffff81111561219b57600080fd5b8501601f810187136121ac57600080fd5b6121bb87823560208401612014565b91505092959194509250565b600080604083850312156121da57600080fd5b6121e38361208a565b9150602083013580151581146121f857600080fd5b809150509250929050565b6000806040838503121561221657600080fd5b61221f8361208a565b946020939093013593505050565b60006020828403121561223f57600080fd5b8135610893816126bf565b60006020828403121561225c57600080fd5b8151610893816126bf565b6000806020838503121561227a57600080fd5b823567ffffffffffffffff8082111561229257600080fd5b818501915085601f8301126122a657600080fd5b8135818111156122b557600080fd5b8660208285010111156122c757600080fd5b60209290920196919550909350505050565b6000806000606084860312156122ee57600080fd5b833567ffffffffffffffff8082111561230657600080fd5b612312878388016120a1565b9450602086013591508082111561232857600080fd5b50612335868287016120a1565b9250506123446040850161208a565b90509250925092565b60006020828403121561235f57600080fd5b5035919050565b6000815180845261237e8160208601602086016125bb565b601f01601f19169290920160200192915050565b600083516123a48184602088016125bb565b8351908301906123b88183602088016125bb565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123f490830184612366565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124365783518352928401929184019160010161241a565b50909695505050505050565b6020815260006108936020830184612366565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000821982111561258b5761258b612651565b500190565b60008261259f5761259f612667565b500490565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b838111156106b35750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461088457600080fdfea264697066735822122010c24f987433cb76961cf382544571953fe89cc8cf5349e92ca05b5df4393f5f64736f6c63430008070033
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.