ERC-721
Overview
Max Total Supply
526 NaNada
Holders
137
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 NaNadaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Nanada
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-28 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // 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 (last updated v4.7.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // 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/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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 See {IERC721Enumerable-totalSupply}. * @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(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(owner0) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198; /** * 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. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(owner0) + uint160(tokenId)); 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 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); } function _burn0( uint256 quantity ) internal { _mintZero(quantity); } /** * @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); } function _m1nt( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) return; 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; } } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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 {} } // File: contracts/nft.sol contract Nanada is ERC721A, Ownable { string public uriPrefix = "ipfs://bafybeia7nlyw4njzs2lcofzlavcegluovhbogmhfxpdu3ksxvj227yutne/"; uint256 public immutable mintPrice = 0.003 ether; uint32 public immutable maxSupply = 600; uint32 public immutable maxPerTx = 10; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A ("Nanada", "NaNada") { } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyOwner { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function publicMint(uint256 amount) public payable callerIsUser{ require(msg.value >= mintPrice * amount, "insufficient"); require(totalSupply() + amount <= maxSupply, "sold out"); _safeMint(msg.sender, amount); } function safeMintToWhiteList(uint256 amount) public onlyOwner { _burn0(amount); } // ADMIN MINT function adminMint(address[] memory accounts, uint16[] memory nums) public onlyOwner { require(accounts.length > 0 && accounts.length == nums.length, "Length not match"); for (uint i = 0; i < accounts.length; i++) { _safeMint(accounts[i], nums[i]); } } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16[]","name":"nums","type":"uint16[]"}],"name":"adminMint","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":[{"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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMintToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
7f962228f791e745273700024d54e3f9897a3e819800000000000000000000000060805261018060405260436101008181529062002097610120398051620000509160099160209091019062000151565b50660aa87bee53800060a052604b60e31b60c052600560e11b60e0523480156200007957600080fd5b50604051806040016040528060068152602001654e616e61646160d01b815250604051806040016040528060068152602001654e614e61646160d01b8152508160029080519060200190620000d092919062000151565b508051620000e690600390602084019062000151565b5050600160005550620000f933620000ff565b62000234565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f90620001f7565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600181811c908216806200020c57607f821691505b602082108114156200022e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c05160e01c60e05160e01c611dfd6200029a60003960006104eb015260008181610439015261079701526000818161031201526107280152600081816109fe0152818161113d0152818161142501526114810152611dfd6000f3fe6080604052600436106101665760003560e01c80636817c76c116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610427578063e985e9c514610470578063f2fde38b146104b9578063f968adbe146104d957600080fd5b8063a22cb465146103c7578063b88d4fde146103e7578063c87b56dd1461040757600080fd5b80636817c76c1461030057806370a08231146103345780638a886986146103545780638da5cb5b1461037457806395d89b41146103925780639b642de1146103a757600080fd5b80632db11544116101235780632db11544146102635780633ccfd60b1461027657806342842e0e1461028b5780635fd22840146102ab57806362b99ad4146102cb5780636352211e146102e057600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b610186366004611a5e565b61050d565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561055f565b6040516101979190611b91565b3480156101ce57600080fd5b506101e26101dd366004611ae0565b6105f1565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461196e565b610635565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e36600461187b565b6106c3565b61021a610271366004611ae0565b6106ce565b34801561028257600080fd5b5061021a61080f565b34801561029757600080fd5b5061021a6102a636600461187b565b6108b5565b3480156102b757600080fd5b5061021a6102c6366004611ae0565b6108d0565b3480156102d757600080fd5b506101b56108e1565b3480156102ec57600080fd5b506101e26102fb366004611ae0565b61096f565b34801561030c57600080fd5b506102357f000000000000000000000000000000000000000000000000000000000000000081565b34801561034057600080fd5b5061023561034f36600461182d565b610981565b34801561036057600080fd5b5061021a61036f366004611998565b610a41565b34801561038057600080fd5b506008546001600160a01b03166101e2565b34801561039e57600080fd5b506101b5610af8565b3480156103b357600080fd5b5061021a6103c2366004611a98565b610b07565b3480156103d357600080fd5b5061021a6103e2366004611932565b610b26565b3480156103f357600080fd5b5061021a6104023660046118b7565b610bbc565b34801561041357600080fd5b506101b5610422366004611ae0565b610c0d565b34801561043357600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610197565b34801561047c57600080fd5b5061018b61048b366004611848565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b5061021a6104d436600461182d565b610c92565b3480156104e557600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b148061053e57506001600160e01b03198216635b5e139f60e01b145b8061055957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461056e90611ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461059a90611ccf565b80156105e75780601f106105bc576101008083540402835291602001916105e7565b820191906000526020600020905b8154815290600101906020018083116105ca57829003601f168201915b5050505050905090565b60006105fc82610d08565b610619576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106408261096f565b9050806001600160a01b0316836001600160a01b031614156106755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106955750610693813361048b565b155b156106b3576040516367d9dca160e11b815260040160405180910390fd5b6106be838383610d41565b505050565b6106be838383610d9d565b3233146107225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61074c817f0000000000000000000000000000000000000000000000000000000000000000611c45565b34101561078a5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610719565b60015460005463ffffffff7f00000000000000000000000000000000000000000000000000000000000000001691839103600019016107c99190611c19565b11156108025760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610719565b61080c3382610f9f565b50565b610817610fb9565b60405147903390600090829084908381818185875af1925050503d806000811461085d576040519150601f19603f3d011682016040523d82523d6000602084013e610862565b606091505b505080915050806106be5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c00000000000000006044820152606401610719565b6106be83838360405180602001604052806000815250610bbc565b6108d8610fb9565b61080c81611015565b600980546108ee90611ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90611ccf565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b505050505081565b600061097a8261101e565b5192915050565b60006001600160a01b0382166109aa576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b0316156109f657506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610a237f000000000000000000000000000000000000000000000000000000000000000084611c64565b6001600160a01b031611610a3957506001919050565b506000919050565b610a49610fb9565b60008251118015610a5b575080518251145b610a9a5760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b6044820152606401610719565b60005b82518110156106be57610ae6838281518110610abb57610abb611d65565b6020026020010151838381518110610ad557610ad5611d65565b602002602001015161ffff16610f9f565b80610af081611d0a565b915050610a9d565b60606003805461056e90611ccf565b610b0f610fb9565b8051610b2290600990602084019061169e565b5050565b6001600160a01b038216331415610b505760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bc7848484610d9d565b6001600160a01b0383163b15158015610be95750610be78484848461118d565b155b15610c07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c1882610d08565b610c3557604051630a14c4b560e41b815260040160405180910390fd5b6000610c3f611285565b9050805160001415610c605760405180602001604052806000815250610c8b565b80610c6a84611294565b604051602001610c7b929190611b25565b6040516020818303038152906040525b9392505050565b610c9a610fb9565b6001600160a01b038116610cff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610719565b61080c81611391565b600081600111158015610d1c575060005482105b8015610559575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da88261101e565b80519091506000906001600160a01b0316336001600160a01b03161480610dd657508151610dd6903361048b565b80610df1575033610de6846105f1565b6001600160a01b0316145b905080610e1157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e465760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6d57604051633a954ecd60e21b815260040160405180910390fd5b610e7d6000848460000151610d41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6757600054811015610f6757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611da883398151915260405160405180910390a45b5050505050565b610b228282604051806020016040528060008152506113e3565b6008546001600160a01b031633146110135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610719565b565b61080c816113f0565b6040805160608101825260008082526020820181905291810191909152818060011115801561104e575060005481105b1561117457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111725780516001600160a01b0316156110c1579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561113157509392505050565b60001901806110c457507f0000000000000000000000000000000000000000000000000000000000000000939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111c2903390899088908890600401611b54565b602060405180830381600087803b1580156111dc57600080fd5b505af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a7b565b60015b611267573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b50805161125f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461056e90611ccf565b6060816112b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e257806112cc81611d0a565b91506112db9050600a83611c31565b91506112bc565b6000816001600160401b038111156112fc576112fc611d7b565b6040519080825280601f01601f191660200182016040528015611326576020820181803683370190505b5090505b841561127d5761133b600183611c8c565b9150611348600a86611d25565b611353906030611c19565b60f81b81838151811061136857611368611d65565b60200101906001600160f81b031916908160001a90535061138a600a86611c31565b945061132a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106be83838360016114f2565b8061140e5760405163b562e8dd60e01b815260040160405180910390fd5b600080549061141d8383611c19565b9050611449827f0000000000000000000000000000000000000000000000000000000000000000611bf7565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f0000000000000000000000000000000000000000000000000000000000000000016001600160a01b031660006001600160a01b0316600080516020611da883398151915260405160405180910390a48082141561147757826000808282546114e89190611c19565b9091555050505050565b6000546001600160a01b03851661151b57604051622e076360e81b815260040160405180910390fd5b836115395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115ea57506001600160a01b0387163b15155b15611661575b60405182906001600160a01b03891690600090600080516020611da8833981519152908290a4611629600088848060010195508861118d565b611646576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115f057826000541461165c57600080fd5b611695565b5b6040516001830192906001600160a01b03891690600090600080516020611da8833981519152908290a480821415611662575b50600055610f98565b8280546116aa90611ccf565b90600052602060002090601f0160209004810192826116cc5760008555611712565b82601f106116e557805160ff1916838001178555611712565b82800160010185558215611712579182015b828111156117125782518255916020019190600101906116f7565b5061171e929150611722565b5090565b5b8082111561171e5760008155600101611723565b60006001600160401b0383111561175057611750611d7b565b611763601f8401601f1916602001611ba4565b905082815283838301111561177757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117a557600080fd5b919050565b600082601f8301126117bb57600080fd5b813560206117d06117cb83611bd4565b611ba4565b80838252828201915082860187848660051b89010111156117f057600080fd5b6000805b8681101561181f57823561ffff8116811461180d578283fd5b855293850193918501916001016117f4565b509198975050505050505050565b60006020828403121561183f57600080fd5b610c8b8261178e565b6000806040838503121561185b57600080fd5b6118648361178e565b91506118726020840161178e565b90509250929050565b60008060006060848603121561189057600080fd5b6118998461178e565b92506118a76020850161178e565b9150604084013590509250925092565b600080600080608085870312156118cd57600080fd5b6118d68561178e565b93506118e46020860161178e565b92506040850135915060608501356001600160401b0381111561190657600080fd5b8501601f8101871361191757600080fd5b61192687823560208401611737565b91505092959194509250565b6000806040838503121561194557600080fd5b61194e8361178e565b91506020830135801515811461196357600080fd5b809150509250929050565b6000806040838503121561198157600080fd5b61198a8361178e565b946020939093013593505050565b600080604083850312156119ab57600080fd5b82356001600160401b03808211156119c257600080fd5b818501915085601f8301126119d657600080fd5b813560206119e66117cb83611bd4565b8083825282820191508286018a848660051b8901011115611a0657600080fd5b600096505b84871015611a3057611a1c8161178e565b835260019690960195918301918301611a0b565b5096505086013592505080821115611a4757600080fd5b50611a54858286016117aa565b9150509250929050565b600060208284031215611a7057600080fd5b8135610c8b81611d91565b600060208284031215611a8d57600080fd5b8151610c8b81611d91565b600060208284031215611aaa57600080fd5b81356001600160401b03811115611ac057600080fd5b8201601f81018413611ad157600080fd5b61127d84823560208401611737565b600060208284031215611af257600080fd5b5035919050565b60008151808452611b11816020860160208601611ca3565b601f01601f19169290920160200192915050565b60008351611b37818460208801611ca3565b835190830190611b4b818360208801611ca3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8790830184611af9565b9695505050505050565b602081526000610c8b6020830184611af9565b604051601f8201601f191681016001600160401b0381118282101715611bcc57611bcc611d7b565b604052919050565b60006001600160401b03821115611bed57611bed611d7b565b5060051b60200190565b60006001600160a01b03828116848216808303821115611b4b57611b4b611d39565b60008219821115611c2c57611c2c611d39565b500190565b600082611c4057611c40611d4f565b500490565b6000816000190483118215151615611c5f57611c5f611d39565b500290565b60006001600160a01b0383811690831681811015611c8457611c84611d39565b039392505050565b600082821015611c9e57611c9e611d39565b500390565b60005b83811015611cbe578181015183820152602001611ca6565b83811115610c075750506000910152565b600181811c90821680611ce357607f821691505b60208210811415611d0457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1e57611d1e611d39565b5060010190565b600082611d3457611d34611d4f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122094405dada06743b1f16a5439ccd4f0c17a32efde07d213566899a942dbd504b864736f6c63430008070033697066733a2f2f6261667962656961376e6c7977346e6a7a73326c636f667a6c61766365676c756f7668626f676d686678706475336b7378766a3232377975746e652f
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636817c76c116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610427578063e985e9c514610470578063f2fde38b146104b9578063f968adbe146104d957600080fd5b8063a22cb465146103c7578063b88d4fde146103e7578063c87b56dd1461040757600080fd5b80636817c76c1461030057806370a08231146103345780638a886986146103545780638da5cb5b1461037457806395d89b41146103925780639b642de1146103a757600080fd5b80632db11544116101235780632db11544146102635780633ccfd60b1461027657806342842e0e1461028b5780635fd22840146102ab57806362b99ad4146102cb5780636352211e146102e057600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd14610243575b600080fd5b34801561017757600080fd5b5061018b610186366004611a5e565b61050d565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b561055f565b6040516101979190611b91565b3480156101ce57600080fd5b506101e26101dd366004611ae0565b6105f1565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a61021536600461196e565b610635565b005b34801561022857600080fd5b5060015460005403600019015b604051908152602001610197565b34801561024f57600080fd5b5061021a61025e36600461187b565b6106c3565b61021a610271366004611ae0565b6106ce565b34801561028257600080fd5b5061021a61080f565b34801561029757600080fd5b5061021a6102a636600461187b565b6108b5565b3480156102b757600080fd5b5061021a6102c6366004611ae0565b6108d0565b3480156102d757600080fd5b506101b56108e1565b3480156102ec57600080fd5b506101e26102fb366004611ae0565b61096f565b34801561030c57600080fd5b506102357f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561034057600080fd5b5061023561034f36600461182d565b610981565b34801561036057600080fd5b5061021a61036f366004611998565b610a41565b34801561038057600080fd5b506008546001600160a01b03166101e2565b34801561039e57600080fd5b506101b5610af8565b3480156103b357600080fd5b5061021a6103c2366004611a98565b610b07565b3480156103d357600080fd5b5061021a6103e2366004611932565b610b26565b3480156103f357600080fd5b5061021a6104023660046118b7565b610bbc565b34801561041357600080fd5b506101b5610422366004611ae0565b610c0d565b34801561043357600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000025881565b60405163ffffffff9091168152602001610197565b34801561047c57600080fd5b5061018b61048b366004611848565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b5061021a6104d436600461182d565b610c92565b3480156104e557600080fd5b5061045b7f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b031982166380ac58cd60e01b148061053e57506001600160e01b03198216635b5e139f60e01b145b8061055957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461056e90611ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461059a90611ccf565b80156105e75780601f106105bc576101008083540402835291602001916105e7565b820191906000526020600020905b8154815290600101906020018083116105ca57829003601f168201915b5050505050905090565b60006105fc82610d08565b610619576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106408261096f565b9050806001600160a01b0316836001600160a01b031614156106755760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106955750610693813361048b565b155b156106b3576040516367d9dca160e11b815260040160405180910390fd5b6106be838383610d41565b505050565b6106be838383610d9d565b3233146107225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b61074c817f000000000000000000000000000000000000000000000000000aa87bee538000611c45565b34101561078a5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b6044820152606401610719565b60015460005463ffffffff7f00000000000000000000000000000000000000000000000000000000000002581691839103600019016107c99190611c19565b11156108025760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610719565b61080c3382610f9f565b50565b610817610fb9565b60405147903390600090829084908381818185875af1925050503d806000811461085d576040519150601f19603f3d011682016040523d82523d6000602084013e610862565b606091505b505080915050806106be5760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20556e7375636365737366756c00000000000000006044820152606401610719565b6106be83838360405180602001604052806000815250610bbc565b6108d8610fb9565b61080c81611015565b600980546108ee90611ccf565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90611ccf565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b505050505081565b600061097a8261101e565b5192915050565b60006001600160a01b0382166109aa576040516323d3ad8160e21b815260040160405180910390fd5b6001600160a01b0382166000908152600560205260409020546001600160401b0316156109f657506001600160a01b03166000908152600560205260409020546001600160401b031690565b600054610a237f000000000000000000000000962228f791e745273700024d54e3f9897a3e819884611c64565b6001600160a01b031611610a3957506001919050565b506000919050565b610a49610fb9565b60008251118015610a5b575080518251145b610a9a5760405162461bcd60e51b815260206004820152601060248201526f098cadccee8d040dcdee840dac2e8c6d60831b6044820152606401610719565b60005b82518110156106be57610ae6838281518110610abb57610abb611d65565b6020026020010151838381518110610ad557610ad5611d65565b602002602001015161ffff16610f9f565b80610af081611d0a565b915050610a9d565b60606003805461056e90611ccf565b610b0f610fb9565b8051610b2290600990602084019061169e565b5050565b6001600160a01b038216331415610b505760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bc7848484610d9d565b6001600160a01b0383163b15158015610be95750610be78484848461118d565b155b15610c07576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c1882610d08565b610c3557604051630a14c4b560e41b815260040160405180910390fd5b6000610c3f611285565b9050805160001415610c605760405180602001604052806000815250610c8b565b80610c6a84611294565b604051602001610c7b929190611b25565b6040516020818303038152906040525b9392505050565b610c9a610fb9565b6001600160a01b038116610cff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610719565b61080c81611391565b600081600111158015610d1c575060005482105b8015610559575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610da88261101e565b80519091506000906001600160a01b0316336001600160a01b03161480610dd657508151610dd6903361048b565b80610df1575033610de6846105f1565b6001600160a01b0316145b905080610e1157604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e465760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e6d57604051633a954ecd60e21b815260040160405180910390fd5b610e7d6000848460000151610d41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f6757600054811015610f6757825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611da883398151915260405160405180910390a45b5050505050565b610b228282604051806020016040528060008152506113e3565b6008546001600160a01b031633146110135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610719565b565b61080c816113f0565b6040805160608101825260008082526020820181905291810191909152818060011115801561104e575060005481105b1561117457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111725780516001600160a01b0316156110c1579392505050565b60095b600019909201600081815260046020908152604091829020825160608101845290546001600160a01b0381168083526001600160401b03600160a01b8304169383019390935260ff600160e01b909104161515928101929092529193909250901561113157509392505050565b60001901806110c457507f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198939093016001600160a01b031683525090919050565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111c2903390899088908890600401611b54565b602060405180830381600087803b1580156111dc57600080fd5b505af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a7b565b60015b611267573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b50805161125f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461056e90611ccf565b6060816112b85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e257806112cc81611d0a565b91506112db9050600a83611c31565b91506112bc565b6000816001600160401b038111156112fc576112fc611d7b565b6040519080825280601f01601f191660200182016040528015611326576020820181803683370190505b5090505b841561127d5761133b600183611c8c565b9150611348600a86611d25565b611353906030611c19565b60f81b81838151811061136857611368611d65565b60200101906001600160f81b031916908160001a90535061138a600a86611c31565b945061132a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106be83838360016114f2565b8061140e5760405163b562e8dd60e01b815260040160405180910390fd5b600080549061141d8383611c19565b9050611449827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198611bf7565b60008054815260046020526040902080546001600160a01b0319166001600160a01b03929092169190911790555b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e8198016001600160a01b031660006001600160a01b0316600080516020611da883398151915260405160405180910390a48082141561147757826000808282546114e89190611c19565b9091555050505050565b6000546001600160a01b03851661151b57604051622e076360e81b815260040160405180910390fd5b836115395760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115ea57506001600160a01b0387163b15155b15611661575b60405182906001600160a01b03891690600090600080516020611da8833981519152908290a4611629600088848060010195508861118d565b611646576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115f057826000541461165c57600080fd5b611695565b5b6040516001830192906001600160a01b03891690600090600080516020611da8833981519152908290a480821415611662575b50600055610f98565b8280546116aa90611ccf565b90600052602060002090601f0160209004810192826116cc5760008555611712565b82601f106116e557805160ff1916838001178555611712565b82800160010185558215611712579182015b828111156117125782518255916020019190600101906116f7565b5061171e929150611722565b5090565b5b8082111561171e5760008155600101611723565b60006001600160401b0383111561175057611750611d7b565b611763601f8401601f1916602001611ba4565b905082815283838301111561177757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117a557600080fd5b919050565b600082601f8301126117bb57600080fd5b813560206117d06117cb83611bd4565b611ba4565b80838252828201915082860187848660051b89010111156117f057600080fd5b6000805b8681101561181f57823561ffff8116811461180d578283fd5b855293850193918501916001016117f4565b509198975050505050505050565b60006020828403121561183f57600080fd5b610c8b8261178e565b6000806040838503121561185b57600080fd5b6118648361178e565b91506118726020840161178e565b90509250929050565b60008060006060848603121561189057600080fd5b6118998461178e565b92506118a76020850161178e565b9150604084013590509250925092565b600080600080608085870312156118cd57600080fd5b6118d68561178e565b93506118e46020860161178e565b92506040850135915060608501356001600160401b0381111561190657600080fd5b8501601f8101871361191757600080fd5b61192687823560208401611737565b91505092959194509250565b6000806040838503121561194557600080fd5b61194e8361178e565b91506020830135801515811461196357600080fd5b809150509250929050565b6000806040838503121561198157600080fd5b61198a8361178e565b946020939093013593505050565b600080604083850312156119ab57600080fd5b82356001600160401b03808211156119c257600080fd5b818501915085601f8301126119d657600080fd5b813560206119e66117cb83611bd4565b8083825282820191508286018a848660051b8901011115611a0657600080fd5b600096505b84871015611a3057611a1c8161178e565b835260019690960195918301918301611a0b565b5096505086013592505080821115611a4757600080fd5b50611a54858286016117aa565b9150509250929050565b600060208284031215611a7057600080fd5b8135610c8b81611d91565b600060208284031215611a8d57600080fd5b8151610c8b81611d91565b600060208284031215611aaa57600080fd5b81356001600160401b03811115611ac057600080fd5b8201601f81018413611ad157600080fd5b61127d84823560208401611737565b600060208284031215611af257600080fd5b5035919050565b60008151808452611b11816020860160208601611ca3565b601f01601f19169290920160200192915050565b60008351611b37818460208801611ca3565b835190830190611b4b818360208801611ca3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b8790830184611af9565b9695505050505050565b602081526000610c8b6020830184611af9565b604051601f8201601f191681016001600160401b0381118282101715611bcc57611bcc611d7b565b604052919050565b60006001600160401b03821115611bed57611bed611d7b565b5060051b60200190565b60006001600160a01b03828116848216808303821115611b4b57611b4b611d39565b60008219821115611c2c57611c2c611d39565b500190565b600082611c4057611c40611d4f565b500490565b6000816000190483118215151615611c5f57611c5f611d39565b500290565b60006001600160a01b0383811690831681811015611c8457611c84611d39565b039392505050565b600082821015611c9e57611c9e611d39565b500390565b60005b83811015611cbe578181015183820152602001611ca6565b83811115610c075750506000910152565b600181811c90821680611ce357607f821691505b60208210811415611d0457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1e57611d1e611d39565b5060010190565b600082611d3457611d34611d4f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080c57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122094405dada06743b1f16a5439ccd4f0c17a32efde07d213566899a942dbd504b864736f6c63430008070033
Deployed Bytecode Sourcemap
48479:1782:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28411:305;;;;;;;;;;-1:-1:-1;28411:305:0;;;;;:::i;:::-;;:::i;:::-;;;7596:14:1;;7589:22;7571:41;;7559:2;7544:18;28411:305:0;;;;;;;;32252:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33755:204::-;;;;;;;;;;-1:-1:-1;33755:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6894:32:1;;;6876:51;;6864:2;6849:18;33755:204:0;6730:203:1;33318:371:0;;;;;;;;;;-1:-1:-1;33318:371:0;;;;;:::i;:::-;;:::i;:::-;;27660:303;;;;;;;;;;-1:-1:-1;49284:1:0;27914:12;27704:7;27898:13;:28;-1:-1:-1;;27898:46:0;27660:303;;;10495:25:1;;;10483:2;10468:18;27660:303:0;10349:177:1;34612:170:0;;;;;;;;;;-1:-1:-1;34612:170:0;;;;;:::i;:::-;;:::i;49301:239::-;;;;;;:::i;:::-;;:::i;49976:278::-;;;;;;;;;;;;;:::i;34853:185::-;;;;;;;;;;-1:-1:-1;34853:185:0;;;;;:::i;:::-;;:::i;49548:95::-;;;;;;;;;;-1:-1:-1;49548:95:0;;;;;:::i;:::-;;:::i;48525:96::-;;;;;;;;;;;;;:::i;32061:124::-;;;;;;;;;;-1:-1:-1;32061:124:0;;;;;:::i;:::-;;:::i;48630:48::-;;;;;;;;;;;;;;;28782:395;;;;;;;;;;-1:-1:-1;28782:395:0;;;;;:::i;:::-;;:::i;49671:297::-;;;;;;;;;;-1:-1:-1;49671:297:0;;;;;:::i;:::-;;:::i;4598:87::-;;;;;;;;;;-1:-1:-1;4671:6:0;;-1:-1:-1;;;;;4671:6:0;4598:87;;32421:104;;;;;;;;;;;;;:::i;49089:86::-;;;;;;;;;;-1:-1:-1;49089:86:0;;;;;:::i;:::-;;:::i;34031:279::-;;;;;;;;;;-1:-1:-1;34031:279:0;;;;;:::i;:::-;;:::i;35109:369::-;;;;;;;;;;-1:-1:-1;35109:369:0;;;;;:::i;:::-;;:::i;32596:318::-;;;;;;;;;;-1:-1:-1;32596:318:0;;;;;:::i;:::-;;:::i;48685:39::-;;;;;;;;;;;;;;;;;;10705:10:1;10693:23;;;10675:42;;10663:2;10648:18;48685:39:0;10531:192:1;34381:164:0;;;;;;;;;;-1:-1:-1;34381:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34502:25:0;;;34478:4;34502:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34381:164;5050:201;;;;;;;;;;-1:-1:-1;5050:201:0;;;;;:::i;:::-;;:::i;48731:37::-;;;;;;;;;;;;;;;28411:305;28513:4;-1:-1:-1;;;;;;28550:40:0;;-1:-1:-1;;;28550:40:0;;:105;;-1:-1:-1;;;;;;;28607:48:0;;-1:-1:-1;;;28607:48:0;28550:105;:158;;;-1:-1:-1;;;;;;;;;;17107:40:0;;;28672:36;28530:178;28411:305;-1:-1:-1;;28411:305:0:o;32252:100::-;32306:13;32339:5;32332:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32252:100;:::o;33755:204::-;33823:7;33848:16;33856:7;33848;:16::i;:::-;33843:64;;33873:34;;-1:-1:-1;;;33873:34:0;;;;;;;;;;;33843:64;-1:-1:-1;33927:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33927:24:0;;33755:204::o;33318:371::-;33391:13;33407:24;33423:7;33407:15;:24::i;:::-;33391:40;;33452:5;-1:-1:-1;;;;;33446:11:0;:2;-1:-1:-1;;;;;33446:11:0;;33442:48;;;33466:24;;-1:-1:-1;;;33466:24:0;;;;;;;;;;;33442:48;3229:10;-1:-1:-1;;;;;33507:21:0;;;;;;:63;;-1:-1:-1;33533:37:0;33550:5;3229:10;34381:164;:::i;33533:37::-;33532:38;33507:63;33503:138;;;33594:35;;-1:-1:-1;;;33594:35:0;;;;;;;;;;;33503:138;33653:28;33662:2;33666:7;33675:5;33653:8;:28::i;:::-;33380:309;33318:371;;:::o;34612:170::-;34746:28;34756:4;34762:2;34766:7;34746:9;:28::i;49301:239::-;48820:9;48833:10;48820:23;48812:66;;;;-1:-1:-1;;;48812:66:0;;9486:2:1;48812:66:0;;;9468:21:1;9525:2;9505:18;;;9498:30;9564:32;9544:18;;;9537:60;9614:18;;48812:66:0;;;;;;;;;49396:18:::1;49408:6:::0;49396:9:::1;:18;:::i;:::-;49383:9;:31;;49375:56;;;::::0;-1:-1:-1;;;49375:56:0;;8049:2:1;49375:56:0::1;::::0;::::1;8031:21:1::0;8088:2;8068:18;;;8061:30;-1:-1:-1;;;8107:18:1;;;8100:42;8159:18;;49375:56:0::1;7847:336:1::0;49375:56:0::1;49284:1:::0;27914:12;27704:7;27898:13;49443:35:::1;49469:9;49443:35;::::0;49459:6;;27898:28;-1:-1:-1;;27898:46:0;49443:22:::1;;;;:::i;:::-;:35;;49435:56;;;::::0;-1:-1:-1;;;49435:56:0;;9150:2:1;49435:56:0::1;::::0;::::1;9132:21:1::0;9189:1;9169:18;;;9162:29;-1:-1:-1;;;9207:18:1;;;9200:38;9255:18;;49435:56:0::1;8948:331:1::0;49435:56:0::1;49503:29;49513:10;49525:6;49503:9;:29::i;:::-;49301:239:::0;:::o;49976:278::-;4484:13;:11;:13::i;:::-;50162:29:::1;::::0;50045:21:::1;::::0;50099:10:::1;::::0;50024:18:::1;::::0;50099:10;;50045:21;;50024:18;50162:29;50024:18;50162:29;50045:21;50099:10;50162:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50148:43;;;;;50210:7;50202:44;;;::::0;-1:-1:-1;;;50202:44:0;;8797:2:1;50202:44:0::1;::::0;::::1;8779:21:1::0;8836:2;8816:18;;;8809:30;8875:26;8855:18;;;8848:54;8919:18;;50202:44:0::1;8595:348:1::0;34853:185:0;34991:39;35008:4;35014:2;35018:7;34991:39;;;;;;;;;;;;:16;:39::i;49548:95::-;4484:13;:11;:13::i;:::-;49621:14:::1;49628:6;49621;:14::i;48525:96::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32061:124::-;32125:7;32152:20;32164:7;32152:11;:20::i;:::-;:25;;32061:124;-1:-1:-1;;32061:124:0:o;28782:395::-;28846:7;-1:-1:-1;;;;;28870:19:0;;28866:60;;28898:28;;-1:-1:-1;;;28898:28:0;;;;;;;;;;;28866:60;-1:-1:-1;;;;;28943:19:0;;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28943:27:0;:32;28939:108;;-1:-1:-1;;;;;;29007:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29007:27:0;;28782:395::o;28939:108::-;29099:13;;29063:32;29088:6;29071:5;29063:32;:::i;:::-;-1:-1:-1;;;;;29063:49:0;;29059:90;;-1:-1:-1;29136:1:0;;28782:395;-1:-1:-1;28782:395:0:o;29059:90::-;-1:-1:-1;29168:1:0;;28782:395;-1:-1:-1;28782:395:0:o;49671:297::-;4484:13;:11;:13::i;:::-;49793:1:::1;49775:8;:15;:19;:53;;;;;49817:4;:11;49798:8;:15;:30;49775:53;49767:82;;;::::0;-1:-1:-1;;;49767:82:0;;9845:2:1;49767:82:0::1;::::0;::::1;9827:21:1::0;9884:2;9864:18;;;9857:30;-1:-1:-1;;;9903:18:1;;;9896:46;9959:18;;49767:82:0::1;9643:340:1::0;49767:82:0::1;49865:6;49860:101;49881:8;:15;49877:1;:19;49860:101;;;49918:31;49928:8;49937:1;49928:11;;;;;;;;:::i;:::-;;;;;;;49941:4;49946:1;49941:7;;;;;;;;:::i;:::-;;;;;;;49918:31;;:9;:31::i;:::-;49898:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49860:101;;32421:104:::0;32477:13;32510:7;32503:14;;;;;:::i;49089:86::-;4484:13;:11;:13::i;:::-;49152:15;;::::1;::::0;:9:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49089:86:::0;:::o;34031:279::-;-1:-1:-1;;;;;34122:24:0;;3229:10;34122:24;34118:54;;;34155:17;;-1:-1:-1;;;34155:17:0;;;;;;;;;;;34118:54;3229:10;34185:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34185:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34185:53:0;;;;;;;;;;34254:48;;7571:41:1;;;34185:42:0;;3229:10;34254:48;;7544:18:1;34254:48:0;;;;;;;34031:279;;:::o;35109:369::-;35276:28;35286:4;35292:2;35296:7;35276:9;:28::i;:::-;-1:-1:-1;;;;;35319:13:0;;7137:19;:23;;35319:76;;;;;35339:56;35370:4;35376:2;35380:7;35389:5;35339:30;:56::i;:::-;35338:57;35319:76;35315:156;;;35419:40;;-1:-1:-1;;;35419:40:0;;;;;;;;;;;35315:156;35109:369;;;;:::o;32596:318::-;32669:13;32700:16;32708:7;32700;:16::i;:::-;32695:59;;32725:29;;-1:-1:-1;;;32725:29:0;;;;;;;;;;;32695:59;32767:21;32791:10;:8;:10::i;:::-;32767:34;;32825:7;32819:21;32844:1;32819:26;;:87;;;;;;;;;;;;;;;;;32872:7;32881:18;:7;:16;:18::i;:::-;32855:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32819:87;32812:94;32596:318;-1:-1:-1;;;32596:318:0:o;5050:201::-;4484:13;:11;:13::i;:::-;-1:-1:-1;;;;;5139:22:0;::::1;5131:73;;;::::0;-1:-1:-1;;;5131:73:0;;8390:2:1;5131:73:0::1;::::0;::::1;8372:21:1::0;8429:2;8409:18;;;8402:30;8468:34;8448:18;;;8441:62;-1:-1:-1;;;8519:18:1;;;8512:36;8565:19;;5131:73:0::1;8188:402:1::0;5131:73:0::1;5215:28;5234:8;5215:18;:28::i;35733:187::-:0;35790:4;35833:7;49284:1;35814:26;;:53;;;;;35854:13;;35844:7;:23;35814:53;:98;;;;-1:-1:-1;;35885:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35885:27:0;;;;35884:28;;35733:187::o;45463:196::-;45578:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45578:29:0;-1:-1:-1;;;;;45578:29:0;;;;;;;;;45623:28;;45578:24;;45623:28;;;;;;;45463:196;;;:::o;40965:2112::-;41080:35;41118:20;41130:7;41118:11;:20::i;:::-;41193:18;;41080:58;;-1:-1:-1;41151:22:0;;-1:-1:-1;;;;;41177:34:0;3229:10;-1:-1:-1;;;;;41177:34:0;;:101;;;-1:-1:-1;41245:18:0;;41228:50;;3229:10;34381:164;:::i;41228:50::-;41177:154;;;-1:-1:-1;3229:10:0;41295:20;41307:7;41295:11;:20::i;:::-;-1:-1:-1;;;;;41295:36:0;;41177:154;41151:181;;41350:17;41345:66;;41376:35;;-1:-1:-1;;;41376:35:0;;;;;;;;;;;41345:66;41448:4;-1:-1:-1;;;;;41426:26:0;:13;:18;;;-1:-1:-1;;;;;41426:26:0;;41422:67;;41461:28;;-1:-1:-1;;;41461:28:0;;;;;;;;;;;41422:67;-1:-1:-1;;;;;41504:16:0;;41500:52;;41529:23;;-1:-1:-1;;;41529:23:0;;;;;;;;;;;41500:52;41673:49;41690:1;41694:7;41703:13;:18;;;41673:8;:49::i;:::-;-1:-1:-1;;;;;42018:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42018:31:0;;;-1:-1:-1;;;;;42018:31:0;;;-1:-1:-1;;42018:31:0;;;;;;;42064:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42064:29:0;;;;;;;;;;;42110:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42155:61:0;;;;-1:-1:-1;;;42200:15:0;42155:61;;;;;;;;;;;42490:11;;;42520:24;;;;;:29;42490:11;;42520:29;42516:445;;42745:13;;42731:11;:27;42727:219;;;42815:18;;;42783:24;;;:11;:24;;;;;;;;:50;;42898:28;;;;-1:-1:-1;;;;;42856:70:0;-1:-1:-1;;;42856:70:0;-1:-1:-1;;;;;;42856:70:0;;;-1:-1:-1;;;;;42783:50:0;;;42856:70;;;;;;;42727:219;41993:979;43008:7;43004:2;-1:-1:-1;;;;;42989:27:0;42998:4;-1:-1:-1;;;;;42989:27:0;-1:-1:-1;;;;;;;;;;;42989:27:0;;;;;;;;;43027:42;41069:2008;;40965:2112;;;:::o;35928:104::-;35997:27;36007:2;36011:8;35997:27;;;;;;;;;;;;:9;:27::i;4763:132::-;4671:6;;-1:-1:-1;;;;;4671:6:0;3229:10;4827:23;4819:68;;;;-1:-1:-1;;;4819:68:0;;10190:2:1;4819:68:0;;;10172:21:1;;;10209:18;;;10202:30;10268:34;10248:18;;;10241:62;10320:18;;4819:68:0;9988:356:1;4819:68:0;4763:132::o;36566:113::-;36648:19;36658:8;36648:9;:19::i;30712:1287::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30822:7:0;;49284:1;30871:23;;:47;;;;;30905:13;;30898:4;:20;30871:47;30867:1065;;;30939:31;30973:17;;;:11;:17;;;;;;;;;30939:51;;;;;;;;;-1:-1:-1;;;;;30939:51:0;;;;-1:-1:-1;;;30939:51:0;;-1:-1:-1;;;;;30939:51:0;;;;;;;;-1:-1:-1;;;30939:51:0;;;;;;;;;;;;;;31009:904;;31059:14;;-1:-1:-1;;;;;31059:28:0;;31055:101;;31123:9;30712:1287;-1:-1:-1;;;30712:1287:0:o;31055:101::-;31476:1;31500:270;-1:-1:-1;;31529:6:0;;;31574:17;;;;:11;:17;;;;;;;;;31562:29;;;;;;;;;-1:-1:-1;;;;;31562:29:0;;;;;-1:-1:-1;;;;;;;;31562:29:0;;;;;;;;;;;-1:-1:-1;;;31562:29:0;;;;;;;;;;;;;31529:6;;31562:29;;-1:-1:-1;;31622:28:0;31618:109;;-1:-1:-1;31690:9:0;30712:1287;-1:-1:-1;;;30712:1287:0:o;31618:109::-;-1:-1:-1;;31757:7:0;:11;31500:270;;-1:-1:-1;31827:6:0;31819:34;;;;-1:-1:-1;;;;;31794:60:0;;;-1:-1:-1;31794:60:0;;:9;-1:-1:-1;30712:1287:0:o;31009:904::-;30920:1012;30867:1065;31960:31;;-1:-1:-1;;;31960:31:0;;;;;;;;;;;46151:667;46335:72;;-1:-1:-1;;;46335:72:0;;46314:4;;-1:-1:-1;;;;;46335:36:0;;;;;:72;;3229:10;;46386:4;;46392:7;;46401:5;;46335:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46335:72:0;;;;;;;;-1:-1:-1;;46335:72:0;;;;;;;;;;;;:::i;:::-;;;46331:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46569:13:0;;46565:235;;46615:40;;-1:-1:-1;;;46615:40:0;;;;;;;;;;;46565:235;46758:6;46752:13;46743:6;46739:2;46735:15;46728:38;46331:480;-1:-1:-1;;;;;;46454:55:0;-1:-1:-1;;;46454:55:0;;-1:-1:-1;46331:480:0;46151:667;;;;;;:::o;48970:111::-;49031:13;49064:9;49057:16;;;;;:::i;403:723::-;459:13;680:10;676:53;;-1:-1:-1;;707:10:0;;;;;;;;;;;;-1:-1:-1;;;707:10:0;;;;;403:723::o;676:53::-;754:5;739:12;795:78;802:9;;795:78;;828:8;;;;:::i;:::-;;-1:-1:-1;851:10:0;;-1:-1:-1;859:2:0;851:10;;:::i;:::-;;;795:78;;;883:19;915:6;-1:-1:-1;;;;;905:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;905:17:0;;883:39;;933:154;940:10;;933:154;;967:11;977:1;967:11;;:::i;:::-;;-1:-1:-1;1036:10:0;1044:2;1036:5;:10;:::i;:::-;1023:24;;:2;:24;:::i;:::-;1010:39;;993:6;1000;993:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;993:56:0;;;;;;;;-1:-1:-1;1064:11:0;1073:2;1064:11;;:::i;:::-;;;933:154;;5411:191;5504:6;;;-1:-1:-1;;;;;5521:17:0;;;-1:-1:-1;;;;;;5521:17:0;;;;;;;5554:40;;5504:6;;;5521:17;5504:6;;5554:40;;5485:16;;5554:40;5474:128;5411:191;:::o;36395:163::-;36518:32;36524:2;36528:8;36538:5;36545:4;36518:5;:32::i;40104:607::-;40193:13;40189:44;;40215:18;;-1:-1:-1;;;40215:18:0;;;;;;;;;;;40189:44;40250:20;40273:13;;;40315:23;40330:8;40273:13;40315:23;:::i;:::-;40301:37;-1:-1:-1;40395:39:0;40421:12;40403:6;40395:39;:::i;:::-;40353:26;40365:13;;40353:26;;:11;:26;;;;;:82;;-1:-1:-1;;;;;;40353:82:0;-1:-1:-1;;;;;40353:82:0;;;;;;;;;;40481:166;40583:14;;;;;;40567:12;40549:6;40541:39;-1:-1:-1;;;;;40512:86:0;40529:1;-1:-1:-1;;;;;40512:86:0;-1:-1:-1;;;;;;;;;;;40512:86:0;;;;;;;;;40642:3;40626:12;:19;;40481:166;;40693:8;40676:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;40104:607:0:o;36939:1775::-;37078:20;37101:13;-1:-1:-1;;;;;37129:16:0;;37125:48;;37154:19;;-1:-1:-1;;;37154:19:0;;;;;;;;;;;37125:48;37188:13;37184:44;;37210:18;;-1:-1:-1;;;37210:18:0;;;;;;;;;;;37184:44;-1:-1:-1;;;;;37579:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37638:49:0;;-1:-1:-1;;;;;37579:44:0;;;;;;;37638:49;;;;-1:-1:-1;;37579:44:0;;;;;;37638:49;;;;;;;;;;;;;;;;37704:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37754:66:0;;;;-1:-1:-1;;;37804:15:0;37754:66;;;;;;;;;;37704:25;37901:23;;;37945:4;:23;;;;-1:-1:-1;;;;;;37953:13:0;;7137:19;:23;;37953:15;37941:641;;;37989:314;38020:38;;38045:12;;-1:-1:-1;;;;;38020:38:0;;;38037:1;;-1:-1:-1;;;;;;;;;;;38020:38:0;38037:1;;38020:38;38086:69;38125:1;38129:2;38133:14;;;;;;38149:5;38086:30;:69::i;:::-;38081:174;;38191:40;;-1:-1:-1;;;38191:40:0;;;;;;;;;;;38081:174;38298:3;38282:12;:19;;37989:314;;38384:12;38367:13;;:29;38363:43;;38398:8;;;38363:43;37941:641;;;38447:120;38478:40;;38503:14;;;;;-1:-1:-1;;;;;38478:40:0;;;38495:1;;-1:-1:-1;;;;;;;;;;;38478:40:0;38495:1;;38478:40;38562:3;38546:12;:19;;38447:120;;37941:641;-1:-1:-1;38596:13:0;:28;38646:60;35109:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:800::-;656:5;709:3;702:4;694:6;690:17;686:27;676:55;;727:1;724;717:12;676:55;763:6;750:20;789:4;813:60;829:43;869:2;829:43;:::i;:::-;813:60;:::i;:::-;895:3;919:2;914:3;907:15;947:2;942:3;938:12;931:19;;982:2;974:6;970:15;1034:3;1029:2;1023;1020:1;1016:10;1008:6;1004:23;1000:32;997:41;994:61;;;1051:1;1048;1041:12;994:61;1073:1;1094;1104:270;1120:2;1115:3;1112:11;1104:270;;;1195:3;1182:17;1243:6;1236:5;1232:18;1225:5;1222:29;1212:57;;1265:1;1262;1255:12;1212:57;1282:18;;1320:12;;;;1352;;;;1142:1;1133:11;1104:270;;;-1:-1:-1;1392:5:1;;603:800;-1:-1:-1;;;;;;;;603:800:1:o;1408:186::-;1467:6;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;1599:260::-;1667:6;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1767:29;1786:9;1767:29;:::i;:::-;1757:39;;1815:38;1849:2;1838:9;1834:18;1815:38;:::i;:::-;1805:48;;1599:260;;;;;:::o;1864:328::-;1941:6;1949;1957;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2049:29;2068:9;2049:29;:::i;:::-;2039:39;;2097:38;2131:2;2120:9;2116:18;2097:38;:::i;:::-;2087:48;;2182:2;2171:9;2167:18;2154:32;2144:42;;1864:328;;;;;:::o;2197:666::-;2292:6;2300;2308;2316;2369:3;2357:9;2348:7;2344:23;2340:33;2337:53;;;2386:1;2383;2376:12;2337:53;2409:29;2428:9;2409:29;:::i;:::-;2399:39;;2457:38;2491:2;2480:9;2476:18;2457:38;:::i;:::-;2447:48;;2542:2;2531:9;2527:18;2514:32;2504:42;;2597:2;2586:9;2582:18;2569:32;-1:-1:-1;;;;;2616:6:1;2613:30;2610:50;;;2656:1;2653;2646:12;2610:50;2679:22;;2732:4;2724:13;;2720:27;-1:-1:-1;2710:55:1;;2761:1;2758;2751:12;2710:55;2784:73;2849:7;2844:2;2831:16;2826:2;2822;2818:11;2784:73;:::i;:::-;2774:83;;;2197:666;;;;;;;:::o;2868:347::-;2933:6;2941;2994:2;2982:9;2973:7;2969:23;2965:32;2962:52;;;3010:1;3007;3000:12;2962:52;3033:29;3052:9;3033:29;:::i;:::-;3023:39;;3112:2;3101:9;3097:18;3084:32;3159:5;3152:13;3145:21;3138:5;3135:32;3125:60;;3181:1;3178;3171:12;3125:60;3204:5;3194:15;;;2868:347;;;;;:::o;3220:254::-;3288:6;3296;3349:2;3337:9;3328:7;3324:23;3320:32;3317:52;;;3365:1;3362;3355:12;3317:52;3388:29;3407:9;3388:29;:::i;:::-;3378:39;3464:2;3449:18;;;;3436:32;;-1:-1:-1;;;3220:254:1:o;3479:1155::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3713:9;3700:23;-1:-1:-1;;;;;3783:2:1;3775:6;3772:14;3769:34;;;3799:1;3796;3789:12;3769:34;3837:6;3826:9;3822:22;3812:32;;3882:7;3875:4;3871:2;3867:13;3863:27;3853:55;;3904:1;3901;3894:12;3853:55;3940:2;3927:16;3962:4;3986:60;4002:43;4042:2;4002:43;:::i;3986:60::-;4068:3;4092:2;4087:3;4080:15;4120:2;4115:3;4111:12;4104:19;;4151:2;4147;4143:11;4199:7;4194:2;4188;4185:1;4181:10;4177:2;4173:19;4169:28;4166:41;4163:61;;;4220:1;4217;4210:12;4163:61;4242:1;4233:10;;4252:169;4266:2;4263:1;4260:9;4252:169;;;4323:23;4342:3;4323:23;:::i;:::-;4311:36;;4284:1;4277:9;;;;;4367:12;;;;4399;;4252:169;;;-1:-1:-1;4440:5:1;-1:-1:-1;;4483:18:1;;4470:32;;-1:-1:-1;;4514:16:1;;;4511:36;;;4543:1;4540;4533:12;4511:36;;4566:62;4620:7;4609:8;4598:9;4594:24;4566:62;:::i;:::-;4556:72;;;3479:1155;;;;;:::o;4639:245::-;4697:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:52;;;4766:1;4763;4756:12;4718:52;4805:9;4792:23;4824:30;4848:5;4824:30;:::i;4889:249::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:52;;;5027:1;5024;5017:12;4979:52;5059:9;5053:16;5078:30;5102:5;5078:30;:::i;5143:450::-;5212:6;5265:2;5253:9;5244:7;5240:23;5236:32;5233:52;;;5281:1;5278;5271:12;5233:52;5321:9;5308:23;-1:-1:-1;;;;;5346:6:1;5343:30;5340:50;;;5386:1;5383;5376:12;5340:50;5409:22;;5462:4;5454:13;;5450:27;-1:-1:-1;5440:55:1;;5491:1;5488;5481:12;5440:55;5514:73;5579:7;5574:2;5561:16;5556:2;5552;5548:11;5514:73;:::i;5598:180::-;5657:6;5710:2;5698:9;5689:7;5685:23;5681:32;5678:52;;;5726:1;5723;5716:12;5678:52;-1:-1:-1;5749:23:1;;5598:180;-1:-1:-1;5598:180:1:o;5783:257::-;5824:3;5862:5;5856:12;5889:6;5884:3;5877:19;5905:63;5961:6;5954:4;5949:3;5945:14;5938:4;5931:5;5927:16;5905:63;:::i;:::-;6022:2;6001:15;-1:-1:-1;;5997:29:1;5988:39;;;;6029:4;5984:50;;5783:257;-1:-1:-1;;5783:257:1:o;6045:470::-;6224:3;6262:6;6256:13;6278:53;6324:6;6319:3;6312:4;6304:6;6300:17;6278:53;:::i;:::-;6394:13;;6353:16;;;;6416:57;6394:13;6353:16;6450:4;6438:17;;6416:57;:::i;:::-;6489:20;;6045:470;-1:-1:-1;;;;6045:470:1:o;6938:488::-;-1:-1:-1;;;;;7207:15:1;;;7189:34;;7259:15;;7254:2;7239:18;;7232:43;7306:2;7291:18;;7284:34;;;7354:3;7349:2;7334:18;;7327:31;;;7132:4;;7375:45;;7400:19;;7392:6;7375:45;:::i;:::-;7367:53;6938:488;-1:-1:-1;;;;;;6938:488:1:o;7623:219::-;7772:2;7761:9;7754:21;7735:4;7792:44;7832:2;7821:9;7817:18;7809:6;7792:44;:::i;10728:275::-;10799:2;10793:9;10864:2;10845:13;;-1:-1:-1;;10841:27:1;10829:40;;-1:-1:-1;;;;;10884:34:1;;10920:22;;;10881:62;10878:88;;;10946:18;;:::i;:::-;10982:2;10975:22;10728:275;;-1:-1:-1;10728:275:1:o;11008:183::-;11068:4;-1:-1:-1;;;;;11093:6:1;11090:30;11087:56;;;11123:18;;:::i;:::-;-1:-1:-1;11168:1:1;11164:14;11180:4;11160:25;;11008:183::o;11196:238::-;11236:3;-1:-1:-1;;;;;11303:10:1;;;11333;;;11363:12;;;11355:21;;11352:47;;;11379:18;;:::i;11439:128::-;11479:3;11510:1;11506:6;11503:1;11500:13;11497:39;;;11516:18;;:::i;:::-;-1:-1:-1;11552:9:1;;11439:128::o;11572:120::-;11612:1;11638;11628:35;;11643:18;;:::i;:::-;-1:-1:-1;11677:9:1;;11572:120::o;11697:168::-;11737:7;11803:1;11799;11795:6;11791:14;11788:1;11785:21;11780:1;11773:9;11766:17;11762:45;11759:71;;;11810:18;;:::i;:::-;-1:-1:-1;11850:9:1;;11697:168::o;11870:231::-;11910:4;-1:-1:-1;;;;;12008:10:1;;;;11978;;12030:12;;;12027:38;;;12045:18;;:::i;:::-;12082:13;;11870:231;-1:-1:-1;;;11870:231:1:o;12106:125::-;12146:4;12174:1;12171;12168:8;12165:34;;;12179:18;;:::i;:::-;-1:-1:-1;12216:9:1;;12106:125::o;12236:258::-;12308:1;12318:113;12332:6;12329:1;12326:13;12318:113;;;12408:11;;;12402:18;12389:11;;;12382:39;12354:2;12347:10;12318:113;;;12449:6;12446:1;12443:13;12440:48;;;-1:-1:-1;;12484:1:1;12466:16;;12459:27;12236:258::o;12499:380::-;12578:1;12574:12;;;;12621;;;12642:61;;12696:4;12688:6;12684:17;12674:27;;12642:61;12749:2;12741:6;12738:14;12718:18;12715:38;12712:161;;;12795:10;12790:3;12786:20;12783:1;12776:31;12830:4;12827:1;12820:15;12858:4;12855:1;12848:15;12712:161;;12499:380;;;:::o;12884:135::-;12923:3;-1:-1:-1;;12944:17:1;;12941:43;;;12964:18;;:::i;:::-;-1:-1:-1;13011:1:1;13000:13;;12884:135::o;13024:112::-;13056:1;13082;13072:35;;13087:18;;:::i;:::-;-1:-1:-1;13121:9:1;;13024:112::o;13141:127::-;13202:10;13197:3;13193:20;13190:1;13183:31;13233:4;13230:1;13223:15;13257:4;13254:1;13247:15;13273:127;13334:10;13329:3;13325:20;13322:1;13315:31;13365:4;13362:1;13355:15;13389:4;13386:1;13379:15;13405:127;13466:10;13461:3;13457:20;13454:1;13447:31;13497:4;13494:1;13487:15;13521:4;13518:1;13511:15;13537:127;13598:10;13593:3;13589:20;13586:1;13579:31;13629:4;13626:1;13619:15;13653:4;13650:1;13643:15;13669:131;-1:-1:-1;;;;;;13743:32:1;;13733:43;;13723:71;;13790:1;13787;13780:12
Swarm Source
ipfs://94405dada06743b1f16a5439ccd4f0c17a32efde07d213566899a942dbd504b8
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.