ERC-721
Overview
Max Total Supply
1,594 OA
Holders
105
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 OALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OrdinalHorizons
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.19; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.19; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.19; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.19; /** * @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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.19; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.19; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.19; /** * @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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.19; /** * @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); } pragma solidity ^0.8.19; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if ( to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) ) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if ( !_checkContractOnERC721Received( address(0), to, updatedIndex++, _data ) ) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.19; contract OrdinalHorizons is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public burn; bool public paused; uint256 public free = 0; string public _baseTokenURI; bool public revealed = true; uint256 public maxSupply = 5555; string public hiddenMetadataUri; uint256 public freeSupply = 1000; uint256 public cost = 0.001 ether; uint256 public burnFee = 0 ether; uint256 public maxMintAmountPerTx = 20; uint256 public btc_Address = 62; address private os = 0xc9E748911c2f4C08972dD4168120Ffe1614a31cd; address private dev = 0x489c57B7de6BC4962AF88C8B5915183B9E3857FB; address public deadAddress = 0x000000000000000000000000000000000000dEaD; mapping(uint256 => string) public burns; event burnOrd(uint256 tokenId, string destAddress); constructor(string memory _hiddenMetadataUri) ERC721A("Ordinal Horizons", "OA") { setHiddenMetadataUri(_hiddenMetadataUri); } function mint(uint256 _mintAmount) public payable nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(_msgSender(), _mintAmount); } function freeMint(uint256 _mintAmount) public nonReentrant { require( _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!" ); require( free + _mintAmount <= freeSupply, "Free supply exceeded!" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!" ); require(!paused, "The contract is paused!"); _safeMint(_msgSender(), _mintAmount); free += _mintAmount; } function burnOrds(uint256 tokenId, string memory destAddress) public payable nonReentrant { require(burn, "Burn disabled"); require( bytes(destAddress).length == btc_Address, "Only taproot address can be used" ); require(msg.value >= burnFee, "Insufficient funds!"); burns[tokenId] = destAddress; safeTransferFrom(msg.sender, deadAddress,tokenId); emit burnOrd(tokenId,destAddress); } function gift(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setBurn(bool _state) public onlyOwner { burn = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setFee(uint256 _fee) public onlyOwner { burnFee = _fee; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool trf, ) = payable(os).call{ value: (address(this).balance * 50) / 100 }(""); require(trf); (bool txo, ) = payable(dev).call{value: address(this).balance}( "" ); require(txo); } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return bytes(_baseTokenURI).length > 0 ? string( abi.encodePacked( _baseTokenURI, _tokenId.toString(), ".json" ) ) : ""; } else { return hiddenMetadataUri; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"destAddress","type":"string"}],"name":"burnOrd","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"btc_Address","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"destAddress","type":"string"}],"name":"burnOrds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burns","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b819055600d805460ff191660011790556115b3600e556103e860105566038d7ea4c6800060115560125560146013819055603e9055601580546001600160a01b031990811673c9e748911c2f4c08972dd4168120ffe1614a31cd1790915560168054821673489c57b7de6bc4962af88c8b5915183b9e3857fb1790556017805490911661dead1790553480156200009e57600080fd5b5060405162002ad038038062002ad0833981016040819052620000c19162000228565b6040518060400160405280601081526020016f4f7264696e616c20486f72697a6f6e7360801b815250604051806040016040528060028152602001614f4160f01b81525081600290816200011691906200038c565b5060036200012582826200038c565b505060016000555062000138336200014f565b60016009556200014881620001a1565b5062000458565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600f6200020e82826200038c565b5050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023c57600080fd5b82516001600160401b03808211156200025457600080fd5b818501915085601f8301126200026957600080fd5b8151818111156200027e576200027e62000212565b604051601f8201601f19908116603f01168101908382118183101715620002a957620002a962000212565b816040528281528886848701011115620002c257600080fd5b600093505b82841015620002e65784840186015181850187015292850192620002c7565b600086848301015280965050505050505092915050565b600181811c908216806200031257607f821691505b6020821081036200033357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038757600081815260208120601f850160051c81016020861015620003625750805b601f850160051c820191505b8181101562000383578281556001016200036e565b5050505b505050565b81516001600160401b03811115620003a857620003a862000212565b620003c081620003b98454620002fd565b8462000339565b602080601f831160018114620003f85760008415620003df5750858301515b600019600386901b1c1916600185901b17855562000383565b600085815260208120601f198616915b82811015620004295788860151825594840194600190910190840162000408565b5085821015620004485787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61266880620004686000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063b071401b116100c1578063e0a808531161007a578063e0a808531461072c578063e985e9c51461074c578063f2fde38b1461076c578063f37c1c801461078c578063f676308a146107a2578063fce589d8146107c257600080fd5b8063b071401b14610681578063b88d4fde146106a1578063bd55cf0d146106c1578063c87b56dd146106e1578063cfc86f7b14610701578063d5abeb011461071657600080fd5b806394354fd01161011357806394354fd0146105ee57806395d89b4114610604578063a0712d6814610619578063a22cb4651461062c578063a45ba8e71461064c578063a86eb2921461066157600080fd5b8063715018a614610568578063733f41701461057d5780637c928fe91461059057806383a076be146105b05780638da5cb5b146105d057600080fd5b80633ccfd60b116101f357806355f804b3116101ac57806355f804b3146104a95780635c975abb146104c95780636352211e146104e857806369fe0e2d146105085780636f8b44b01461052857806370a082311461054857600080fd5b80633ccfd60b1461040057806342842e0e1461041557806344a0d68a1461043557806344df8e70146104555780634fdd43cb1461046f578063518302271461048f57600080fd5b806313faede61161024557806313faede61461035757806316c38b3c1461036d57806318160ddd1461038d57806323b872dd146103aa57806324a6ab0c146103ca57806327c8f835146103e057600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780631370128e14610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004611e02565b6107d8565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61082a565b6040516102ae9190611e76565b3480156102e557600080fd5b506102f96102f4366004611e89565b6108bc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004611eb9565b610900565b005b34801561033f57600080fd5b50610349600b5481565b6040519081526020016102ae565b34801561036357600080fd5b5061034960115481565b34801561037957600080fd5b50610331610388366004611ef3565b61098d565b34801561039957600080fd5b506001546000540360001901610349565b3480156103b657600080fd5b506103316103c5366004611f0e565b6109da565b3480156103d657600080fd5b5061034960105481565b3480156103ec57600080fd5b506017546102f9906001600160a01b031681565b34801561040c57600080fd5b506103316109e5565b34801561042157600080fd5b50610331610430366004611f0e565b610ae8565b34801561044157600080fd5b50610331610450366004611e89565b610b03565b34801561046157600080fd5b50600a546102a29060ff1681565b34801561047b57600080fd5b5061033161048a366004611ff5565b610b32565b34801561049b57600080fd5b50600d546102a29060ff1681565b3480156104b557600080fd5b506103316104c4366004612029565b610b68565b3480156104d557600080fd5b50600a546102a290610100900460ff1681565b3480156104f457600080fd5b506102f9610503366004611e89565b610b9f565b34801561051457600080fd5b50610331610523366004611e89565b610bb1565b34801561053457600080fd5b50610331610543366004611e89565b610be0565b34801561055457600080fd5b5061034961056336600461209a565b610c0f565b34801561057457600080fd5b50610331610c5d565b61033161058b3660046120b5565b610c93565b34801561059c57600080fd5b506103316105ab366004611e89565b610e09565b3480156105bc57600080fd5b506103316105cb3660046120fb565b610fb7565b3480156105dc57600080fd5b506008546001600160a01b03166102f9565b3480156105fa57600080fd5b5061034960135481565b34801561061057600080fd5b506102cc610feb565b610331610627366004611e89565b610ffa565b34801561063857600080fd5b50610331610647366004612127565b61118b565b34801561065857600080fd5b506102cc611220565b34801561066d57600080fd5b506102cc61067c366004611e89565b6112ae565b34801561068d57600080fd5b5061033161069c366004611e89565b6112c7565b3480156106ad57600080fd5b506103316106bc366004612151565b6112f6565b3480156106cd57600080fd5b506103316106dc366004611ef3565b611347565b3480156106ed57600080fd5b506102cc6106fc366004611e89565b611384565b34801561070d57600080fd5b506102cc6114cf565b34801561072257600080fd5b50610349600e5481565b34801561073857600080fd5b50610331610747366004611ef3565b6114dc565b34801561075857600080fd5b506102a26107673660046121cc565b611519565b34801561077857600080fd5b5061033161078736600461209a565b611547565b34801561079857600080fd5b5061034960145481565b3480156107ae57600080fd5b506103316107bd366004611e89565b6115e2565b3480156107ce57600080fd5b5061034960125481565b60006001600160e01b031982166380ac58cd60e01b148061080957506001600160e01b03198216635b5e139f60e01b145b8061082457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610839906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610865906121f6565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c782611611565b6108e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090b82610b9f565b9050806001600160a01b0316836001600160a01b03160361093f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095f575061095d8133611519565b155b1561097d576040516367d9dca160e11b815260040160405180910390fd5b61098883838361164a565b505050565b6008546001600160a01b031633146109c05760405162461bcd60e51b81526004016109b790612230565b60405180910390fd5b600a80549115156101000261ff0019909216919091179055565b6109888383836116a6565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109b790612230565b6015546000906001600160a01b03166064610a2b47603261227b565b610a3591906122a8565b604051600081818185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5050905080610a8457600080fd5b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ad1576040519150601f19603f3d011682016040523d82523d6000602084013e610ad6565b606091505b5050905080610ae457600080fd5b5050565b610988838383604051806020016040528060008152506112f6565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b81526004016109b790612230565b601155565b6008546001600160a01b03163314610b5c5760405162461bcd60e51b81526004016109b790612230565b600f610ae4828261230a565b6008546001600160a01b03163314610b925760405162461bcd60e51b81526004016109b790612230565b600c6109888284836123c9565b6000610baa82611894565b5192915050565b6008546001600160a01b03163314610bdb5760405162461bcd60e51b81526004016109b790612230565b601255565b6008546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016109b790612230565b600e55565b60006001600160a01b038216610c38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c875760405162461bcd60e51b81526004016109b790612230565b610c9160006119bb565b565b600260095403610cb55760405162461bcd60e51b81526004016109b790612488565b6002600955600a5460ff16610cfc5760405162461bcd60e51b815260206004820152600d60248201526c109d5c9b88191a5cd8589b1959609a1b60448201526064016109b7565b601454815114610d4e5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746170726f6f7420616464726573732063616e206265207573656460448201526064016109b7565b601254341015610d965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b7565b6000828152601860205260409020610dae828261230a565b50601754610dc79033906001600160a01b031684610ae8565b7fb79b4c3c9a5b98956b74e5c328f39cee5de74b372074f503d51c19ba941e591b8282604051610df89291906124bf565b60405180910390a150506001600955565b600260095403610e2b5760405162461bcd60e51b81526004016109b790612488565b60026009558015801590610e4157506013548111155b610e845760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b7565b60105481600b54610e9591906124d8565b1115610edb5760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b60448201526064016109b7565b600e546001546000548391900360001901610ef691906124d8565b1115610f3b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b7565b600a54610100900460ff1615610f8d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b7565b610f98335b82611a0d565b80600b6000828254610faa91906124d8565b9091555050600160095550565b6008546001600160a01b03163314610fe15760405162461bcd60e51b81526004016109b790612230565b610ae48183611a0d565b606060038054610839906121f6565b60026009540361101c5760405162461bcd60e51b81526004016109b790612488565b6002600955801580159061103257506013548111155b6110755760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b7565b600e54600154600054839190036000190161109091906124d8565b11156110d55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b7565b600a54610100900460ff16156111275760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b7565b80601154611135919061227b565b34101561117a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b7565b61118333610f92565b506001600955565b336001600160a01b038316036111b45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461122d906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611259906121f6565b80156112a65780601f1061127b576101008083540402835291602001916112a6565b820191906000526020600020905b81548152906001019060200180831161128957829003601f168201915b505050505081565b6018602052600090815260409020805461122d906121f6565b6008546001600160a01b031633146112f15760405162461bcd60e51b81526004016109b790612230565b601355565b6113018484846116a6565b6001600160a01b0383163b15158015611323575061132184848484611a27565b155b15611341576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113715760405162461bcd60e51b81526004016109b790612230565b600a805460ff1916911515919091179055565b606061138f82611611565b6113d15760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016109b7565b600d5460ff1615611438576000600c80546113eb906121f6565b9050116114075760405180602001604052806000815250610824565b600c61141283611b13565b6040516020016114239291906124eb565b60405160208183030381529060405292915050565b600f8054611445906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611471906121f6565b80156114be5780601f10611493576101008083540402835291602001916114be565b820191906000526020600020905b8154815290600101906020018083116114a157829003601f168201915b50505050509050919050565b919050565b600c805461122d906121f6565b6008546001600160a01b031633146115065760405162461bcd60e51b81526004016109b790612230565b600d805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115715760405162461bcd60e51b81526004016109b790612230565b6001600160a01b0381166115d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b7565b6115df816119bb565b50565b6008546001600160a01b0316331461160c5760405162461bcd60e51b81526004016109b790612230565b601055565b600081600111158015611625575060005482105b8015610824575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116b182611894565b9050836001600160a01b031681600001516001600160a01b0316146116e85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061170657506117068533611519565b80611721575033611716846108bc565b6001600160a01b0316145b90508061174157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661176857604051633a954ecd60e21b815260040160405180910390fd5b6117746000848761164a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661184857600054821461184857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156118c4575060005481105b156119a257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119a05780516001600160a01b031615611937579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561199b579392505050565b611937565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae4828260405180602001604052806000815250611c13565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5c903390899088908890600401612582565b6020604051808303816000875af1925050508015611a97575060408051601f3d908101601f19168201909252611a94918101906125bf565b60015b611af5573d808015611ac5576040519150601f19603f3d011682016040523d82523d6000602084013e611aca565b606091505b508051600003611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b645780611b4e816125dc565b9150611b5d9050600a836122a8565b9150611b3e565b6000816001600160401b03811115611b7e57611b7e611f4a565b6040519080825280601f01601f191660200182016040528015611ba8576020820181803683370190505b5090505b8415611b0b57611bbd6001836125f5565b9150611bca600a86612608565b611bd59060306124d8565b60f81b818381518110611bea57611bea61261c565b60200101906001600160f81b031916908160001a905350611c0c600a866122a8565b9450611bac565b61098883838360016000546001600160a01b038516611c4457604051622e076360e81b815260040160405180910390fd5b83600003611c655760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d1657506001600160a01b0387163b15155b15611d9e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d676000888480600101955088611a27565b611d84576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d1c578260005414611d9957600080fd5b611de3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d9f575b5060005561188d565b6001600160e01b0319811681146115df57600080fd5b600060208284031215611e1457600080fd5b8135611e1f81611dec565b9392505050565b60005b83811015611e41578181015183820152602001611e29565b50506000910152565b60008151808452611e62816020860160208601611e26565b601f01601f19169290920160200192915050565b602081526000611e1f6020830184611e4a565b600060208284031215611e9b57600080fd5b5035919050565b80356001600160a01b03811681146114ca57600080fd5b60008060408385031215611ecc57600080fd5b611ed583611ea2565b946020939093013593505050565b803580151581146114ca57600080fd5b600060208284031215611f0557600080fd5b611e1f82611ee3565b600080600060608486031215611f2357600080fd5b611f2c84611ea2565b9250611f3a60208501611ea2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f7a57611f7a611f4a565b604051601f8501601f19908116603f01168101908282118183101715611fa257611fa2611f4a565b81604052809350858152868686011115611fbb57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611fe657600080fd5b611e1f83833560208501611f60565b60006020828403121561200757600080fd5b81356001600160401b0381111561201d57600080fd5b611b0b84828501611fd5565b6000806020838503121561203c57600080fd5b82356001600160401b038082111561205357600080fd5b818501915085601f83011261206757600080fd5b81358181111561207657600080fd5b86602082850101111561208857600080fd5b60209290920196919550909350505050565b6000602082840312156120ac57600080fd5b611e1f82611ea2565b600080604083850312156120c857600080fd5b8235915060208301356001600160401b038111156120e557600080fd5b6120f185828601611fd5565b9150509250929050565b6000806040838503121561210e57600080fd5b8235915061211e60208401611ea2565b90509250929050565b6000806040838503121561213a57600080fd5b61214383611ea2565b915061211e60208401611ee3565b6000806000806080858703121561216757600080fd5b61217085611ea2565b935061217e60208601611ea2565b92506040850135915060608501356001600160401b038111156121a057600080fd5b8501601f810187136121b157600080fd5b6121c087823560208401611f60565b91505092959194509250565b600080604083850312156121df57600080fd5b6121e883611ea2565b915061211e60208401611ea2565b600181811c9082168061220a57607f821691505b60208210810361222a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761082457610824612265565b634e487b7160e01b600052601260045260246000fd5b6000826122b7576122b7612292565b500490565b601f82111561098857600081815260208120601f850160051c810160208610156122e35750805b601f850160051c820191505b81811015612302578281556001016122ef565b505050505050565b81516001600160401b0381111561232357612323611f4a565b6123378161233184546121f6565b846122bc565b602080601f83116001811461236c57600084156123545750858301515b600019600386901b1c1916600185901b178555612302565b600085815260208120601f198616915b8281101561239b5788860151825594840194600190910190840161237c565b50858210156123b95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038311156123e0576123e0611f4a565b6123f4836123ee83546121f6565b836122bc565b6000601f84116001811461242857600085156124105750838201355b600019600387901b1c1916600186901b17835561188d565b600083815260209020601f19861690835b828110156124595786850135825560209485019460019092019101612439565b50868210156124765760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b828152604060208201526000611b0b6040830184611e4a565b8082018082111561082457610824612265565b60008084546124f9816121f6565b60018281168015612511576001811461252657612555565b60ff1984168752821515830287019450612555565b8860005260208060002060005b8581101561254c5781548a820152908401908201612533565b50505082870194505b505050508351612569818360208801611e26565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b590830184611e4a565b9695505050505050565b6000602082840312156125d157600080fd5b8151611e1f81611dec565b6000600182016125ee576125ee612265565b5060010190565b8181038181111561082457610824612265565b60008261261757612617612292565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fc257a3c8712be1ae33df4fc6d1db941896eb18cedfe3b629c41ec829a9957b664736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c8063715018a61161014f578063b071401b116100c1578063e0a808531161007a578063e0a808531461072c578063e985e9c51461074c578063f2fde38b1461076c578063f37c1c801461078c578063f676308a146107a2578063fce589d8146107c257600080fd5b8063b071401b14610681578063b88d4fde146106a1578063bd55cf0d146106c1578063c87b56dd146106e1578063cfc86f7b14610701578063d5abeb011461071657600080fd5b806394354fd01161011357806394354fd0146105ee57806395d89b4114610604578063a0712d6814610619578063a22cb4651461062c578063a45ba8e71461064c578063a86eb2921461066157600080fd5b8063715018a614610568578063733f41701461057d5780637c928fe91461059057806383a076be146105b05780638da5cb5b146105d057600080fd5b80633ccfd60b116101f357806355f804b3116101ac57806355f804b3146104a95780635c975abb146104c95780636352211e146104e857806369fe0e2d146105085780636f8b44b01461052857806370a082311461054857600080fd5b80633ccfd60b1461040057806342842e0e1461041557806344a0d68a1461043557806344df8e70146104555780634fdd43cb1461046f578063518302271461048f57600080fd5b806313faede61161024557806313faede61461035757806316c38b3c1461036d57806318160ddd1461038d57806323b872dd146103aa57806324a6ab0c146103ca57806327c8f835146103e057600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780631370128e14610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004611e02565b6107d8565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61082a565b6040516102ae9190611e76565b3480156102e557600080fd5b506102f96102f4366004611e89565b6108bc565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004611eb9565b610900565b005b34801561033f57600080fd5b50610349600b5481565b6040519081526020016102ae565b34801561036357600080fd5b5061034960115481565b34801561037957600080fd5b50610331610388366004611ef3565b61098d565b34801561039957600080fd5b506001546000540360001901610349565b3480156103b657600080fd5b506103316103c5366004611f0e565b6109da565b3480156103d657600080fd5b5061034960105481565b3480156103ec57600080fd5b506017546102f9906001600160a01b031681565b34801561040c57600080fd5b506103316109e5565b34801561042157600080fd5b50610331610430366004611f0e565b610ae8565b34801561044157600080fd5b50610331610450366004611e89565b610b03565b34801561046157600080fd5b50600a546102a29060ff1681565b34801561047b57600080fd5b5061033161048a366004611ff5565b610b32565b34801561049b57600080fd5b50600d546102a29060ff1681565b3480156104b557600080fd5b506103316104c4366004612029565b610b68565b3480156104d557600080fd5b50600a546102a290610100900460ff1681565b3480156104f457600080fd5b506102f9610503366004611e89565b610b9f565b34801561051457600080fd5b50610331610523366004611e89565b610bb1565b34801561053457600080fd5b50610331610543366004611e89565b610be0565b34801561055457600080fd5b5061034961056336600461209a565b610c0f565b34801561057457600080fd5b50610331610c5d565b61033161058b3660046120b5565b610c93565b34801561059c57600080fd5b506103316105ab366004611e89565b610e09565b3480156105bc57600080fd5b506103316105cb3660046120fb565b610fb7565b3480156105dc57600080fd5b506008546001600160a01b03166102f9565b3480156105fa57600080fd5b5061034960135481565b34801561061057600080fd5b506102cc610feb565b610331610627366004611e89565b610ffa565b34801561063857600080fd5b50610331610647366004612127565b61118b565b34801561065857600080fd5b506102cc611220565b34801561066d57600080fd5b506102cc61067c366004611e89565b6112ae565b34801561068d57600080fd5b5061033161069c366004611e89565b6112c7565b3480156106ad57600080fd5b506103316106bc366004612151565b6112f6565b3480156106cd57600080fd5b506103316106dc366004611ef3565b611347565b3480156106ed57600080fd5b506102cc6106fc366004611e89565b611384565b34801561070d57600080fd5b506102cc6114cf565b34801561072257600080fd5b50610349600e5481565b34801561073857600080fd5b50610331610747366004611ef3565b6114dc565b34801561075857600080fd5b506102a26107673660046121cc565b611519565b34801561077857600080fd5b5061033161078736600461209a565b611547565b34801561079857600080fd5b5061034960145481565b3480156107ae57600080fd5b506103316107bd366004611e89565b6115e2565b3480156107ce57600080fd5b5061034960125481565b60006001600160e01b031982166380ac58cd60e01b148061080957506001600160e01b03198216635b5e139f60e01b145b8061082457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610839906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610865906121f6565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c782611611565b6108e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061090b82610b9f565b9050806001600160a01b0316836001600160a01b03160361093f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095f575061095d8133611519565b155b1561097d576040516367d9dca160e11b815260040160405180910390fd5b61098883838361164a565b505050565b6008546001600160a01b031633146109c05760405162461bcd60e51b81526004016109b790612230565b60405180910390fd5b600a80549115156101000261ff0019909216919091179055565b6109888383836116a6565b6008546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109b790612230565b6015546000906001600160a01b03166064610a2b47603261227b565b610a3591906122a8565b604051600081818185875af1925050503d8060008114610a71576040519150601f19603f3d011682016040523d82523d6000602084013e610a76565b606091505b5050905080610a8457600080fd5b6016546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ad1576040519150601f19603f3d011682016040523d82523d6000602084013e610ad6565b606091505b5050905080610ae457600080fd5b5050565b610988838383604051806020016040528060008152506112f6565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b81526004016109b790612230565b601155565b6008546001600160a01b03163314610b5c5760405162461bcd60e51b81526004016109b790612230565b600f610ae4828261230a565b6008546001600160a01b03163314610b925760405162461bcd60e51b81526004016109b790612230565b600c6109888284836123c9565b6000610baa82611894565b5192915050565b6008546001600160a01b03163314610bdb5760405162461bcd60e51b81526004016109b790612230565b601255565b6008546001600160a01b03163314610c0a5760405162461bcd60e51b81526004016109b790612230565b600e55565b60006001600160a01b038216610c38576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c875760405162461bcd60e51b81526004016109b790612230565b610c9160006119bb565b565b600260095403610cb55760405162461bcd60e51b81526004016109b790612488565b6002600955600a5460ff16610cfc5760405162461bcd60e51b815260206004820152600d60248201526c109d5c9b88191a5cd8589b1959609a1b60448201526064016109b7565b601454815114610d4e5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920746170726f6f7420616464726573732063616e206265207573656460448201526064016109b7565b601254341015610d965760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b7565b6000828152601860205260409020610dae828261230a565b50601754610dc79033906001600160a01b031684610ae8565b7fb79b4c3c9a5b98956b74e5c328f39cee5de74b372074f503d51c19ba941e591b8282604051610df89291906124bf565b60405180910390a150506001600955565b600260095403610e2b5760405162461bcd60e51b81526004016109b790612488565b60026009558015801590610e4157506013548111155b610e845760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b7565b60105481600b54610e9591906124d8565b1115610edb5760405162461bcd60e51b81526020600482015260156024820152744672656520737570706c792065786365656465642160581b60448201526064016109b7565b600e546001546000548391900360001901610ef691906124d8565b1115610f3b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b7565b600a54610100900460ff1615610f8d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b7565b610f98335b82611a0d565b80600b6000828254610faa91906124d8565b9091555050600160095550565b6008546001600160a01b03163314610fe15760405162461bcd60e51b81526004016109b790612230565b610ae48183611a0d565b606060038054610839906121f6565b60026009540361101c5760405162461bcd60e51b81526004016109b790612488565b6002600955801580159061103257506013548111155b6110755760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b7565b600e54600154600054839190036000190161109091906124d8565b11156110d55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b7565b600a54610100900460ff16156111275760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b7565b80601154611135919061227b565b34101561117a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b7565b61118333610f92565b506001600955565b336001600160a01b038316036111b45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600f805461122d906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611259906121f6565b80156112a65780601f1061127b576101008083540402835291602001916112a6565b820191906000526020600020905b81548152906001019060200180831161128957829003601f168201915b505050505081565b6018602052600090815260409020805461122d906121f6565b6008546001600160a01b031633146112f15760405162461bcd60e51b81526004016109b790612230565b601355565b6113018484846116a6565b6001600160a01b0383163b15158015611323575061132184848484611a27565b155b15611341576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113715760405162461bcd60e51b81526004016109b790612230565b600a805460ff1916911515919091179055565b606061138f82611611565b6113d15760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016109b7565b600d5460ff1615611438576000600c80546113eb906121f6565b9050116114075760405180602001604052806000815250610824565b600c61141283611b13565b6040516020016114239291906124eb565b60405160208183030381529060405292915050565b600f8054611445906121f6565b80601f0160208091040260200160405190810160405280929190818152602001828054611471906121f6565b80156114be5780601f10611493576101008083540402835291602001916114be565b820191906000526020600020905b8154815290600101906020018083116114a157829003601f168201915b50505050509050919050565b919050565b600c805461122d906121f6565b6008546001600160a01b031633146115065760405162461bcd60e51b81526004016109b790612230565b600d805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115715760405162461bcd60e51b81526004016109b790612230565b6001600160a01b0381166115d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b7565b6115df816119bb565b50565b6008546001600160a01b0316331461160c5760405162461bcd60e51b81526004016109b790612230565b601055565b600081600111158015611625575060005482105b8015610824575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116b182611894565b9050836001600160a01b031681600001516001600160a01b0316146116e85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061170657506117068533611519565b80611721575033611716846108bc565b6001600160a01b0316145b90508061174157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661176857604051633a954ecd60e21b815260040160405180910390fd5b6117746000848761164a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661184857600054821461184857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156118c4575060005481105b156119a257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119a05780516001600160a01b031615611937579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561199b579392505050565b611937565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae4828260405180602001604052806000815250611c13565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a5c903390899088908890600401612582565b6020604051808303816000875af1925050508015611a97575060408051601f3d908101601f19168201909252611a94918101906125bf565b60015b611af5573d808015611ac5576040519150601f19603f3d011682016040523d82523d6000602084013e611aca565b606091505b508051600003611aed576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611b3a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b645780611b4e816125dc565b9150611b5d9050600a836122a8565b9150611b3e565b6000816001600160401b03811115611b7e57611b7e611f4a565b6040519080825280601f01601f191660200182016040528015611ba8576020820181803683370190505b5090505b8415611b0b57611bbd6001836125f5565b9150611bca600a86612608565b611bd59060306124d8565b60f81b818381518110611bea57611bea61261c565b60200101906001600160f81b031916908160001a905350611c0c600a866122a8565b9450611bac565b61098883838360016000546001600160a01b038516611c4457604051622e076360e81b815260040160405180910390fd5b83600003611c655760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611d1657506001600160a01b0387163b15155b15611d9e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d676000888480600101955088611a27565b611d84576040516368d2bf6b60e11b815260040160405180910390fd5b808203611d1c578260005414611d9957600080fd5b611de3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d9f575b5060005561188d565b6001600160e01b0319811681146115df57600080fd5b600060208284031215611e1457600080fd5b8135611e1f81611dec565b9392505050565b60005b83811015611e41578181015183820152602001611e29565b50506000910152565b60008151808452611e62816020860160208601611e26565b601f01601f19169290920160200192915050565b602081526000611e1f6020830184611e4a565b600060208284031215611e9b57600080fd5b5035919050565b80356001600160a01b03811681146114ca57600080fd5b60008060408385031215611ecc57600080fd5b611ed583611ea2565b946020939093013593505050565b803580151581146114ca57600080fd5b600060208284031215611f0557600080fd5b611e1f82611ee3565b600080600060608486031215611f2357600080fd5b611f2c84611ea2565b9250611f3a60208501611ea2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f7a57611f7a611f4a565b604051601f8501601f19908116603f01168101908282118183101715611fa257611fa2611f4a565b81604052809350858152868686011115611fbb57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611fe657600080fd5b611e1f83833560208501611f60565b60006020828403121561200757600080fd5b81356001600160401b0381111561201d57600080fd5b611b0b84828501611fd5565b6000806020838503121561203c57600080fd5b82356001600160401b038082111561205357600080fd5b818501915085601f83011261206757600080fd5b81358181111561207657600080fd5b86602082850101111561208857600080fd5b60209290920196919550909350505050565b6000602082840312156120ac57600080fd5b611e1f82611ea2565b600080604083850312156120c857600080fd5b8235915060208301356001600160401b038111156120e557600080fd5b6120f185828601611fd5565b9150509250929050565b6000806040838503121561210e57600080fd5b8235915061211e60208401611ea2565b90509250929050565b6000806040838503121561213a57600080fd5b61214383611ea2565b915061211e60208401611ee3565b6000806000806080858703121561216757600080fd5b61217085611ea2565b935061217e60208601611ea2565b92506040850135915060608501356001600160401b038111156121a057600080fd5b8501601f810187136121b157600080fd5b6121c087823560208401611f60565b91505092959194509250565b600080604083850312156121df57600080fd5b6121e883611ea2565b915061211e60208401611ea2565b600181811c9082168061220a57607f821691505b60208210810361222a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761082457610824612265565b634e487b7160e01b600052601260045260246000fd5b6000826122b7576122b7612292565b500490565b601f82111561098857600081815260208120601f850160051c810160208610156122e35750805b601f850160051c820191505b81811015612302578281556001016122ef565b505050505050565b81516001600160401b0381111561232357612323611f4a565b6123378161233184546121f6565b846122bc565b602080601f83116001811461236c57600084156123545750858301515b600019600386901b1c1916600185901b178555612302565b600085815260208120601f198616915b8281101561239b5788860151825594840194600190910190840161237c565b50858210156123b95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038311156123e0576123e0611f4a565b6123f4836123ee83546121f6565b836122bc565b6000601f84116001811461242857600085156124105750838201355b600019600387901b1c1916600186901b17835561188d565b600083815260209020601f19861690835b828110156124595786850135825560209485019460019092019101612439565b50868210156124765760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b828152604060208201526000611b0b6040830184611e4a565b8082018082111561082457610824612265565b60008084546124f9816121f6565b60018281168015612511576001811461252657612555565b60ff1984168752821515830287019450612555565b8860005260208060002060005b8581101561254c5781548a820152908401908201612533565b50505082870194505b505050508351612569818360208801611e26565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125b590830184611e4a565b9695505050505050565b6000602082840312156125d157600080fd5b8151611e1f81611dec565b6000600182016125ee576125ee612265565b5060010190565b8181038181111561082457610824612265565b60008261261757612617612292565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fc257a3c8712be1ae33df4fc6d1db941896eb18cedfe3b629c41ec829a9957b664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48622:5117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:355;;;;;;;;;;-1:-1:-1;30175:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30175:355:0;;;;;;;;33370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34970:245::-;;;;;;;;;;-1:-1:-1;34970:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34970:245:0;1533:203:1;34533:371:0;;;;;;;;;;-1:-1:-1;34533:371:0;;;;;:::i;:::-;;:::i;:::-;;48785:26;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;48785:26:0;2178:177:1;49021:36:0;;;;;;;;;;;;;;;;52278:83;;;;;;;;;;-1:-1:-1;52278:83:0;;;;;:::i;:::-;;:::i;29424:303::-;;;;;;;;;;-1:-1:-1;51516:1:0;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;29424:303;;35958:170;;;;;;;;;;-1:-1:-1;35958:170:0;;;;;:::i;:::-;;:::i;48979:35::-;;;;;;;;;;;;;;;;49340:74;;;;;;;;;;-1:-1:-1;49340:74:0;;;;-1:-1:-1;;;;;49340:74:0;;;52369:305;;;;;;;;;;;;;:::i;36199:185::-;;;;;;;;;;-1:-1:-1;36199:185:0;;;;;:::i;:::-;;:::i;51715:80::-;;;;;;;;;;-1:-1:-1;51715:80:0;;;;;:::i;:::-;;:::i;48725:22::-;;;;;;;;;;-1:-1:-1;48725:22:0;;;;;;;;52682:161;;;;;;;;;;-1:-1:-1;52682:161:0;;;;;:::i;:::-;;:::i;48856:33::-;;;;;;;;;;-1:-1:-1;48856:33:0;;;;;;;;52851:104;;;;;;;;;;-1:-1:-1;52851:104:0;;;;;:::i;:::-;;:::i;48754:24::-;;;;;;;;;;-1:-1:-1;48754:24:0;;;;;;;;;;;33178:125;;;;;;;;;;-1:-1:-1;33178:125:0;;;;;:::i;:::-;;:::i;51803:80::-;;;;;;;;;;-1:-1:-1;51803:80:0;;;;;:::i;:::-;;:::i;52058:100::-;;;;;;;;;;-1:-1:-1;52058:100:0;;;;;:::i;:::-;;:::i;30594:206::-;;;;;;;;;;-1:-1:-1;30594:206:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;50784:478::-;;;;;;:::i;:::-;;:::i;50207:567::-;;;;;;;;;;-1:-1:-1;50207:567:0;;;;;:::i;:::-;;:::i;51270:146::-;;;;;;;;;;-1:-1:-1;51270:146:0;;;;;:::i;:::-;;:::i;6792:87::-;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;49106:41;;;;;;;;;;;;;;;;33539:104;;;;;;;;;;;;;:::i;49699:500::-;;;;;;:::i;:::-;;:::i;35287:319::-;;;;;;;;;;-1:-1:-1;35287:319:0;;;;;:::i;:::-;;:::i;48937:35::-;;;;;;;;;;;;;:::i;49427:39::-;;;;;;;;;;-1:-1:-1;49427:39:0;;;;;:::i;:::-;;:::i;51891:159::-;;;;;;;;;;-1:-1:-1;51891:159:0;;;;;:::i;:::-;;:::i;36455:406::-;;;;;;;;;;-1:-1:-1;36455:406:0;;;;;:::i;:::-;;:::i;51628:79::-;;;;;;;;;;-1:-1:-1;51628:79:0;;;;;:::i;:::-;;:::i;53085:651::-;;;;;;;;;;-1:-1:-1;53085:651:0;;;;;:::i;:::-;;:::i;48818:31::-;;;;;;;;;;;;;:::i;48896:34::-;;;;;;;;;;;;;;;;51533:87;;;;;;;;;;-1:-1:-1;51533:87:0;;;;;:::i;:::-;;:::i;35677:214::-;;;;;;;;;;-1:-1:-1;35677:214:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;49154:34::-;;;;;;;;;;;;;;;;52166:104;;;;;;;;;;-1:-1:-1;52166:104:0;;;;;:::i;:::-;;:::i;49064:35::-;;;;;;;;;;;;;;;;30175:355;30322:4;-1:-1:-1;;;;;;30364:40:0;;-1:-1:-1;;;30364:40:0;;:105;;-1:-1:-1;;;;;;;30421:48:0;;-1:-1:-1;;;30421:48:0;30364:105;:158;;;-1:-1:-1;;;;;;;;;;20108:40:0;;;30486:36;30344:178;30175:355;-1:-1:-1;;30175:355:0:o;33370:100::-;33424:13;33457:5;33450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33370:100;:::o;34970:245::-;35074:7;35104:16;35112:7;35104;:16::i;:::-;35099:64;;35129:34;;-1:-1:-1;;;35129:34:0;;;;;;;;;;;35099:64;-1:-1:-1;35183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35183:24:0;;34970:245::o;34533:371::-;34606:13;34622:24;34638:7;34622:15;:24::i;:::-;34606:40;;34667:5;-1:-1:-1;;;;;34661:11:0;:2;-1:-1:-1;;;;;34661:11:0;;34657:48;;34681:24;;-1:-1:-1;;;34681:24:0;;;;;;;;;;;34657:48;5574:10;-1:-1:-1;;;;;34722:21:0;;;;;;:63;;-1:-1:-1;34748:37:0;34765:5;5574:10;35677:214;:::i;34748:37::-;34747:38;34722:63;34718:138;;;34809:35;;-1:-1:-1;;;34809:35:0;;;;;;;;;;;34718:138;34868:28;34877:2;34881:7;34890:5;34868:8;:28::i;:::-;34595:309;34533:371;;:::o;52278:83::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;52338:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;52338:15:0;;::::1;::::0;;;::::1;::::0;;52278:83::o;35958:170::-;36092:28;36102:4;36108:2;36112:7;36092:9;:28::i;52369:305::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52440:2:::1;::::0;52418:8:::1;::::0;-1:-1:-1;;;;;52440:2:0::1;52501:3;52471:26;:21;52495:2;52471:26;:::i;:::-;52470:34;;;;:::i;:::-;52432:87;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52417:102;;;52538:3;52530:12;;;::::0;::::1;;52576:3;::::0;52568:75:::1;::::0;52554:8:::1;::::0;-1:-1:-1;;;;;52576:3:0::1;::::0;52593:21:::1;::::0;52554:8;52568:75;52554:8;52568:75;52593:21;52576:3;52568:75:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52553:90;;;52662:3;52654:12;;;::::0;::::1;;52406:268;;52369:305::o:0;36199:185::-;36337:39;36354:4;36360:2;36364:7;36337:39;;;;;;;;;;;;:16;:39::i;51715:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51775:4:::1;:12:::0;51715:80::o;52682:161::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52797:17:::1;:38;52817:18:::0;52797:17;:38:::1;:::i;52851:104::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52924:13:::1;:23;52940:7:::0;;52924:13;:23:::1;:::i;33178:125::-:0;33242:7;33269:21;33282:7;33269:12;:21::i;:::-;:26;;33178:125;-1:-1:-1;;33178:125:0:o;51803:80::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51861:7:::1;:14:::0;51803:80::o;52058:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52128:9:::1;:22:::0;52058:100::o;30594:206::-;30658:7;-1:-1:-1;;;;;30682:19:0;;30678:60;;30710:28;;-1:-1:-1;;;30710:28:0;;;;;;;;;;;30678:60;-1:-1:-1;;;;;;30764:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30764:27:0;;30594:206::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;50784:478::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;50893:4:::1;::::0;::::1;;50885:30;;;::::0;-1:-1:-1;;;50885:30:0;;12499:2:1;50885:30:0::1;::::0;::::1;12481:21:1::0;12538:2;12518:18;;;12511:30;-1:-1:-1;;;12557:18:1;;;12550:43;12610:18;;50885:30:0::1;12297:337:1::0;50885:30:0::1;50977:11;;50954;50948:25;:40;50926:122;;;::::0;-1:-1:-1;;;50926:122:0;;12841:2:1;50926:122:0::1;::::0;::::1;12823:21:1::0;;;12860:18;;;12853:30;12919:34;12899:18;;;12892:62;12971:18;;50926:122:0::1;12639:356:1::0;50926:122:0::1;51080:7;;51067:9;:20;;51059:52;;;::::0;-1:-1:-1;;;51059:52:0;;13202:2:1;51059:52:0::1;::::0;::::1;13184:21:1::0;13241:2;13221:18;;;13214:30;-1:-1:-1;;;13260:18:1;;;13253:49;13319:18;;51059:52:0::1;13000:343:1::0;51059:52:0::1;51122:14;::::0;;;:5:::1;:14;::::0;;;;:28:::1;51139:11:::0;51122:14;:28:::1;:::i;:::-;-1:-1:-1::0;51190:11:0::1;::::0;51161:49:::1;::::0;51178:10:::1;::::0;-1:-1:-1;;;;;51190:11:0::1;51202:7:::0;51161:16:::1;:49::i;:::-;51226:28;51234:7;51242:11;51226:28;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;1670:1:0;2624:7;:22;50784:478::o;50207:567::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;50300:15;;;;;:52:::1;;;50334:18;;50319:11;:33;;50300:52;50278:122;;;::::0;-1:-1:-1;;;50278:122:0;;13846:2:1;50278:122:0::1;::::0;::::1;13828:21:1::0;13885:2;13865:18;;;13858:30;-1:-1:-1;;;13904:18:1;;;13897:50;13964:18;;50278:122:0::1;13644:344:1::0;50278:122:0::1;50455:10;;50440:11;50433:4;;:18;;;;:::i;:::-;:32;;50411:103;;;::::0;-1:-1:-1;;;50411:103:0;;14325:2:1;50411:103:0::1;::::0;::::1;14307:21:1::0;14364:2;14344:18;;;14337:30;-1:-1:-1;;;14383:18:1;;;14376:51;14444:18;;50411:103:0::1;14123:345:1::0;50411:103:0::1;50578:9;::::0;51516:1;29678:12;29468:7;29662:13;50563:11;;29662:28;;-1:-1:-1;;29662:46:0;50547:27:::1;;;;:::i;:::-;:40;;50525:110;;;::::0;-1:-1:-1;;;50525:110:0;;14675:2:1;50525:110:0::1;::::0;::::1;14657:21:1::0;14714:2;14694:18;;;14687:30;-1:-1:-1;;;14733:18:1;;;14726:50;14793:18;;50525:110:0::1;14473:344:1::0;50525:110:0::1;50655:6;::::0;::::1;::::0;::::1;;;50654:7;50646:43;;;::::0;-1:-1:-1;;;50646:43:0;;15024:2:1;50646:43:0::1;::::0;::::1;15006:21:1::0;15063:2;15043:18;;;15036:30;-1:-1:-1;;;15082:18:1;;;15075:53;15145:18;;50646:43:0::1;14822:347:1::0;50646:43:0::1;50700:36;5574:10:::0;50710:12:::1;50724:11;50700:9;:36::i;:::-;50755:11;50747:4;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1670:1:0;2624:7;:22;-1:-1:-1;50207:567:0:o;51270:146::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51375:33:::1;51385:9;51396:11;51375:9;:33::i;33539:104::-:0;33595:13;33628:7;33621:14;;;;;:::i;49699:500::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;;;;;;:::i;:::-;1714:1;2445:7;:18;49795:15;;;;;:52:::1;;;49829:18;;49814:11;:33;;49795:52;49773:122;;;::::0;-1:-1:-1;;;49773:122:0;;13846:2:1;49773:122:0::1;::::0;::::1;13828:21:1::0;13885:2;13865:18;;;13858:30;-1:-1:-1;;;13904:18:1;;;13897:50;13964:18;;49773:122:0::1;13644:344:1::0;49773:122:0::1;49959:9;::::0;51516:1;29678:12;29468:7;29662:13;49944:11;;29662:28;;-1:-1:-1;;29662:46:0;49928:27:::1;;;;:::i;:::-;:40;;49906:110;;;::::0;-1:-1:-1;;;49906:110:0;;14675:2:1;49906:110:0::1;::::0;::::1;14657:21:1::0;14714:2;14694:18;;;14687:30;-1:-1:-1;;;14733:18:1;;;14726:50;14793:18;;49906:110:0::1;14473:344:1::0;49906:110:0::1;50036:6;::::0;::::1;::::0;::::1;;;50035:7;50027:43;;;::::0;-1:-1:-1;;;50027:43:0;;15024:2:1;50027:43:0::1;::::0;::::1;15006:21:1::0;15063:2;15043:18;;;15036:30;-1:-1:-1;;;15082:18:1;;;15075:53;15145:18;;50027:43:0::1;14822:347:1::0;50027:43:0::1;50109:11;50102:4;;:18;;;;:::i;:::-;50089:9;:31;;50081:63;;;::::0;-1:-1:-1;;;50081:63:0;;13202:2:1;50081:63:0::1;::::0;::::1;13184:21:1::0;13241:2;13221:18;;;13214:30;-1:-1:-1;;;13260:18:1;;;13253:49;13319:18;;50081:63:0::1;13000:343:1::0;50081:63:0::1;50155:36;5574:10:::0;50165:12:::1;5494:98:::0;50155:36:::1;-1:-1:-1::0;1670:1:0;2624:7;:22;49699:500::o;35287:319::-;5574:10;-1:-1:-1;;;;;35418:24:0;;;35414:54;;35451:17;;-1:-1:-1;;;35451:17:0;;;;;;;;;;;35414:54;5574:10;35481:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35481:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35481:53:0;;;;;;;;;;35550:48;;540:41:1;;;35481:42:0;;5574:10;35550:48;;513:18:1;35550:48:0;;;;;;;35287:319;;:::o;48937:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49427:39::-;;;;;;;;;;;;;;;;:::i;51891:159::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52002:18:::1;:40:::0;51891:159::o;36455:406::-;36622:28;36632:4;36638:2;36642:7;36622:9;:28::i;:::-;-1:-1:-1;;;;;36679:13:0;;9699:19;:23;;36679:89;;;;;36712:56;36743:4;36749:2;36753:7;36762:5;36712:30;:56::i;:::-;36711:57;36679:89;36661:193;;;36802:40;;-1:-1:-1;;;36802:40:0;;;;;;;;;;;36661:193;36455:406;;;;:::o;51628:79::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51686:4:::1;:13:::0;;-1:-1:-1;;51686:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51628:79::o;53085:651::-;53204:13;53243:17;53251:8;53243:7;:17::i;:::-;53235:49;;;;-1:-1:-1;;;53235:49:0;;15376:2:1;53235:49:0;;;15358:21:1;15415:2;15395:18;;;15388:30;-1:-1:-1;;;15434:18:1;;;15427:49;15493:18;;53235:49:0;15174:343:1;53235:49:0;53299:8;;;;53295:434;;;53378:1;53354:13;53348:27;;;;;:::i;:::-;;;:31;:312;;;;;;;;;;;;;;;;;53483:13;53527:19;:8;:17;:19::i;:::-;53436:175;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53324:336;53085:651;-1:-1:-1;;53085:651:0:o;53295:434::-;53700:17;53693:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53085:651;;;:::o;53295:434::-;53085:651;;;:::o;48818:31::-;;;;;;;:::i;51533:87::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;51595:8:::1;:17:::0;;-1:-1:-1;;51595:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51533:87::o;35677:214::-;-1:-1:-1;;;;;35848:25:0;;;35819:4;35848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35677:214::o;7701:238::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;16916:2:1;7782:110:0::1;::::0;::::1;16898:21:1::0;16955:2;16935:18;;;16928:30;16994:34;16974:18;;;16967:62;-1:-1:-1;;;17045:18:1;;;17038:36;17091:19;;7782:110:0::1;16714:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;:::-;7701:238:::0;:::o;52166:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;52238:10:::1;:24:::0;52166:104::o;37116:213::-;37173:4;37229:7;51516:1;37210:26;;:66;;;;;37263:13;;37253:7;:23;37210:66;:111;;;;-1:-1:-1;;37294:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37294:27:0;;;;37293:28;;37116:213::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;40446:2130::-;40561:35;40599:21;40612:7;40599:12;:21::i;:::-;40561:59;;40659:4;-1:-1:-1;;;;;40637:26:0;:13;:18;;;-1:-1:-1;;;;;40637:26:0;;40633:67;;40672:28;;-1:-1:-1;;;40672:28:0;;;;;;;;;;;40633:67;40713:22;5574:10;-1:-1:-1;;;;;40739:20:0;;;;:73;;-1:-1:-1;40776:36:0;40793:4;5574:10;35677:214;:::i;40776:36::-;40739:126;;;-1:-1:-1;5574:10:0;40829:20;40841:7;40829:11;:20::i;:::-;-1:-1:-1;;;;;40829:36:0;;40739:126;40713:153;;40884:17;40879:66;;40910:35;;-1:-1:-1;;;40910:35:0;;;;;;;;;;;40879:66;-1:-1:-1;;;;;40960:16:0;;40956:52;;40985:23;;-1:-1:-1;;;40985:23:0;;;;;;;;;;;40956:52;41129:35;41146:1;41150:7;41159:4;41129:8;:35::i;:::-;-1:-1:-1;;;;;41460:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41460:31:0;;;-1:-1:-1;;;;;41460:31:0;;;-1:-1:-1;;41460:31:0;;;;;;;41506:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41506:29:0;;;;;;;;;;;41586:20;;;:11;:20;;;;;;41621:18;;-1:-1:-1;;;;;;41654:49:0;;;;-1:-1:-1;;;41687:15:0;41654:49;;;;;;;;;;41977:11;;42037:24;;;;;42080:13;;41586:20;;42037:24;;42080:13;42076:384;;42290:13;;42275:11;:28;42271:174;;42328:20;;42397:28;;;;-1:-1:-1;;;;;42371:54:0;-1:-1:-1;;;42371:54:0;-1:-1:-1;;;;;;42371:54:0;;;-1:-1:-1;;;;;42328:20:0;;42371:54;;;;42271:174;41435:1036;;;42507:7;42503:2;-1:-1:-1;;;;;42488:27:0;42497:4;-1:-1:-1;;;;;42488:27:0;;;;;;;;;;;42526:42;40550:2026;;40446:2130;;;:::o;31975:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32118:7:0;;51516:1;32167:23;;:47;;;;;32201:13;;32194:4;:20;32167:47;32163:886;;;32235:31;32269:17;;;:11;:17;;;;;;;;;32235:51;;;;;;;;;-1:-1:-1;;;;;32235:51:0;;;;-1:-1:-1;;;32235:51:0;;-1:-1:-1;;;;;32235:51:0;;;;;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;;;;32305:729;;32355:14;;-1:-1:-1;;;;;32355:28:0;;32351:101;;32419:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32351:101::-;-1:-1:-1;;;32794:6:0;32839:17;;;;:11;:17;;;;;;;;;32827:29;;;;;;;;;-1:-1:-1;;;;;32827:29:0;;;;;-1:-1:-1;;;32827:29:0;;-1:-1:-1;;;;;32827:29:0;;;;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;;;32887:28;32883:109;;32955:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32883:109::-;32754:261;;;32216:833;32163:886;33077:31;;-1:-1:-1;;;33077:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;37337:104::-;37406:27;37416:2;37420:8;37406:27;;;;;;;;;;;;:9;:27::i;46191:772::-;46388:155;;-1:-1:-1;;;46388:155:0;;46354:4;;-1:-1:-1;;;;;46388:36:0;;;;;:155;;5574:10;;46474:4;;46497:7;;46523:5;;46388:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46388:155:0;;;;;;;;-1:-1:-1;;46388:155:0;;;;;;;;;;;;:::i;:::-;;;46371:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:6;:13;46731:1;46714:18;46710:235;;46760:40;;-1:-1:-1;;;46760:40:0;;;;;;;;;;;46710:235;46903:6;46897:13;46888:6;46884:2;46880:15;46873:38;46371:585;-1:-1:-1;;;;;;46599:55:0;-1:-1:-1;;;46599:55:0;;-1:-1:-1;46371:585:0;46191:772;;;;;;:::o;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;-1:-1:-1;;;;;3527:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37804:163;37927:32;37933:2;37937:8;37947:5;37954:4;38365:20;38388:13;-1:-1:-1;;;;;38416:16:0;;38412:48;;38441:19;;-1:-1:-1;;;38441:19:0;;;;;;;;;;;38412:48;38475:8;38487:1;38475:13;38471:44;;38497:18;;-1:-1:-1;;;38497:18:0;;;;;;;;;;;38471:44;-1:-1:-1;;;;;38866:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38925:49:0;;-1:-1:-1;;;;;38866:44:0;;;;;;;38925:49;;;;-1:-1:-1;;38866:44:0;;;;;;38925:49;;;;;;;;;;;;;;;;38991:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39041:66:0;;;;-1:-1:-1;;;39091:15:0;39041:66;;;;;;;;;;38991:25;39188:23;;;39232:4;:23;;;;-1:-1:-1;;;;;;39240:13:0;;9699:19;:23;;39240:15;39228:832;;;39276:505;39307:38;;39332:12;;-1:-1:-1;;;;;39307:38:0;;;39324:1;;39307:38;;39324:1;;39307:38;39399:212;39468:1;39501:2;39534:14;;;;;;39579:5;39399:30;:212::i;:::-;39368:365;;39669:40;;-1:-1:-1;;;39669:40:0;;;;;;;;;;;39368:365;39776:3;39760:12;:19;39276:505;;39862:12;39845:13;;:29;39841:43;;39876:8;;;39841:43;39228:832;;;39925:120;39956:40;;39981:14;;;;;-1:-1:-1;;;;;39956:40:0;;;39973:1;;39956:40;;39973:1;;39956:40;40040:3;40024:12;:19;39925:120;;39228:832;-1:-1:-1;40074:13:0;:28;40124:60;36455:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:632;3240:5;-1:-1:-1;;;;;3311:2:1;3303:6;3300:14;3297:40;;;3317:18;;:::i;:::-;3392:2;3386:9;3360:2;3446:15;;-1:-1:-1;;3442:24:1;;;3468:2;3438:33;3434:42;3422:55;;;3492:18;;;3512:22;;;3489:46;3486:72;;;3538:18;;:::i;:::-;3578:10;3574:2;3567:22;3607:6;3598:15;;3637:6;3629;3622:22;3677:3;3668:6;3663:3;3659:16;3656:25;3653:45;;;3694:1;3691;3684:12;3653:45;3744:6;3739:3;3732:4;3724:6;3720:17;3707:44;3799:1;3792:4;3783:6;3775;3771:19;3767:30;3760:41;;;;3175:632;;;;;:::o;3812:222::-;3855:5;3908:3;3901:4;3893:6;3889:17;3885:27;3875:55;;3926:1;3923;3916:12;3875:55;3948:80;4024:3;4015:6;4002:20;3995:4;3987:6;3983:17;3948:80;:::i;4039:322::-;4108:6;4161:2;4149:9;4140:7;4136:23;4132:32;4129:52;;;4177:1;4174;4167:12;4129:52;4217:9;4204:23;-1:-1:-1;;;;;4242:6:1;4239:30;4236:50;;;4282:1;4279;4272:12;4236:50;4305;4347:7;4338:6;4327:9;4323:22;4305:50;:::i;4366:592::-;4437:6;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4554:9;4541:23;-1:-1:-1;;;;;4624:2:1;4616:6;4613:14;4610:34;;;4640:1;4637;4630:12;4610:34;4678:6;4667:9;4663:22;4653:32;;4723:7;4716:4;4712:2;4708:13;4704:27;4694:55;;4745:1;4742;4735:12;4694:55;4785:2;4772:16;4811:2;4803:6;4800:14;4797:34;;;4827:1;4824;4817:12;4797:34;4872:7;4867:2;4858:6;4854:2;4850:15;4846:24;4843:37;4840:57;;;4893:1;4890;4883:12;4840:57;4924:2;4916:11;;;;;4946:6;;-1:-1:-1;4366:592:1;;-1:-1:-1;;;;4366:592:1:o;4963:186::-;5022:6;5075:2;5063:9;5054:7;5050:23;5046:32;5043:52;;;5091:1;5088;5081:12;5043:52;5114:29;5133:9;5114:29;:::i;5154:390::-;5232:6;5240;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5345:9;5332:23;5322:33;;5406:2;5395:9;5391:18;5378:32;-1:-1:-1;;;;;5425:6:1;5422:30;5419:50;;;5465:1;5462;5455:12;5419:50;5488;5530:7;5521:6;5510:9;5506:22;5488:50;:::i;:::-;5478:60;;;5154:390;;;;;:::o;5549:254::-;5617:6;5625;5678:2;5666:9;5657:7;5653:23;5649:32;5646:52;;;5694:1;5691;5684:12;5646:52;5730:9;5717:23;5707:33;;5759:38;5793:2;5782:9;5778:18;5759:38;:::i;:::-;5749:48;;5549:254;;;;;:::o;5808:::-;5873:6;5881;5934:2;5922:9;5913:7;5909:23;5905:32;5902:52;;;5950:1;5947;5940:12;5902:52;5973:29;5992:9;5973:29;:::i;:::-;5963:39;;6021:35;6052:2;6041:9;6037:18;6021:35;:::i;6067:667::-;6162:6;6170;6178;6186;6239:3;6227:9;6218:7;6214:23;6210:33;6207:53;;;6256:1;6253;6246:12;6207:53;6279:29;6298:9;6279:29;:::i;:::-;6269:39;;6327:38;6361:2;6350:9;6346:18;6327:38;:::i;:::-;6317:48;;6412:2;6401:9;6397:18;6384:32;6374:42;;6467:2;6456:9;6452:18;6439:32;-1:-1:-1;;;;;6486:6:1;6483:30;6480:50;;;6526:1;6523;6516:12;6480:50;6549:22;;6602:4;6594:13;;6590:27;-1:-1:-1;6580:55:1;;6631:1;6628;6621:12;6580:55;6654:74;6720:7;6715:2;6702:16;6697:2;6693;6689:11;6654:74;:::i;:::-;6644:84;;;6067:667;;;;;;;:::o;6739:260::-;6807:6;6815;6868:2;6856:9;6847:7;6843:23;6839:32;6836:52;;;6884:1;6881;6874:12;6836:52;6907:29;6926:9;6907:29;:::i;:::-;6897:39;;6955:38;6989:2;6978:9;6974:18;6955:38;:::i;7004:380::-;7083:1;7079:12;;;;7126;;;7147:61;;7201:4;7193:6;7189:17;7179:27;;7147:61;7254:2;7246:6;7243:14;7223:18;7220:38;7217:161;;7300:10;7295:3;7291:20;7288:1;7281:31;7335:4;7332:1;7325:15;7363:4;7360:1;7353:15;7217:161;;7004:380;;;:::o;7389:356::-;7591:2;7573:21;;;7610:18;;;7603:30;7669:34;7664:2;7649:18;;7642:62;7736:2;7721:18;;7389:356::o;7750:127::-;7811:10;7806:3;7802:20;7799:1;7792:31;7842:4;7839:1;7832:15;7866:4;7863:1;7856:15;7882:168;7955:9;;;7986;;8003:15;;;7997:22;;7983:37;7973:71;;8024:18;;:::i;8055:127::-;8116:10;8111:3;8107:20;8104:1;8097:31;8147:4;8144:1;8137:15;8171:4;8168:1;8161:15;8187:120;8227:1;8253;8243:35;;8258:18;;:::i;:::-;-1:-1:-1;8292:9:1;;8187:120::o;8648:545::-;8750:2;8745:3;8742:11;8739:448;;;8786:1;8811:5;8807:2;8800:17;8856:4;8852:2;8842:19;8926:2;8914:10;8910:19;8907:1;8903:27;8897:4;8893:38;8962:4;8950:10;8947:20;8944:47;;;-1:-1:-1;8985:4:1;8944:47;9040:2;9035:3;9031:12;9028:1;9024:20;9018:4;9014:31;9004:41;;9095:82;9113:2;9106:5;9103:13;9095:82;;;9158:17;;;9139:1;9128:13;9095:82;;;9099:3;;;8648:545;;;:::o;9369:1352::-;9495:3;9489:10;-1:-1:-1;;;;;9514:6:1;9511:30;9508:56;;;9544:18;;:::i;:::-;9573:97;9663:6;9623:38;9655:4;9649:11;9623:38;:::i;:::-;9617:4;9573:97;:::i;:::-;9725:4;;9789:2;9778:14;;9806:1;9801:663;;;;10508:1;10525:6;10522:89;;;-1:-1:-1;10577:19:1;;;10571:26;10522:89;-1:-1:-1;;9326:1:1;9322:11;;;9318:24;9314:29;9304:40;9350:1;9346:11;;;9301:57;10624:81;;9771:944;;9801:663;8595:1;8588:14;;;8632:4;8619:18;;-1:-1:-1;;9837:20:1;;;9955:236;9969:7;9966:1;9963:14;9955:236;;;10058:19;;;10052:26;10037:42;;10150:27;;;;10118:1;10106:14;;;;9985:19;;9955:236;;;9959:3;10219:6;10210:7;10207:19;10204:201;;;10280:19;;;10274:26;-1:-1:-1;;10363:1:1;10359:14;;;10375:3;10355:24;10351:37;10347:42;10332:58;10317:74;;10204:201;-1:-1:-1;;;;;10451:1:1;10435:14;;;10431:22;10418:36;;-1:-1:-1;9369:1352:1:o;10726:1206::-;-1:-1:-1;;;;;10845:3:1;10842:27;10839:53;;;10872:18;;:::i;:::-;10901:94;10991:3;10951:38;10983:4;10977:11;10951:38;:::i;:::-;10945:4;10901:94;:::i;:::-;11021:1;11046:2;11041:3;11038:11;11063:1;11058:616;;;;11718:1;11735:3;11732:93;;;-1:-1:-1;11791:19:1;;;11778:33;11732:93;-1:-1:-1;;9326:1:1;9322:11;;;9318:24;9314:29;9304:40;9350:1;9346:11;;;9301:57;11838:78;;11031:895;;11058:616;8595:1;8588:14;;;8632:4;8619:18;;-1:-1:-1;;11094:17:1;;;11195:9;11217:229;11231:7;11228:1;11225:14;11217:229;;;11320:19;;;11307:33;11292:49;;11427:4;11412:20;;;;11380:1;11368:14;;;;11247:12;11217:229;;;11221:3;11474;11465:7;11462:16;11459:159;;;11598:1;11594:6;11588:3;11582;11579:1;11575:11;11571:21;11567:34;11563:39;11550:9;11545:3;11541:19;11528:33;11524:79;11516:6;11509:95;11459:159;;;11661:1;11655:3;11652:1;11648:11;11644:19;11638:4;11631:33;11031:895;;10726:1206;;;:::o;11937:355::-;12139:2;12121:21;;;12178:2;12158:18;;;12151:30;12217:33;12212:2;12197:18;;12190:61;12283:2;12268:18;;11937:355::o;13348:291::-;13525:6;13514:9;13507:25;13568:2;13563;13552:9;13548:18;13541:30;13488:4;13588:45;13629:2;13618:9;13614:18;13606:6;13588:45;:::i;13993:125::-;14058:9;;;14079:10;;;14076:36;;;14092:18;;:::i;15522:1187::-;15799:3;15828:1;15861:6;15855:13;15891:36;15917:9;15891:36;:::i;:::-;15946:1;15963:18;;;15990:133;;;;16137:1;16132:356;;;;15956:532;;15990:133;-1:-1:-1;;16023:24:1;;16011:37;;16096:14;;16089:22;16077:35;;16068:45;;;-1:-1:-1;15990:133:1;;16132:356;16163:6;16160:1;16153:17;16193:4;16238:2;16235:1;16225:16;16263:1;16277:165;16291:6;16288:1;16285:13;16277:165;;;16369:14;;16356:11;;;16349:35;16412:16;;;;16306:10;;16277:165;;;16281:3;;;16471:6;16466:3;16462:16;16455:23;;15956:532;;;;;16519:6;16513:13;16535:68;16594:8;16589:3;16582:4;16574:6;16570:17;16535:68;:::i;:::-;-1:-1:-1;;;16625:18:1;;16652:22;;;16701:1;16690:13;;15522:1187;-1:-1:-1;;;;15522:1187:1:o;17121:489::-;-1:-1:-1;;;;;17390:15:1;;;17372:34;;17442:15;;17437:2;17422:18;;17415:43;17489:2;17474:18;;17467:34;;;17537:3;17532:2;17517:18;;17510:31;;;17315:4;;17558:46;;17584:19;;17576:6;17558:46;:::i;:::-;17550:54;17121:489;-1:-1:-1;;;;;;17121:489:1:o;17615:249::-;17684:6;17737:2;17725:9;17716:7;17712:23;17708:32;17705:52;;;17753:1;17750;17743:12;17705:52;17785:9;17779:16;17804:30;17828:5;17804:30;:::i;17869:135::-;17908:3;17929:17;;;17926:43;;17949:18;;:::i;:::-;-1:-1:-1;17996:1:1;17985:13;;17869:135::o;18009:128::-;18076:9;;;18097:11;;;18094:37;;;18111:18;;:::i;18142:112::-;18174:1;18200;18190:35;;18205:18;;:::i;:::-;-1:-1:-1;18239:9:1;;18142:112::o;18259:127::-;18320:10;18315:3;18311:20;18308:1;18301:31;18351:4;18348:1;18341:15;18375:4;18372:1;18365:15
Swarm Source
ipfs://fc257a3c8712be1ae33df4fc6d1db941896eb18cedfe3b629c41ec829a9957b6
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.