ERC-721
Overview
Max Total Supply
1,250 MTE
Holders
678
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MTELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MTE
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 9999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IOnChainMetadata.sol"; import "../tokens/erc721/custom-erc721/ERC721AEnumerable.sol"; import "../libraries/SymmetricEncryptionUtils.sol"; // import "@forge-std/src/console.sol"; error NotUnlockedYet(); error AlreadyUnlocked(); error MaxSupplyReached(); error AlreadyClaimed(); error InvalidSecret(); error InsufficientFunds(); error InvalidAmount(); /// @title A title that should describe the contract/interface /// @author The name of the author /// @notice Explain to an end user what this does /// @dev Explain to a developer any extra details contract MTE is ERC721AEnumerable, Ownable { IOnChainMetadata public metadata; bytes32 internal immutable secretHash; bytes internal hiddenLore; uint256 public immutable price; uint256 public immutable maxSupply; mapping(address => bool) public hasClaimed; string public externalUrl; mapping(uint256 => uint256) public tokenTypes; uint256 public constant CHOSEN_ONE = 1; uint256 public constant FREE_MINT = 2; uint256 public constant PREMIUM_MINT = 3; event Unlocked(address user); constructor( string memory name_, string memory symbol_, IOnChainMetadata metadataAddr_, bytes32 secretHash_, bytes memory hiddenLore_, uint256 maxSupply_, uint256 price_, string memory externalUrl_ ) ERC721AEnumerable(name_, symbol_) { metadata = metadataAddr_; secretHash = secretHash_; hiddenLore = hiddenLore_; maxSupply = maxSupply_; price = price_; externalUrl = externalUrl_; } function setName(string memory name_) external onlyOwner { _name = name_; } function setSymbol(string memory symbol_) external onlyOwner { _symbol = symbol_; } function unlock(string memory secret) external { if (totalSupply() > 0) revert AlreadyUnlocked(); if (totalSupply() >= maxSupply) revert MaxSupplyReached(); if (keccak256(abi.encodePacked(secret)) != secretHash) revert InvalidSecret(); emit Unlocked(msg.sender); tokenTypes[_nextTokenId()] = CHOSEN_ONE; _safeMint(msg.sender, 1); } function isUnlocked() external view returns (bool) { return totalSupply() > 0; } function mint(uint8 amount_) external payable { if (totalSupply() == 0) revert NotUnlockedYet(); if (totalSupply() + amount_ > maxSupply) revert MaxSupplyReached(); if (amount_ == 0) revert InvalidAmount(); if (hasClaimed[msg.sender]) revert AlreadyClaimed(); hasClaimed[msg.sender] = true; if (amount_ == 1) { tokenTypes[_nextTokenId()] = FREE_MINT; _safeMint(msg.sender, 1); } else if (amount_ == 2) { if (msg.value != price) revert InsufficientFunds(); uint256 tokenId = _nextTokenId(); tokenTypes[tokenId] = FREE_MINT; tokenTypes[tokenId + 1] = PREMIUM_MINT; _safeMint(msg.sender, 2); } else revert InvalidAmount(); } function tokenURI( uint256 tokenId ) public view virtual override(IERC721A, ERC721A) returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return metadata.tokenURI(tokenId); } function setExternalUrl(string memory externalUrl_) external onlyOwner { externalUrl = externalUrl_; } function h1dd3n(string memory secretKey) external view returns (string memory) { require(totalSupply() > 0, "Not unlocked yet"); bytes32 decryptionKey = keccak256(abi.encodePacked(secretKey)); return string( SymmetricEncryptionUtils.bytesTrimEnd( SymmetricEncryptionUtils.bytes32ArrToBytes( SymmetricEncryptionUtils.encrypt( decryptionKey, SymmetricEncryptionUtils.bytesToBytes32Arr(hiddenLore) ) ) ) ); } function reveal(IOnChainMetadata revealOnChainMetadataAddr_) external onlyOwner { metadata = revealOnChainMetadataAddr_; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } } // On Tupac's Soul
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IOnChainMetadata { /** * Mint new tokens. */ function tokenURI(uint256 tokenId_) external view returns (string memory); function tokenImageDataURI(uint256 tokenId_) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library Math { function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IOnChainMetadata.sol"; import "../tokens/erc721/custom-erc721/ERC721AEnumerable.sol"; import "../libraries/Math.sol"; library SymmetricEncryptionUtils { function bytesToBytes32Arr(bytes memory source) internal pure returns (bytes32[] memory) { uint256 sourceLen = source.length; bytes32[] memory result = new bytes32[](Math.ceilDiv(sourceLen, 32)); for (uint256 i = 0; i < result.length; i++) { for (uint256 j = 0; j < 32; j++) { uint256 index = i * 32 + j; if (index >= sourceLen) { result[i] |= bytes32(0) >> (8 * j); } else { result[i] |= bytes32(source[index]) >> (8 * j); } } } return result; } function bytes32ArrToBytes(bytes32[] memory source) internal pure returns (bytes memory) { bytes memory result = new bytes(source.length * 32); for (uint256 i = 0; i < source.length; i++) { for (uint256 j = 0; j < 32; j++) { result[i * 32 + j] = bytes1(source[i] << (8 * j)); } } return result; } function encrypt( bytes32 decryptionKey, bytes32[] memory secret ) internal pure returns (bytes32[] memory) { bytes32[] memory encrypted = new bytes32[](secret.length); for (uint256 i = 0; i < secret.length; i++) { encrypted[i] = secret[i] ^ decryptionKey; } return encrypted; } function bytesTrimEnd(bytes memory source) internal pure returns (bytes memory result) { uint256 len = 0; for (uint256 i = 0; i < source.length; i++) { if (source[i] == 0) { len = i; break; } } result = new bytes(len); for (uint256 i = 0; i < len; i++) { result[i] = source[i]; } return result; } }
// SPDX-License-Identifier: MIT // Based on ERC721A Contracts v4.2.3 from Chiru Labs and Citizens of Tajigen's Tiny ERC721 using Mason and Chance's optimizations // added modifications on top pragma solidity ^0.8.4; import "./IERC721A.sol"; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string internal _name; // Token symbol string internal _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f || // ERC165 interface ID for ERC721Metadata. interfaceId == type(IERC721A).interfaceId; } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) _packedOwnerships[index] = _packedOwnershipOf(index); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. return packed; } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership( uint256 packed ) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress( uint256 tokenId ) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (bytes4 retval) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint(address to, uint256 quantity, bytes memory _data) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.8; /// @title ERC721AEnumerable /// @author MilkyTaste @ Ao Collaboration Ltd. /// https://block.aocollab.tech /// An enumerable extension to ERC721A that does not increase gas costs. import "./IERC721AEnumerable.sol"; import "./ERC721A.sol"; error IndexOutOfBounds(); error QueryForZeroAddress(); contract ERC721AEnumerable is IERC721AEnumerable, ERC721A { constructor( string memory name_, string memory symbol_ ) ERC721A(name_, symbol_) {} /** * @dev Returns the total amount of tokens stored by the contract. * Uses the ERC721A implementation. */ function totalSupply() public view override(ERC721A, IERC721AEnumerable) returns (uint256) { return ERC721A.totalSupply(); } /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. * @notice This method is intended for read only purposes. */ function tokenOfOwnerByIndex( address owner, uint256 index ) external view override returns (uint256 tokenId) { if (owner == address(0)) revert QueryForZeroAddress(); if (balanceOf(owner) <= index) revert IndexOutOfBounds(); uint256 upToIndex = 0; uint256 highestTokenId = _startTokenId() + _totalMinted(); for (uint256 i = _startTokenId(); i < highestTokenId; i++) { if (_ownerOfWithoutError(i) == owner) { if (upToIndex == index) return i; upToIndex++; } } // Should never reach this case revert IndexOutOfBounds(); } /** * A copy of the ERC721A._ownershipOf implementation that returns address(0) when unowned instead of an error. */ function _ownerOfWithoutError( uint256 tokenId ) internal view returns (address) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _nextTokenId()) { TokenOwnership memory ownership = _ownershipAt(curr); if (!ownership.burned) { if (ownership.addr != address(0)) return ownership.addr; // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownershipAt(curr); if (ownership.addr != address(0)) return ownership.addr; } } } } return address(0); } /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. * @notice This method is intended for read only purposes. */ function tokenByIndex( uint256 index ) external view override returns (uint256) { uint256 highestTokenId = _startTokenId() + _totalMinted(); if (index > highestTokenId) revert IndexOutOfBounds(); uint256 indexedId = 0; for (uint256 i = _startTokenId(); i < highestTokenId; i++) { if (!_ownershipAt(i).burned) { if (indexedId == index) return i; indexedId++; } } revert IndexOutOfBounds(); } /** * @dev Returns a list of token IDs owned by `owner`. * @notice This method is intended for read only purposes. */ function tokensOfOwner(address owner) public view returns (uint256[] memory) { if (owner == address(0)) revert QueryForZeroAddress(); uint256 balance = balanceOf(owner); uint256[] memory tokens = new uint256[](balance); uint256 index = 0; uint256 highestTokenId = _startTokenId() + _totalMinted(); for (uint256 i = _startTokenId(); i < highestTokenId; i++) { if (_ownerOfWithoutError(i) == owner) { tokens[index] = i; index++; if (index == balance) break; } } return tokens; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721A.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721AEnumerable is IERC721A { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex( address owner, uint256 index ) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "remappings": [ "@contracts/=src/contracts/", "@forge-std/=lib/forge-std/", "@openzeppelin/=lib/openzeppelin-contracts/", "@solmate/=lib/solmate/", "@tests/=src/tests/", "@utils/=src/utils/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 9999999 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IOnChainMetadata","name":"metadataAddr_","type":"address"},{"internalType":"bytes32","name":"secretHash_","type":"bytes32"},{"internalType":"bytes","name":"hiddenLore_","type":"bytes"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"string","name":"externalUrl_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"AlreadyUnlocked","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"IndexOutOfBounds","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidSecret","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotUnlockedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"QueryForZeroAddress","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"Unlocked","type":"event"},{"inputs":[],"name":"CHOSEN_ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREMIUM_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"secretKey","type":"string"}],"name":"h1dd3n","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"isUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"contract IOnChainMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount_","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IOnChainMetadata","name":"revealOnChainMetadataAddr_","type":"address"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"externalUrl_","type":"string"}],"name":"setExternalUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol_","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTypes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"secret","type":"string"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620032cb380380620032cb8339810160408190526200003491620001f5565b8787818160026200004683826200036d565b5060036200005582826200036d565b505060008055506200006b9150339050620000c1565b600980546001600160a01b0319166001600160a01b0388161790556080859052600a6200009985826200036d565b5060c083905260a0829052600c620000b282826200036d565b50505050505050505062000439565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013b57600080fd5b81516001600160401b038082111562000158576200015862000113565b604051601f8301601f19908116603f0116810190828211818310171562000183576200018362000113565b81604052838152602092508683858801011115620001a057600080fd5b600091505b83821015620001c45785820183015181830184015290820190620001a5565b600093810190920192909252949350505050565b80516001600160a01b0381168114620001f057600080fd5b919050565b600080600080600080600080610100898b0312156200021357600080fd5b88516001600160401b03808211156200022b57600080fd5b620002398c838d0162000129565b995060208b01519150808211156200025057600080fd5b6200025e8c838d0162000129565b98506200026e60408c01620001d8565b975060608b0151965060808b01519150808211156200028c57600080fd5b6200029a8c838d0162000129565b955060a08b0151945060c08b0151935060e08b0151915080821115620002bf57600080fd5b50620002ce8b828c0162000129565b9150509295985092959890939650565b600181811c90821680620002f357607f821691505b6020821081036200031457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036857600081815260208120601f850160051c81016020861015620003435750805b601f850160051c820191505b8181101562000364578281556001016200034f565b5050505b505050565b81516001600160401b0381111562000389576200038962000113565b620003a1816200039a8454620002de565b846200031a565b602080601f831160018114620003d95760008415620003c05750858301515b600019600386901b1c1916600185901b17855562000364565b600085815260208120601f198616915b828110156200040a57888601518255948401946001909101908401620003e9565b5085821015620004295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c051612e4d6200047e600039600081816106d00152818161107401526116220152600081816105c901526111e5015260006116820152612e4d6000f3fe6080604052600436106102855760003560e01c806373b2e80e11610153578063b84c8246116100cb578063d5abeb011161007f578063db065b1d11610064578063db065b1d14610707578063e985e9c51461071c578063f2fde38b1461077257600080fd5b8063d5abeb01146106be578063d83f0d0f146106f257600080fd5b8063c392cf41116100b0578063c392cf411461065e578063c47f00271461067e578063c87b56dd1461069e57600080fd5b8063b84c82461461062b578063b88d4fde1461064b57600080fd5b80638fc7348411610122578063a035b1fe11610107578063a035b1fe146105b7578063a22cb465146105eb578063a96ce7aa1461060b57600080fd5b80638fc734841461058d57806395d89b41146105a257600080fd5b806373b2e80e146104f05780638380edb7146105205780638462151c146105355780638da5cb5b1461056257600080fd5b8063392f37e9116102015780635e4abf31116101b55780636ecd23061161019a5780636ecd2306146104a857806370a08231146104bb578063715018a6146104db57600080fd5b80635e4abf31146104685780636352211e1461048857600080fd5b806342842e0e116101e657806342842e0e146104205780634f6ccce7146104335780635756e46e1461045357600080fd5b8063392f37e9146103de5780633ccfd60b1461040b57600080fd5b806318160ddd1161025857806326d58ad31161023d57806326d58ad3146103715780632f745c591461039157806333f6832a146103b157600080fd5b806318160ddd1461033b57806323b872dd1461035e57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610326575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612653565b610792565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d46108c3565b6040516102b691906126de565b3480156102ed57600080fd5b506103016102fc3660046126f1565b610955565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b61033961033436600461272c565b6109bf565b005b34801561034757600080fd5b506103506109cf565b6040519081526020016102b6565b61033961036c366004612758565b6109e3565b34801561037d57600080fd5b5061033961038c36600461289b565b610c73565b34801561039d57600080fd5b506103506103ac36600461272c565b610c87565b3480156103bd57600080fd5b506103506103cc3660046126f1565b600d6020526000908152604090205481565b3480156103ea57600080fd5b506009546103019073ffffffffffffffffffffffffffffffffffffffff1681565b34801561041757600080fd5b50610339610dda565b61033961042e366004612758565b610e11565b34801561043f57600080fd5b5061035061044e3660046126f1565b610e31565b34801561045f57600080fd5b50610350600181565b34801561047457600080fd5b506102d461048336600461289b565b610ed0565b34801561049457600080fd5b506103016104a33660046126f1565b611026565b6103396104b63660046128e4565b611031565b3480156104c757600080fd5b506103506104d6366004612907565b6112b1565b3480156104e757600080fd5b50610339611333565b3480156104fc57600080fd5b506102aa61050b366004612907565b600b6020526000908152604090205460ff1681565b34801561052c57600080fd5b506102aa611347565b34801561054157600080fd5b50610555610550366004612907565b611358565b6040516102b69190612924565b34801561056e57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610301565b34801561059957600080fd5b506102d46114aa565b3480156105ae57600080fd5b506102d4611538565b3480156105c357600080fd5b506103507f000000000000000000000000000000000000000000000000000000000000000081565b3480156105f757600080fd5b50610339610606366004612968565b611547565b34801561061757600080fd5b5061033961062636600461289b565b6115de565b34801561063757600080fd5b5061033961064636600461289b565b611741565b6103396106593660046129a6565b611755565b34801561066a57600080fd5b50610339610679366004612907565b6117c5565b34801561068a57600080fd5b5061033961069936600461289b565b611814565b3480156106aa57600080fd5b506102d46106b93660046126f1565b611828565b3480156106ca57600080fd5b506103507f000000000000000000000000000000000000000000000000000000000000000081565b3480156106fe57600080fd5b50610350600381565b34801561071357600080fd5b50610350600281565b34801561072857600080fd5b506102aa610737366004612a26565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077e57600080fd5b5061033961078d366004612907565b61191e565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061082557507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061087157507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806108bd57507fffffffff0000000000000000000000000000000000000000000000000000000082167fc21b8f2800000000000000000000000000000000000000000000000000000000145b92915050565b6060600280546108d290612a54565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90612a54565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b6000610960826119d2565b610996576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6109cb82826001611a12565b5050565b60006109de6001546000540390565b905090565b60006109ee82611b04565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610ac857610a928633610737565b610ac8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610b15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610b2057600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000084169003610c0f57600184016000818152600460205260408120549003610c0d576000548114610c0d5760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c7b611bee565b600c6109cb8282612aed565b600073ffffffffffffffffffffffffffffffffffffffff8316610cd6576040517fcbe7266800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81610ce0846112b1565b11610d17576040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2360005490565b610d2e906000612c36565b905060005b81811015610da7578573ffffffffffffffffffffffffffffffffffffffff16610d5b82611c6f565b73ffffffffffffffffffffffffffffffffffffffff1603610d9557848303610d875792506108bd915050565b82610d9181612c49565b9350505b80610d9f81612c49565b915050610d33565b506040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de2611bee565b60405133904780156108fc02916000818181858888f19350505050158015610e0e573d6000803e3d6000fd5b50565b610e2c83838360405180602001604052806000815250611755565b505050565b600080610e3d60005490565b610e48906000612c36565b905080831115610e84576040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805b82811015610da757610e9981611d1d565b60400151610ebe57848203610eb057949350505050565b81610eba81612c49565b9250505b80610ec881612c49565b915050610e88565b60606000610edc6109cf565b11610f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f7420756e6c6f636b6564207965740000000000000000000000000000000060448201526064015b60405180910390fd5b600082604051602001610f5b9190612c81565b60405160208183030381529060405280519060200120905061101f61101a61101583611010600a8054610f8d90612a54565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb990612a54565b80156110065780601f10610fdb57610100808354040283529160200191611006565b820191906000526020600020905b815481529060010190602001808311610fe957829003601f168201915b5050505050611dc2565b611f2a565b611fcb565b6120e5565b9392505050565b60006108bd82611b04565b6110396109cf565b600003611072576040517fdbace0b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008160ff1661109f6109cf565b6110a99190612c36565b11156110e1576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff1660000361111e576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600b602052604090205460ff1615611168576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915560ff821690036111d8576002600d60006111bc60005490565b8152602081019190915260400160002055610e0e336001612217565b8060ff1660020361127f577f0000000000000000000000000000000000000000000000000000000000000000341461123c576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054808252600d60208190526040832060029055909160039190611263846001612c36565b81526020810191909152604001600020556109cb336002612217565b6040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff8216611300576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b61133b611bee565b6113456000612231565b565b6000806113526109cf565b11905090565b606073ffffffffffffffffffffffffffffffffffffffff82166113a7576040517fcbe7266800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113b2836112b1565b905060008167ffffffffffffffff8111156113cf576113cf612799565b6040519080825280602002602001820160405280156113f8578160200160208202803683370190505b50905060008061140760005490565b611412906000612c36565b905060005b8181101561149f578673ffffffffffffffffffffffffffffffffffffffff1661143f82611c6f565b73ffffffffffffffffffffffffffffffffffffffff160361148d578084848151811061146d5761146d612c9d565b60209081029190910101528261148281612c49565b93505084831461149f575b8061149781612c49565b915050611417565b509195945050505050565b600c80546114b790612a54565b80601f01602080910402602001604051908101604052809291908181526020018280546114e390612a54565b80156115305780601f1061150557610100808354040283529160200191611530565b820191906000526020600020905b81548152906001019060200180831161151357829003601f168201915b505050505081565b6060600380546108d290612a54565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006115e86109cf565b1115611620576040517f5090d6c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006116496109cf565b10611680576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816040516020016116b29190612c81565b60405160208183030381529060405280519060200120146116ff576040517fabab6bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040513381527f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea9060200160405180910390a16001600d60006111bc60005490565b611749611bee565b60036109cb8282612aed565b6117608484846109e3565b73ffffffffffffffffffffffffffffffffffffffff83163b156117bf57611789848484846122a8565b6117bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117cd611bee565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61181c611bee565b60026109cb8282612aed565b6060611833826119d2565b611869576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009546040517fc87b56dd0000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff9091169063c87b56dd90602401600060405180830381865afa1580156118d8573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526108bd9190810190612ccc565b611926611bee565b73ffffffffffffffffffffffffffffffffffffffff81166119c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f3f565b610e0e81612231565b60008054821080156108bd5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000611a1d83611026565b90508115611a82573373ffffffffffffffffffffffffffffffffffffffff821614611a8257611a4c8133610737565b611a82576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff88811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611bbc5780600003611bb7576000548210611b7d576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020548015611b7e575b919050565b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f3f565b600081600054811015611d14576000611c8782611d1d565b90508060400151611d1257805173ffffffffffffffffffffffffffffffffffffffff1615611cb757519392505050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90910190611ce582611d1d565b805190915073ffffffffffffffffffffffffffffffffffffffff1615611d0d57519392505050565b611cb7565b505b50600092915050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546108bd906040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b80516060906000611dd4826020612422565b67ffffffffffffffff811115611dec57611dec612799565b604051908082528060200260200182016040528015611e15578160200160208202803683370190505b50905060005b8151811015611f225760005b6020811015611f0f57600081611e3e846020612d43565b611e489190612c36565b9050848110611e8b57611e5c826008612d43565b6000801b901c848481518110611e7457611e74612c9d565b602002602001018181511791508181525050611efc565b611e96826008612d43565b878281518110611ea857611ea8612c9d565b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c848481518110611ee957611ee9612c9d565b6020026020010181815117915081815250505b5080611f0781612c49565b915050611e27565b5080611f1a81612c49565b915050611e1b565b509392505050565b60606000825167ffffffffffffffff811115611f4857611f48612799565b604051908082528060200260200182016040528015611f71578160200160208202803683370190505b50905060005b8351811015611f225784848281518110611f9357611f93612c9d565b602002602001015118828281518110611fae57611fae612c9d565b602090810291909101015280611fc381612c49565b915050611f77565b6060600082516020611fdd9190612d43565b67ffffffffffffffff811115611ff557611ff5612799565b6040519080825280601f01601f19166020018201604052801561201f576020820181803683370190505b50905060005b83518110156120de5760005b60208110156120cb57612045816008612d43565b85838151811061205757612057612c9d565b6020026020010151901b83828460206120709190612d43565b61207a9190612c36565b8151811061208a5761208a612c9d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350806120c381612c49565b915050612031565b50806120d681612c49565b915050612025565b5092915050565b60606000805b835181101561214e5783818151811061210657612106612c9d565b01602001517fff000000000000000000000000000000000000000000000000000000000000001660000361213c5780915061214e565b8061214681612c49565b9150506120eb565b508067ffffffffffffffff81111561216857612168612799565b6040519080825280601f01601f191660200182016040528015612192576020820181803683370190505b50915060005b81811015612210578381815181106121b2576121b2612c9d565b602001015160f81c60f81b8382815181106121cf576121cf612c9d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061220881612c49565b915050612198565b5050919050565b6109cb828260405180602001604052806000815250612454565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612303903390899088908890600401612d5a565b6020604051808303816000875af192505050801561235c575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261235991810190612da3565b60015b6123d3573d80801561238a576040519150601f19603f3d011682016040523d82523d6000602084013e61238f565b606091505b5080516000036123cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b600061242e8284612def565b1561243a57600161243d565b60005b60ff1661244a8385612e03565b61101f9190612c36565b61245e83836124e7565b73ffffffffffffffffffffffffffffffffffffffff83163b15610e2c576000548281035b61249560008683806001019450866122a8565b6124cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124825781600054146124e057600080fd5b5050505050565b6000805490829003612525576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146125e157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016125a9565b508160000361261c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e0e57600080fd5b60006020828403121561266557600080fd5b813561101f81612625565b60005b8381101561268b578181015183820152602001612673565b50506000910152565b600081518084526126ac816020860160208601612670565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061101f6020830184612694565b60006020828403121561270357600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e0e57600080fd5b6000806040838503121561273f57600080fd5b823561274a8161270a565b946020939093013593505050565b60008060006060848603121561276d57600080fd5b83356127788161270a565b925060208401356127888161270a565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561280f5761280f612799565b604052919050565b600067ffffffffffffffff82111561283157612831612799565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600061287061286b84612817565b6127c8565b905082815283838301111561288457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128ad57600080fd5b813567ffffffffffffffff8111156128c457600080fd5b8201601f810184136128d557600080fd5b61241a8482356020840161285d565b6000602082840312156128f657600080fd5b813560ff8116811461101f57600080fd5b60006020828403121561291957600080fd5b813561101f8161270a565b6020808252825182820181905260009190848201906040850190845b8181101561295c57835183529284019291840191600101612940565b50909695505050505050565b6000806040838503121561297b57600080fd5b82356129868161270a565b91506020830135801515811461299b57600080fd5b809150509250929050565b600080600080608085870312156129bc57600080fd5b84356129c78161270a565b935060208501356129d78161270a565b925060408501359150606085013567ffffffffffffffff8111156129fa57600080fd5b8501601f81018713612a0b57600080fd5b612a1a8782356020840161285d565b91505092959194509250565b60008060408385031215612a3957600080fd5b8235612a448161270a565b9150602083013561299b8161270a565b600181811c90821680612a6857607f821691505b602082108103612aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610e2c57600081815260208120601f850160051c81016020861015612ace5750805b601f850160051c820191505b81811015610c6b57828155600101612ada565b815167ffffffffffffffff811115612b0757612b07612799565b612b1b81612b158454612a54565b84612aa7565b602080601f831160018114612b6e5760008415612b385750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555610c6b565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612bbb57888601518255948401946001909101908401612b9c565b5085821015612bf757878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108bd576108bd612c07565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c7a57612c7a612c07565b5060010190565b60008251612c93818460208701612670565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215612cde57600080fd5b815167ffffffffffffffff811115612cf557600080fd5b8201601f81018413612d0657600080fd5b8051612d1461286b82612817565b818152856020838501011115612d2957600080fd5b612d3a826020830160208601612670565b95945050505050565b80820281158282048414176108bd576108bd612c07565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612d996080830184612694565b9695505050505050565b600060208284031215612db557600080fd5b815161101f81612625565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dfe57612dfe612dc0565b500690565b600082612e1257612e12612dc0565b50049056fea264697066735822122039393d7379d124bb85663f898e5111636e5419ff9047aa545586afc246c8af9164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000009aa627314be5259946c8e01a13db1fc5de808b751a4e23914e8742a3448f30782202e829c8c34406dce89a229d474af22d6874b0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000004e20000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000a4d5445204279205562690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d5445000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000606f204ffe2dec62c421e1550a43768146a6a22826ab8dfb4ee92f70d21d101682297d10a476b57bc770b9043b1044de1cfdf20733ebdfac1aa5757b911c2e44f22a0c67a908b162a3448f30782202e829c8c34406dce89a229d474af22d6874b000000000000000000000000000000000000000000000000000000000000000166f6e636861696e69737468656675747572652e636f6d00000000000000000000
Deployed Bytecode
0x6080604052600436106102855760003560e01c806373b2e80e11610153578063b84c8246116100cb578063d5abeb011161007f578063db065b1d11610064578063db065b1d14610707578063e985e9c51461071c578063f2fde38b1461077257600080fd5b8063d5abeb01146106be578063d83f0d0f146106f257600080fd5b8063c392cf41116100b0578063c392cf411461065e578063c47f00271461067e578063c87b56dd1461069e57600080fd5b8063b84c82461461062b578063b88d4fde1461064b57600080fd5b80638fc7348411610122578063a035b1fe11610107578063a035b1fe146105b7578063a22cb465146105eb578063a96ce7aa1461060b57600080fd5b80638fc734841461058d57806395d89b41146105a257600080fd5b806373b2e80e146104f05780638380edb7146105205780638462151c146105355780638da5cb5b1461056257600080fd5b8063392f37e9116102015780635e4abf31116101b55780636ecd23061161019a5780636ecd2306146104a857806370a08231146104bb578063715018a6146104db57600080fd5b80635e4abf31146104685780636352211e1461048857600080fd5b806342842e0e116101e657806342842e0e146104205780634f6ccce7146104335780635756e46e1461045357600080fd5b8063392f37e9146103de5780633ccfd60b1461040b57600080fd5b806318160ddd1161025857806326d58ad31161023d57806326d58ad3146103715780632f745c591461039157806333f6832a146103b157600080fd5b806318160ddd1461033b57806323b872dd1461035e57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610326575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612653565b610792565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d46108c3565b6040516102b691906126de565b3480156102ed57600080fd5b506103016102fc3660046126f1565b610955565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b61033961033436600461272c565b6109bf565b005b34801561034757600080fd5b506103506109cf565b6040519081526020016102b6565b61033961036c366004612758565b6109e3565b34801561037d57600080fd5b5061033961038c36600461289b565b610c73565b34801561039d57600080fd5b506103506103ac36600461272c565b610c87565b3480156103bd57600080fd5b506103506103cc3660046126f1565b600d6020526000908152604090205481565b3480156103ea57600080fd5b506009546103019073ffffffffffffffffffffffffffffffffffffffff1681565b34801561041757600080fd5b50610339610dda565b61033961042e366004612758565b610e11565b34801561043f57600080fd5b5061035061044e3660046126f1565b610e31565b34801561045f57600080fd5b50610350600181565b34801561047457600080fd5b506102d461048336600461289b565b610ed0565b34801561049457600080fd5b506103016104a33660046126f1565b611026565b6103396104b63660046128e4565b611031565b3480156104c757600080fd5b506103506104d6366004612907565b6112b1565b3480156104e757600080fd5b50610339611333565b3480156104fc57600080fd5b506102aa61050b366004612907565b600b6020526000908152604090205460ff1681565b34801561052c57600080fd5b506102aa611347565b34801561054157600080fd5b50610555610550366004612907565b611358565b6040516102b69190612924565b34801561056e57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610301565b34801561059957600080fd5b506102d46114aa565b3480156105ae57600080fd5b506102d4611538565b3480156105c357600080fd5b506103507f0000000000000000000000000000000000000000000000000011c37937e0800081565b3480156105f757600080fd5b50610339610606366004612968565b611547565b34801561061757600080fd5b5061033961062636600461289b565b6115de565b34801561063757600080fd5b5061033961064636600461289b565b611741565b6103396106593660046129a6565b611755565b34801561066a57600080fd5b50610339610679366004612907565b6117c5565b34801561068a57600080fd5b5061033961069936600461289b565b611814565b3480156106aa57600080fd5b506102d46106b93660046126f1565b611828565b3480156106ca57600080fd5b506103507f00000000000000000000000000000000000000000000000000000000000004e281565b3480156106fe57600080fd5b50610350600381565b34801561071357600080fd5b50610350600281565b34801561072857600080fd5b506102aa610737366004612a26565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077e57600080fd5b5061033961078d366004612907565b61191e565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061082557507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061087157507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806108bd57507fffffffff0000000000000000000000000000000000000000000000000000000082167fc21b8f2800000000000000000000000000000000000000000000000000000000145b92915050565b6060600280546108d290612a54565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe90612a54565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b6000610960826119d2565b610996576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6109cb82826001611a12565b5050565b60006109de6001546000540390565b905090565b60006109ee82611b04565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610ac857610a928633610737565b610ac8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610b15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610b2057600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000084169003610c0f57600184016000818152600460205260408120549003610c0d576000548114610c0d5760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c7b611bee565b600c6109cb8282612aed565b600073ffffffffffffffffffffffffffffffffffffffff8316610cd6576040517fcbe7266800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81610ce0846112b1565b11610d17576040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d2360005490565b610d2e906000612c36565b905060005b81811015610da7578573ffffffffffffffffffffffffffffffffffffffff16610d5b82611c6f565b73ffffffffffffffffffffffffffffffffffffffff1603610d9557848303610d875792506108bd915050565b82610d9181612c49565b9350505b80610d9f81612c49565b915050610d33565b506040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de2611bee565b60405133904780156108fc02916000818181858888f19350505050158015610e0e573d6000803e3d6000fd5b50565b610e2c83838360405180602001604052806000815250611755565b505050565b600080610e3d60005490565b610e48906000612c36565b905080831115610e84576040517f4e23d03500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805b82811015610da757610e9981611d1d565b60400151610ebe57848203610eb057949350505050565b81610eba81612c49565b9250505b80610ec881612c49565b915050610e88565b60606000610edc6109cf565b11610f48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f7420756e6c6f636b6564207965740000000000000000000000000000000060448201526064015b60405180910390fd5b600082604051602001610f5b9190612c81565b60405160208183030381529060405280519060200120905061101f61101a61101583611010600a8054610f8d90612a54565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb990612a54565b80156110065780601f10610fdb57610100808354040283529160200191611006565b820191906000526020600020905b815481529060010190602001808311610fe957829003601f168201915b5050505050611dc2565b611f2a565b611fcb565b6120e5565b9392505050565b60006108bd82611b04565b6110396109cf565b600003611072576040517fdbace0b100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000004e28160ff1661109f6109cf565b6110a99190612c36565b11156110e1576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060ff1660000361111e576040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600b602052604090205460ff1615611168576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915560ff821690036111d8576002600d60006111bc60005490565b8152602081019190915260400160002055610e0e336001612217565b8060ff1660020361127f577f0000000000000000000000000000000000000000000000000011c37937e08000341461123c576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054808252600d60208190526040832060029055909160039190611263846001612c36565b81526020810191909152604001600020556109cb336002612217565b6040517f2c5211c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff8216611300576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b61133b611bee565b6113456000612231565b565b6000806113526109cf565b11905090565b606073ffffffffffffffffffffffffffffffffffffffff82166113a7576040517fcbe7266800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113b2836112b1565b905060008167ffffffffffffffff8111156113cf576113cf612799565b6040519080825280602002602001820160405280156113f8578160200160208202803683370190505b50905060008061140760005490565b611412906000612c36565b905060005b8181101561149f578673ffffffffffffffffffffffffffffffffffffffff1661143f82611c6f565b73ffffffffffffffffffffffffffffffffffffffff160361148d578084848151811061146d5761146d612c9d565b60209081029190910101528261148281612c49565b93505084831461149f575b8061149781612c49565b915050611417565b509195945050505050565b600c80546114b790612a54565b80601f01602080910402602001604051908101604052809291908181526020018280546114e390612a54565b80156115305780601f1061150557610100808354040283529160200191611530565b820191906000526020600020905b81548152906001019060200180831161151357829003601f168201915b505050505081565b6060600380546108d290612a54565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006115e86109cf565b1115611620576040517f5090d6c600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000004e26116496109cf565b10611680576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f1a4e23914e8742a3448f30782202e829c8c34406dce89a229d474af22d6874b0816040516020016116b29190612c81565b60405160208183030381529060405280519060200120146116ff576040517fabab6bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040513381527f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea9060200160405180910390a16001600d60006111bc60005490565b611749611bee565b60036109cb8282612aed565b6117608484846109e3565b73ffffffffffffffffffffffffffffffffffffffff83163b156117bf57611789848484846122a8565b6117bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117cd611bee565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61181c611bee565b60026109cb8282612aed565b6060611833826119d2565b611869576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009546040517fc87b56dd0000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff9091169063c87b56dd90602401600060405180830381865afa1580156118d8573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526108bd9190810190612ccc565b611926611bee565b73ffffffffffffffffffffffffffffffffffffffff81166119c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f3f565b610e0e81612231565b60008054821080156108bd5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000611a1d83611026565b90508115611a82573373ffffffffffffffffffffffffffffffffffffffff821614611a8257611a4c8133610737565b611a82576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff88811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611bbc5780600003611bb7576000548210611b7d576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600460205260409020548015611b7e575b919050565b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f3f565b600081600054811015611d14576000611c8782611d1d565b90508060400151611d1257805173ffffffffffffffffffffffffffffffffffffffff1615611cb757519392505050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90910190611ce582611d1d565b805190915073ffffffffffffffffffffffffffffffffffffffff1615611d0d57519392505050565b611cb7565b505b50600092915050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546108bd906040805160808101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b80516060906000611dd4826020612422565b67ffffffffffffffff811115611dec57611dec612799565b604051908082528060200260200182016040528015611e15578160200160208202803683370190505b50905060005b8151811015611f225760005b6020811015611f0f57600081611e3e846020612d43565b611e489190612c36565b9050848110611e8b57611e5c826008612d43565b6000801b901c848481518110611e7457611e74612c9d565b602002602001018181511791508181525050611efc565b611e96826008612d43565b878281518110611ea857611ea8612c9d565b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c848481518110611ee957611ee9612c9d565b6020026020010181815117915081815250505b5080611f0781612c49565b915050611e27565b5080611f1a81612c49565b915050611e1b565b509392505050565b60606000825167ffffffffffffffff811115611f4857611f48612799565b604051908082528060200260200182016040528015611f71578160200160208202803683370190505b50905060005b8351811015611f225784848281518110611f9357611f93612c9d565b602002602001015118828281518110611fae57611fae612c9d565b602090810291909101015280611fc381612c49565b915050611f77565b6060600082516020611fdd9190612d43565b67ffffffffffffffff811115611ff557611ff5612799565b6040519080825280601f01601f19166020018201604052801561201f576020820181803683370190505b50905060005b83518110156120de5760005b60208110156120cb57612045816008612d43565b85838151811061205757612057612c9d565b6020026020010151901b83828460206120709190612d43565b61207a9190612c36565b8151811061208a5761208a612c9d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350806120c381612c49565b915050612031565b50806120d681612c49565b915050612025565b5092915050565b60606000805b835181101561214e5783818151811061210657612106612c9d565b01602001517fff000000000000000000000000000000000000000000000000000000000000001660000361213c5780915061214e565b8061214681612c49565b9150506120eb565b508067ffffffffffffffff81111561216857612168612799565b6040519080825280601f01601f191660200182016040528015612192576020820181803683370190505b50915060005b81811015612210578381815181106121b2576121b2612c9d565b602001015160f81c60f81b8382815181106121cf576121cf612c9d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508061220881612c49565b915050612198565b5050919050565b6109cb828260405180602001604052806000815250612454565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612303903390899088908890600401612d5a565b6020604051808303816000875af192505050801561235c575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261235991810190612da3565b60015b6123d3573d80801561238a576040519150601f19603f3d011682016040523d82523d6000602084013e61238f565b606091505b5080516000036123cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b600061242e8284612def565b1561243a57600161243d565b60005b60ff1661244a8385612e03565b61101f9190612c36565b61245e83836124e7565b73ffffffffffffffffffffffffffffffffffffffff83163b15610e2c576000548281035b61249560008683806001019450866122a8565b6124cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124825781600054146124e057600080fd5b5050505050565b6000805490829003612525576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146125e157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016125a9565b508160000361261c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e0e57600080fd5b60006020828403121561266557600080fd5b813561101f81612625565b60005b8381101561268b578181015183820152602001612673565b50506000910152565b600081518084526126ac816020860160208601612670565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061101f6020830184612694565b60006020828403121561270357600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff81168114610e0e57600080fd5b6000806040838503121561273f57600080fd5b823561274a8161270a565b946020939093013593505050565b60008060006060848603121561276d57600080fd5b83356127788161270a565b925060208401356127888161270a565b929592945050506040919091013590565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561280f5761280f612799565b604052919050565b600067ffffffffffffffff82111561283157612831612799565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600061287061286b84612817565b6127c8565b905082815283838301111561288457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128ad57600080fd5b813567ffffffffffffffff8111156128c457600080fd5b8201601f810184136128d557600080fd5b61241a8482356020840161285d565b6000602082840312156128f657600080fd5b813560ff8116811461101f57600080fd5b60006020828403121561291957600080fd5b813561101f8161270a565b6020808252825182820181905260009190848201906040850190845b8181101561295c57835183529284019291840191600101612940565b50909695505050505050565b6000806040838503121561297b57600080fd5b82356129868161270a565b91506020830135801515811461299b57600080fd5b809150509250929050565b600080600080608085870312156129bc57600080fd5b84356129c78161270a565b935060208501356129d78161270a565b925060408501359150606085013567ffffffffffffffff8111156129fa57600080fd5b8501601f81018713612a0b57600080fd5b612a1a8782356020840161285d565b91505092959194509250565b60008060408385031215612a3957600080fd5b8235612a448161270a565b9150602083013561299b8161270a565b600181811c90821680612a6857607f821691505b602082108103612aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610e2c57600081815260208120601f850160051c81016020861015612ace5750805b601f850160051c820191505b81811015610c6b57828155600101612ada565b815167ffffffffffffffff811115612b0757612b07612799565b612b1b81612b158454612a54565b84612aa7565b602080601f831160018114612b6e5760008415612b385750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b178555610c6b565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015612bbb57888601518255948401946001909101908401612b9c565b5085821015612bf757878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156108bd576108bd612c07565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c7a57612c7a612c07565b5060010190565b60008251612c93818460208701612670565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215612cde57600080fd5b815167ffffffffffffffff811115612cf557600080fd5b8201601f81018413612d0657600080fd5b8051612d1461286b82612817565b818152856020838501011115612d2957600080fd5b612d3a826020830160208601612670565b95945050505050565b80820281158282048414176108bd576108bd612c07565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612d996080830184612694565b9695505050505050565b600060208284031215612db557600080fd5b815161101f81612625565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612dfe57612dfe612dc0565b500690565b600082612e1257612e12612dc0565b50049056fea264697066735822122039393d7379d124bb85663f898e5111636e5419ff9047aa545586afc246c8af9164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000009aa627314be5259946c8e01a13db1fc5de808b751a4e23914e8742a3448f30782202e829c8c34406dce89a229d474af22d6874b0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000004e20000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000a4d5445204279205562690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d5445000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000606f204ffe2dec62c421e1550a43768146a6a22826ab8dfb4ee92f70d21d101682297d10a476b57bc770b9043b1044de1cfdf20733ebdfac1aa5757b911c2e44f22a0c67a908b162a3448f30782202e829c8c34406dce89a229d474af22d6874b000000000000000000000000000000000000000000000000000000000000000166f6e636861696e69737468656675747572652e636f6d00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MTE By Ubi
Arg [1] : symbol_ (string): MTE
Arg [2] : metadataAddr_ (address): 0x9AA627314be5259946c8e01a13dB1FC5DE808b75
Arg [3] : secretHash_ (bytes32): 0x1a4e23914e8742a3448f30782202e829c8c34406dce89a229d474af22d6874b0
Arg [4] : hiddenLore_ (bytes): 0x6f204ffe2dec62c421e1550a43768146a6a22826ab8dfb4ee92f70d21d101682297d10a476b57bc770b9043b1044de1cfdf20733ebdfac1aa5757b911c2e44f22a0c67a908b162a3448f30782202e829c8c34406dce89a229d474af22d6874b0
Arg [5] : maxSupply_ (uint256): 1250
Arg [6] : price_ (uint256): 5000000000000000
Arg [7] : externalUrl_ (string): onchainisthefuture.com
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000009aa627314be5259946c8e01a13db1fc5de808b75
Arg [3] : 1a4e23914e8742a3448f30782202e829c8c34406dce89a229d474af22d6874b0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000004e2
Arg [6] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 4d54452042792055626900000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4d54450000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [13] : 6f204ffe2dec62c421e1550a43768146a6a22826ab8dfb4ee92f70d21d101682
Arg [14] : 297d10a476b57bc770b9043b1044de1cfdf20733ebdfac1aa5757b911c2e44f2
Arg [15] : 2a0c67a908b162a3448f30782202e829c8c34406dce89a229d474af22d6874b0
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [17] : 6f6e636861696e69737468656675747572652e636f6d00000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.