ERC-721
Overview
Max Total Supply
366 BYANON
Holders
144
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BYANONLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Whoiamisnotimportanttheartis
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @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.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library 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.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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.0; /** * @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.0; /** * @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); } // File: contracts/new.sol pragma solidity ^0.8.4; 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.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } 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.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function ownerOf( uint _tokenid) external view returns (address); } contract Whoiamisnotimportanttheartis is ERC721A, DefaultOperatorFilterer , Ownable { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; address public mainAddress = 0xacB9d51b8e41dF0a92F4cc497a2f8E1809fF9802; IMain Main = IMain(mainAddress); uint16 public maxSupply = 366; bool public paused = true; bool public reveal =false; mapping (uint => bool) public NFTMinted; constructor() ERC721A("Who i am is not important the art is", "BYANON") { } function setMainAddress(address contractAddr) external onlyOwner { mainAddress = contractAddr; Main= IMain(mainAddress); } function mint(uint _tokenid) external { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + 1<= maxSupply, "Exceeds max supply."); require(!NFTMinted[_tokenid] , "NFT already used to mint"); require(!paused, "Sale has not started yet!"); require(Main.ownerOf(_tokenid) == msg.sender , "You are not the owner"); NFTMinted[_tokenid] = true; _safeMint(msg.sender , 1); delete totalSupply; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; } function setRevealed() external onlyOwner{ reveal = !reveal; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NFTMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","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":"mainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setMainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620002b6565b50600c80546001600160a01b03191673acb9d51b8e41df0a92f4cc497a2f8e1809ff9802179055600d80546001600160c01b0319167601016eacb9d51b8e41df0a92f4cc497a2f8e1809ff98021790553480156200008557600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060600160405280602481526020016200253f6024913960405180604001604052806006815260200165212ca0a727a760d11b8152508160029080519060200190620000ee929190620002b6565b50805162000104906003906020840190620002b6565b506000805550506daaeb6d7670e522a718067333cd4e3b15620002505780156200019e57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017f57600080fd5b505af115801562000194573d6000803e3d6000fd5b5050505062000250565b6001600160a01b03821615620001ef5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000164565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b505050505b506200025e90503362000264565b62000398565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002c4906200035c565b90600052602060002090601f016020900481019282620002e8576000855562000333565b82601f106200030357805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033357825182559160200191906001019062000316565b506200034192915062000345565b5090565b5b8082111562000341576000815560010162000346565b600181811c908216806200037157607f821691505b6020821081036200039257634e487b7160e01b600052602260045260246000fd5b50919050565b61219780620003a86000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b88d4fde116100a2578063db9771f511610071578063db9771f51461040d578063e985e9c514610420578063eef440af1461045c578063f2fde38b1461046457600080fd5b8063b88d4fde1461039c578063c87b56dd146103af578063d5abeb01146103c2578063d9dc2485146103ea57600080fd5b806395d89b41116100de57806395d89b411461035a578063a0712d6814610362578063a22cb46514610375578063a475b5dd1461038857600080fd5b806370a082311461031b578063715018a61461032e5780637ec4a659146103365780638da5cb5b1461034957600080fd5b806323b872dd116101875780633ccfd60b116101565780633ccfd60b146102d957806342842e0e146102e15780635c975abb146102f45780636352211e1461030857600080fd5b806323b872dd146102a35780632f6f98e1146102b657806337a66d85146102c95780633bd64968146102d157600080fd5b8063095ea7b3116101c3578063095ea7b3146102525780630cdd4234146102675780631067fcc71461027a57806318160ddd1461028d57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004611b94565b610477565b60405190151581526020015b60405180910390f35b61021a6104c9565b6040516102099190611c09565b61023a610235366004611c1c565b61055b565b6040516001600160a01b039091168152602001610209565b610265610260366004611c4a565b61059f565b005b600c5461023a906001600160a01b031681565b610265610288366004611d02565b61062c565b600154600054035b604051908152602001610209565b6102656102b1366004611d4b565b610676565b6102656102c4366004611d8c565b6107d2565b61026561087c565b6102656108c7565b610265610912565b6102656102ef366004611d4b565b61096b565b600d546101fd90600160b01b900460ff1681565b61023a610316366004611c1c565b610abc565b610295610329366004611dcc565b610ace565b610265610b1d565b610265610344366004611d02565b610b53565b6008546001600160a01b031661023a565b61021a610b90565b610265610370366004611c1c565b610b9f565b610265610383366004611df7565b610dad565b600d546101fd90600160b81b900460ff1681565b6102656103aa366004611e25565b610e42565b61021a6103bd366004611c1c565b610fa1565b600d546103d790600160a01b900461ffff1681565b60405161ffff9091168152602001610209565b6101fd6103f8366004611c1c565b600e6020526000908152604090205460ff1681565b61026561041b366004611dcc565b611117565b6101fd61042e366004611ea5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a61116d565b610265610472366004611dcc565b6111fb565b60006001600160e01b031982166380ac58cd60e01b14806104a857506001600160e01b03198216635b5e139f60e01b145b806104c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104d890611ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461050490611ec3565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056682611296565b610583576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105aa82610abc565b9050806001600160a01b0316836001600160a01b0316036105de5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105fe57506105fc813361042e565b155b1561061c576040516367d9dca160e11b815260040160405180910390fd5b6106278383836112c1565b505050565b6008546001600160a01b0316331461065f5760405162461bcd60e51b815260040161065690611efd565b60405180910390fd5b805161067290600b906020840190611ae5565b5050565b826daaeb6d7670e522a718067333cd4e3b156107c157336001600160a01b038216036106ac576106a784848461131d565b6107cc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071f9190611f32565b80156107a25750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561077e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a29190611f32565b6107c157604051633b79c77360e21b8152336004820152602401610656565b6107cc84848461131d565b50505050565b6008546001600160a01b031633146107fc5760405162461bcd60e51b815260040161065690611efd565b600061080b6001546000540390565b600d54909150600160a01b900461ffff166108268483611f65565b61ffff16111561086e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610656565b610627828461ffff16611328565b6008546001600160a01b031633146108a65760405162461bcd60e51b815260040161065690611efd565b600d805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6008546001600160a01b031633146108f15760405162461bcd60e51b815260040161065690611efd565b600d805460ff60b81b198116600160b81b9182900460ff1615909102179055565b6008546001600160a01b0316331461093c5760405162461bcd60e51b815260040161065690611efd565b6040514790339082156108fc029083906000818181858888f19350505050158015610672573d6000803e3d6000fd5b826daaeb6d7670e522a718067333cd4e3b15610ab157336001600160a01b0382160361099c576106a7848484611342565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611f32565b8015610a925750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a929190611f32565b610ab157604051633b79c77360e21b8152336004820152602401610656565b6107cc848484611342565b6000610ac78261135d565b5192915050565b60006001600160a01b038216610af7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b475760405162461bcd60e51b815260040161065690611efd565b610b516000611479565b565b6008546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161065690611efd565b8051610672906009906020840190611ae5565b6060600380546104d890611ec3565b6000610bae6001546000540390565b600d54909150600160a01b900461ffff16610bca826001611f65565b61ffff161115610c125760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610656565b6000828152600e602052604090205460ff1615610c715760405162461bcd60e51b815260206004820152601860248201527f4e465420616c7265616479207573656420746f206d696e7400000000000000006044820152606401610656565b600d54600160b01b900460ff1615610ccb5760405162461bcd60e51b815260206004820152601960248201527f53616c6520686173206e6f7420737461727465642079657421000000000000006044820152606401610656565b600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190611f8b565b6001600160a01b031614610d865760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401610656565b6000828152600e60205260409020805460ff19166001908117909155610672903390611328565b336001600160a01b03831603610dd65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610f8e57336001600160a01b03821603610e7957610e74858585856114cb565b610f9a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190611f32565b8015610f6f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f9190611f32565b610f8e57604051633b79c77360e21b8152336004820152602401610656565b610f9a858585856114cb565b5050505050565b6060610fac82611296565b6110105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610656565b600d54600160b81b900460ff1615156000036110b857600b805461103390611ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461105f90611ec3565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b50505050509050919050565b60006110c2611516565b905060008151116110e25760405180602001604052806000815250611110565b806110ec84611525565b600a60405160200161110093929190611fa8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111415760405162461bcd60e51b815260040161065690611efd565b600c80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b600b805461117a90611ec3565b80601f01602080910402602001604051908101604052809291908181526020018280546111a690611ec3565b80156111f35780601f106111c8576101008083540402835291602001916111f3565b820191906000526020600020905b8154815290600101906020018083116111d657829003601f168201915b505050505081565b6008546001600160a01b031633146112255760405162461bcd60e51b815260040161065690611efd565b6001600160a01b03811661128a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610656565b61129381611479565b50565b60008054821080156104c3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61062783838361162e565b61067282826040518060200160405280600081525061181b565b61062783838360405180602001604052806000815250610e42565b60408051606081018252600080825260208201819052918101919091528160005481101561146057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061145e5780516001600160a01b0316156113f4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611459579392505050565b6113f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d684848461162e565b6001600160a01b0383163b151580156114f857506114f684848484611828565b155b156107cc576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546104d890611ec3565b60608160000361154c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157657806115608161206b565b915061156f9050600a8361209a565b9150611550565b60008167ffffffffffffffff81111561159157611591611c76565b6040519080825280601f01601f1916602001820160405280156115bb576020820181803683370190505b5090505b8415611626576115d06001836120ae565b91506115dd600a866120c5565b6115e89060306120d9565b60f81b8183815181106115fd576115fd6120f1565b60200101906001600160f81b031916908160001a90535061161f600a8661209a565b94506115bf565b949350505050565b60006116398261135d565b9050836001600160a01b031681600001516001600160a01b0316146116705760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061168e575061168e853361042e565b806116a957503361169e8461055b565b6001600160a01b0316145b9050806116c957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116f057604051633a954ecd60e21b815260040160405180910390fd5b6116fc600084876112c1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117d25760005482146117d2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f9a565b6106278383836001611913565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185d903390899088908890600401612107565b6020604051808303816000875af1925050508015611898575060408051601f3d908101601f1916820190925261189591810190612144565b60015b6118f6573d8080156118c6576040519150601f19603f3d011682016040523d82523d6000602084013e6118cb565b606091505b5080516000036118ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661193c57604051622e076360e81b815260040160405180910390fd5b8360000361195d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0f57506001600160a01b0387163b15155b15611a97575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a606000888480600101955088611828565b611a7d576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a15578260005414611a9257600080fd5b611adc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a98575b50600055610f9a565b828054611af190611ec3565b90600052602060002090601f016020900481019282611b135760008555611b59565b82601f10611b2c57805160ff1916838001178555611b59565b82800160010185558215611b59579182015b82811115611b59578251825591602001919060010190611b3e565b50611b65929150611b69565b5090565b5b80821115611b655760008155600101611b6a565b6001600160e01b03198116811461129357600080fd5b600060208284031215611ba657600080fd5b813561111081611b7e565b60005b83811015611bcc578181015183820152602001611bb4565b838111156107cc5750506000910152565b60008151808452611bf5816020860160208601611bb1565b601f01601f19169290920160200192915050565b6020815260006111106020830184611bdd565b600060208284031215611c2e57600080fd5b5035919050565b6001600160a01b038116811461129357600080fd5b60008060408385031215611c5d57600080fd5b8235611c6881611c35565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ca757611ca7611c76565b604051601f8501601f19908116603f01168101908282118183101715611ccf57611ccf611c76565b81604052809350858152868686011115611ce857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d1457600080fd5b813567ffffffffffffffff811115611d2b57600080fd5b8201601f81018413611d3c57600080fd5b61162684823560208401611c8c565b600080600060608486031215611d6057600080fd5b8335611d6b81611c35565b92506020840135611d7b81611c35565b929592945050506040919091013590565b60008060408385031215611d9f57600080fd5b823561ffff81168114611db157600080fd5b91506020830135611dc181611c35565b809150509250929050565b600060208284031215611dde57600080fd5b813561111081611c35565b801515811461129357600080fd5b60008060408385031215611e0a57600080fd5b8235611e1581611c35565b91506020830135611dc181611de9565b60008060008060808587031215611e3b57600080fd5b8435611e4681611c35565b93506020850135611e5681611c35565b925060408501359150606085013567ffffffffffffffff811115611e7957600080fd5b8501601f81018713611e8a57600080fd5b611e9987823560208401611c8c565b91505092959194509250565b60008060408385031215611eb857600080fd5b8235611db181611c35565b600181811c90821680611ed757607f821691505b602082108103611ef757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f4457600080fd5b815161111081611de9565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115611f8257611f82611f4f565b01949350505050565b600060208284031215611f9d57600080fd5b815161111081611c35565b600084516020611fbb8285838a01611bb1565b855191840191611fce8184848a01611bb1565b8554920191600090600181811c9080831680611feb57607f831692505b858310810361200857634e487b7160e01b85526022600452602485fd5b80801561201c576001811461202d5761205a565b60ff1985168852838801955061205a565b60008b81526020902060005b858110156120525781548a820152908401908801612039565b505083880195505b50939b9a5050505050505050505050565b60006001820161207d5761207d611f4f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120a9576120a9612084565b500490565b6000828210156120c0576120c0611f4f565b500390565b6000826120d4576120d4612084565b500690565b600082198211156120ec576120ec611f4f565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213a90830184611bdd565b9695505050505050565b60006020828403121561215657600080fd5b815161111081611b7e56fea2646970667358221220e3e18f6188421affc2a9cfe42c8838553baeb52268c6879545a2975656fe908164736f6c634300080d003357686f206920616d206973206e6f7420696d706f7274616e742074686520617274206973
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063b88d4fde116100a2578063db9771f511610071578063db9771f51461040d578063e985e9c514610420578063eef440af1461045c578063f2fde38b1461046457600080fd5b8063b88d4fde1461039c578063c87b56dd146103af578063d5abeb01146103c2578063d9dc2485146103ea57600080fd5b806395d89b41116100de57806395d89b411461035a578063a0712d6814610362578063a22cb46514610375578063a475b5dd1461038857600080fd5b806370a082311461031b578063715018a61461032e5780637ec4a659146103365780638da5cb5b1461034957600080fd5b806323b872dd116101875780633ccfd60b116101565780633ccfd60b146102d957806342842e0e146102e15780635c975abb146102f45780636352211e1461030857600080fd5b806323b872dd146102a35780632f6f98e1146102b657806337a66d85146102c95780633bd64968146102d157600080fd5b8063095ea7b3116101c3578063095ea7b3146102525780630cdd4234146102675780631067fcc71461027a57806318160ddd1461028d57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004611b94565b610477565b60405190151581526020015b60405180910390f35b61021a6104c9565b6040516102099190611c09565b61023a610235366004611c1c565b61055b565b6040516001600160a01b039091168152602001610209565b610265610260366004611c4a565b61059f565b005b600c5461023a906001600160a01b031681565b610265610288366004611d02565b61062c565b600154600054035b604051908152602001610209565b6102656102b1366004611d4b565b610676565b6102656102c4366004611d8c565b6107d2565b61026561087c565b6102656108c7565b610265610912565b6102656102ef366004611d4b565b61096b565b600d546101fd90600160b01b900460ff1681565b61023a610316366004611c1c565b610abc565b610295610329366004611dcc565b610ace565b610265610b1d565b610265610344366004611d02565b610b53565b6008546001600160a01b031661023a565b61021a610b90565b610265610370366004611c1c565b610b9f565b610265610383366004611df7565b610dad565b600d546101fd90600160b81b900460ff1681565b6102656103aa366004611e25565b610e42565b61021a6103bd366004611c1c565b610fa1565b600d546103d790600160a01b900461ffff1681565b60405161ffff9091168152602001610209565b6101fd6103f8366004611c1c565b600e6020526000908152604090205460ff1681565b61026561041b366004611dcc565b611117565b6101fd61042e366004611ea5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a61116d565b610265610472366004611dcc565b6111fb565b60006001600160e01b031982166380ac58cd60e01b14806104a857506001600160e01b03198216635b5e139f60e01b145b806104c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104d890611ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461050490611ec3565b80156105515780601f1061052657610100808354040283529160200191610551565b820191906000526020600020905b81548152906001019060200180831161053457829003601f168201915b5050505050905090565b600061056682611296565b610583576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105aa82610abc565b9050806001600160a01b0316836001600160a01b0316036105de5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105fe57506105fc813361042e565b155b1561061c576040516367d9dca160e11b815260040160405180910390fd5b6106278383836112c1565b505050565b6008546001600160a01b0316331461065f5760405162461bcd60e51b815260040161065690611efd565b60405180910390fd5b805161067290600b906020840190611ae5565b5050565b826daaeb6d7670e522a718067333cd4e3b156107c157336001600160a01b038216036106ac576106a784848461131d565b6107cc565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156106fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071f9190611f32565b80156107a25750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561077e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a29190611f32565b6107c157604051633b79c77360e21b8152336004820152602401610656565b6107cc84848461131d565b50505050565b6008546001600160a01b031633146107fc5760405162461bcd60e51b815260040161065690611efd565b600061080b6001546000540390565b600d54909150600160a01b900461ffff166108268483611f65565b61ffff16111561086e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610656565b610627828461ffff16611328565b6008546001600160a01b031633146108a65760405162461bcd60e51b815260040161065690611efd565b600d805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6008546001600160a01b031633146108f15760405162461bcd60e51b815260040161065690611efd565b600d805460ff60b81b198116600160b81b9182900460ff1615909102179055565b6008546001600160a01b0316331461093c5760405162461bcd60e51b815260040161065690611efd565b6040514790339082156108fc029083906000818181858888f19350505050158015610672573d6000803e3d6000fd5b826daaeb6d7670e522a718067333cd4e3b15610ab157336001600160a01b0382160361099c576106a7848484611342565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156109eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0f9190611f32565b8015610a925750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a929190611f32565b610ab157604051633b79c77360e21b8152336004820152602401610656565b6107cc848484611342565b6000610ac78261135d565b5192915050565b60006001600160a01b038216610af7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b475760405162461bcd60e51b815260040161065690611efd565b610b516000611479565b565b6008546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161065690611efd565b8051610672906009906020840190611ae5565b6060600380546104d890611ec3565b6000610bae6001546000540390565b600d54909150600160a01b900461ffff16610bca826001611f65565b61ffff161115610c125760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610656565b6000828152600e602052604090205460ff1615610c715760405162461bcd60e51b815260206004820152601860248201527f4e465420616c7265616479207573656420746f206d696e7400000000000000006044820152606401610656565b600d54600160b01b900460ff1615610ccb5760405162461bcd60e51b815260206004820152601960248201527f53616c6520686173206e6f7420737461727465642079657421000000000000006044820152606401610656565b600d546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190611f8b565b6001600160a01b031614610d865760405162461bcd60e51b81526020600482015260156024820152742cb7ba9030b932903737ba103a34329037bbb732b960591b6044820152606401610656565b6000828152600e60205260409020805460ff19166001908117909155610672903390611328565b336001600160a01b03831603610dd65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610f8e57336001600160a01b03821603610e7957610e74858585856114cb565b610f9a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ec8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eec9190611f32565b8015610f6f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6f9190611f32565b610f8e57604051633b79c77360e21b8152336004820152602401610656565b610f9a858585856114cb565b5050505050565b6060610fac82611296565b6110105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610656565b600d54600160b81b900460ff1615156000036110b857600b805461103390611ec3565b80601f016020809104026020016040519081016040528092919081815260200182805461105f90611ec3565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b50505050509050919050565b60006110c2611516565b905060008151116110e25760405180602001604052806000815250611110565b806110ec84611525565b600a60405160200161110093929190611fa8565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111415760405162461bcd60e51b815260040161065690611efd565b600c80546001600160a01b039092166001600160a01b03199283168117909155600d8054909216179055565b600b805461117a90611ec3565b80601f01602080910402602001604051908101604052809291908181526020018280546111a690611ec3565b80156111f35780601f106111c8576101008083540402835291602001916111f3565b820191906000526020600020905b8154815290600101906020018083116111d657829003601f168201915b505050505081565b6008546001600160a01b031633146112255760405162461bcd60e51b815260040161065690611efd565b6001600160a01b03811661128a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610656565b61129381611479565b50565b60008054821080156104c3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61062783838361162e565b61067282826040518060200160405280600081525061181b565b61062783838360405180602001604052806000815250610e42565b60408051606081018252600080825260208201819052918101919091528160005481101561146057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061145e5780516001600160a01b0316156113f4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611459579392505050565b6113f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114d684848461162e565b6001600160a01b0383163b151580156114f857506114f684848484611828565b155b156107cc576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546104d890611ec3565b60608160000361154c5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157657806115608161206b565b915061156f9050600a8361209a565b9150611550565b60008167ffffffffffffffff81111561159157611591611c76565b6040519080825280601f01601f1916602001820160405280156115bb576020820181803683370190505b5090505b8415611626576115d06001836120ae565b91506115dd600a866120c5565b6115e89060306120d9565b60f81b8183815181106115fd576115fd6120f1565b60200101906001600160f81b031916908160001a90535061161f600a8661209a565b94506115bf565b949350505050565b60006116398261135d565b9050836001600160a01b031681600001516001600160a01b0316146116705760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061168e575061168e853361042e565b806116a957503361169e8461055b565b6001600160a01b0316145b9050806116c957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116f057604051633a954ecd60e21b815260040160405180910390fd5b6116fc600084876112c1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117d25760005482146117d2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f9a565b6106278383836001611913565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185d903390899088908890600401612107565b6020604051808303816000875af1925050508015611898575060408051601f3d908101601f1916820190925261189591810190612144565b60015b6118f6573d8080156118c6576040519150601f19603f3d011682016040523d82523d6000602084013e6118cb565b606091505b5080516000036118ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661193c57604051622e076360e81b815260040160405180910390fd5b8360000361195d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a0f57506001600160a01b0387163b15155b15611a97575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a606000888480600101955088611828565b611a7d576040516368d2bf6b60e11b815260040160405180910390fd5b808203611a15578260005414611a9257600080fd5b611adc565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611a98575b50600055610f9a565b828054611af190611ec3565b90600052602060002090601f016020900481019282611b135760008555611b59565b82601f10611b2c57805160ff1916838001178555611b59565b82800160010185558215611b59579182015b82811115611b59578251825591602001919060010190611b3e565b50611b65929150611b69565b5090565b5b80821115611b655760008155600101611b6a565b6001600160e01b03198116811461129357600080fd5b600060208284031215611ba657600080fd5b813561111081611b7e565b60005b83811015611bcc578181015183820152602001611bb4565b838111156107cc5750506000910152565b60008151808452611bf5816020860160208601611bb1565b601f01601f19169290920160200192915050565b6020815260006111106020830184611bdd565b600060208284031215611c2e57600080fd5b5035919050565b6001600160a01b038116811461129357600080fd5b60008060408385031215611c5d57600080fd5b8235611c6881611c35565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ca757611ca7611c76565b604051601f8501601f19908116603f01168101908282118183101715611ccf57611ccf611c76565b81604052809350858152868686011115611ce857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d1457600080fd5b813567ffffffffffffffff811115611d2b57600080fd5b8201601f81018413611d3c57600080fd5b61162684823560208401611c8c565b600080600060608486031215611d6057600080fd5b8335611d6b81611c35565b92506020840135611d7b81611c35565b929592945050506040919091013590565b60008060408385031215611d9f57600080fd5b823561ffff81168114611db157600080fd5b91506020830135611dc181611c35565b809150509250929050565b600060208284031215611dde57600080fd5b813561111081611c35565b801515811461129357600080fd5b60008060408385031215611e0a57600080fd5b8235611e1581611c35565b91506020830135611dc181611de9565b60008060008060808587031215611e3b57600080fd5b8435611e4681611c35565b93506020850135611e5681611c35565b925060408501359150606085013567ffffffffffffffff811115611e7957600080fd5b8501601f81018713611e8a57600080fd5b611e9987823560208401611c8c565b91505092959194509250565b60008060408385031215611eb857600080fd5b8235611db181611c35565b600181811c90821680611ed757607f821691505b602082108103611ef757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611f4457600080fd5b815161111081611de9565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115611f8257611f82611f4f565b01949350505050565b600060208284031215611f9d57600080fd5b815161111081611c35565b600084516020611fbb8285838a01611bb1565b855191840191611fce8184848a01611bb1565b8554920191600090600181811c9080831680611feb57607f831692505b858310810361200857634e487b7160e01b85526022600452602485fd5b80801561201c576001811461202d5761205a565b60ff1985168852838801955061205a565b60008b81526020902060005b858110156120525781548a820152908401908801612039565b505083880195505b50939b9a5050505050505050505050565b60006001820161207d5761207d611f4f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826120a9576120a9612084565b500490565b6000828210156120c0576120c0611f4f565b500390565b6000826120d4576120d4612084565b500690565b600082198211156120ec576120ec611f4f565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213a90830184611bdd565b9695505050505050565b60006020828403121561215657600080fd5b815161111081611b7e56fea2646970667358221220e3e18f6188421affc2a9cfe42c8838553baeb52268c6879545a2975656fe908164736f6c634300080d0033
Deployed Bytecode Sourcemap
56933:3267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;27558:100;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29061:204:0;1528:203:1;28624:371:0;;;;;;:::i;:::-;;:::i;:::-;;57162:71;;;;;-1:-1:-1;;;;;57162:71:0;;;59098:102;;;;;;:::i;:::-;;:::i;23694:303::-;23948:12;;23738:7;23932:13;:28;23694:303;;;3563:25:1;;;3551:2;3536:18;23694:303:0;3417:177:1;59619:163:0;;;;;;:::i;:::-;;:::i;58150:326::-;;;;;;:::i;:::-;;:::i;59208:71::-;;;:::i;59288:70::-;;;:::i;59366:144::-;;;:::i;59790:171::-;;;;;;:::i;:::-;;:::i;57320:25::-;;;;;-1:-1:-1;;;57320:25:0;;;;;;27366:125;;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;:::i;:::-;;:::i;51531:103::-;;;:::i;58991:102::-;;;;;;:::i;:::-;;:::i;50879:87::-;50952:6;;-1:-1:-1;;;;;50952:6:0;50879:87;;27727:104;;;:::i;57675:467::-;;;;;;:::i;:::-;;:::i;29337:287::-;;;;;;:::i;:::-;;:::i;57350:25::-;;;;;-1:-1:-1;;;57350:25:0;;;;;;59969:228;;;;;;:::i;:::-;;:::i;58482:490::-;;;;;;:::i;:::-;;:::i;57283:30::-;;;;;-1:-1:-1;;;57283:30:0;;;;;;;;;6214:6:1;6202:19;;;6184:38;;6172:2;6157:18;57283:30:0;6040:188:1;57380:39:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;57533:136;;;;;;:::i;:::-;;:::i;29695:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164;57127:23;;;:::i;51789:201::-;;;;;;:::i;:::-;;:::i;24445:305::-;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;59098:102::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;;;;;;;;;59172:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59098:102:::0;:::o;59619:163::-;59720:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;59737:37:::1;59756:4;59762:2;59766:7;59737:18;:37::i;:::-;56135:7:::0;;56072:85;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;7584:34:1;56273:10:0;7634:18:1;;;7627:43;54657:42:0;;56217:40;;7519:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;7584:34:1;-1:-1:-1;;;;;7654:15:1;;7634:18;;;7627:43;54657:42:0;;56313:40;;7519:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;59737:37:::1;59756:4;59762:2;59766:7;59737:18;:37::i;:::-;59619:163:::0;;;;:::o;58150:326::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;58233:18:::1;58261:13;23948:12:::0;;23738:7;23932:13;:28;;23694:303;58261:13:::1;58319:9;::::0;58233:42;;-1:-1:-1;;;;58319:9:0;::::1;;;58290:25;58304:11:::0;58233:42;58290:25:::1;:::i;:::-;:38;;;;58282:70;;;::::0;-1:-1:-1;;;58282:70:0;;8494:2:1;58282:70:0::1;::::0;::::1;8476:21:1::0;8533:2;8513:18;;;8506:30;-1:-1:-1;;;8552:18:1;;;8545:49;8611:18;;58282:70:0::1;8292:343:1::0;58282:70:0::1;58360:34;58370:9;58382:11;58360:34;;:9;:34::i;59208:71::-:0;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59265:6:::1;::::0;;-1:-1:-1;;;;59255:16:0;::::1;-1:-1:-1::0;;;59265:6:0;;;::::1;;;59264:7;59255:16:::0;;::::1;;::::0;;59208:71::o;59288:70::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59347:6:::1;::::0;;-1:-1:-1;;;;59337:16:0;::::1;-1:-1:-1::0;;;59347:6:0;;;::::1;;;59346:7;59337:16:::0;;::::1;;::::0;;59288:70::o;59366:144::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59455:39:::1;::::0;59426:21:::1;::::0;59463:10:::1;::::0;59455:39;::::1;;;::::0;59426:21;;59410:13:::1;59455:39:::0;59410:13;59455:39;59426:21;59463:10;59455:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;59790:171:::0;59895:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;59912:41:::1;59935:4;59941:2;59945:7;59912:22;:41::i;56072:85::-:0;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;7584:34:1;56273:10:0;7634:18:1;;;7627:43;54657:42:0;;56217:40;;7519:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;7584:34:1;-1:-1:-1;;;;;7654:15:1;;7634:18;;;7627:43;54657:42:0;;56313:40;;7519:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;59912:41:::1;59935:4;59941:2;59945:7;59912:22;:41::i;27366:125::-:0;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;51531:103::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;51596:30:::1;51623:1;51596:18;:30::i;:::-;51531:103::o:0;58991:102::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59065:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;57675:467::-;57721:18;57749:13;23948:12;;23738:7;23932:13;:28;;23694:303;57749:13;57797:9;;57721:42;;-1:-1:-1;;;;57797:9:0;;;;57779:15;57721:42;57793:1;57779:15;:::i;:::-;:27;;;;57771:59;;;;-1:-1:-1;;;57771:59:0;;8494:2:1;57771:59:0;;;8476:21:1;8533:2;8513:18;;;8506:30;-1:-1:-1;;;8552:18:1;;;8545:49;8611:18;;57771:59:0;8292:343:1;57771:59:0;57847:19;;;;:9;:19;;;;;;;;57846:20;57838:58;;;;-1:-1:-1;;;57838:58:0;;8842:2:1;57838:58:0;;;8824:21:1;8881:2;8861:18;;;8854:30;8920:26;8900:18;;;8893:54;8964:18;;57838:58:0;8640:348:1;57838:58:0;57912:6;;-1:-1:-1;;;57912:6:0;;;;57911:7;57903:45;;;;-1:-1:-1;;;57903:45:0;;9195:2:1;57903:45:0;;;9177:21:1;9234:2;9214:18;;;9207:30;9273:27;9253:18;;;9246:55;9318:18;;57903:45:0;8993:349:1;57903:45:0;57963:4;;:22;;-1:-1:-1;;;57963:22:0;;;;;3563:25:1;;;57989:10:0;;-1:-1:-1;;;;;57963:4:0;;:12;;3536:18:1;;57963:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57963:36:0;;57955:71;;;;-1:-1:-1;;;57955:71:0;;9805:2:1;57955:71:0;;;9787:21:1;9844:2;9824:18;;;9817:30;-1:-1:-1;;;9863:18:1;;;9856:51;9924:18;;57955:71:0;9603:345:1;57955:71:0;58039:19;;;;:9;:19;;;;;:26;;-1:-1:-1;;58039:26:0;58061:4;58039:26;;;;;;58072:25;;58082:10;;58072:9;:25::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;59969:228::-;60120:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;60142:47:::1;60165:4;60171:2;60175:7;60184:4;60142:22;:47::i;:::-;56135:7:::0;;56072:85;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;7584:34:1;56273:10:0;7634:18:1;;;7627:43;54657:42:0;;56217:40;;7519:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;7584:34:1;-1:-1:-1;;;;;7654:15:1;;7634:18;;;7627:43;54657:42:0;;56313:40;;7519:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;60142:47:::1;60165:4;60171:2;60175:7;60184:4;60142:22;:47::i;:::-;59969:228:::0;;;;;:::o;58482:490::-;58581:13;58622:17;58630:8;58622:7;:17::i;:::-;58606:98;;;;-1:-1:-1;;;58606:98:0;;10155:2:1;58606:98:0;;;10137:21:1;10194:2;10174:18;;;10167:30;10233:34;10213:18;;;10206:62;-1:-1:-1;;;10284:18:1;;;10277:45;10339:19;;58606:98:0;9953:411:1;58606:98:0;58722:6;;-1:-1:-1;;;58722:6:0;;;;:15;;58732:5;58722:15;58717:50;;58754:9;58747:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58482:490;;;:::o;58717:50::-;58781:28;58812:10;:8;:10::i;:::-;58781:41;;58867:1;58842:14;58836:28;:32;:130;;;;;;;;;;;;;;;;;58904:14;58920:19;:8;:17;:19::i;:::-;58941:9;58887:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58836:130;58829:137;58482:490;-1:-1:-1;;;58482:490:0:o;57533:136::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;57603:11:::1;:26:::0;;-1:-1:-1;;;;;57603:26:0;;::::1;-1:-1:-1::0;;;;;;57603:26:0;;::::1;::::0;::::1;::::0;;;57640:4:::1;:24:::0;;;;::::1;;::::0;;57533:136::o;57127:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51789:201::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51878:22:0;::::1;51870:73;;;::::0;-1:-1:-1;;;51870:73:0;;12229:2:1;51870:73:0::1;::::0;::::1;12211:21:1::0;12268:2;12248:18;;;12241:30;12307:34;12287:18;;;12280:62;-1:-1:-1;;;12358:18:1;;;12351:36;12404:19;;51870:73:0::1;12027:402:1::0;51870:73:0::1;51954:28;51973:8;51954:18;:28::i;:::-;51789:201:::0;:::o;31047:187::-;31104:4;31168:13;;31158:7;:23;31128:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;26389:13;;26382:4;:20;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;52150:191;52243:6;;;-1:-1:-1;;;;;52260:17:0;;;-1:-1:-1;;;;;;52260:17:0;;;;;;;52293:40;;52243:6;;;52260:17;52243:6;;52293:40;;52224:16;;52293:40;52213:128;52150:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;59518:97;59571:13;59600:9;59593:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;;1110:6;402:723;-1:-1:-1;;;;402:723:0:o;34160:2130::-;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;29695:164;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;;;;;;;;;;;36240:42;59619:163;31709;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;39905:667::-;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40323:6;:13;40340:1;40323:18;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;39905:667:0;;;;;;:::o;32131:1775::-;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:8;32392:1;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;33212:38;;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;33670:40;;33687:1;;33670:40;33754:3;33738:12;:19;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;59619:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2192:127::-;2253:10;2248:3;2244:20;2241:1;2234:31;2284:4;2281:1;2274:15;2308:4;2305:1;2298:15;2324:632;2389:5;2419:18;2460:2;2452:6;2449:14;2446:40;;;2466:18;;:::i;:::-;2541:2;2535:9;2509:2;2595:15;;-1:-1:-1;;2591:24:1;;;2617:2;2587:33;2583:42;2571:55;;;2641:18;;;2661:22;;;2638:46;2635:72;;;2687:18;;:::i;:::-;2727:10;2723:2;2716:22;2756:6;2747:15;;2786:6;2778;2771:22;2826:3;2817:6;2812:3;2808:16;2805:25;2802:45;;;2843:1;2840;2833:12;2802:45;2893:6;2888:3;2881:4;2873:6;2869:17;2856:44;2948:1;2941:4;2932:6;2924;2920:19;2916:30;2909:41;;;;2324:632;;;;;:::o;2961:451::-;3030:6;3083:2;3071:9;3062:7;3058:23;3054:32;3051:52;;;3099:1;3096;3089:12;3051:52;3139:9;3126:23;3172:18;3164:6;3161:30;3158:50;;;3204:1;3201;3194:12;3158:50;3227:22;;3280:4;3272:13;;3268:27;-1:-1:-1;3258:55:1;;3309:1;3306;3299:12;3258:55;3332:74;3398:7;3393:2;3380:16;3375:2;3371;3367:11;3332:74;:::i;3599:456::-;3676:6;3684;3692;3745:2;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3800:9;3787:23;3819:31;3844:5;3819:31;:::i;:::-;3869:5;-1:-1:-1;3926:2:1;3911:18;;3898:32;3939:33;3898:32;3939:33;:::i;:::-;3599:456;;3991:7;;-1:-1:-1;;;4045:2:1;4030:18;;;;4017:32;;3599:456::o;4060:413::-;4127:6;4135;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;4243:9;4230:23;4293:6;4286:5;4282:18;4275:5;4272:29;4262:57;;4315:1;4312;4305:12;4262:57;4338:5;-1:-1:-1;4395:2:1;4380:18;;4367:32;4408:33;4367:32;4408:33;:::i;:::-;4460:7;4450:17;;;4060:413;;;;;:::o;4478:247::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;4645:9;4632:23;4664:31;4689:5;4664:31;:::i;4730:118::-;4816:5;4809:13;4802:21;4795:5;4792:32;4782:60;;4838:1;4835;4828:12;4853:382;4918:6;4926;4979:2;4967:9;4958:7;4954:23;4950:32;4947:52;;;4995:1;4992;4985:12;4947:52;5034:9;5021:23;5053:31;5078:5;5053:31;:::i;:::-;5103:5;-1:-1:-1;5160:2:1;5145:18;;5132:32;5173:30;5132:32;5173:30;:::i;5240:795::-;5335:6;5343;5351;5359;5412:3;5400:9;5391:7;5387:23;5383:33;5380:53;;;5429:1;5426;5419:12;5380:53;5468:9;5455:23;5487:31;5512:5;5487:31;:::i;:::-;5537:5;-1:-1:-1;5594:2:1;5579:18;;5566:32;5607:33;5566:32;5607:33;:::i;:::-;5659:7;-1:-1:-1;5713:2:1;5698:18;;5685:32;;-1:-1:-1;5768:2:1;5753:18;;5740:32;5795:18;5784:30;;5781:50;;;5827:1;5824;5817:12;5781:50;5850:22;;5903:4;5895:13;;5891:27;-1:-1:-1;5881:55:1;;5932:1;5929;5922:12;5881:55;5955:74;6021:7;6016:2;6003:16;5998:2;5994;5990:11;5955:74;:::i;:::-;5945:84;;;5240:795;;;;;;;:::o;6233:388::-;6301:6;6309;6362:2;6350:9;6341:7;6337:23;6333:32;6330:52;;;6378:1;6375;6368:12;6330:52;6417:9;6404:23;6436:31;6461:5;6436:31;:::i;6626:380::-;6705:1;6701:12;;;;6748;;;6769:61;;6823:4;6815:6;6811:17;6801:27;;6769:61;6876:2;6868:6;6865:14;6845:18;6842:38;6839:161;;6922:10;6917:3;6913:20;6910:1;6903:31;6957:4;6954:1;6947:15;6985:4;6982:1;6975:15;6839:161;;6626:380;;;:::o;7011:356::-;7213:2;7195:21;;;7232:18;;;7225:30;7291:34;7286:2;7271:18;;7264:62;7358:2;7343:18;;7011:356::o;7681:245::-;7748:6;7801:2;7789:9;7780:7;7776:23;7772:32;7769:52;;;7817:1;7814;7807:12;7769:52;7849:9;7843:16;7868:28;7890:5;7868:28;:::i;7931:127::-;7992:10;7987:3;7983:20;7980:1;7973:31;8023:4;8020:1;8013:15;8047:4;8044:1;8037:15;8063:224;8102:3;8130:6;8163:2;8160:1;8156:10;8193:2;8190:1;8186:10;8224:3;8220:2;8216:12;8211:3;8208:21;8205:47;;;8232:18;;:::i;:::-;8268:13;;8063:224;-1:-1:-1;;;;8063:224:1:o;9347:251::-;9417:6;9470:2;9458:9;9449:7;9445:23;9441:32;9438:52;;;9486:1;9483;9476:12;9438:52;9518:9;9512:16;9537:31;9562:5;9537:31;:::i;10495:1527::-;10719:3;10757:6;10751:13;10783:4;10796:51;10840:6;10835:3;10830:2;10822:6;10818:15;10796:51;:::i;:::-;10910:13;;10869:16;;;;10932:55;10910:13;10869:16;10954:15;;;10932:55;:::i;:::-;11076:13;;11009:20;;;11049:1;;11136;11158:18;;;;11211;;;;11238:93;;11316:4;11306:8;11302:19;11290:31;;11238:93;11379:2;11369:8;11366:16;11346:18;11343:40;11340:167;;-1:-1:-1;;;11406:33:1;;11462:4;11459:1;11452:15;11492:4;11413:3;11480:17;11340:167;11523:18;11550:110;;;;11674:1;11669:328;;;;11516:481;;11550:110;-1:-1:-1;;11585:24:1;;11571:39;;11630:20;;;;-1:-1:-1;11550:110:1;;11669:328;10442:1;10435:14;;;10479:4;10466:18;;11764:1;11778:169;11792:8;11789:1;11786:15;11778:169;;;11874:14;;11859:13;;;11852:37;11917:16;;;;11809:10;;11778:169;;;11782:3;;11978:8;11971:5;11967:20;11960:27;;11516:481;-1:-1:-1;12013:3:1;;10495:1527;-1:-1:-1;;;;;;;;;;;10495:1527:1:o;12434:135::-;12473:3;12494:17;;;12491:43;;12514:18;;:::i;:::-;-1:-1:-1;12561:1:1;12550:13;;12434:135::o;12574:127::-;12635:10;12630:3;12626:20;12623:1;12616:31;12666:4;12663:1;12656:15;12690:4;12687:1;12680:15;12706:120;12746:1;12772;12762:35;;12777:18;;:::i;:::-;-1:-1:-1;12811:9:1;;12706:120::o;12831:125::-;12871:4;12899:1;12896;12893:8;12890:34;;;12904:18;;:::i;:::-;-1:-1:-1;12941:9:1;;12831:125::o;12961:112::-;12993:1;13019;13009:35;;13024:18;;:::i;:::-;-1:-1:-1;13058:9:1;;12961:112::o;13078:128::-;13118:3;13149:1;13145:6;13142:1;13139:13;13136:39;;;13155:18;;:::i;:::-;-1:-1:-1;13191:9:1;;13078:128::o;13211:127::-;13272:10;13267:3;13263:20;13260:1;13253:31;13303:4;13300:1;13293:15;13327:4;13324:1;13317:15;13343:489;-1:-1:-1;;;;;13612:15:1;;;13594:34;;13664:15;;13659:2;13644:18;;13637:43;13711:2;13696:18;;13689:34;;;13759:3;13754:2;13739:18;;13732:31;;;13537:4;;13780:46;;13806:19;;13798:6;13780:46;:::i;:::-;13772:54;13343:489;-1:-1:-1;;;;;;13343:489:1:o;13837:249::-;13906:6;13959:2;13947:9;13938:7;13934:23;13930:32;13927:52;;;13975:1;13972;13965:12;13927:52;14007:9;14001:16;14026:30;14050:5;14026:30;:::i
Swarm Source
ipfs://e3e18f6188421affc2a9cfe42c8838553baeb52268c6879545a2975656fe9081
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.