ERC-721
NFT
Overview
Max Total Supply
9,999 HOOT
Holders
2,619
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HOOTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Owls
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /********************************* * * * 0,0 * * * *********************************/ pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "./lib/ERC721Enumerable.sol"; import "./IOwlDescriptor.sol"; contract Owls is ERC721Enumerable, Ownable { event SeedUpdated(uint256 indexed tokenId, uint256 seed); mapping(uint256 => uint256) internal seeds; IOwlDescriptor public descriptor; uint256 public maxSupply = 10000; bool public minting = false; bool public canUpdateSeed = true; constructor(IOwlDescriptor newDescriptor) ERC721("Owls", "HOOT") { descriptor = newDescriptor; } function mint(uint32 count) external payable { require(minting, "Minting needs to be enabled to start minting"); require(count < 101, "Exceeds max per transaction."); uint256 nextTokenId = _owners.length; unchecked { require(nextTokenId + count < maxSupply, "Exceeds max supply."); } for (uint32 i; i < count;) { seeds[nextTokenId] = generateSeed(nextTokenId); _mint(_msgSender(), nextTokenId); unchecked { ++nextTokenId; ++i; } } } function setMinting(bool value) external onlyOwner { minting = value; } function setDescriptor(IOwlDescriptor newDescriptor) external onlyOwner { descriptor = newDescriptor; } function withdraw() external payable onlyOwner { (bool os,)= payable(owner()).call{value: address(this).balance}(""); require(os); } function updateSeed(uint256 tokenId, uint256 seed) external onlyOwner { require(canUpdateSeed, "Cannot set the seed"); seeds[tokenId] = seed; emit SeedUpdated(tokenId, seed); } function disableSeedUpdate() external onlyOwner { canUpdateSeed = false; } function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn."); delete seeds[tokenId]; _burn(tokenId); } function getSeed(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "Owl does not exist."); return seeds[tokenId]; } function tokenURI(uint256 tokenId) public view returns (string memory) { require(_exists(tokenId), "Owl does not exist."); uint256 seed = seeds[tokenId]; return descriptor.tokenURI(tokenId, seed); } function generateSeed(uint256 tokenId) private view returns (uint256) { uint256 r = random(tokenId); uint256 headSeed = 100 * (r % 7 + 10) + ((r >> 48) % 20 + 10); uint256 faceSeed = 100 * ((r >> 96) % 6 + 10) + ((r >> 96) % 20 + 10); uint256 bodySeed = 100 * ((r >> 144) % 7 + 10) + ((r >> 144) % 20 + 10); uint256 legsSeed = 100 * ((r >> 192) % 2 + 10) + ((r >> 192) % 20 + 10); return 10000 * (10000 * (10000 * headSeed + faceSeed) + bodySeed) + legsSeed; } function random(uint256 tokenId) private view returns (uint256 pseudoRandomness) { pseudoRandomness = uint256( keccak256(abi.encodePacked(blockhash(block.number - 1), tokenId)) ); return pseudoRandomness; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function totalSupply() public view virtual override returns (uint256) { uint256 count; for (uint256 i; i < _owners.length;) { if (_owners[i] != address(0)) { unchecked { ++count; } } unchecked { ++i; } } return count; } function tokenByIndex(uint256 index) public view virtual override returns (uint256 tokenId) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint256 count; for(uint256 i; i < _owners.length;){ if(owner == _owners[i]) { if(count == index) return i; else { unchecked { ++count; } } } unchecked { ++i; } } revert("ERC721Enumerable: owner index out of bounds"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./Address.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); uint256 count; for (uint256 i; i < _owners.length;) { if (owner == _owners[i]) { unchecked { ++count; } } unchecked { ++i; } } return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: invalid token ID"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom(address from, address to, uint256 tokenId) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } function _mint(address to, uint256 tokenId) internal virtual { require(!_exists(tokenId), "ERC721: token already minted"); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); delete _tokenApprovals[tokenId]; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } return true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } }
// SPDX-License-Identifier: MIT /********************************* * * * 0,0 * * * *********************************/ pragma solidity ^0.8.13; interface IOwlDescriptor { function tokenURI(uint256 tokenId, uint256 seed) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.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); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IOwlDescriptor","name":"newDescriptor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"SeedUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUpdateSeed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract IOwlDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableSeedUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IOwlDescriptor","name":"newDescriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMinting","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":"tokenId","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"seed","type":"uint256"}],"name":"updateSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526127106008556000600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b5060405162003e2838038062003e28833981810160405281019062000073919062000377565b6040518060400160405280600481526020017f4f776c73000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f4f54000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f792919062000249565b5080600190805190602001906200011092919062000249565b50505062000133620001276200017b60201b60201c565b6200018360201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200040d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025790620003d8565b90600052602060002090601f0160209004810192826200027b5760008555620002c7565b82601f106200029657805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c6578251825591602001919060010190620002a9565b5b509050620002d69190620002da565b5090565b5b80821115620002f5576000816000905550600101620002db565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200032b82620002fe565b9050919050565b60006200033f826200031e565b9050919050565b620003518162000332565b81146200035d57600080fd5b50565b600081519050620003718162000346565b92915050565b60006020828403121562000390576200038f620002f9565b5b6000620003a08482850162000360565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f157607f821691505b602082108103620004075762000406620003a9565b5b50919050565b613a0b806200041d6000396000f3fe6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612413565b610748565b005b34801561021257600080fd5b5061022d60048036038101906102289190612498565b610794565b60405161023a91906124e0565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b6040516102659190612594565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906125ec565b6108a0565b6040516102a29190612628565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061266f565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906126af565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f91906126fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612719565b610b86565b005b34801561035d57600080fd5b506103786004803603810190610373919061266f565b610be6565b60405161038591906126fe565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b091906127cb565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db91906124e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c60048036038101906104279190612719565b610dff565b005b34801561043a57600080fd5b50610455600480360381019061045091906125ec565b610e1f565b005b34801561046357600080fd5b5061047e600480360381019061047991906125ec565b610e92565b60405161048b91906126fe565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906125ec565b610ee3565b6040516104c89190612628565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906127e6565b610f9f565b60405161050591906126fe565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b60405161054791906124e0565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b6040516105729190612628565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d9190612594565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061283f565b611190565b005b6105e960048036038101906105e491906128bb565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d91906128e8565b61145c565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a4a565b611481565b005b34801561064957600080fd5b50610664600480360381019061065f91906125ec565b6114e3565b6040516106719190612594565b60405180910390f35b34801561068657600080fd5b5061068f6115f0565b60405161069c91906126fe565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906125ec565b6115f6565b6040516106d991906126fe565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612acd565b61165b565b60405161071691906124e0565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906127e6565b6116ef565b005b610750611772565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f0565b5b9050919050565b60606000805461081d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b3c565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d2565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612bb9565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195a565b61165b565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612cdd565b60405180910390fd5b610a378383611962565b505050565b610a44611772565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612d49565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb91906126fe565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195a565b82611a1b565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612e0a565b60405180910390fd5b610be1838383611ab0565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e9c565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e9c565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611772565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611772565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612eed565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611481565b505050565b610e30610e2a61195a565b82611a1b565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f4e565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c88565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612fe0565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612bb9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613072565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611772565b6110bf6000611d6c565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612b3c565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195a565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906130de565b60405180910390fd5b806004600061121261195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130491906124e0565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613170565b60405180910390fd5b60658163ffffffff16106113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906131dc565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613248565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114575761141e82611e32565b600660008481526020019081526020016000208190555061144661144061195a565b83611fe1565b816001019150806001019050611401565b505050565b611464611772565b80600960006101000a81548160ff02191690831515021790555050565b61149261148c61195a565b83611a1b565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612e0a565b60405180910390fd5b6114dd848484846120ed565b50505050565b60606114ee826118d2565b61152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906132b4565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a29291906132d4565b600060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e8919061339e565b915050919050565b60085481565b6000611601826118d2565b611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906132b4565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f7611772565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613459565b60405180910390fd5b61176f81611d6c565b50565b61177a61195a565b73ffffffffffffffffffffffffffffffffffffffff166117986110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e5906134c5565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cb57506118ca82612149565b5b9050919050565b6000600280549050821080156119535750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061190f5761190e612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2783610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a695750611a68818561165b565b5b80611aa757508373ffffffffffffffffffffffffffffffffffffffff16611a8f846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad082610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906135e9565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be057611bdf612d69565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9382610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611cdf57611cde612d69565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3e836121b3565b90506000600a6014603084901c611e559190613638565b611e5f9190613698565b600a600784611e6e9190613638565b611e789190613698565b6064611e8491906136ee565b611e8e9190613698565b90506000600a6014606085901c611ea59190613638565b611eaf9190613698565b600a6006606086901c611ec29190613638565b611ecc9190613698565b6064611ed891906136ee565b611ee29190613698565b90506000600a6014609086901c611ef99190613638565b611f039190613698565b600a6007609087901c611f169190613638565b611f209190613698565b6064611f2c91906136ee565b611f369190613698565b90506000600a601460c087901c611f4d9190613638565b611f579190613698565b600a600260c088901c611f6a9190613638565b611f749190613698565b6064611f8091906136ee565b611f8a9190613698565b905080828486612710611f9d91906136ee565b611fa79190613698565b612710611fb491906136ee565b611fbe9190613698565b612710611fcb91906136ee565b611fd59190613698565b95505050505050919050565b611fea816118d2565b1561202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613794565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6120f8848484611ab0565b612104848484846121f5565b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613826565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121c29190613846565b40826040516020016121d59291906138c6565b6040516020818303038152906040528051906020012060001c9050919050565b60006122168473ffffffffffffffffffffffffffffffffffffffff1661237c565b1561236f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223f61195a565b8786866040518563ffffffff1660e01b81526004016122619493929190613947565b6020604051808303816000875af192505050801561229d57506040513d601f19601f8201168201806040525081019061229a91906139a8565b60015b61231f573d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b506000815103612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613826565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612374565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123ce826123a3565b9050919050565b60006123e0826123c3565b9050919050565b6123f0816123d5565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b60006020828403121561242957612428612399565b5b6000612437848285016123fe565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247581612440565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad612399565b5b60006124bc84828501612483565b91505092915050565b60008115159050919050565b6124da816124c5565b82525050565b60006020820190506124f560008301846124d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253557808201518184015260208101905061251a565b83811115612544576000848401525b50505050565b6000601f19601f8301169050919050565b6000612566826124fb565b6125708185612506565b9350612580818560208601612517565b6125898161254a565b840191505092915050565b600060208201905081810360008301526125ae818461255b565b905092915050565b6000819050919050565b6125c9816125b6565b81146125d457600080fd5b50565b6000813590506125e6816125c0565b92915050565b60006020828403121561260257612601612399565b5b6000612610848285016125d7565b91505092915050565b612622816123c3565b82525050565b600060208201905061263d6000830184612619565b92915050565b61264c816123c3565b811461265757600080fd5b50565b60008135905061266981612643565b92915050565b6000806040838503121561268657612685612399565b5b60006126948582860161265a565b92505060206126a5858286016125d7565b9150509250929050565b600080604083850312156126c6576126c5612399565b5b60006126d4858286016125d7565b92505060206126e5858286016125d7565b9150509250929050565b6126f8816125b6565b82525050565b600060208201905061271360008301846126ef565b92915050565b60008060006060848603121561273257612731612399565b5b60006127408682870161265a565b93505060206127518682870161265a565b9250506040612762868287016125d7565b9150509250925092565b6000819050919050565b600061279161278c612787846123a3565b61276c565b6123a3565b9050919050565b60006127a382612776565b9050919050565b60006127b582612798565b9050919050565b6127c5816127aa565b82525050565b60006020820190506127e060008301846127bc565b92915050565b6000602082840312156127fc576127fb612399565b5b600061280a8482850161265a565b91505092915050565b61281c816124c5565b811461282757600080fd5b50565b60008135905061283981612813565b92915050565b6000806040838503121561285657612855612399565b5b60006128648582860161265a565b92505060206128758582860161282a565b9150509250929050565b600063ffffffff82169050919050565b6128988161287f565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612399565b5b60006128df848285016128a6565b91505092915050565b6000602082840312156128fe576128fd612399565b5b600061290c8482850161282a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129578261254a565b810181811067ffffffffffffffff821117156129765761297561291f565b5b80604052505050565b600061298961238f565b9050612995828261294e565b919050565b600067ffffffffffffffff8211156129b5576129b461291f565b5b6129be8261254a565b9050602081019050919050565b82818337600083830152505050565b60006129ed6129e88461299a565b61297f565b905082815260208101848484011115612a0957612a0861291a565b5b612a148482856129cb565b509392505050565b600082601f830112612a3157612a30612915565b5b8135612a418482602086016129da565b91505092915050565b60008060008060808587031215612a6457612a63612399565b5b6000612a728782880161265a565b9450506020612a838782880161265a565b9350506040612a94878288016125d7565b925050606085013567ffffffffffffffff811115612ab557612ab461239e565b5b612ac187828801612a1c565b91505092959194509250565b60008060408385031215612ae457612ae3612399565b5b6000612af28582860161265a565b9250506020612b038582860161265a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5457607f821691505b602082108103612b6757612b66612b0d565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ba3601883612506565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c35602183612506565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cc7603883612506565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612d33601383612506565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612df4602d83612506565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e86602b83612506565b9150612e9182612e2a565b604082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b600081905092915050565b50565b6000612ed7600083612ebc565b9150612ee282612ec7565b600082019050919050565b6000612ef882612eca565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612f38601583612506565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fca602c83612506565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061305c602983612506565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130c8601983612506565b91506130d382613092565b602082019050919050565b600060208201905081810360008301526130f7816130bb565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b600061315a602c83612506565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006131c6601c83612506565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613232601383612506565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f4f776c20646f6573206e6f742065786973742e00000000000000000000000000600082015250565b600061329e601383612506565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b60006040820190506132e960008301856126ef565b6132f660208301846126ef565b9392505050565b600067ffffffffffffffff8211156133185761331761291f565b5b6133218261254a565b9050602081019050919050565b600061334161333c846132fd565b61297f565b90508281526020810184848401111561335d5761335c61291a565b5b613368848285612517565b509392505050565b600082601f83011261338557613384612915565b5b815161339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612399565b5b600082015167ffffffffffffffff8111156133d2576133d161239e565b5b6133de84828501613370565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613443602683612506565b915061344e826133e7565b604082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134af602083612506565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613541602583612506565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602483612506565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613643826125b6565b915061364e836125b6565b92508261365e5761365d613609565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a3826125b6565b91506136ae836125b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e3576136e2613669565b5b828201905092915050565b60006136f9826125b6565b9150613704836125b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373d5761373c613669565b5b828202905092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061377e601c83612506565b915061378982613748565b602082019050919050565b600060208201905081810360008301526137ad81613771565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613810603283612506565b915061381b826137b4565b604082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b6000613851826125b6565b915061385c836125b6565b92508282101561386f5761386e613669565b5b828203905092915050565b6000819050919050565b6000819050919050565b61389f61389a8261387a565b613884565b82525050565b6000819050919050565b6138c06138bb826125b6565b6138a5565b82525050565b60006138d2828561388e565b6020820191506138e282846138af565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b9350613933818560208601612517565b61393c8161254a565b840191505092915050565b600060808201905061395c6000830187612619565b6139696020830186612619565b61397660408301856126ef565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a28161246c565b92915050565b6000602082840312156139be576139bd612399565b5b60006139cc84828501613993565b9150509291505056fea2646970667358221220a23dd9504db39f641c7b427969a91d9e94b062bcc7d74e8aaa5190d17f409dab64736f6c634300080d0033000000000000000000000000ebf3c7d208de9a8af93d512652a32f71cd312d92
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612413565b610748565b005b34801561021257600080fd5b5061022d60048036038101906102289190612498565b610794565b60405161023a91906124e0565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b6040516102659190612594565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906125ec565b6108a0565b6040516102a29190612628565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd919061266f565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f691906126af565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f91906126fe565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612719565b610b86565b005b34801561035d57600080fd5b506103786004803603810190610373919061266f565b610be6565b60405161038591906126fe565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b091906127cb565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db91906124e0565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c60048036038101906104279190612719565b610dff565b005b34801561043a57600080fd5b50610455600480360381019061045091906125ec565b610e1f565b005b34801561046357600080fd5b5061047e600480360381019061047991906125ec565b610e92565b60405161048b91906126fe565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906125ec565b610ee3565b6040516104c89190612628565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f391906127e6565b610f9f565b60405161050591906126fe565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b60405161054791906124e0565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b6040516105729190612628565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d9190612594565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c8919061283f565b611190565b005b6105e960048036038101906105e491906128bb565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d91906128e8565b61145c565b005b34801561062057600080fd5b5061063b60048036038101906106369190612a4a565b611481565b005b34801561064957600080fd5b50610664600480360381019061065f91906125ec565b6114e3565b6040516106719190612594565b60405180910390f35b34801561068657600080fd5b5061068f6115f0565b60405161069c91906126fe565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906125ec565b6115f6565b6040516106d991906126fe565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612acd565b61165b565b60405161071691906124e0565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906127e6565b6116ef565b005b610750611772565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f0565b5b9050919050565b60606000805461081d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612b3c565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d2565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612bb9565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612c4b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195a565b61165b565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612cdd565b60405180910390fd5b610a378383611962565b505050565b610a44611772565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612d49565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb91906126fe565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195a565b82611a1b565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612e0a565b60405180910390fd5b610be1838383611ab0565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e9c565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e9c565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611772565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611772565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612eed565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611481565b505050565b610e30610e2a61195a565b82611a1b565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612f4e565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c88565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612fe0565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612bb9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613072565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611772565b6110bf6000611d6c565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612b3c565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612b3c565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195a565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc906130de565b60405180910390fd5b806004600061121261195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130491906124e0565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613170565b60405180910390fd5b60658163ffffffff16106113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f906131dc565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613248565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114575761141e82611e32565b600660008481526020019081526020016000208190555061144661144061195a565b83611fe1565b816001019150806001019050611401565b505050565b611464611772565b80600960006101000a81548160ff02191690831515021790555050565b61149261148c61195a565b83611a1b565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612e0a565b60405180910390fd5b6114dd848484846120ed565b50505050565b60606114ee826118d2565b61152d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611524906132b4565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a29291906132d4565b600060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e8919061339e565b915050919050565b60085481565b6000611601826118d2565b611640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611637906132b4565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f7611772565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d90613459565b60405180910390fd5b61176f81611d6c565b50565b61177a61195a565b73ffffffffffffffffffffffffffffffffffffffff166117986110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e5906134c5565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cb57506118ca82612149565b5b9050919050565b6000600280549050821080156119535750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061190f5761190e612d69565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d583610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2783610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a695750611a68818561165b565b5b80611aa757508373ffffffffffffffffffffffffffffffffffffffff16611a8f846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad082610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906135e9565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be057611bdf612d69565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9382610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611cdf57611cde612d69565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3e836121b3565b90506000600a6014603084901c611e559190613638565b611e5f9190613698565b600a600784611e6e9190613638565b611e789190613698565b6064611e8491906136ee565b611e8e9190613698565b90506000600a6014606085901c611ea59190613638565b611eaf9190613698565b600a6006606086901c611ec29190613638565b611ecc9190613698565b6064611ed891906136ee565b611ee29190613698565b90506000600a6014609086901c611ef99190613638565b611f039190613698565b600a6007609087901c611f169190613638565b611f209190613698565b6064611f2c91906136ee565b611f369190613698565b90506000600a601460c087901c611f4d9190613638565b611f579190613698565b600a600260c088901c611f6a9190613638565b611f749190613698565b6064611f8091906136ee565b611f8a9190613698565b905080828486612710611f9d91906136ee565b611fa79190613698565b612710611fb491906136ee565b611fbe9190613698565b612710611fcb91906136ee565b611fd59190613698565b95505050505050919050565b611fea816118d2565b1561202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613794565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6120f8848484611ab0565b612104848484846121f5565b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613826565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121c29190613846565b40826040516020016121d59291906138c6565b6040516020818303038152906040528051906020012060001c9050919050565b60006122168473ffffffffffffffffffffffffffffffffffffffff1661237c565b1561236f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261223f61195a565b8786866040518563ffffffff1660e01b81526004016122619493929190613947565b6020604051808303816000875af192505050801561229d57506040513d601f19601f8201168201806040525081019061229a91906139a8565b60015b61231f573d80600081146122cd576040519150601f19603f3d011682016040523d82523d6000602084013e6122d2565b606091505b506000815103612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613826565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612374565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123ce826123a3565b9050919050565b60006123e0826123c3565b9050919050565b6123f0816123d5565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b60006020828403121561242957612428612399565b5b6000612437848285016123fe565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247581612440565b811461248057600080fd5b50565b6000813590506124928161246c565b92915050565b6000602082840312156124ae576124ad612399565b5b60006124bc84828501612483565b91505092915050565b60008115159050919050565b6124da816124c5565b82525050565b60006020820190506124f560008301846124d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253557808201518184015260208101905061251a565b83811115612544576000848401525b50505050565b6000601f19601f8301169050919050565b6000612566826124fb565b6125708185612506565b9350612580818560208601612517565b6125898161254a565b840191505092915050565b600060208201905081810360008301526125ae818461255b565b905092915050565b6000819050919050565b6125c9816125b6565b81146125d457600080fd5b50565b6000813590506125e6816125c0565b92915050565b60006020828403121561260257612601612399565b5b6000612610848285016125d7565b91505092915050565b612622816123c3565b82525050565b600060208201905061263d6000830184612619565b92915050565b61264c816123c3565b811461265757600080fd5b50565b60008135905061266981612643565b92915050565b6000806040838503121561268657612685612399565b5b60006126948582860161265a565b92505060206126a5858286016125d7565b9150509250929050565b600080604083850312156126c6576126c5612399565b5b60006126d4858286016125d7565b92505060206126e5858286016125d7565b9150509250929050565b6126f8816125b6565b82525050565b600060208201905061271360008301846126ef565b92915050565b60008060006060848603121561273257612731612399565b5b60006127408682870161265a565b93505060206127518682870161265a565b9250506040612762868287016125d7565b9150509250925092565b6000819050919050565b600061279161278c612787846123a3565b61276c565b6123a3565b9050919050565b60006127a382612776565b9050919050565b60006127b582612798565b9050919050565b6127c5816127aa565b82525050565b60006020820190506127e060008301846127bc565b92915050565b6000602082840312156127fc576127fb612399565b5b600061280a8482850161265a565b91505092915050565b61281c816124c5565b811461282757600080fd5b50565b60008135905061283981612813565b92915050565b6000806040838503121561285657612855612399565b5b60006128648582860161265a565b92505060206128758582860161282a565b9150509250929050565b600063ffffffff82169050919050565b6128988161287f565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d0612399565b5b60006128df848285016128a6565b91505092915050565b6000602082840312156128fe576128fd612399565b5b600061290c8482850161282a565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129578261254a565b810181811067ffffffffffffffff821117156129765761297561291f565b5b80604052505050565b600061298961238f565b9050612995828261294e565b919050565b600067ffffffffffffffff8211156129b5576129b461291f565b5b6129be8261254a565b9050602081019050919050565b82818337600083830152505050565b60006129ed6129e88461299a565b61297f565b905082815260208101848484011115612a0957612a0861291a565b5b612a148482856129cb565b509392505050565b600082601f830112612a3157612a30612915565b5b8135612a418482602086016129da565b91505092915050565b60008060008060808587031215612a6457612a63612399565b5b6000612a728782880161265a565b9450506020612a838782880161265a565b9350506040612a94878288016125d7565b925050606085013567ffffffffffffffff811115612ab557612ab461239e565b5b612ac187828801612a1c565b91505092959194509250565b60008060408385031215612ae457612ae3612399565b5b6000612af28582860161265a565b9250506020612b038582860161265a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5457607f821691505b602082108103612b6757612b66612b0d565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ba3601883612506565b9150612bae82612b6d565b602082019050919050565b60006020820190508181036000830152612bd281612b96565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c35602183612506565b9150612c4082612bd9565b604082019050919050565b60006020820190508181036000830152612c6481612c28565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612cc7603883612506565b9150612cd282612c6b565b604082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612d33601383612506565b9150612d3e82612cfd565b602082019050919050565b60006020820190508181036000830152612d6281612d26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612df4602d83612506565b9150612dff82612d98565b604082019050919050565b60006020820190508181036000830152612e2381612de7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e86602b83612506565b9150612e9182612e2a565b604082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b600081905092915050565b50565b6000612ed7600083612ebc565b9150612ee282612ec7565b600082019050919050565b6000612ef882612eca565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612f38601583612506565b9150612f4382612f02565b602082019050919050565b60006020820190508181036000830152612f6781612f2b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fca602c83612506565b9150612fd582612f6e565b604082019050919050565b60006020820190508181036000830152612ff981612fbd565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061305c602983612506565b915061306782613000565b604082019050919050565b6000602082019050818103600083015261308b8161304f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130c8601983612506565b91506130d382613092565b602082019050919050565b600060208201905081810360008301526130f7816130bb565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b600061315a602c83612506565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b60006131c6601c83612506565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b6000613232601383612506565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f4f776c20646f6573206e6f742065786973742e00000000000000000000000000600082015250565b600061329e601383612506565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b60006040820190506132e960008301856126ef565b6132f660208301846126ef565b9392505050565b600067ffffffffffffffff8211156133185761331761291f565b5b6133218261254a565b9050602081019050919050565b600061334161333c846132fd565b61297f565b90508281526020810184848401111561335d5761335c61291a565b5b613368848285612517565b509392505050565b600082601f83011261338557613384612915565b5b815161339584826020860161332e565b91505092915050565b6000602082840312156133b4576133b3612399565b5b600082015167ffffffffffffffff8111156133d2576133d161239e565b5b6133de84828501613370565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613443602683612506565b915061344e826133e7565b604082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134af602083612506565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613541602583612506565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135d3602483612506565b91506135de82613577565b604082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613643826125b6565b915061364e836125b6565b92508261365e5761365d613609565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136a3826125b6565b91506136ae836125b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136e3576136e2613669565b5b828201905092915050565b60006136f9826125b6565b9150613704836125b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373d5761373c613669565b5b828202905092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061377e601c83612506565b915061378982613748565b602082019050919050565b600060208201905081810360008301526137ad81613771565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613810603283612506565b915061381b826137b4565b604082019050919050565b6000602082019050818103600083015261383f81613803565b9050919050565b6000613851826125b6565b915061385c836125b6565b92508282101561386f5761386e613669565b5b828203905092915050565b6000819050919050565b6000819050919050565b61389f61389a8261387a565b613884565b82525050565b6000819050919050565b6138c06138bb826125b6565b6138a5565b82525050565b60006138d2828561388e565b6020820191506138e282846138af565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613919826138f2565b61392381856138fd565b9350613933818560208601612517565b61393c8161254a565b840191505092915050565b600060808201905061395c6000830187612619565b6139696020830186612619565b61397660408301856126ef565b8181036060830152613988818461390e565b905095945050505050565b6000815190506139a28161246c565b92915050565b6000602082840312156139be576139bd612399565b5b60006139cc84828501613993565b9150509291505056fea2646970667358221220a23dd9504db39f641c7b427969a91d9e94b062bcc7d74e8aaa5190d17f409dab64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ebf3c7d208de9a8af93d512652a32f71cd312d92
-----Decoded View---------------
Arg [0] : newDescriptor (address): 0xEbf3c7d208dE9A8Af93D512652A32F71CD312d92
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ebf3c7d208de9a8af93d512652a32f71cd312d92
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.