Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ERC721TLM
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 20000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC721Upgradeable, ERC165Upgradeable} from "openzeppelin-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import {IERC2309Upgradeable} from "openzeppelin-upgradeable/interfaces/IERC2309Upgradeable.sol"; import {StringsUpgradeable} from "openzeppelin-upgradeable/utils/StringsUpgradeable.sol"; import {EIP2981TLUpgradeable} from "tl-sol-tools/upgradeable/royalties/EIP2981TLUpgradeable.sol"; import {OwnableAccessControlUpgradeable} from "tl-sol-tools/upgradeable/access/OwnableAccessControlUpgradeable.sol"; import {StoryContractUpgradeable} from "tl-story/upgradeable/StoryContractUpgradeable.sol"; import {BlockListUpgradeable} from "tl-blocklist/BlockListUpgradeable.sol"; import {IERC7160} from "./IERC7160.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev token uri is an empty string error EmptyTokenURI(); /// @dev batch mint to zero address error MintToZeroAddress(); /// @dev batch size too small error BatchSizeTooSmall(); /// @dev airdrop to too few addresses error AirdropTooFewAddresses(); /// @dev token not owned by the owner of the contract error TokenNotOwnedByOwner(); /// @dev caller is not the owner of the specific token error CallerNotTokenOwner(); /// @dev caller is not approved or owner error CallerNotApprovedOrOwner(); /// @dev token does not exist error TokenDoesntExist(); /// @dev index given for ERC-7160 is invalid error InvalidTokenURIIndex(); /// @dev no tokens in tokenIds array error NoTokensSpecified(); /*////////////////////////////////////////////////////////////////////////// ERC721TLM //////////////////////////////////////////////////////////////////////////*/ /// @title ERC721TLM.sol /// @notice Transient Labs ERC-721 Creator Contract with multi-metadata support (ERC-7160) /// @dev features include /// - ultra efficient batch minting /// - airdrops /// - ability to hook in external mint contracts /// - ability to set multiple admins /// - Story Contract /// - BlockList /// - Multi-metadata per ERC-7160 /// - individual token royalty overrides /// @dev When unpinned, the latest metadata added for a token is returned from `tokenURI` and `tokenURIs` /// @author transientlabs.xyz /// @custom:version 2.10.1 contract ERC721TLM is Initializable, ERC721Upgradeable, EIP2981TLUpgradeable, OwnableAccessControlUpgradeable, StoryContractUpgradeable, BlockListUpgradeable, IERC2309Upgradeable, IERC7160 { /*////////////////////////////////////////////////////////////////////////// Custom Types //////////////////////////////////////////////////////////////////////////*/ /// @dev struct defining a batch mint struct BatchMint { address creator; uint256 fromTokenId; uint256 toTokenId; string baseUri; } /// @dev struct for specifying base uri index and folder index struct MetadataLoc { uint128 baseUriIndex; uint128 folderIndex; } /// @dev struct for holding additional metadata used in ERC-7160 struct MultiMetadata { bool pinned; uint256 index; MetadataLoc[] metadataLocs; } /// @dev string representation of uint256 using StringsUpgradeable for uint256; /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ string public constant VERSION = "2.10.1"; bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 public constant APPROVED_MINT_CONTRACT = keccak256("APPROVED_MINT_CONTRACT"); uint256 private _counter; // token ids mapping(uint256 => bool) private _burned; // flag to see if a token is burned or not -- needed for burning batch mints mapping(uint256 => string) private _tokenUris; mapping(uint256 => MultiMetadata) private _multiMetadatas; string[] private _multiMetadataBaseUris; BatchMint[] private _batchMints; // dynamic array for batch mints /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @dev This event emits when the metadata of a token is changed /// so that the third-party platforms such as NFT market can /// timely update the images and related attributes of the NFT. /// @dev see EIP-4906 event MetadataUpdate(uint256 tokenId); /// @dev This event emits when the metadata of a range of tokens is changed /// so that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. /// @dev see EIP-4906 event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId); /*////////////////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////////////////*/ /// @param disable boolean to disable initialization for the implementation contract constructor(bool disable) { if (disable) _disableInitializers(); } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param name the name of the 721 contract /// @param symbol the symbol of the 721 contract /// @param defaultRoyaltyRecipient the default address for royalty payments /// @param defaultRoyaltyPercentage the default royalty percentage of basis points (out of 10,000) /// @param initOwner the owner of the contract /// @param admins array of admin addresses to add to the contract /// @param enableStory a bool deciding whether to add story fuctionality or not /// @param blockListRegistry address of the blocklist registry to use function initialize( string memory name, string memory symbol, address defaultRoyaltyRecipient, uint256 defaultRoyaltyPercentage, address initOwner, address[] memory admins, bool enableStory, address blockListRegistry ) external initializer { // initialize parent contracts __ERC721_init(name, symbol); __EIP2981TL_init(defaultRoyaltyRecipient, defaultRoyaltyPercentage); __OwnableAccessControl_init(initOwner); __StoryContractUpgradeable_init(enableStory); __BlockList_init(blockListRegistry); // add admins _setRole(ADMIN_ROLE, admins, true); } /*////////////////////////////////////////////////////////////////////////// General Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get total supply minted so far function totalSupply() external view returns (uint256) { return _counter; } /*////////////////////////////////////////////////////////////////////////// Access Control Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set approved mint contracts /// @dev access to owner or admin /// @param minters array of minters to grant approval to /// @param status status for the minters function setApprovedMintContracts(address[] calldata minters, bool status) external onlyRoleOrOwner(ADMIN_ROLE) { _setRole(APPROVED_MINT_CONTRACT, minters, status); } /*////////////////////////////////////////////////////////////////////////// Mint Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to mint a single token /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint function mint(address recipient, string calldata uri) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _mint(recipient, _counter); } /// @notice function to mint a single token with specific token royalty /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint /// @param royaltyAddress royalty payout address for this new token /// @param royaltyPercent royalty percentage for this new token function mint(address recipient, string calldata uri, address royaltyAddress, uint256 royaltyPercent) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _overrideTokenRoyaltyInfo(_counter, royaltyAddress, royaltyPercent); _mint(recipient, _counter); } /// @notice function to batch mint tokens /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param numTokens number of tokens in the batch mint /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: this folder should have the same number of json files in it as numTokens /// NOTE: files should be named without any file extension /// NOTE: baseUri should NOT have a trailing `/` function batchMint(address recipient, uint256 numTokens, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (recipient == address(0)) revert MintToZeroAddress(); if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (numTokens < 2) revert BatchSizeTooSmall(); uint256 start = _counter + 1; uint256 end = start + numTokens - 1; _counter += numTokens; _batchMints.push(BatchMint(recipient, start, end, baseUri)); __unsafe_increaseBalance(recipient, numTokens); // this function adds the number of tokens to the recipient address for (uint256 id = start; id < end + 1; ++id) { emit Transfer(address(0), recipient, id); } } /// @notice function to batch mint tokens, ultra gas savings with ERC-2309 /// @dev requires owner or admin /// @dev uses ERC-2309. BEWARE may not be compatible with all platforms /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param numTokens number of tokens in the batch mint /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: this folder should have the same number of json files in it as numTokens /// NOTE: files should be named without any file extension /// NOTE: baseUri should NOT have a trailing `/` function batchMintUltra(address recipient, uint256 numTokens, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (recipient == address(0)) revert MintToZeroAddress(); if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (numTokens < 2) revert BatchSizeTooSmall(); uint256 start = _counter + 1; uint256 end = start + numTokens - 1; _counter += numTokens; _batchMints.push(BatchMint(recipient, start, end, baseUri)); __unsafe_increaseBalance(recipient, numTokens); // this function adds the number of tokens to the recipient address emit ConsecutiveTransfer(start, end, address(0), recipient); } /// @notice function to airdrop tokens to addresses /// @dev requires owner or admin /// @dev utilizes batch mint token uri values to save some gas /// but still ultimately mints individual tokens to people /// @param addresses dynamic array of addresses to mint to /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: the number of json files in this folder should be equal to the number of addresses /// NOTE: files should be named without any file extension /// NOTE: baseUri should not have a trailing `/` function airdrop(address[] calldata addresses, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (addresses.length < 2) revert AirdropTooFewAddresses(); uint256 start = _counter + 1; uint256 end = start + addresses.length - 1; _counter += addresses.length; _batchMints.push(BatchMint(address(0), start, end, baseUri)); for (uint256 i = 0; i < addresses.length; i++) { _mint(addresses[i], start + i); } } /// @notice function to allow an approved mint contract to mint /// @dev requires the contract to be an approved mint contract /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint function externalMint(address recipient, string calldata uri) external onlyRole(APPROVED_MINT_CONTRACT) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _mint(recipient, _counter); } /*////////////////////////////////////////////////////////////////////////// Batch Mint Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get batch mint info /// @param tokenId token id to look up for batch mint info /// @return owner of the token (address) /// @return string of the uri for the tokenId function _getBatchInfo(uint256 tokenId) internal view returns (address, string memory) { uint256 i = 0; for (i; i < _batchMints.length; i++) { if (tokenId >= _batchMints[i].fromTokenId && tokenId <= _batchMints[i].toTokenId) { break; } } if (i >= _batchMints.length) { return (address(0), ""); } string memory tokenUri = string(abi.encodePacked(_batchMints[i].baseUri, "/", (tokenId - _batchMints[i].fromTokenId).toString())); return (_batchMints[i].creator, tokenUri); } /// @notice function to override { ERC721Upgradeable._ownerOf } to allow for batch minting /// @inheritdoc ERC721Upgradeable function _ownerOf(uint256 tokenId) internal view override(ERC721Upgradeable) returns (address) { if (_burned[tokenId]) { return address(0); } else { if (tokenId > 0 && tokenId <= _counter) { address owner = ERC721Upgradeable._ownerOf(tokenId); if (owner == address(0)) { // see if can find token in a batch mint (owner,) = _getBatchInfo(tokenId); } return owner; } else { return address(0); } } } /*////////////////////////////////////////////////////////////////////////// Burn Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to burn a token /// @dev caller must be approved or owner of the token /// @param tokenId: the token to burn function burn(uint256 tokenId) external { if (!_isApprovedOrOwner(msg.sender, tokenId)) revert CallerNotApprovedOrOwner(); _burn(tokenId); _burned[tokenId] = true; } /*////////////////////////////////////////////////////////////////////////// Royalty Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set the default royalty specification /// @dev requires owner /// @param newRecipient: the new royalty payout address /// @param newPercentage: the new royalty percentage in basis (out of 10,000) function setDefaultRoyalty(address newRecipient, uint256 newPercentage) external onlyOwner { _setDefaultRoyaltyInfo(newRecipient, newPercentage); } /// @notice function to override a token's royalty info /// @dev requires owner /// @param tokenId: the token to override royalty for /// @param newRecipient: the new royalty payout address for the token id /// @param newPercentage: the new royalty percentage in basis (out of 10,000) for the token id function setTokenRoyalty(uint256 tokenId, address newRecipient, uint256 newPercentage) external onlyOwner { _overrideTokenRoyaltyInfo(tokenId, newRecipient, newPercentage); } /*////////////////////////////////////////////////////////////////////////// ERC-7160 Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to add token uris /// @dev written to take in many token ids and a base uri that contains metadata files with file names matching the index of each token id in the `tokenIds` array (aka folderIndex) /// @dev no trailing slash on the base uri /// @param tokenIds: array of token ids that get metadata added to them /// @param baseUri: the base uri of a folder containing metadata - file names start at 0 and increase monotonically function addTokenUris(uint256[] calldata tokenIds, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (tokenIds.length == 0) revert NoTokensSpecified(); uint128 baseUriIndex = uint128(_multiMetadataBaseUris.length); _multiMetadataBaseUris.push(baseUri); for (uint256 i = 0; i < tokenIds.length; i++) { if (!_exists(tokenIds[i])) revert TokenDoesntExist(); MetadataLoc memory m = MetadataLoc(baseUriIndex, uint128(i)); _multiMetadatas[tokenIds[i]].metadataLocs.push(m); emit MetadataUpdate(tokenIds[i]); } } /// @inheritdoc IERC7160 function tokenURIs(uint256 tokenId) external view returns (uint256 index, string[] memory uris, bool pinned) { if (!_exists(tokenId)) revert TokenDoesntExist(); MultiMetadata memory multiMetadata = _multiMetadatas[tokenId]; // build uris uris = new string[](multiMetadata.metadataLocs.length + 1); uris[0] = _getMintedMetadatUri(tokenId); for (uint256 i = 0; i < multiMetadata.metadataLocs.length; i++) { uris[i + 1] = _getMultiMetadataUri(multiMetadata, i); } // get if pinned pinned = multiMetadata.pinned; // set index index = pinned ? multiMetadata.index : uris.length - 1; } /// @inheritdoc IERC7160 function pinTokenURI(uint256 tokenId, uint256 index) external { if (!_exists(tokenId)) revert TokenDoesntExist(); if (ownerOf(tokenId) != msg.sender) revert CallerNotTokenOwner(); if (index > _multiMetadatas[tokenId].metadataLocs.length) { revert InvalidTokenURIIndex(); } _multiMetadatas[tokenId].index = index; _multiMetadatas[tokenId].pinned = true; emit TokenUriPinned(tokenId, index); emit MetadataUpdate(tokenId); } /// @inheritdoc IERC7160 function unpinTokenURI(uint256 tokenId) external { if (!_exists(tokenId)) revert TokenDoesntExist(); if (ownerOf(tokenId) != msg.sender) revert CallerNotTokenOwner(); _multiMetadatas[tokenId].pinned = false; emit TokenUriUnpinned(tokenId); emit MetadataUpdate(tokenId); } /// @inheritdoc IERC7160 function hasPinnedTokenURI(uint256 tokenId) external view returns (bool) { if (!_exists(tokenId)) revert TokenDoesntExist(); return _multiMetadatas[tokenId].pinned; } /// @inheritdoc ERC721Upgradeable function tokenURI(uint256 tokenId) public view override(ERC721Upgradeable) returns (string memory uri) { if (!_exists(tokenId)) revert TokenDoesntExist(); MultiMetadata memory multiMetadata = _multiMetadatas[tokenId]; if (multiMetadata.pinned) { if (multiMetadata.index == 0) { uri = _getMintedMetadatUri(tokenId); } else { uri = _getMultiMetadataUri(multiMetadata, multiMetadata.index - 1); } } else { if (multiMetadata.metadataLocs.length == 0) { uri = _getMintedMetadatUri(tokenId); } else { uri = _getMultiMetadataUri(multiMetadata, multiMetadata.metadataLocs.length - 1); } } } /// @notice internal function to get original metadata uri from mint function _getMintedMetadatUri(uint256 tokenId) internal view returns (string memory uri) { uri = _tokenUris[tokenId]; if (bytes(uri).length == 0) { (, uri) = _getBatchInfo(tokenId); } } /// @notice internal function to help get metadata from multi-metadata struct /// @param multiMetadata The multimMtadata struct in memory /// @param index The index of the multiMetadataLoc function _getMultiMetadataUri(MultiMetadata memory multiMetadata, uint256 index) internal view returns (string memory uri) { uri = string( abi.encodePacked( _multiMetadataBaseUris[multiMetadata.metadataLocs[index].baseUriIndex], "/", uint256(multiMetadata.metadataLocs[index].folderIndex).toString() ) ); } /*////////////////////////////////////////////////////////////////////////// Story Contract Hooks //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc StoryContractUpgradeable /// @dev restricted to the owner of the contract function _isStoryAdmin(address potentialAdmin) internal view override(StoryContractUpgradeable) returns (bool) { return potentialAdmin == owner() || hasRole(ADMIN_ROLE, potentialAdmin); } /// @inheritdoc StoryContractUpgradeable function _tokenExists(uint256 tokenId) internal view override(StoryContractUpgradeable) returns (bool) { return _exists(tokenId); } /// @inheritdoc StoryContractUpgradeable function _isTokenOwner(address potentialOwner, uint256 tokenId) internal view override(StoryContractUpgradeable) returns (bool) { address tokenOwner = ownerOf(tokenId); return tokenOwner == potentialOwner; } /// @inheritdoc StoryContractUpgradeable /// @dev restricted to the owner of the contract function _isCreator(address potentialCreator, uint256 /* tokenId */ ) internal view override(StoryContractUpgradeable) returns (bool) { return potentialCreator == owner() || hasRole(ADMIN_ROLE, potentialCreator); } /*////////////////////////////////////////////////////////////////////////// BlockList Functions & Overrides //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc BlockListUpgradeable /// @dev restricted to the owner of the contract function isBlockListAdmin(address potentialAdmin) public view override(BlockListUpgradeable) returns (bool) { return potentialAdmin == owner(); } /// @inheritdoc ERC721Upgradeable /// @dev added the `notBlocked` modifier for blocklist function approve(address to, uint256 tokenId) public override(ERC721Upgradeable) notBlocked(to) { ERC721Upgradeable.approve(to, tokenId); } /// @inheritdoc ERC721Upgradeable /// @dev added the `notBlocked` modifier for blocklist function setApprovalForAll(address operator, bool approved) public override(ERC721Upgradeable) notBlocked(operator) { ERC721Upgradeable.setApprovalForAll(operator, approved); } /*////////////////////////////////////////////////////////////////////////// ERC-165 Support //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view override(ERC721Upgradeable, EIP2981TLUpgradeable, StoryContractUpgradeable) returns (bool) { return ( ERC721Upgradeable.supportsInterface(interfaceId) || EIP2981TLUpgradeable.supportsInterface(interfaceId) || StoryContractUpgradeable.supportsInterface(interfaceId) || interfaceId == bytes4(0x49064906) || interfaceId == type(IERC7160).interfaceId ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (interfaces/IERC2309.sol) pragma solidity ^0.8.0; /** * @dev ERC-2309: ERC-721 Consecutive Transfer Extension. * * _Available since v4.8._ */ interface IERC2309Upgradeable { /** * @dev Emitted when the tokens from `fromTokenId` to `toTokenId` are transferred from `fromAddress` to `toAddress`. */ event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC165Upgradeable} from "openzeppelin-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import {IEIP2981} from "../../royalties/IEIP2981.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev error if the recipient is set to address(0) error ZeroAddressError(); /// @dev error if the royalty percentage is greater than to 100% error MaxRoyaltyError(); /*////////////////////////////////////////////////////////////////////////// EIP2981TL //////////////////////////////////////////////////////////////////////////*/ /// @title EIP2981TLUpgradeable.sol /// @notice abstract contract to define a default royalty spec /// while allowing for specific token overrides /// @dev follows EIP-2981 (https://eips.ethereum.org/EIPS/eip-2981) /// @author transientlabs.xyz /// @custom:version 2.2.2 abstract contract EIP2981TLUpgradeable is IEIP2981, Initializable, ERC165Upgradeable { /*////////////////////////////////////////////////////////////////////////// Royalty Struct //////////////////////////////////////////////////////////////////////////*/ struct RoyaltySpec { address recipient; uint256 percentage; } /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ address private _defaultRecipient; uint256 private _defaultPercentage; mapping(uint256 => RoyaltySpec) private _tokenOverrides; /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @notice function to initialize the contract /// @param defaultRecipient - the default royalty payout address /// @param defaultPercentage - the deafult royalty percentage, out of 10,000 function __EIP2981TL_init(address defaultRecipient, uint256 defaultPercentage) internal onlyInitializing { __EIP2981TL_init_unchained(defaultRecipient, defaultPercentage); } /// @notice unchained function to initialize the contract /// @param defaultRecipient - the default royalty payout address /// @param defaultPercentage - the deafult royalty percentage, out of 10,000 function __EIP2981TL_init_unchained(address defaultRecipient, uint256 defaultPercentage) internal onlyInitializing { _setDefaultRoyaltyInfo(defaultRecipient, defaultPercentage); } /*////////////////////////////////////////////////////////////////////////// Royalty Changing Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set default royalty info /// @param newRecipient - the new default royalty payout address /// @param newPercentage - the new default royalty percentage, out of 10,000 function _setDefaultRoyaltyInfo(address newRecipient, uint256 newPercentage) internal { if (newRecipient == address(0)) revert ZeroAddressError(); if (newPercentage > 10_000) revert MaxRoyaltyError(); _defaultRecipient = newRecipient; _defaultPercentage = newPercentage; } /// @notice function to override royalty spec on a specific token /// @param tokenId - the token id to override royalty for /// @param newRecipient - the new royalty payout address /// @param newPercentage - the new royalty percentage, out of 10,000 function _overrideTokenRoyaltyInfo(uint256 tokenId, address newRecipient, uint256 newPercentage) internal { if (newRecipient == address(0)) revert ZeroAddressError(); if (newPercentage > 10_000) revert MaxRoyaltyError(); _tokenOverrides[tokenId].recipient = newRecipient; _tokenOverrides[tokenId].percentage = newPercentage; } /*////////////////////////////////////////////////////////////////////////// Royalty Info //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc IEIP2981 function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { address recipient = _defaultRecipient; uint256 percentage = _defaultPercentage; if (_tokenOverrides[tokenId].recipient != address(0)) { recipient = _tokenOverrides[tokenId].recipient; percentage = _tokenOverrides[tokenId].percentage; } return (recipient, salePrice / 10_000 * percentage); // divide first to avoid overflow } /*////////////////////////////////////////////////////////////////////////// ERC-165 Override //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable) returns (bool) { return interfaceId == type(IEIP2981).interfaceId || ERC165Upgradeable.supportsInterface(interfaceId); } /*////////////////////////////////////////////////////////////////////////// External View Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice Query the default royalty receiver and percentage. /// @return Tuple containing the default royalty recipient and percentage out of 10_000 function getDefaultRoyaltyRecipientAndPercentage() external view returns (address, uint256) { return (_defaultRecipient, _defaultPercentage); } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {EnumerableSetUpgradeable} from "openzeppelin-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import {OwnableUpgradeable} from "openzeppelin-upgradeable/access/OwnableUpgradeable.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev does not have specified role error NotSpecifiedRole(bytes32 role); /// @dev is not specified role or owner error NotRoleOrOwner(bytes32 role); /*////////////////////////////////////////////////////////////////////////// OwnableAccessControlUpgradeable //////////////////////////////////////////////////////////////////////////*/ /// @title OwnableAccessControl.sol /// @notice single owner, flexible access control mechanics /// @dev can easily be extended by inheriting and applying additional roles /// @dev by default, only the owner can grant roles but by inheriting, but you /// may allow other roles to grant roles by using the internal helper. /// @author transientlabs.xyz /// @custom:version 2.2.2 abstract contract OwnableAccessControlUpgradeable is Initializable, OwnableUpgradeable { /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; uint256 private _c; // counter to be able to revoke all priviledges mapping(uint256 => mapping(bytes32 => mapping(address => bool))) private _roleStatus; mapping(uint256 => mapping(bytes32 => EnumerableSetUpgradeable.AddressSet)) private _roleMembers; /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @param from - address that authorized the role change /// @param user - the address who's role has been changed /// @param approved - boolean indicating the user's status in role /// @param role - the bytes32 role created in the inheriting contract event RoleChange(address indexed from, address indexed user, bool indexed approved, bytes32 role); /// @param from - address that authorized the revoke event AllRolesRevoked(address indexed from); /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ modifier onlyRole(bytes32 role) { if (!hasRole(role, msg.sender)) { revert NotSpecifiedRole(role); } _; } modifier onlyRoleOrOwner(bytes32 role) { if (!hasRole(role, msg.sender) && owner() != msg.sender) { revert NotRoleOrOwner(role); } _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param initOwner - the address of the initial owner function __OwnableAccessControl_init(address initOwner) internal onlyInitializing { __Ownable_init(); _transferOwnership(initOwner); __OwnableAccessControl_init_unchained(); } function __OwnableAccessControl_init_unchained() internal onlyInitializing {} /*////////////////////////////////////////////////////////////////////////// External Role Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to revoke all roles currently present /// @dev increments the `_c` variables /// @dev requires owner privileges function revokeAllRoles() external onlyOwner { _c++; emit AllRolesRevoked(msg.sender); } /// @notice function to renounce role /// @param role - bytes32 role created in inheriting contracts function renounceRole(bytes32 role) external { address[] memory members = new address[](1); members[0] = msg.sender; _setRole(role, members, false); } /// @notice function to grant/revoke a role to an address /// @dev requires owner to call this function but this may be further /// extended using the internal helper function in inheriting contracts /// @param role - bytes32 role created in inheriting contracts /// @param roleMembers - list of addresses that should have roles attached to them based on `status` /// @param status - bool whether to remove or add `roleMembers` to the `role` function setRole(bytes32 role, address[] memory roleMembers, bool status) external onlyOwner { _setRole(role, roleMembers, status); } /*////////////////////////////////////////////////////////////////////////// External View Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to see if an address is the owner /// @param role - bytes32 role created in inheriting contracts /// @param potentialRoleMember - address to check for role membership function hasRole(bytes32 role, address potentialRoleMember) public view returns (bool) { return _roleStatus[_c][role][potentialRoleMember]; } /// @notice function to get role members /// @param role - bytes32 role created in inheriting contracts function getRoleMembers(bytes32 role) public view returns (address[] memory) { return _roleMembers[_c][role].values(); } /*////////////////////////////////////////////////////////////////////////// Internal Helper Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice helper function to set addresses for a role /// @param role - bytes32 role created in inheriting contracts /// @param roleMembers - list of addresses that should have roles attached to them based on `status` /// @param status - bool whether to remove or add `roleMembers` to the `role` function _setRole(bytes32 role, address[] memory roleMembers, bool status) internal { for (uint256 i = 0; i < roleMembers.length; i++) { _roleStatus[_c][role][roleMembers[i]] = status; if (status) { _roleMembers[_c][role].add(roleMembers[i]); } else { _roleMembers[_c][role].remove(roleMembers[i]); } emit RoleChange(msg.sender, roleMembers[i], status, role); } } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC165Upgradeable} from "openzeppelin-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import { IStory, StoryNotEnabled, TokenDoesNotExist, NotTokenOwner, NotTokenCreator, NotStoryAdmin } from "../IStory.sol"; /*////////////////////////////////////////////////////////////////////////// Story Contract //////////////////////////////////////////////////////////////////////////*/ /// @title Story Contract /// @dev upgradeable, inheritable abstract contract implementing the Story Contract interface /// @author transientlabs.xyz /// @custom:version 4.0.2 abstract contract StoryContractUpgradeable is Initializable, IStory, ERC165Upgradeable { /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ bool public storyEnabled; /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ modifier storyMustBeEnabled() { if (!storyEnabled) revert StoryNotEnabled(); _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param enabled - a bool to enable or disable Story addition function __StoryContractUpgradeable_init(bool enabled) internal { __StoryContractUpgradeable_init_unchained(enabled); } /// @param enabled - a bool to enable or disable Story addition function __StoryContractUpgradeable_init_unchained(bool enabled) internal { storyEnabled = enabled; } /*////////////////////////////////////////////////////////////////////////// Story Functions //////////////////////////////////////////////////////////////////////////*/ /// @dev function to set story enabled/disabled /// @dev requires story admin /// @param enabled - a boolean setting to enable or disable Story additions function setStoryEnabled(bool enabled) external { if (!_isStoryAdmin(msg.sender)) revert NotStoryAdmin(); storyEnabled = enabled; } /// @inheritdoc IStory function addCreatorStory(uint256 tokenId, string calldata creatorName, string calldata story) external storyMustBeEnabled { if (!_tokenExists(tokenId)) revert TokenDoesNotExist(); if (!_isCreator(msg.sender, tokenId)) revert NotTokenCreator(); emit CreatorStory(tokenId, msg.sender, creatorName, story); } /// @inheritdoc IStory function addStory(uint256 tokenId, string calldata collectorName, string calldata story) external storyMustBeEnabled { if (!_tokenExists(tokenId)) revert TokenDoesNotExist(); if (!_isTokenOwner(msg.sender, tokenId)) revert NotTokenOwner(); emit Story(tokenId, msg.sender, collectorName, story); } /*////////////////////////////////////////////////////////////////////////// Hooks //////////////////////////////////////////////////////////////////////////*/ /// @dev function to allow access to enabling/disabling story /// @param potentialAdmin - the address to check for admin priviledges function _isStoryAdmin(address potentialAdmin) internal view virtual returns (bool); /// @dev function to check if a token exists on the token contract /// @param tokenId - the token id to check for existence function _tokenExists(uint256 tokenId) internal view virtual returns (bool); /// @dev function to check ownership of a token /// @param potentialOwner - the address to check for ownership of `tokenId` /// @param tokenId - the token id to check ownership against function _isTokenOwner(address potentialOwner, uint256 tokenId) internal view virtual returns (bool); /// @dev function to check creatorship of a token /// @param potentialCreator - the address to check creatorship of `tokenId` /// @param tokenId - the token id to check creatorship against function _isCreator(address potentialCreator, uint256 tokenId) internal view virtual returns (bool); /*////////////////////////////////////////////////////////////////////////// Overrides //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view virtual override (ERC165Upgradeable) returns (bool) { return interfaceId == type(IStory).interfaceId || ERC165Upgradeable.supportsInterface(interfaceId); } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {BlockedOperator, Unauthorized, IBlockList} from "./IBlockList.sol"; import {IBlockListRegistry} from "./IBlockListRegistry.sol"; /// @title BlockList /// @author transientlabs.xyz /// @notice abstract contract that can be inherited to block /// approvals from non-royalty paying marketplaces /// @custom:version 4.0.0 abstract contract BlockListUpgradeable is Initializable, IBlockList { /*////////////////////////////////////////////////////////////////////////// Public State Variables //////////////////////////////////////////////////////////////////////////*/ IBlockListRegistry public blockListRegistry; /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ event BlockListRegistryUpdated(address indexed caller, address indexed oldRegistry, address indexed newRegistry); /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ /// @dev modifier that can be applied to approval functions in order to block listings on marketplaces modifier notBlocked(address operator) { if (getBlockListStatus(operator)) { revert BlockedOperator(); } _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param blockListRegistryAddr - the initial BlockList Registry Address function __BlockList_init(address blockListRegistryAddr) internal onlyInitializing { __BlockList_init_unchained(blockListRegistryAddr); } /// @param blockListRegistryAddr - the initial BlockList Registry Address function __BlockList_init_unchained(address blockListRegistryAddr) internal onlyInitializing { blockListRegistry = IBlockListRegistry(blockListRegistryAddr); emit BlockListRegistryUpdated(msg.sender, address(0), blockListRegistryAddr); } /*////////////////////////////////////////////////////////////////////////// Admin Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to transfer ownership of the blockList /// @dev requires blockList owner /// @dev can be transferred to the ZERO_ADDRESS if desired /// @dev BE VERY CAREFUL USING THIS /// @param newBlockListRegistry - the address of the new BlockList registry function updateBlockListRegistry(address newBlockListRegistry) public { if (!isBlockListAdmin(msg.sender)) revert Unauthorized(); address oldRegistry = address(blockListRegistry); blockListRegistry = IBlockListRegistry(newBlockListRegistry); emit BlockListRegistryUpdated(msg.sender, oldRegistry, newBlockListRegistry); } /*////////////////////////////////////////////////////////////////////////// Public Read Functions //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc IBlockList function getBlockListStatus(address operator) public view override returns (bool) { if (address(blockListRegistry).code.length == 0) return false; try blockListRegistry.getBlockListStatus(operator) returns (bool isBlocked) { return isBlocked; } catch { return false; } } /// @notice Abstract function to determine if the operator is a blocklist admin. /// @param potentialAdmin - the potential admin address to check function isBlockListAdmin(address potentialAdmin) public view virtual returns (bool); /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /// @title EIP-721 Multi-Metdata Extension /// @dev The ERC-165 identifier for this interface is 0x06e1bc5b. interface IERC7160 { /// @dev This event emits when a token uri is pinned and is /// useful for indexing purposes. event TokenUriPinned(uint256 indexed tokenId, uint256 indexed index); /// @dev This event emits when a token uri is unpinned and is /// useful for indexing purposes. event TokenUriUnpinned(uint256 indexed tokenId); /// @notice Get all token uris associated with a particular token /// @dev If a token uri is pinned, the index returned SHOULD be the index in the string array /// @dev This call MUST revert if the token does not exist /// @param tokenId The identifier for the nft /// @return index An unisgned integer that specifies which uri is pinned for a token (or the default uri if unpinned) /// @return uris A string array of all uris associated with a token /// @return pinned A boolean showing if the token has pinned metadata or not function tokenURIs(uint256 tokenId) external view returns (uint256 index, string[] memory uris, bool pinned); /// @notice Pin a specific token uri for a particular token /// @dev This call MUST revert if the token does not exist /// @dev This call MUST emit a `TokenUriPinned` event /// @dev This call MAY emit a `MetadataUpdate` event from ERC-4096 /// @param tokenId The identifier of the nft /// @param index The index in the string array returned from the `tokenURIs` function that should be pinned for the token function pinTokenURI(uint256 tokenId, uint256 index) external; /// @notice Unpin metadata for a particular token /// @dev This call MUST revert if the token does not exist /// @dev This call MUST emit a `TokenUriUnpinned` event /// @dev This call MAY emit a `MetadataUpdate` event from ERC-4096 /// @dev It is up to the developer to define what this function does and is intentionally left open-ended /// @param tokenId The identifier of the nft function unpinTokenURI(uint256 tokenId) external; /// @notice Check on-chain if a token id has a pinned uri or not /// @dev This call MUST revert if the token does not exist /// @dev Useful for on-chain mechanics that don't require the tokenURIs themselves /// @param tokenId The identifier of the nft /// @return pinned A bool specifying if a token has metadata pinned or not function hasPinnedTokenURI(uint256 tokenId) external view returns (bool pinned); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 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/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// /// @dev Interface for the NFT Royalty Standard /// interface IEIP2981 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param tokenId - the NFT asset queried for royalty information /// @param salePrice - the sale price of the NFT asset specified by tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for salePrice function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev story additions are not enabled error StoryNotEnabled(); /// @dev token does not exist error TokenDoesNotExist(); /// @dev caller is not the token owner error NotTokenOwner(); /// @dev caller is not the token creator error NotTokenCreator(); /// @dev caller is not a story admin error NotStoryAdmin(); /*////////////////////////////////////////////////////////////////////////// IStory //////////////////////////////////////////////////////////////////////////*/ /// @title Story Contract Interface /// @author transientlabs.xyz /// @custom:version 4.0.2 interface IStory { /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @notice event describing a creator story getting added to a token /// @dev this events stores creator stories on chain in the event log /// @param tokenId - the token id to which the story is attached /// @param creatorAddress - the address of the creator of the token /// @param creatorName - string representation of the creator's name /// @param story - the story written and attached to the token id event CreatorStory(uint256 indexed tokenId, address indexed creatorAddress, string creatorName, string story); /// @notice event describing a collector story getting added to a token /// @dev this events stores collector stories on chain in the event log /// @param tokenId - the token id to which the story is attached /// @param collectorAddress - the address of the collector of the token /// @param collectorName - string representation of the collectors's name /// @param story - the story written and attached to the token id event Story(uint256 indexed tokenId, address indexed collectorAddress, string collectorName, string story); /*////////////////////////////////////////////////////////////////////////// Story Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to let the creator add a story to any token they have created /// @dev depending on the implementation, this function may be restricted in various ways, such as /// limiting the number of times the creator may write a story. /// @dev this function MUST emit the CreatorStory event each time it is called /// @dev this function MUST implement logic to restrict access to only the creator /// @dev this function MUST revert if a story is written to a non-existent token /// @param tokenId - the token id to which the story is attached /// @param creatorName - string representation of the creator's name /// @param story - the story written and attached to the token id function addCreatorStory(uint256 tokenId, string calldata creatorName, string calldata story) external; /// @notice function to let collectors add a story to any token they own /// @dev depending on the implementation, this function may be restricted in various ways, such as /// limiting the number of times a collector may write a story. /// @dev this function MUST emit the Story event each time it is called /// @dev this function MUST implement logic to restrict access to only the owner of the token /// @dev this function MUST revert if a story is written to a non-existent token /// @param tokenId - the token id to which the story is attached /// @param collectorName - string representation of the collectors's name /// @param story - the story written and attached to the token id function addStory(uint256 tokenId, string calldata collectorName, string calldata story) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev blocked operator error error BlockedOperator(); /// @dev unauthorized to call fn method error Unauthorized(); /*////////////////////////////////////////////////////////////////////////// IBlockList //////////////////////////////////////////////////////////////////////////*/ /// @title IBlockList /// @notice interface for the BlockList Contract /// @author transientlabs.xyz /// @custom:version 4.0.0 interface IBlockList { /// @notice function to get blocklist status with True meaning that the operator is blocked /// @dev must return false if the blocklist registry is an EOA or an incompatible contract, true/false if compatible /// @param operator - operator to check against for blocking function getBlockListStatus(address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /// @title BlockList Registry /// @notice interface for the BlockListRegistry Contract /// @author transientlabs.xyz /// @custom:version 4.0.0 interface IBlockListRegistry { /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ event BlockListStatusChange(address indexed user, address indexed operator, bool indexed status); event BlockListCleared(address indexed user); /*////////////////////////////////////////////////////////////////////////// Public Read Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get blocklist status with True meaning that the operator is blocked function getBlockListStatus(address operator) external view returns (bool); /*////////////////////////////////////////////////////////////////////////// Public Write Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set the block list status for multiple operators /// @dev must be called by the blockList owner function setBlockListStatus(address[] calldata operators, bool status) external; /// @notice function to clear the block list status /// @dev must be called by the blockList owner function clearBlockList() external; }
// 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); }
{ "remappings": [ "blocklist/=lib/blocklist/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "sstore2/=lib/sstore2/contracts/", "story-contract/=lib/story-contract/src/", "tl-blocklist/=lib/blocklist/src/", "tl-creator-contracts/=src/", "tl-sol-tools/=lib/tl-sol-tools/src/", "tl-story/=lib/story-contract/src/" ], "optimizer": { "enabled": true, "runs": 20000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bool","name":"disable","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AirdropTooFewAddresses","type":"error"},{"inputs":[],"name":"BatchSizeTooSmall","type":"error"},{"inputs":[],"name":"BlockedOperator","type":"error"},{"inputs":[],"name":"CallerNotApprovedOrOwner","type":"error"},{"inputs":[],"name":"CallerNotTokenOwner","type":"error"},{"inputs":[],"name":"EmptyTokenURI","type":"error"},{"inputs":[],"name":"InvalidTokenURIIndex","type":"error"},{"inputs":[],"name":"MaxRoyaltyError","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"NoTokensSpecified","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"NotRoleOrOwner","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"NotSpecifiedRole","type":"error"},{"inputs":[],"name":"NotStoryAdmin","type":"error"},{"inputs":[],"name":"NotTokenCreator","type":"error"},{"inputs":[],"name":"NotTokenOwner","type":"error"},{"inputs":[],"name":"StoryNotEnabled","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"TokenDoesntExist","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddressError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"}],"name":"AllRolesRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"oldRegistry","type":"address"},{"indexed":true,"internalType":"address","name":"newRegistry","type":"address"}],"name":"BlockListRegistryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"creatorAddress","type":"address"},{"indexed":false,"internalType":"string","name":"creatorName","type":"string"},{"indexed":false,"internalType":"string","name":"story","type":"string"}],"name":"CreatorStory","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"bool","name":"approved","type":"bool"},{"indexed":false,"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"RoleChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"collectorAddress","type":"address"},{"indexed":false,"internalType":"string","name":"collectorName","type":"string"},{"indexed":false,"internalType":"string","name":"story","type":"string"}],"name":"Story","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"}],"name":"TokenUriPinned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenUriUnpinned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"APPROVED_MINT_CONTRACT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"creatorName","type":"string"},{"internalType":"string","name":"story","type":"string"}],"name":"addCreatorStory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"collectorName","type":"string"},{"internalType":"string","name":"story","type":"string"}],"name":"addStory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"addTokenUris","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"batchMintUltra","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blockListRegistry","outputs":[{"internalType":"contract IBlockListRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"externalMint","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":"operator","type":"address"}],"name":"getBlockListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyRecipientAndPercentage","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"hasPinnedTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"potentialRoleMember","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"defaultRoyaltyRecipient","type":"address"},{"internalType":"uint256","name":"defaultRoyaltyPercentage","type":"uint256"},{"internalType":"address","name":"initOwner","type":"address"},{"internalType":"address[]","name":"admins","type":"address[]"},{"internalType":"bool","name":"enableStory","type":"bool"},{"internalType":"address","name":"blockListRegistry","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":"potentialAdmin","type":"address"}],"name":"isBlockListAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"royaltyAddress","type":"address"},{"internalType":"uint256","name":"royaltyPercent","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"pinTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeAllRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setApprovedMintContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"},{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address[]","name":"roleMembers","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setStoryEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"newRecipient","type":"address"},{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bool","name":"pinned","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unpinTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlockListRegistry","type":"address"}],"name":"updateBlockListRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620059a2380380620059a283398101604081905262000034916200010e565b80156200004557620000456200004c565b5062000139565b600054610100900460ff1615620000b95760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811610156200010c576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6000602082840312156200012157600080fd5b815180151581146200013257600080fd5b9392505050565b61585980620001496000396000f3fe608060405234801561001057600080fd5b50600436106103415760003560e01c80636c6ad242116101bd578063a22cb465116100f9578063d0def521116100a2578063da14cbbc1161007c578063da14cbbc14610765578063e985e9c514610778578063f2fde38b146107b4578063ffa1ad74146107c757600080fd5b8063d0def5211461072c578063d4bf502a1461073f578063d8d045b41461075257600080fd5b8063aef5a549116100d3578063aef5a549146106f3578063b88d4fde14610706578063c87b56dd1461071957600080fd5b8063a22cb465146106ac578063a25a3393146106bf578063a3246ad3146106d357600080fd5b80637e6cc5421161016657806391d148541161014057806391d148541461063a57806395d89b411461067e5780639713c80714610686578063a00939f61461069957600080fd5b80637e6cc542146105ff5780638bb9c5bf146106165780638da5cb5b1461062957600080fd5b8063715018a611610197578063715018a6146105bd57806375b238fc146105c55780637de19c5f146105ec57600080fd5b80636c6ad242146105755780636c8b703f1461058857806370a08231146105aa57600080fd5b806333aa4fb31161028c5780634a5970651161023557806356000f771161020f57806356000f77146105295780635b23e3ce1461053c5780636352211e1461054f5780636bf0651f1461056257600080fd5b80634a597065146104f557806351dc02f21461050357806352dbd6da1461051657600080fd5b806342842e0e1161026657806342842e0e146104bc57806342966c68146104cf578063455086e1146104e257600080fd5b806333aa4fb31461048e57806339ae37c0146104965780633f2bc966146104a957600080fd5b80631fbd2402116102ee57806324f029c3116102c857806324f029c3146104365780632a55205a14610449578063334980a51461047b57600080fd5b80631fbd2402146103e95780631ff7f0bc146103fc57806323b872dd1461042357600080fd5b8063095ea7b31161031f578063095ea7b3146103ae5780631258e887146103c357806318160ddd146103d657600080fd5b806301ffc9a71461034657806306fdde031461036e578063081812fc14610383575b600080fd5b610359610354366004614923565b610803565b60405190151581526020015b60405180910390f35b6103766108ca565b60405161036591906149ae565b6103966103913660046149c1565b61095c565b6040516001600160a01b039091168152602001610365565b6103c16103bc3660046149f1565b610983565b005b6103c16103d1366004614a1b565b6109d3565b610199545b604051908152602001610365565b6103c16103f7366004614bea565b610a7f565b6103db7ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af581565b6103c1610431366004614cbf565b610c82565b6103c1610444366004614cfb565b610d09565b61045c610457366004614d18565b610d7a565b604080516001600160a01b039093168352602083019190915201610365565b610359610489366004614a1b565b610df2565b6103c1610ec0565b6103c16104a4366004614dc1565b610f0a565b6103596104b7366004614a1b565b6111b6565b6103c16104ca366004614cbf565b6111e5565b6103c16104dd3660046149c1565b611200565b6103596104f03660046149c1565b611283565b610133546103599060ff1681565b6103c1610511366004614e2d565b6112db565b6103c16105243660046149c1565b6113ea565b6103c1610537366004614e84565b611505565b6103c161054a366004614e84565b611610565b61039661055d3660046149c1565b61170c565b6103c1610570366004614dc1565b611770565b6103c1610583366004614efe565b611a41565b61059b6105963660046149c1565b611b40565b60405161036593929190614f51565b6103db6105b8366004614a1b565b611d41565b6103c1611ddb565b6103db7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6103c16105fa366004614d18565b611def565b61045c6097546098546001600160a01b0390911691565b6103c16106243660046149c1565b611f63565b60cc546001600160a01b0316610396565b610359610648366004614fe4565b60fe54600090815260ff6020818152604080842086855282528084206001600160a01b0386168552909152909120541692915050565b610376611fc9565b6103c1610694366004615010565b611fd8565b6103c16106a7366004615035565b611feb565b6103c16106ba366004615083565b6122d9565b61016654610396906001600160a01b031681565b6106e66106e13660046149c1565b612324565b60405161036591906150ba565b6103c1610701366004615035565b61234d565b6103c1610714366004615107565b612637565b6103766107273660046149c1565b6126bf565b6103c161073a366004614efe565b612827565b6103c161074d366004615183565b6128d1565b6103c16107603660046149f1565b6128e4565b6103c16107733660046151d3565b6128f6565b610359610786366004615240565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6103c16107c2366004614a1b565b612a33565b6103766040518060400160405280600681526020017f322e31302e31000000000000000000000000000000000000000000000000000081525081565b600061080e82612ac3565b8061081d575061081d82612ba6565b8061082c575061082c82612c3d565b8061087857507fffffffff0000000000000000000000000000000000000000000000000000000082167f4906490600000000000000000000000000000000000000000000000000000000145b806108c457507fffffffff0000000000000000000000000000000000000000000000000000000082167f06e1bc5b00000000000000000000000000000000000000000000000000000000145b92915050565b6060606580546108d99061526a565b80601f01602080910402602001604051908101604052809291908181526020018280546109059061526a565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b600061096782612cd4565b506000908152606960205260409020546001600160a01b031690565b8161098d81610df2565b156109c4576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ce8383612d29565b505050565b6109dc336111b6565b610a12576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016680546001600160a01b038381167fffffffffffffffffffffffff00000000000000000000000000000000000000008316811790935560405191169190829033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f90600090a45050565b600054610100900460ff1615808015610a9f5750600054600160ff909116105b80610ab95750303b158015610ab9575060005460ff166001145b610b305760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610b8e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b610b988989612e55565b610ba28787612edc565b610bab85612f63565b610bdf8361013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905550565b610be882612ff9565b610c147fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177585600161307f565b8015610c7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610c8c338261320c565b610cfe5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610b27565b6109ce83838361328b565b610d12336134ea565b610d48576040517f4701b18c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b609754609854600084815260996020526040812054909283926001600160a01b039182169290911615610dcc575050600084815260996020526040902080546001909101546001600160a01b03909116905b8181610dda612710886152e6565b610de49190615321565b9350935050505b9250929050565b610166546000906001600160a01b03163b8103610e1157506000919050565b610166546040517f334980a50000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529091169063334980a590602401602060405180830381865afa925050508015610eaf575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610eac91810190615338565b60015b6108c457506000919050565b919050565b610ec861356d565b60fe8054906000610ed883615355565b909155505060405133907fdf1eaea754aea6dc7d083377ed7366dd7405e3fb0f16ddfb9448770520e4427990600090a2565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015610f7a575033610f6e60cc546001600160a01b031690565b6001600160a01b031614155b15610fb4576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003610fef576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600284101561102a576040517f8015753900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061019954600161103c919061538d565b90506000600161104c878461538d565b61105691906153a0565b905086869050610199600082825461106e919061538d565b9250508190555061019e604051806080016040528060006001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091178155908301519381019390935550604081015160028301556060810151909190600382019061115390826153f9565b50505060005b868110156111ac5761119a88888381811061117657611176615513565b905060200201602081019061118b9190614a1b565b611195838661538d565b6135c7565b806111a481615355565b915050611159565b5050505050505050565b60006111ca60cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316149050919050565b6109ce83838360405180602001604052806000815250612637565b61120a338261320c565b611240576040517fc9c1cf1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112498161374c565b600090815261019a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600061128e82613817565b6112c4576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815261019c602052604090205460ff1690565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561134b57503361133f60cc546001600160a01b031690565b6001600160a01b031614155b15611385576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6113e47ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525087925061307f915050565b50505050565b6113f381613817565b611429576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336114338261170c565b6001600160a01b031614611473576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019c602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555182917fc4c6bc7f651e4303914b61cddcb11cf5e983ffce8f33c7fe68aeeae65bbb1d0591a26040518181527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a150565b6101335460ff16611542576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154b85613834565b611581576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158b338661383f565b6115c1576040517f57deb26a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f5c0564b4237730adb947143019acb5addfdbf1be3ad1edf72e24a8f9d02fd2c186868686604051611601949392919061558b565b60405180910390a35050505050565b6101335460ff1661164d576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165685613834565b61168c576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169633866138c5565b6116cc576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f40ebea9c3c7603a5d233a0bec01e483338737b6bed01bed2ac09ccbaa3d4b7ac86868686604051611601949392919061558b565b600080611718836138e9565b90506001600160a01b0381166108c45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b27565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156117e05750336117d460cc546001600160a01b031690565b6001600160a01b031614155b1561181a576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003611855576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000849003611890576040517f374eaed400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61019d80546001810182556000919091527f71880bb8535eda3be1bc3614789b84ba72ab02d5ae26ba282fa1178bb7fea1e681016118cf8486836155b2565b5060005b85811015611a38576118fc8787838181106118f0576118f0615513565b90506020020135613817565b611932576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080518082019091526fffffffffffffffffffffffffffffffff80841682528216602082015261019c600089898581811061197057611970615513565b602090810292909201358352508181019290925260400160009081206002018054600181018255908252908290208351928401516fffffffffffffffffffffffffffffffff908116700100000000000000000000000000000000029316929092179101557ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7888884818110611a0757611a07615513565b90506020020135604051611a1d91815260200190565b60405180910390a15080611a3081615355565b9150506118d3565b50505050505050565b60fe54600090815260ff602081815260408084207ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af58086529083528185203386529092529092205416611ac3576040517fee074e7400000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003611afe576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6101998054906000611b0f83615355565b909155505061019954600090815261019b60205260409020611b328385836155b2565b506113e484610199546135c7565b600060606000611b4f84613817565b611b85576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084815261019c602090815260408083208151606081018352815460ff1615158152600182015481850152600282018054845181870281018701865281815292959394860193879084015b82821015611c3057600084815260209081902060408051808201909152908401546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041681830152825260019092019101611bd1565b50505091525050604081015151909150611c4b90600161538d565b67ffffffffffffffff811115611c6357611c63614a36565b604051908082528060200260200182016040528015611c9657816020015b6060815260200190600190039081611c815790505b509250611ca285613957565b83600081518110611cb557611cb5615513565b602002602001018190525060005b816040015151811015611d1457611cda8282613a07565b84611ce683600161538d565b81518110611cf657611cf6615513565b60200260200101819052508080611d0c90615355565b915050611cc3565b508051915081611d315760018351611d2c91906153a0565b611d37565b80602001515b9350509193909250565b60006001600160a01b038216611dbf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610b27565b506001600160a01b031660009081526068602052604090205490565b611de361356d565b611ded6000613abe565b565b611df882613817565b611e2e576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33611e388361170c565b6001600160a01b031614611e78576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040902060020154811115611ec4576040517f58eafc8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040808220600180820185905581547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001617905551829184917fdafe56f3e547ebb1818fc8353ba53591db2528d41cbb7a35af2d9469f44905339190a36040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b604080516001808252818301909252600091602080830190803683370190505090503381600081518110611f9957611f99615513565b60200260200101906001600160a01b031690816001600160a01b031681525050611fc58282600061307f565b5050565b6060606680546108d99061526a565b611fe061356d565b6109ce838383613b28565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561205b57503361204f60cc546001600160a01b031690565b6001600160a01b031614155b15612095576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6001600160a01b0385166120d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612110576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600284101561214b576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061019954600161215d919061538d565b90506000600161216d878461538d565b61217791906153a0565b905085610199600082825461218c919061538d565b9250508190555061019e6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091178155908301519381019390935550604081015160028301556060810151909190600382019061227090826153f9565b50505061227d8787613bef565b815b61228a82600161538d565b8110156111ac5760405181906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122d281615355565b905061227f565b816122e381610df2565b1561231a576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ce8383613c20565b60fe5460009081526101006020908152604080832084845290915290206060906108c490613c2b565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156123bd5750336123b160cc546001600160a01b031690565b6001600160a01b031614155b156123f7576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6001600160a01b038516612437576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612472576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60028410156124ad576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006101995460016124bf919061538d565b9050600060016124cf878461538d565b6124d991906153a0565b90508561019960008282546124ee919061538d565b9250508190555061019e6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906125d290826153f9565b5050506125df8787613bef565b866001600160a01b031660006001600160a01b0316837fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d8460405161262691815260200190565b60405180910390a450505050505050565b612641338361320c565b6126b35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610b27565b6113e484848484613c38565b60606126ca82613817565b612700576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c602090815260408083208151606081018352815460ff1615158152600182015481850152600282018054845181870281018701865281815292959394860193879084015b828210156127ab57600084815260209081902060408051808201909152908401546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104168183015282526001909201910161274c565b505050915250508051909150156127f25780602001516000036127d8576127d183613957565b9150612821565b6127d181600183602001516127ed91906153a0565b613a07565b806040015151600003612808576127d183613957565b61281e8160018360400151516127ed91906153a0565b91505b50919050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561289757503361288b60cc546001600160a01b031690565b6001600160a01b031614155b15611ac3576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6128d961356d565b6109ce83838361307f565b6128ec61356d565b611fc58282613cc1565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561296657503361295a60cc546001600160a01b031690565b6001600160a01b031614155b156129a0576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b60008490036129db576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61019980549060006129ec83615355565b909155505061019954600090815261019b60205260409020612a0f8587836155b2565b50612a1e610199548484613b28565b612a2b86610199546135c7565b505050505050565b612a3b61356d565b6001600160a01b038116612ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b27565b612ac081613abe565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b5657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f0d23ecb90000000000000000000000000000000000000000000000000000000014806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b612cdd81613817565b612ac05760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b27565b6000612d348261170c565b9050806001600160a01b0316836001600160a01b031603612dbd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b27565b336001600160a01b0382161480612dd95750612dd98133610786565b612e4b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610b27565b6109ce8383613d7b565b600054610100900460ff16612ed25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611fc58282613e01565b600054610100900460ff16612f595760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611fc58282613e97565b600054610100900460ff16612fe05760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b612fe8613f14565b612ff181613abe565b612ac0613f99565b600054610100900460ff166130765760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b612ac081614016565b60005b82518110156113e45760fe54600090815260ff60209081526040808320878452909152812084518492908690859081106130be576130be615513565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550811561314c5761314683828151811061311857613118615513565b60209081029190910181015160fe5460009081526101008352604080822089835290935291909120906140fa565b50613191565b61318f83828151811061316157613161615513565b60209081029190910181015160fe54600090815261010083526040808220898352909352919091209061410f565b505b8115158382815181106131a6576131a6615513565b60200260200101516001600160a01b0316336001600160a01b03167fc9f6f69b3c19bd2b7eb8273129bbca5e3db0e3be63ca9903e140122a5bbb556e876040516131f291815260200190565b60405180910390a48061320481615355565b915050613082565b6000806132188361170c565b9050806001600160a01b0316846001600160a01b0316148061325f57506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806132835750836001600160a01b03166132788461095c565b6001600160a01b0316145b949350505050565b826001600160a01b031661329e8261170c565b6001600160a01b03161461331a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610b27565b6001600160a01b0382166133955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b27565b826001600160a01b03166133a88261170c565b6001600160a01b0316146134245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610b27565b600081815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b038781168086526068855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006134fe60cc546001600160a01b031690565b6001600160a01b0316826001600160a01b031614806108c4575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038716855290915290912054166108c4565b60cc546001600160a01b03163314611ded5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b27565b6001600160a01b03821661361d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b27565b61362681613817565b156136735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b61367c81613817565b156136c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006137578261170c565b90506137628261170c565b600083815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526068845282852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080613823836138e9565b6001600160a01b0316141592915050565b60006108c482613817565b600061385360cc546001600160a01b031690565b6001600160a01b0316836001600160a01b031614806138be575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038816855290915290912054165b9392505050565b6000806138d18361170c565b6001600160a01b039081169085161491505092915050565b600081815261019a602052604081205460ff161561390957506000919050565b60008211801561391c5750610199548211155b1561394f576000828152606760205260409020546001600160a01b0316806108c45761394783614124565b509392505050565b506000919050565b600081815261019b602052604090208054606091906139759061526a565b80601f01602080910402602001604051908101604052809291908181526020018280546139a19061526a565b80156139ee5780601f106139c3576101008083540402835291602001916139ee565b820191906000526020600020905b8154815290600101906020018083116139d157829003601f168201915b505050505090508051600003610ebb5761281e82614124565b606061019d83604001518381518110613a2257613a22615513565b6020026020010151600001516fffffffffffffffffffffffffffffffff1681548110613a5057613a50615513565b90600052602060002001613a9684604001518481518110613a7357613a73615513565b6020026020010151602001516fffffffffffffffffffffffffffffffff16614286565b604051602001613aa79291906156cd565b604051602081830303815290604052905092915050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216613b68576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613ba4576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009283526099602052604090922080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117815560010155565b6001600160a01b03821660009081526068602052604081208054839290613c1790849061538d565b90915550505050565b611fc5338383614344565b606060006138be83614430565b613c4384848461328b565b613c4f8484848461448c565b6113e45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b27565b6001600160a01b038216613d01576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613d3d576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039390931692909217909155609855565b600081815260696020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190613dc88261170c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16613e7e5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b6065613e8a83826153f9565b5060666109ce82826153f9565b600054610100900460ff166128ec5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b600054610100900460ff16613f915760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611ded61464b565b600054610100900460ff16611ded5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b600054610100900460ff166140935760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b61016680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405160009033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f908390a450565b60006138be836001600160a01b0384166146d1565b60006138be836001600160a01b038416614720565b6000606060005b61019e548110156141a65761019e818154811061414a5761414a615513565b9060005260206000209060040201600101548410158015614190575061019e818154811061417a5761417a615513565b9060005260206000209060040201600201548411155b6141a6578061419e81615355565b91505061412b565b61019e5481106141cc576000604051806020016040528060008152509250925050915091565b600061019e82815481106141e2576141e2615513565b906000526020600020906004020160030161422c61019e848154811061420a5761420a615513565b9060005260206000209060040201600101548761422791906153a0565b614286565b60405160200161423d9291906156cd565b604051602081830303815290604052905061019e828154811061426257614262615513565b60009182526020909120600490910201546001600160a01b03169590945092505050565b6060600061429383614813565b600101905060008167ffffffffffffffff8111156142b3576142b3614a36565b6040519080825280601f01601f1916602001820160405280156142dd576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846142e757509392505050565b816001600160a01b0316836001600160a01b0316036143a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b27565b6001600160a01b038381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561448057602002820191906000526020600020905b81548152602001906001019080831161446c575b50505050509050919050565b60006001600160a01b0384163b15614640576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906144e990339089908890889060040161579b565b6020604051808303816000875af1925050508015614542575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261453f918101906157d7565b60015b6145f5573d808015614570576040519150601f19603f3d011682016040523d82523d6000602084013e614575565b606091505b5080516000036145ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b27565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613283565b506001949350505050565b600054610100900460ff166146c85760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611ded33613abe565b6000818152600183016020526040812054614718575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108c4565b5060006108c4565b600081815260018301602052604081205480156148095760006147446001836153a0565b8554909150600090614758906001906153a0565b90508181146147bd57600086600001828154811061477857614778615513565b906000526020600020015490508087600001848154811061479b5761479b615513565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806147ce576147ce6157f4565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108c4565b60009150506108c4565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061485c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614888576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106148a657662386f26fc10000830492506010015b6305f5e10083106148be576305f5e100830492506008015b61271083106148d257612710830492506004015b606483106148e4576064830492506002015b600a83106108c45760010192915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612ac057600080fd5b60006020828403121561493557600080fd5b81356138be816148f5565b60005b8381101561495b578181015183820152602001614943565b50506000910152565b6000815180845261497c816020860160208601614940565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006138be6020830184614964565b6000602082840312156149d357600080fd5b5035919050565b80356001600160a01b0381168114610ebb57600080fd5b60008060408385031215614a0457600080fd5b614a0d836149da565b946020939093013593505050565b600060208284031215614a2d57600080fd5b6138be826149da565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614aac57614aac614a36565b604052919050565b600067ffffffffffffffff831115614ace57614ace614a36565b614aff60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614a65565b9050828152838383011115614b1357600080fd5b828260208301376000602084830101529392505050565b600082601f830112614b3b57600080fd5b6138be83833560208501614ab4565b600082601f830112614b5b57600080fd5b8135602067ffffffffffffffff821115614b7757614b77614a36565b8160051b614b86828201614a65565b9283528481018201928281019087851115614ba057600080fd5b83870192505b84831015614bc657614bb7836149da565b82529183019190830190614ba6565b979650505050505050565b8015158114612ac057600080fd5b8035610ebb81614bd1565b600080600080600080600080610100898b031215614c0757600080fd5b883567ffffffffffffffff80821115614c1f57600080fd5b614c2b8c838d01614b2a565b995060208b0135915080821115614c4157600080fd5b614c4d8c838d01614b2a565b9850614c5b60408c016149da565b975060608b01359650614c7060808c016149da565b955060a08b0135915080821115614c8657600080fd5b50614c938b828c01614b4a565b935050614ca260c08a01614bdf565b9150614cb060e08a016149da565b90509295985092959890939650565b600080600060608486031215614cd457600080fd5b614cdd846149da565b9250614ceb602085016149da565b9150604084013590509250925092565b600060208284031215614d0d57600080fd5b81356138be81614bd1565b60008060408385031215614d2b57600080fd5b50508035926020909101359150565b60008083601f840112614d4c57600080fd5b50813567ffffffffffffffff811115614d6457600080fd5b6020830191508360208260051b8501011115610deb57600080fd5b60008083601f840112614d9157600080fd5b50813567ffffffffffffffff811115614da957600080fd5b602083019150836020828501011115610deb57600080fd5b60008060008060408587031215614dd757600080fd5b843567ffffffffffffffff80821115614def57600080fd5b614dfb88838901614d3a565b90965094506020870135915080821115614e1457600080fd5b50614e2187828801614d7f565b95989497509550505050565b600080600060408486031215614e4257600080fd5b833567ffffffffffffffff811115614e5957600080fd5b614e6586828701614d3a565b9094509250506020840135614e7981614bd1565b809150509250925092565b600080600080600060608688031215614e9c57600080fd5b85359450602086013567ffffffffffffffff80821115614ebb57600080fd5b614ec789838a01614d7f565b90965094506040880135915080821115614ee057600080fd5b50614eed88828901614d7f565b969995985093965092949392505050565b600080600060408486031215614f1357600080fd5b614f1c846149da565b9250602084013567ffffffffffffffff811115614f3857600080fd5b614f4486828701614d7f565b9497909650939450505050565b600060608201858352602060608185015281865180845260808601915060808160051b870101935082880160005b82811015614fcb577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80888703018452614fb9868351614964565b95509284019290840190600101614f7f565b5050505050809150508215156040830152949350505050565b60008060408385031215614ff757600080fd5b82359150615007602084016149da565b90509250929050565b60008060006060848603121561502557600080fd5b83359250614ceb602085016149da565b6000806000806060858703121561504b57600080fd5b615054856149da565b935060208501359250604085013567ffffffffffffffff81111561507757600080fd5b614e2187828801614d7f565b6000806040838503121561509657600080fd5b61509f836149da565b915060208301356150af81614bd1565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156150fb5783516001600160a01b0316835292840192918401916001016150d6565b50909695505050505050565b6000806000806080858703121561511d57600080fd5b615126856149da565b9350615134602086016149da565b925060408501359150606085013567ffffffffffffffff81111561515757600080fd5b8501601f8101871361516857600080fd5b61517787823560208401614ab4565b91505092959194509250565b60008060006060848603121561519857600080fd5b83359250602084013567ffffffffffffffff8111156151b657600080fd5b6151c286828701614b4a565b9250506040840135614e7981614bd1565b6000806000806000608086880312156151eb57600080fd5b6151f4866149da565b9450602086013567ffffffffffffffff81111561521057600080fd5b61521c88828901614d7f565b909550935061522f9050604087016149da565b949793965091946060013592915050565b6000806040838503121561525357600080fd5b61525c836149da565b9150615007602084016149da565b600181811c9082168061527e57607f821691505b602082108103612821577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008261531c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820281158282048414176108c4576108c46152b7565b60006020828403121561534a57600080fd5b81516138be81614bd1565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615386576153866152b7565b5060010190565b808201808211156108c4576108c46152b7565b818103818111156108c4576108c46152b7565b601f8211156109ce57600081815260208120601f850160051c810160208610156153da5750805b601f850160051c820191505b81811015612a2b578281556001016153e6565b815167ffffffffffffffff81111561541357615413614a36565b61542781615421845461526a565b846153b3565b602080601f83116001811461547a57600084156154445750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612a2b565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156154c7578886015182559484019460019091019084016154a8565b508582101561550357878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60408152600061559f604083018688615542565b8281036020840152614bc6818587615542565b67ffffffffffffffff8311156155ca576155ca614a36565b6155de836155d8835461526a565b836153b3565b6000601f84116001811461563057600085156155fa5750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556156c6565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561567f578685013582556020948501946001909201910161565f565b50868210156156ba577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008084546156db8161526a565b600182811680156156f3576001811461572657615755565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450615755565b8860005260208060002060005b8581101561574c5781548a820152908401908201615733565b50505082870194505b507f2f0000000000000000000000000000000000000000000000000000000000000084528651925061578d8382860160208a01614940565b919092010195945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526157cd6080830184614964565b9695505050505050565b6000602082840312156157e957600080fd5b81516138be816148f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122095610282e742be809cc25166f67f90a701b52f1aca8c4023974ed8b3a1b67ddc64736f6c634300081300330000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103415760003560e01c80636c6ad242116101bd578063a22cb465116100f9578063d0def521116100a2578063da14cbbc1161007c578063da14cbbc14610765578063e985e9c514610778578063f2fde38b146107b4578063ffa1ad74146107c757600080fd5b8063d0def5211461072c578063d4bf502a1461073f578063d8d045b41461075257600080fd5b8063aef5a549116100d3578063aef5a549146106f3578063b88d4fde14610706578063c87b56dd1461071957600080fd5b8063a22cb465146106ac578063a25a3393146106bf578063a3246ad3146106d357600080fd5b80637e6cc5421161016657806391d148541161014057806391d148541461063a57806395d89b411461067e5780639713c80714610686578063a00939f61461069957600080fd5b80637e6cc542146105ff5780638bb9c5bf146106165780638da5cb5b1461062957600080fd5b8063715018a611610197578063715018a6146105bd57806375b238fc146105c55780637de19c5f146105ec57600080fd5b80636c6ad242146105755780636c8b703f1461058857806370a08231146105aa57600080fd5b806333aa4fb31161028c5780634a5970651161023557806356000f771161020f57806356000f77146105295780635b23e3ce1461053c5780636352211e1461054f5780636bf0651f1461056257600080fd5b80634a597065146104f557806351dc02f21461050357806352dbd6da1461051657600080fd5b806342842e0e1161026657806342842e0e146104bc57806342966c68146104cf578063455086e1146104e257600080fd5b806333aa4fb31461048e57806339ae37c0146104965780633f2bc966146104a957600080fd5b80631fbd2402116102ee57806324f029c3116102c857806324f029c3146104365780632a55205a14610449578063334980a51461047b57600080fd5b80631fbd2402146103e95780631ff7f0bc146103fc57806323b872dd1461042357600080fd5b8063095ea7b31161031f578063095ea7b3146103ae5780631258e887146103c357806318160ddd146103d657600080fd5b806301ffc9a71461034657806306fdde031461036e578063081812fc14610383575b600080fd5b610359610354366004614923565b610803565b60405190151581526020015b60405180910390f35b6103766108ca565b60405161036591906149ae565b6103966103913660046149c1565b61095c565b6040516001600160a01b039091168152602001610365565b6103c16103bc3660046149f1565b610983565b005b6103c16103d1366004614a1b565b6109d3565b610199545b604051908152602001610365565b6103c16103f7366004614bea565b610a7f565b6103db7ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af581565b6103c1610431366004614cbf565b610c82565b6103c1610444366004614cfb565b610d09565b61045c610457366004614d18565b610d7a565b604080516001600160a01b039093168352602083019190915201610365565b610359610489366004614a1b565b610df2565b6103c1610ec0565b6103c16104a4366004614dc1565b610f0a565b6103596104b7366004614a1b565b6111b6565b6103c16104ca366004614cbf565b6111e5565b6103c16104dd3660046149c1565b611200565b6103596104f03660046149c1565b611283565b610133546103599060ff1681565b6103c1610511366004614e2d565b6112db565b6103c16105243660046149c1565b6113ea565b6103c1610537366004614e84565b611505565b6103c161054a366004614e84565b611610565b61039661055d3660046149c1565b61170c565b6103c1610570366004614dc1565b611770565b6103c1610583366004614efe565b611a41565b61059b6105963660046149c1565b611b40565b60405161036593929190614f51565b6103db6105b8366004614a1b565b611d41565b6103c1611ddb565b6103db7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6103c16105fa366004614d18565b611def565b61045c6097546098546001600160a01b0390911691565b6103c16106243660046149c1565b611f63565b60cc546001600160a01b0316610396565b610359610648366004614fe4565b60fe54600090815260ff6020818152604080842086855282528084206001600160a01b0386168552909152909120541692915050565b610376611fc9565b6103c1610694366004615010565b611fd8565b6103c16106a7366004615035565b611feb565b6103c16106ba366004615083565b6122d9565b61016654610396906001600160a01b031681565b6106e66106e13660046149c1565b612324565b60405161036591906150ba565b6103c1610701366004615035565b61234d565b6103c1610714366004615107565b612637565b6103766107273660046149c1565b6126bf565b6103c161073a366004614efe565b612827565b6103c161074d366004615183565b6128d1565b6103c16107603660046149f1565b6128e4565b6103c16107733660046151d3565b6128f6565b610359610786366004615240565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6103c16107c2366004614a1b565b612a33565b6103766040518060400160405280600681526020017f322e31302e31000000000000000000000000000000000000000000000000000081525081565b600061080e82612ac3565b8061081d575061081d82612ba6565b8061082c575061082c82612c3d565b8061087857507fffffffff0000000000000000000000000000000000000000000000000000000082167f4906490600000000000000000000000000000000000000000000000000000000145b806108c457507fffffffff0000000000000000000000000000000000000000000000000000000082167f06e1bc5b00000000000000000000000000000000000000000000000000000000145b92915050565b6060606580546108d99061526a565b80601f01602080910402602001604051908101604052809291908181526020018280546109059061526a565b80156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b5050505050905090565b600061096782612cd4565b506000908152606960205260409020546001600160a01b031690565b8161098d81610df2565b156109c4576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ce8383612d29565b505050565b6109dc336111b6565b610a12576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016680546001600160a01b038381167fffffffffffffffffffffffff00000000000000000000000000000000000000008316811790935560405191169190829033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f90600090a45050565b600054610100900460ff1615808015610a9f5750600054600160ff909116105b80610ab95750303b158015610ab9575060005460ff166001145b610b305760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610b8e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b610b988989612e55565b610ba28787612edc565b610bab85612f63565b610bdf8361013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905550565b610be882612ff9565b610c147fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177585600161307f565b8015610c7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610c8c338261320c565b610cfe5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610b27565b6109ce83838361328b565b610d12336134ea565b610d48576040517f4701b18c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b609754609854600084815260996020526040812054909283926001600160a01b039182169290911615610dcc575050600084815260996020526040902080546001909101546001600160a01b03909116905b8181610dda612710886152e6565b610de49190615321565b9350935050505b9250929050565b610166546000906001600160a01b03163b8103610e1157506000919050565b610166546040517f334980a50000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529091169063334980a590602401602060405180830381865afa925050508015610eaf575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610eac91810190615338565b60015b6108c457506000919050565b919050565b610ec861356d565b60fe8054906000610ed883615355565b909155505060405133907fdf1eaea754aea6dc7d083377ed7366dd7405e3fb0f16ddfb9448770520e4427990600090a2565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015610f7a575033610f6e60cc546001600160a01b031690565b6001600160a01b031614155b15610fb4576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003610fef576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600284101561102a576040517f8015753900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061019954600161103c919061538d565b90506000600161104c878461538d565b61105691906153a0565b905086869050610199600082825461106e919061538d565b9250508190555061019e604051806080016040528060006001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091178155908301519381019390935550604081015160028301556060810151909190600382019061115390826153f9565b50505060005b868110156111ac5761119a88888381811061117657611176615513565b905060200201602081019061118b9190614a1b565b611195838661538d565b6135c7565b806111a481615355565b915050611159565b5050505050505050565b60006111ca60cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316149050919050565b6109ce83838360405180602001604052806000815250612637565b61120a338261320c565b611240576040517fc9c1cf1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112498161374c565b600090815261019a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600061128e82613817565b6112c4576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815261019c602052604090205460ff1690565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561134b57503361133f60cc546001600160a01b031690565b6001600160a01b031614155b15611385576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6113e47ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525087925061307f915050565b50505050565b6113f381613817565b611429576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336114338261170c565b6001600160a01b031614611473576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019c602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555182917fc4c6bc7f651e4303914b61cddcb11cf5e983ffce8f33c7fe68aeeae65bbb1d0591a26040518181527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a150565b6101335460ff16611542576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61154b85613834565b611581576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158b338661383f565b6115c1576040517f57deb26a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f5c0564b4237730adb947143019acb5addfdbf1be3ad1edf72e24a8f9d02fd2c186868686604051611601949392919061558b565b60405180910390a35050505050565b6101335460ff1661164d576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165685613834565b61168c576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169633866138c5565b6116cc576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f40ebea9c3c7603a5d233a0bec01e483338737b6bed01bed2ac09ccbaa3d4b7ac86868686604051611601949392919061558b565b600080611718836138e9565b90506001600160a01b0381166108c45760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b27565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156117e05750336117d460cc546001600160a01b031690565b6001600160a01b031614155b1561181a576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003611855576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000849003611890576040517f374eaed400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61019d80546001810182556000919091527f71880bb8535eda3be1bc3614789b84ba72ab02d5ae26ba282fa1178bb7fea1e681016118cf8486836155b2565b5060005b85811015611a38576118fc8787838181106118f0576118f0615513565b90506020020135613817565b611932576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080518082019091526fffffffffffffffffffffffffffffffff80841682528216602082015261019c600089898581811061197057611970615513565b602090810292909201358352508181019290925260400160009081206002018054600181018255908252908290208351928401516fffffffffffffffffffffffffffffffff908116700100000000000000000000000000000000029316929092179101557ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7888884818110611a0757611a07615513565b90506020020135604051611a1d91815260200190565b60405180910390a15080611a3081615355565b9150506118d3565b50505050505050565b60fe54600090815260ff602081815260408084207ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af58086529083528185203386529092529092205416611ac3576040517fee074e7400000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6000829003611afe576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6101998054906000611b0f83615355565b909155505061019954600090815261019b60205260409020611b328385836155b2565b506113e484610199546135c7565b600060606000611b4f84613817565b611b85576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084815261019c602090815260408083208151606081018352815460ff1615158152600182015481850152600282018054845181870281018701865281815292959394860193879084015b82821015611c3057600084815260209081902060408051808201909152908401546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041681830152825260019092019101611bd1565b50505091525050604081015151909150611c4b90600161538d565b67ffffffffffffffff811115611c6357611c63614a36565b604051908082528060200260200182016040528015611c9657816020015b6060815260200190600190039081611c815790505b509250611ca285613957565b83600081518110611cb557611cb5615513565b602002602001018190525060005b816040015151811015611d1457611cda8282613a07565b84611ce683600161538d565b81518110611cf657611cf6615513565b60200260200101819052508080611d0c90615355565b915050611cc3565b508051915081611d315760018351611d2c91906153a0565b611d37565b80602001515b9350509193909250565b60006001600160a01b038216611dbf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610b27565b506001600160a01b031660009081526068602052604090205490565b611de361356d565b611ded6000613abe565b565b611df882613817565b611e2e576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33611e388361170c565b6001600160a01b031614611e78576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040902060020154811115611ec4576040517f58eafc8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040808220600180820185905581547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001617905551829184917fdafe56f3e547ebb1818fc8353ba53591db2528d41cbb7a35af2d9469f44905339190a36040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b604080516001808252818301909252600091602080830190803683370190505090503381600081518110611f9957611f99615513565b60200260200101906001600160a01b031690816001600160a01b031681525050611fc58282600061307f565b5050565b6060606680546108d99061526a565b611fe061356d565b6109ce838383613b28565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561205b57503361204f60cc546001600160a01b031690565b6001600160a01b031614155b15612095576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6001600160a01b0385166120d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612110576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600284101561214b576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061019954600161215d919061538d565b90506000600161216d878461538d565b61217791906153a0565b905085610199600082825461218c919061538d565b9250508190555061019e6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091178155908301519381019390935550604081015160028301556060810151909190600382019061227090826153f9565b50505061227d8787613bef565b815b61228a82600161538d565b8110156111ac5760405181906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122d281615355565b905061227f565b816122e381610df2565b1561231a576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ce8383613c20565b60fe5460009081526101006020908152604080832084845290915290206060906108c490613c2b565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156123bd5750336123b160cc546001600160a01b031690565b6001600160a01b031614155b156123f7576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6001600160a01b038516612437576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612472576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60028410156124ad576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006101995460016124bf919061538d565b9050600060016124cf878461538d565b6124d991906153a0565b90508561019960008282546124ee919061538d565b9250508190555061019e6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906125d290826153f9565b5050506125df8787613bef565b866001600160a01b031660006001600160a01b0316837fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d8460405161262691815260200190565b60405180910390a450505050505050565b612641338361320c565b6126b35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610b27565b6113e484848484613c38565b60606126ca82613817565b612700576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c602090815260408083208151606081018352815460ff1615158152600182015481850152600282018054845181870281018701865281815292959394860193879084015b828210156127ab57600084815260209081902060408051808201909152908401546fffffffffffffffffffffffffffffffff8082168352700100000000000000000000000000000000909104168183015282526001909201910161274c565b505050915250508051909150156127f25780602001516000036127d8576127d183613957565b9150612821565b6127d181600183602001516127ed91906153a0565b613a07565b806040015151600003612808576127d183613957565b61281e8160018360400151516127ed91906153a0565b91505b50919050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561289757503361288b60cc546001600160a01b031690565b6001600160a01b031614155b15611ac3576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b6128d961356d565b6109ce83838361307f565b6128ec61356d565b611fc58282613cc1565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561296657503361295a60cc546001600160a01b031690565b6001600160a01b031614155b156129a0576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610b27565b60008490036129db576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61019980549060006129ec83615355565b909155505061019954600090815261019b60205260409020612a0f8587836155b2565b50612a1e610199548484613b28565b612a2b86610199546135c7565b505050505050565b612a3b61356d565b6001600160a01b038116612ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b27565b612ac081613abe565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b5657507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f0d23ecb90000000000000000000000000000000000000000000000000000000014806108c457507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108c4565b612cdd81613817565b612ac05760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610b27565b6000612d348261170c565b9050806001600160a01b0316836001600160a01b031603612dbd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b27565b336001600160a01b0382161480612dd95750612dd98133610786565b612e4b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610b27565b6109ce8383613d7b565b600054610100900460ff16612ed25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611fc58282613e01565b600054610100900460ff16612f595760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611fc58282613e97565b600054610100900460ff16612fe05760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b612fe8613f14565b612ff181613abe565b612ac0613f99565b600054610100900460ff166130765760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b612ac081614016565b60005b82518110156113e45760fe54600090815260ff60209081526040808320878452909152812084518492908690859081106130be576130be615513565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550811561314c5761314683828151811061311857613118615513565b60209081029190910181015160fe5460009081526101008352604080822089835290935291909120906140fa565b50613191565b61318f83828151811061316157613161615513565b60209081029190910181015160fe54600090815261010083526040808220898352909352919091209061410f565b505b8115158382815181106131a6576131a6615513565b60200260200101516001600160a01b0316336001600160a01b03167fc9f6f69b3c19bd2b7eb8273129bbca5e3db0e3be63ca9903e140122a5bbb556e876040516131f291815260200190565b60405180910390a48061320481615355565b915050613082565b6000806132188361170c565b9050806001600160a01b0316846001600160a01b0316148061325f57506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806132835750836001600160a01b03166132788461095c565b6001600160a01b0316145b949350505050565b826001600160a01b031661329e8261170c565b6001600160a01b03161461331a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610b27565b6001600160a01b0382166133955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b27565b826001600160a01b03166133a88261170c565b6001600160a01b0316146134245760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610b27565b600081815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b038781168086526068855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006134fe60cc546001600160a01b031690565b6001600160a01b0316826001600160a01b031614806108c4575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038716855290915290912054166108c4565b60cc546001600160a01b03163314611ded5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b27565b6001600160a01b03821661361d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b27565b61362681613817565b156136735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b61367c81613817565b156136c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006137578261170c565b90506137628261170c565b600083815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526068845282852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080613823836138e9565b6001600160a01b0316141592915050565b60006108c482613817565b600061385360cc546001600160a01b031690565b6001600160a01b0316836001600160a01b031614806138be575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038816855290915290912054165b9392505050565b6000806138d18361170c565b6001600160a01b039081169085161491505092915050565b600081815261019a602052604081205460ff161561390957506000919050565b60008211801561391c5750610199548211155b1561394f576000828152606760205260409020546001600160a01b0316806108c45761394783614124565b509392505050565b506000919050565b600081815261019b602052604090208054606091906139759061526a565b80601f01602080910402602001604051908101604052809291908181526020018280546139a19061526a565b80156139ee5780601f106139c3576101008083540402835291602001916139ee565b820191906000526020600020905b8154815290600101906020018083116139d157829003601f168201915b505050505090508051600003610ebb5761281e82614124565b606061019d83604001518381518110613a2257613a22615513565b6020026020010151600001516fffffffffffffffffffffffffffffffff1681548110613a5057613a50615513565b90600052602060002001613a9684604001518481518110613a7357613a73615513565b6020026020010151602001516fffffffffffffffffffffffffffffffff16614286565b604051602001613aa79291906156cd565b604051602081830303815290604052905092915050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216613b68576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613ba4576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009283526099602052604090922080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117815560010155565b6001600160a01b03821660009081526068602052604081208054839290613c1790849061538d565b90915550505050565b611fc5338383614344565b606060006138be83614430565b613c4384848461328b565b613c4f8484848461448c565b6113e45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b27565b6001600160a01b038216613d01576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613d3d576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039390931692909217909155609855565b600081815260696020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190613dc88261170c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16613e7e5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b6065613e8a83826153f9565b5060666109ce82826153f9565b600054610100900460ff166128ec5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b600054610100900460ff16613f915760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611ded61464b565b600054610100900460ff16611ded5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b600054610100900460ff166140935760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b61016680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405160009033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f908390a450565b60006138be836001600160a01b0384166146d1565b60006138be836001600160a01b038416614720565b6000606060005b61019e548110156141a65761019e818154811061414a5761414a615513565b9060005260206000209060040201600101548410158015614190575061019e818154811061417a5761417a615513565b9060005260206000209060040201600201548411155b6141a6578061419e81615355565b91505061412b565b61019e5481106141cc576000604051806020016040528060008152509250925050915091565b600061019e82815481106141e2576141e2615513565b906000526020600020906004020160030161422c61019e848154811061420a5761420a615513565b9060005260206000209060040201600101548761422791906153a0565b614286565b60405160200161423d9291906156cd565b604051602081830303815290604052905061019e828154811061426257614262615513565b60009182526020909120600490910201546001600160a01b03169590945092505050565b6060600061429383614813565b600101905060008167ffffffffffffffff8111156142b3576142b3614a36565b6040519080825280601f01601f1916602001820160405280156142dd576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846142e757509392505050565b816001600160a01b0316836001600160a01b0316036143a55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b27565b6001600160a01b038381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60608160000180548060200260200160405190810160405280929190818152602001828054801561448057602002820191906000526020600020905b81548152602001906001019080831161446c575b50505050509050919050565b60006001600160a01b0384163b15614640576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a02906144e990339089908890889060040161579b565b6020604051808303816000875af1925050508015614542575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261453f918101906157d7565b60015b6145f5573d808015614570576040519150601f19603f3d011682016040523d82523d6000602084013e614575565b606091505b5080516000036145ed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b27565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613283565b506001949350505050565b600054610100900460ff166146c85760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b27565b611ded33613abe565b6000818152600183016020526040812054614718575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108c4565b5060006108c4565b600081815260018301602052604081205480156148095760006147446001836153a0565b8554909150600090614758906001906153a0565b90508181146147bd57600086600001828154811061477857614778615513565b906000526020600020015490508087600001848154811061479b5761479b615513565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806147ce576147ce6157f4565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108c4565b60009150506108c4565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061485c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614888576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106148a657662386f26fc10000830492506010015b6305f5e10083106148be576305f5e100830492506008015b61271083106148d257612710830492506004015b606483106148e4576064830492506002015b600a83106108c45760010192915050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612ac057600080fd5b60006020828403121561493557600080fd5b81356138be816148f5565b60005b8381101561495b578181015183820152602001614943565b50506000910152565b6000815180845261497c816020860160208601614940565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006138be6020830184614964565b6000602082840312156149d357600080fd5b5035919050565b80356001600160a01b0381168114610ebb57600080fd5b60008060408385031215614a0457600080fd5b614a0d836149da565b946020939093013593505050565b600060208284031215614a2d57600080fd5b6138be826149da565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715614aac57614aac614a36565b604052919050565b600067ffffffffffffffff831115614ace57614ace614a36565b614aff60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f86011601614a65565b9050828152838383011115614b1357600080fd5b828260208301376000602084830101529392505050565b600082601f830112614b3b57600080fd5b6138be83833560208501614ab4565b600082601f830112614b5b57600080fd5b8135602067ffffffffffffffff821115614b7757614b77614a36565b8160051b614b86828201614a65565b9283528481018201928281019087851115614ba057600080fd5b83870192505b84831015614bc657614bb7836149da565b82529183019190830190614ba6565b979650505050505050565b8015158114612ac057600080fd5b8035610ebb81614bd1565b600080600080600080600080610100898b031215614c0757600080fd5b883567ffffffffffffffff80821115614c1f57600080fd5b614c2b8c838d01614b2a565b995060208b0135915080821115614c4157600080fd5b614c4d8c838d01614b2a565b9850614c5b60408c016149da565b975060608b01359650614c7060808c016149da565b955060a08b0135915080821115614c8657600080fd5b50614c938b828c01614b4a565b935050614ca260c08a01614bdf565b9150614cb060e08a016149da565b90509295985092959890939650565b600080600060608486031215614cd457600080fd5b614cdd846149da565b9250614ceb602085016149da565b9150604084013590509250925092565b600060208284031215614d0d57600080fd5b81356138be81614bd1565b60008060408385031215614d2b57600080fd5b50508035926020909101359150565b60008083601f840112614d4c57600080fd5b50813567ffffffffffffffff811115614d6457600080fd5b6020830191508360208260051b8501011115610deb57600080fd5b60008083601f840112614d9157600080fd5b50813567ffffffffffffffff811115614da957600080fd5b602083019150836020828501011115610deb57600080fd5b60008060008060408587031215614dd757600080fd5b843567ffffffffffffffff80821115614def57600080fd5b614dfb88838901614d3a565b90965094506020870135915080821115614e1457600080fd5b50614e2187828801614d7f565b95989497509550505050565b600080600060408486031215614e4257600080fd5b833567ffffffffffffffff811115614e5957600080fd5b614e6586828701614d3a565b9094509250506020840135614e7981614bd1565b809150509250925092565b600080600080600060608688031215614e9c57600080fd5b85359450602086013567ffffffffffffffff80821115614ebb57600080fd5b614ec789838a01614d7f565b90965094506040880135915080821115614ee057600080fd5b50614eed88828901614d7f565b969995985093965092949392505050565b600080600060408486031215614f1357600080fd5b614f1c846149da565b9250602084013567ffffffffffffffff811115614f3857600080fd5b614f4486828701614d7f565b9497909650939450505050565b600060608201858352602060608185015281865180845260808601915060808160051b870101935082880160005b82811015614fcb577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80888703018452614fb9868351614964565b95509284019290840190600101614f7f565b5050505050809150508215156040830152949350505050565b60008060408385031215614ff757600080fd5b82359150615007602084016149da565b90509250929050565b60008060006060848603121561502557600080fd5b83359250614ceb602085016149da565b6000806000806060858703121561504b57600080fd5b615054856149da565b935060208501359250604085013567ffffffffffffffff81111561507757600080fd5b614e2187828801614d7f565b6000806040838503121561509657600080fd5b61509f836149da565b915060208301356150af81614bd1565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156150fb5783516001600160a01b0316835292840192918401916001016150d6565b50909695505050505050565b6000806000806080858703121561511d57600080fd5b615126856149da565b9350615134602086016149da565b925060408501359150606085013567ffffffffffffffff81111561515757600080fd5b8501601f8101871361516857600080fd5b61517787823560208401614ab4565b91505092959194509250565b60008060006060848603121561519857600080fd5b83359250602084013567ffffffffffffffff8111156151b657600080fd5b6151c286828701614b4a565b9250506040840135614e7981614bd1565b6000806000806000608086880312156151eb57600080fd5b6151f4866149da565b9450602086013567ffffffffffffffff81111561521057600080fd5b61521c88828901614d7f565b909550935061522f9050604087016149da565b949793965091946060013592915050565b6000806040838503121561525357600080fd5b61525c836149da565b9150615007602084016149da565b600181811c9082168061527e57607f821691505b602082108103612821577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008261531c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820281158282048414176108c4576108c46152b7565b60006020828403121561534a57600080fd5b81516138be81614bd1565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615386576153866152b7565b5060010190565b808201808211156108c4576108c46152b7565b818103818111156108c4576108c46152b7565b601f8211156109ce57600081815260208120601f850160051c810160208610156153da5750805b601f850160051c820191505b81811015612a2b578281556001016153e6565b815167ffffffffffffffff81111561541357615413614a36565b61542781615421845461526a565b846153b3565b602080601f83116001811461547a57600084156154445750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555612a2b565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b828110156154c7578886015182559484019460019091019084016154a8565b508582101561550357878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b60408152600061559f604083018688615542565b8281036020840152614bc6818587615542565b67ffffffffffffffff8311156155ca576155ca614a36565b6155de836155d8835461526a565b836153b3565b6000601f84116001811461563057600085156155fa5750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556156c6565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561567f578685013582556020948501946001909201910161565f565b50868210156156ba577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008084546156db8161526a565b600182811680156156f3576001811461572657615755565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450615755565b8860005260208060002060005b8581101561574c5781548a820152908401908201615733565b50505082870194505b507f2f0000000000000000000000000000000000000000000000000000000000000084528651925061578d8382860160208a01614940565b919092010195945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526157cd6080830184614964565b9695505050505050565b6000602082840312156157e957600080fd5b81516138be816148f5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122095610282e742be809cc25166f67f90a701b52f1aca8c4023974ed8b3a1b67ddc64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : disable (bool): True
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.