Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,508 4eon
Holders
1,487
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 4eonLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NEONVERSE
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-27 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string 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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * 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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // 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 Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) 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: contracts/4eonverse.sol pragma solidity ^0.8.17; contract NEONVERSE is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public PRICE = 0.0049 ether; //for the airdrop in 24 hours after mint. shhh! uint256 public MAX_SUPPLY = 777; uint256 public FREE_MINT_LIMIT_PER_WALLET = 1; uint256 public MAX_MINT_AMOUNT_PER_TX = 10; uint256 public FREE_MINT_IS_ALLOWED_UNTIL = 100; uint256 internal currentIndex; bool public revealed = true; bool public IS_SALE_ACTIVE = true; string public BASE_URI = "ipfs://bafybeidr32lrvfinulx6buxe7quttvygo43yp4hnqeo4thtll3t6qamww4"; string public notRevealedUri = "ipfs://bafybeidpcnp2p7jq3r6ngr2ze3675lwaducy6paqphnhckhwir5xey2jea"; mapping(address => uint256) private freeMintCountMap; constructor() ERC721A("4eonverse", "4eon") {} function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } function freeMintCount(address addr) public view returns (uint256) { return freeMintCountMap[addr]; } function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } function setPrice(uint256 customPrice) external onlyOwner { PRICE = customPrice; } function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply"); require(newMaxSupply >= currentIndex, "Invalid new max supply"); MAX_SUPPLY = newMaxSupply; } function setBaseURI(string memory customBaseURI_) external onlyOwner { BASE_URI = customBaseURI_; } function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner { FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; } function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner { MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } function setRevealed(bool _revealed) public onlyOwner { revealed = _revealed; } function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner { FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!"); require(currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } // withdraw address address t1 = 0x98ff1C68DbE759F3fc772563bF786DcF80dbcd16; /// @notice Withdraw contract balance function withdraw() external onlyOwner { uint balance = address(this).balance; require(balance > 0, "No balance"); payable(t1).transfer((balance * 100)/100); } }
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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"freeMintCount","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":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6611688627664000600a908155610309600b556001600c55600d556064600e556010805461ffff191661010117905561010060405260426080818152906200202560a03960119062000052908262000224565b5060405180608001604052806042815260200162002067604291396012906200007c908262000224565b50601480546001600160a01b0319167398ff1c68dbe759f3fc772563bf786dcf80dbcd16179055348015620000b057600080fd5b506040518060400160405280600981526020016834656f6e766572736560b81b815250604051806040016040528060048152602001631a32b7b760e11b815250816002908162000101919062000224565b50600362000110828262000224565b5050600080555062000122336200012d565b6001600955620002f0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001aa57607f821691505b602082108103620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021f57600081815260208120601f850160051c81016020861015620001fa5750805b601f850160051c820191505b818110156200021b5782815560010162000206565b5050505b505050565b81516001600160401b038111156200024057620002406200017f565b620002588162000251845462000195565b84620001d1565b602080601f831160018114620002905760008415620002775750858301515b600019600386901b1c1916600185901b1785556200021b565b600085815260208120601f198616915b82811015620002c157888601518255948401946001909101908401620002a0565b5085821015620002e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d2580620003006000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105f0578063dbddb26a14610610578063e0a8085314610625578063e985e9c514610645578063f2fde38b1461066557600080fd5b8063a0712d681461056a578063a22cb4651461057d578063b0551ac41461059d578063b88d4fde146105bd578063c4e9374d146105d057600080fd5b80638b85e43d116100f25780638b85e43d146104e15780638d859f3e146105015780638da5cb5b1461051757806391b7f5ed1461053557806395d89b411461055557600080fd5b806370a082311461046d578063715018a61461048d57806376d02b71146104a2578063841718a6146104c157600080fd5b806332cb6b0c116101b1578063518302271161017557806351830227146103bd57806355f804b3146103d75780635ecf8a80146103f7578063616cdb1e1461042d5780636352211e1461044d57600080fd5b806332cb6b0c146103495780633ccfd60b1461035f5780634065b85f14610374578063408cbf941461038a57806342842e0e146103aa57600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806309ef6527146102e357806310b0c0521461030757806318160ddd1461031d57806323b872dd1461033657600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063081c8c44146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611747565b610685565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106d7565b60405161025691906117b4565b34801561028d57600080fd5b506102a161029c3660046117c7565b610769565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102746107ad565b6102e16102dc3660046117fc565b61083b565b005b3480156102ef57600080fd5b506102f9600d5481565b604051908152602001610256565b34801561031357600080fd5b506102f9600c5481565b34801561032957600080fd5b50600154600054036102f9565b6102e1610344366004611826565b6108db565b34801561035557600080fd5b506102f9600b5481565b34801561036b57600080fd5b506102e1610a74565b34801561038057600080fd5b506102f9600e5481565b34801561039657600080fd5b506102e16103a53660046117fc565b610b0d565b6102e16103b8366004611826565b610bd0565b3480156103c957600080fd5b5060105461024a9060ff1681565b3480156103e357600080fd5b506102e16103f23660046118ee565b610beb565b34801561040357600080fd5b506102f9610412366004611937565b6001600160a01b031660009081526013602052604090205490565b34801561043957600080fd5b506102e16104483660046117c7565b610bff565b34801561045957600080fd5b506102a16104683660046117c7565b610c0c565b34801561047957600080fd5b506102f9610488366004611937565b610c17565b34801561049957600080fd5b506102e1610c66565b3480156104ae57600080fd5b5060105461024a90610100900460ff1681565b3480156104cd57600080fd5b506102e16104dc366004611962565b610c7a565b3480156104ed57600080fd5b506102e16104fc3660046117c7565b610c9c565b34801561050d57600080fd5b506102f9600a5481565b34801561052357600080fd5b506008546001600160a01b03166102a1565b34801561054157600080fd5b506102e16105503660046117c7565b610ca9565b34801561056157600080fd5b50610274610cb6565b6102e16105783660046117c7565b610cc5565b34801561058957600080fd5b506102e161059836600461197d565b610ea5565b3480156105a957600080fd5b506102e16105b83660046117c7565b610f11565b6102e16105cb3660046119b0565b610f1e565b3480156105dc57600080fd5b506102e16105eb3660046117c7565b610f68565b3480156105fc57600080fd5b5061027461060b3660046117c7565b61100a565b34801561061c57600080fd5b50610274611176565b34801561063157600080fd5b506102e1610640366004611962565b611183565b34801561065157600080fd5b5061024a610660366004611a2c565b61119e565b34801561067157600080fd5b506102e1610680366004611937565b6111cc565b60006301ffc9a760e01b6001600160e01b0319831614806106b657506380ac58cd60e01b6001600160e01b03198316145b806106d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e690611a56565b80601f016020809104026020016040519081016040528092919081815260200182805461071290611a56565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611245565b610791576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601280546107ba90611a56565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690611a56565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b505050505081565b600061084682610c0c565b9050336001600160a01b0382161461087f57610862813361119e565b61087f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108e68261126c565b9050836001600160a01b0316816001600160a01b0316146109195760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761096657610949863361119e565b61096657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661098d57604051633a954ecd60e21b815260040160405180910390fd5b801561099857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a2a57600184016000818152600460205260408120549003610a28576000548114610a285760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a7c6112d3565b4780610abc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2062616c616e636560b01b60448201526064015b60405180910390fd5b6014546001600160a01b03166108fc6064610ad78482611aa6565b610ae19190611ad3565b6040518115909202916000818181858888f19350505050158015610b09573d6000803e3d6000fd5b5050565b80600081118015610b205750600d548111155b610b635760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ab3565b600b5481600f54610b749190611ae7565b1115610bb95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ab3565b610bc16112d3565b610bcb838361132d565b505050565b610bcb83838360405180602001604052806000815250610f1e565b610bf36112d3565b6011610b098282611b40565b610c076112d3565b600d55565b60006106d18261126c565b60006001600160a01b038216610c40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c6e6112d3565b610c786000611347565b565b610c826112d3565b601080549115156101000261ff0019909216919091179055565b610ca46112d3565b600e55565b610cb16112d3565b600a55565b6060600380546106e690611a56565b80600081118015610cd85750600d548111155b610d1b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ab3565b600b5481600f54610d2c9190611ae7565b1115610d715760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ab3565b601054610100900460ff16610dbe5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610ab3565b600082600a54610dce9190611aa6565b9050600e54600f541015610e555733600090815260136020526040812054600c54610df99190611c00565b90508015610e5357808410610e3057600a54610e159082611aa6565b610e1f9083611c00565b9150610e2b3382611399565b610e53565b600a54610e3d9085611aa6565b610e479083611c00565b9150610e533385611399565b505b80341015610e9b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ab3565b610bcb338461132d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f196112d3565b600c55565b610f298484846108db565b6001600160a01b0383163b15610f6257610f45848484846113ca565b610f62576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f706112d3565b600b548110610fba5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610ab3565b600f548110156110055760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610ab3565b600b55565b606061101582611245565b6110795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ab3565b60105460ff16151560000361111a576012805461109590611a56565b80601f01602080910402602001604051908101604052809291908181526020018280546110c190611a56565b801561110e5780601f106110e35761010080835404028352916020019161110e565b820191906000526020600020905b8154815290600101906020018083116110f157829003601f168201915b50505050509050919050565b60006111246114b6565b90506000815111611144576040518060200160405280600081525061116f565b8061114e846114c5565b60405160200161115f929190611c13565b6040516020818303038152906040525b9392505050565b601180546107ba90611a56565b61118b6112d3565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6111d46112d3565b6001600160a01b0381166112395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab3565b61124281611347565b50565b60008054821080156106d1575050600090815260046020526040902054600160e01b161590565b6000816000548110156112ba5760008181526004602052604081205490600160e01b821690036112b8575b8060000361116f575060001901600081815260046020526040902054611297565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab3565b610b098282604051806020016040528060008152506115c6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260136020526040812080548392906113c1908490611ae7565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ff903390899088908890600401611c52565b6020604051808303816000875af192505050801561143a575060408051601f3d908101601f1916820190925261143791810190611c8f565b60015b611498573d808015611468576040519150601f19603f3d011682016040523d82523d6000602084013e61146d565b606091505b508051600003611490576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601180546106e690611a56565b6060816000036114ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611516578061150081611cac565b915061150f9050600a83611ad3565b91506114f0565b60008167ffffffffffffffff81111561153157611531611862565b6040519080825280601f01601f19166020018201604052801561155b576020820181803683370190505b5090505b84156114ae57611570600183611c00565b915061157d600a86611cc5565b611588906030611ae7565b60f81b81838151811061159d5761159d611cd9565b60200101906001600160f81b031916908160001a9053506115bf600a86611ad3565b945061155f565b6115d08383611633565b6001600160a01b0383163b15610bcb576000548281035b6115fa60008683806001019450866113ca565b611617576040516368d2bf6b60e11b815260040160405180910390fd5b8181106115e757816000541461162c57600080fd5b5050505050565b60008054908290036116585760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461170757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016116cf565b508160000361172857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461124257600080fd5b60006020828403121561175957600080fd5b813561116f81611731565b60005b8381101561177f578181015183820152602001611767565b50506000910152565b600081518084526117a0816020860160208601611764565b601f01601f19169290920160200192915050565b60208152600061116f6020830184611788565b6000602082840312156117d957600080fd5b5035919050565b80356001600160a01b03811681146117f757600080fd5b919050565b6000806040838503121561180f57600080fd5b611818836117e0565b946020939093013593505050565b60008060006060848603121561183b57600080fd5b611844846117e0565b9250611852602085016117e0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561189357611893611862565b604051601f8501601f19908116603f011681019082821181831017156118bb576118bb611862565b816040528093508581528686860111156118d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561190057600080fd5b813567ffffffffffffffff81111561191757600080fd5b8201601f8101841361192857600080fd5b6114ae84823560208401611878565b60006020828403121561194957600080fd5b61116f826117e0565b803580151581146117f757600080fd5b60006020828403121561197457600080fd5b61116f82611952565b6000806040838503121561199057600080fd5b611999836117e0565b91506119a760208401611952565b90509250929050565b600080600080608085870312156119c657600080fd5b6119cf856117e0565b93506119dd602086016117e0565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a2087823560208401611878565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836117e0565b91506119a7602084016117e0565b600181811c90821680611a6a57607f821691505b602082108103611a8a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106d1576106d1611a90565b634e487b7160e01b600052601260045260246000fd5b600082611ae257611ae2611abd565b500490565b808201808211156106d1576106d1611a90565b601f821115610bcb57600081815260208120601f850160051c81016020861015611b215750805b601f850160051c820191505b81811015610a6c57828155600101611b2d565b815167ffffffffffffffff811115611b5a57611b5a611862565b611b6e81611b688454611a56565b84611afa565b602080601f831160018114611ba35760008415611b8b5750858301515b600019600386901b1c1916600185901b178555610a6c565b600085815260208120601f198616915b82811015611bd257888601518255948401946001909101908401611bb3565b5085821015611bf05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156106d1576106d1611a90565b60008351611c25818460208801611764565b835190830190611c39818360208801611764565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8590830184611788565b9695505050505050565b600060208284031215611ca157600080fd5b815161116f81611731565b600060018201611cbe57611cbe611a90565b5060010190565b600082611cd457611cd4611abd565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206aafe92f06f06ab9a8fa96c0072a93930cbd3299d5c9a1435f4fa6deed0ef4ca64736f6c63430008110033697066733a2f2f62616679626569647233326c727666696e756c78366275786537717574747679676f3433797034686e71656f347468746c6c33743671616d777734697066733a2f2f626166796265696470636e703270376a713372366e6772327a65333637356c7761647563793670617170686e68636b6877697235786579326a6561
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105f0578063dbddb26a14610610578063e0a8085314610625578063e985e9c514610645578063f2fde38b1461066557600080fd5b8063a0712d681461056a578063a22cb4651461057d578063b0551ac41461059d578063b88d4fde146105bd578063c4e9374d146105d057600080fd5b80638b85e43d116100f25780638b85e43d146104e15780638d859f3e146105015780638da5cb5b1461051757806391b7f5ed1461053557806395d89b411461055557600080fd5b806370a082311461046d578063715018a61461048d57806376d02b71146104a2578063841718a6146104c157600080fd5b806332cb6b0c116101b1578063518302271161017557806351830227146103bd57806355f804b3146103d75780635ecf8a80146103f7578063616cdb1e1461042d5780636352211e1461044d57600080fd5b806332cb6b0c146103495780633ccfd60b1461035f5780634065b85f14610374578063408cbf941461038a57806342842e0e146103aa57600080fd5b8063095ea7b3116101f8578063095ea7b3146102ce57806309ef6527146102e357806310b0c0521461030757806318160ddd1461031d57806323b872dd1461033657600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063081c8c44146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611747565b610685565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106d7565b60405161025691906117b4565b34801561028d57600080fd5b506102a161029c3660046117c7565b610769565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102746107ad565b6102e16102dc3660046117fc565b61083b565b005b3480156102ef57600080fd5b506102f9600d5481565b604051908152602001610256565b34801561031357600080fd5b506102f9600c5481565b34801561032957600080fd5b50600154600054036102f9565b6102e1610344366004611826565b6108db565b34801561035557600080fd5b506102f9600b5481565b34801561036b57600080fd5b506102e1610a74565b34801561038057600080fd5b506102f9600e5481565b34801561039657600080fd5b506102e16103a53660046117fc565b610b0d565b6102e16103b8366004611826565b610bd0565b3480156103c957600080fd5b5060105461024a9060ff1681565b3480156103e357600080fd5b506102e16103f23660046118ee565b610beb565b34801561040357600080fd5b506102f9610412366004611937565b6001600160a01b031660009081526013602052604090205490565b34801561043957600080fd5b506102e16104483660046117c7565b610bff565b34801561045957600080fd5b506102a16104683660046117c7565b610c0c565b34801561047957600080fd5b506102f9610488366004611937565b610c17565b34801561049957600080fd5b506102e1610c66565b3480156104ae57600080fd5b5060105461024a90610100900460ff1681565b3480156104cd57600080fd5b506102e16104dc366004611962565b610c7a565b3480156104ed57600080fd5b506102e16104fc3660046117c7565b610c9c565b34801561050d57600080fd5b506102f9600a5481565b34801561052357600080fd5b506008546001600160a01b03166102a1565b34801561054157600080fd5b506102e16105503660046117c7565b610ca9565b34801561056157600080fd5b50610274610cb6565b6102e16105783660046117c7565b610cc5565b34801561058957600080fd5b506102e161059836600461197d565b610ea5565b3480156105a957600080fd5b506102e16105b83660046117c7565b610f11565b6102e16105cb3660046119b0565b610f1e565b3480156105dc57600080fd5b506102e16105eb3660046117c7565b610f68565b3480156105fc57600080fd5b5061027461060b3660046117c7565b61100a565b34801561061c57600080fd5b50610274611176565b34801561063157600080fd5b506102e1610640366004611962565b611183565b34801561065157600080fd5b5061024a610660366004611a2c565b61119e565b34801561067157600080fd5b506102e1610680366004611937565b6111cc565b60006301ffc9a760e01b6001600160e01b0319831614806106b657506380ac58cd60e01b6001600160e01b03198316145b806106d15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106e690611a56565b80601f016020809104026020016040519081016040528092919081815260200182805461071290611a56565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b600061077482611245565b610791576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601280546107ba90611a56565b80601f01602080910402602001604051908101604052809291908181526020018280546107e690611a56565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b505050505081565b600061084682610c0c565b9050336001600160a01b0382161461087f57610862813361119e565b61087f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108e68261126c565b9050836001600160a01b0316816001600160a01b0316146109195760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761096657610949863361119e565b61096657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661098d57604051633a954ecd60e21b815260040160405180910390fd5b801561099857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a2a57600184016000818152600460205260408120549003610a28576000548114610a285760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a7c6112d3565b4780610abc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2062616c616e636560b01b60448201526064015b60405180910390fd5b6014546001600160a01b03166108fc6064610ad78482611aa6565b610ae19190611ad3565b6040518115909202916000818181858888f19350505050158015610b09573d6000803e3d6000fd5b5050565b80600081118015610b205750600d548111155b610b635760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ab3565b600b5481600f54610b749190611ae7565b1115610bb95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ab3565b610bc16112d3565b610bcb838361132d565b505050565b610bcb83838360405180602001604052806000815250610f1e565b610bf36112d3565b6011610b098282611b40565b610c076112d3565b600d55565b60006106d18261126c565b60006001600160a01b038216610c40576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c6e6112d3565b610c786000611347565b565b610c826112d3565b601080549115156101000261ff0019909216919091179055565b610ca46112d3565b600e55565b610cb16112d3565b600a55565b6060600380546106e690611a56565b80600081118015610cd85750600d548111155b610d1b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ab3565b600b5481600f54610d2c9190611ae7565b1115610d715760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ab3565b601054610100900460ff16610dbe5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610ab3565b600082600a54610dce9190611aa6565b9050600e54600f541015610e555733600090815260136020526040812054600c54610df99190611c00565b90508015610e5357808410610e3057600a54610e159082611aa6565b610e1f9083611c00565b9150610e2b3382611399565b610e53565b600a54610e3d9085611aa6565b610e479083611c00565b9150610e533385611399565b505b80341015610e9b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ab3565b610bcb338461132d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f196112d3565b600c55565b610f298484846108db565b6001600160a01b0383163b15610f6257610f45848484846113ca565b610f62576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f706112d3565b600b548110610fba5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610ab3565b600f548110156110055760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610ab3565b600b55565b606061101582611245565b6110795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ab3565b60105460ff16151560000361111a576012805461109590611a56565b80601f01602080910402602001604051908101604052809291908181526020018280546110c190611a56565b801561110e5780601f106110e35761010080835404028352916020019161110e565b820191906000526020600020905b8154815290600101906020018083116110f157829003601f168201915b50505050509050919050565b60006111246114b6565b90506000815111611144576040518060200160405280600081525061116f565b8061114e846114c5565b60405160200161115f929190611c13565b6040516020818303038152906040525b9392505050565b601180546107ba90611a56565b61118b6112d3565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6111d46112d3565b6001600160a01b0381166112395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab3565b61124281611347565b50565b60008054821080156106d1575050600090815260046020526040902054600160e01b161590565b6000816000548110156112ba5760008181526004602052604081205490600160e01b821690036112b8575b8060000361116f575060001901600081815260046020526040902054611297565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610c785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab3565b610b098282604051806020016040528060008152506115c6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260136020526040812080548392906113c1908490611ae7565b90915550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ff903390899088908890600401611c52565b6020604051808303816000875af192505050801561143a575060408051601f3d908101601f1916820190925261143791810190611c8f565b60015b611498573d808015611468576040519150601f19603f3d011682016040523d82523d6000602084013e61146d565b606091505b508051600003611490576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601180546106e690611a56565b6060816000036114ec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611516578061150081611cac565b915061150f9050600a83611ad3565b91506114f0565b60008167ffffffffffffffff81111561153157611531611862565b6040519080825280601f01601f19166020018201604052801561155b576020820181803683370190505b5090505b84156114ae57611570600183611c00565b915061157d600a86611cc5565b611588906030611ae7565b60f81b81838151811061159d5761159d611cd9565b60200101906001600160f81b031916908160001a9053506115bf600a86611ad3565b945061155f565b6115d08383611633565b6001600160a01b0383163b15610bcb576000548281035b6115fa60008683806001019450866113ca565b611617576040516368d2bf6b60e11b815260040160405180910390fd5b8181106115e757816000541461162c57600080fd5b5050505050565b60008054908290036116585760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461170757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016116cf565b508160000361172857604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461124257600080fd5b60006020828403121561175957600080fd5b813561116f81611731565b60005b8381101561177f578181015183820152602001611767565b50506000910152565b600081518084526117a0816020860160208601611764565b601f01601f19169290920160200192915050565b60208152600061116f6020830184611788565b6000602082840312156117d957600080fd5b5035919050565b80356001600160a01b03811681146117f757600080fd5b919050565b6000806040838503121561180f57600080fd5b611818836117e0565b946020939093013593505050565b60008060006060848603121561183b57600080fd5b611844846117e0565b9250611852602085016117e0565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561189357611893611862565b604051601f8501601f19908116603f011681019082821181831017156118bb576118bb611862565b816040528093508581528686860111156118d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561190057600080fd5b813567ffffffffffffffff81111561191757600080fd5b8201601f8101841361192857600080fd5b6114ae84823560208401611878565b60006020828403121561194957600080fd5b61116f826117e0565b803580151581146117f757600080fd5b60006020828403121561197457600080fd5b61116f82611952565b6000806040838503121561199057600080fd5b611999836117e0565b91506119a760208401611952565b90509250929050565b600080600080608085870312156119c657600080fd5b6119cf856117e0565b93506119dd602086016117e0565b925060408501359150606085013567ffffffffffffffff811115611a0057600080fd5b8501601f81018713611a1157600080fd5b611a2087823560208401611878565b91505092959194509250565b60008060408385031215611a3f57600080fd5b611a48836117e0565b91506119a7602084016117e0565b600181811c90821680611a6a57607f821691505b602082108103611a8a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106d1576106d1611a90565b634e487b7160e01b600052601260045260246000fd5b600082611ae257611ae2611abd565b500490565b808201808211156106d1576106d1611a90565b601f821115610bcb57600081815260208120601f850160051c81016020861015611b215750805b601f850160051c820191505b81811015610a6c57828155600101611b2d565b815167ffffffffffffffff811115611b5a57611b5a611862565b611b6e81611b688454611a56565b84611afa565b602080601f831160018114611ba35760008415611b8b5750858301515b600019600386901b1c1916600185901b178555610a6c565b600085815260208120601f198616915b82811015611bd257888601518255948401946001909101908401611bb3565b5085821015611bf05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156106d1576106d1611a90565b60008351611c25818460208801611764565b835190830190611c39818360208801611764565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8590830184611788565b9695505050505050565b600060208284031215611ca157600080fd5b815161116f81611731565b600060018201611cbe57611cbe611a90565b5060010190565b600082611cd457611cd4611abd565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206aafe92f06f06ab9a8fa96c0072a93930cbd3299d5c9a1435f4fa6deed0ef4ca64736f6c63430008110033
Deployed Bytecode Sourcemap
60362:4491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21163:639;;;;;;;;;;-1:-1:-1;21163:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21163:639:0;;;;;;;;22065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28556:218::-;;;;;;;;;;-1:-1:-1;28556:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28556:218:0;1533:203:1;60964:99:0;;;;;;;;;;;;;:::i;27989:408::-;;;;;;:::i;:::-;;:::i;:::-;;60641:42;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;60641:42:0;2178:177:1;60588:45:0;;;;;;;;;;;;;;;;17816:323;;;;;;;;;;-1:-1:-1;18090:12:0;;17877:7;18074:13;:28;17816:323;;32195:2825;;;;;;:::i;:::-;;:::i;60549:31::-;;;;;;;;;;;;;;;;64649:201;;;;;;;;;;;;;:::i;60691:47::-;;;;;;;;;;;;;;;;64365:144;;;;;;;;;;-1:-1:-1;64365:144:0;;;;;:::i;:::-;;:::i;35116:193::-;;;;;;:::i;:::-;;:::i;60783:27::-;;;;;;;;;;-1:-1:-1;60783:27:0;;;;;;;;61933:123;;;;;;;;;;-1:-1:-1;61933:123:0;;;;;:::i;:::-;;:::i;61323:115::-;;;;;;;;;;-1:-1:-1;61323:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;61408:22:0;61381:7;61408:22;;;:16;:22;;;;;;;61323:115;62213:122;;;;;;;;;;-1:-1:-1;62213:122:0;;;;;:::i;:::-;;:::i;23458:152::-;;;;;;;;;;-1:-1:-1;23458:152:0;;;;;:::i;:::-;;:::i;19000:233::-;;;;;;;;;;-1:-1:-1;19000:233:0;;;;;:::i;:::-;;:::i;56970:103::-;;;;;;;;;;;;;:::i;60817:33::-;;;;;;;;;;-1:-1:-1;60817:33:0;;;;;;;;;;;62343:109;;;;;;;;;;-1:-1:-1;62343:109:0;;;;;:::i;:::-;;:::i;62563:154::-;;;;;;;;;;-1:-1:-1;62563:154:0;;;;;:::i;:::-;;:::i;60459:35::-;;;;;;;;;;;;;;;;56322:87;;;;;;;;;;-1:-1:-1;56395:6:0;;-1:-1:-1;;;;;56395:6:0;56322:87;;61567:96;;;;;;;;;;-1:-1:-1;61567:96:0;;;;;:::i;:::-;;:::i;22241:104::-;;;;;;;;;;;;;:::i;63478:879::-;;;;;;:::i;:::-;;:::i;29114:234::-;;;;;;;;;;-1:-1:-1;29114:234:0;;;;;:::i;:::-;;:::i;62064:141::-;;;;;;;;;;-1:-1:-1;62064:141:0;;;;;:::i;:::-;;:::i;35907:407::-;;;;;;:::i;:::-;;:::i;61671:254::-;;;;;;;;;;-1:-1:-1;61671:254:0;;;;;:::i;:::-;;:::i;62723:490::-;;;;;;;;;;-1:-1:-1;62723:490:0;;;;;:::i;:::-;;:::i;60864:93::-;;;;;;;;;;;;;:::i;62464:91::-;;;;;;;;;;-1:-1:-1;62464:91:0;;;;;:::i;:::-;;:::i;29505:164::-;;;;;;;;;;-1:-1:-1;29505:164:0;;;;;:::i;:::-;;:::i;57228:201::-;;;;;;;;;;-1:-1:-1;57228:201:0;;;;;:::i;:::-;;:::i;21163:639::-;21248:4;-1:-1:-1;;;;;;;;;21572:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21649:25:0;;;21572:102;:179;;;-1:-1:-1;;;;;;;;;;21726:25:0;;;21572:179;21552:199;21163:639;-1:-1:-1;;21163:639:0:o;22065:100::-;22119:13;22152:5;22145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22065:100;:::o;28556:218::-;28632:7;28657:16;28665:7;28657;:16::i;:::-;28652:64;;28682:34;;-1:-1:-1;;;28682:34:0;;;;;;;;;;;28652:64;-1:-1:-1;28736:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28736:30:0;;28556:218::o;60964:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27989:408::-;28078:13;28094:16;28102:7;28094;:16::i;:::-;28078:32;-1:-1:-1;52322:10:0;-1:-1:-1;;;;;28127:28:0;;;28123:175;;28175:44;28192:5;52322:10;29505:164;:::i;28175:44::-;28170:128;;28247:35;;-1:-1:-1;;;28247:35:0;;;;;;;;;;;28170:128;28310:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28310:35:0;-1:-1:-1;;;;;28310:35:0;;;;;;;;;28361:28;;28310:24;;28361:28;;;;;;;28067:330;27989:408;;:::o;32195:2825::-;32337:27;32367;32386:7;32367:18;:27::i;:::-;32337:57;;32452:4;-1:-1:-1;;;;;32411:45:0;32427:19;-1:-1:-1;;;;;32411:45:0;;32407:86;;32465:28;;-1:-1:-1;;;32465:28:0;;;;;;;;;;;32407:86;32507:27;31303:24;;;:15;:24;;;;;31531:26;;52322:10;30928:30;;;-1:-1:-1;;;;;30621:28:0;;30906:20;;;30903:56;32693:180;;32786:43;32803:4;52322:10;29505:164;:::i;32786:43::-;32781:92;;32838:35;;-1:-1:-1;;;32838:35:0;;;;;;;;;;;32781:92;-1:-1:-1;;;;;32890:16:0;;32886:52;;32915:23;;-1:-1:-1;;;32915:23:0;;;;;;;;;;;32886:52;33087:15;33084:160;;;33227:1;33206:19;33199:30;33084:160;-1:-1:-1;;;;;33624:24:0;;;;;;;:18;:24;;;;;;33622:26;;-1:-1:-1;;33622:26:0;;;33693:22;;;;;;;;;33691:24;;-1:-1:-1;33691:24:0;;;26847:11;26822:23;26818:41;26805:63;-1:-1:-1;;;26805:63:0;33986:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;34281:47:0;;:52;;34277:627;;34386:1;34376:11;;34354:19;34509:30;;;:17;:30;;;;;;:35;;34505:384;;34647:13;;34632:11;:28;34628:242;;34794:30;;;;:17;:30;;;;;:52;;;34628:242;34335:569;34277:627;34951:7;34947:2;-1:-1:-1;;;;;34932:27:0;34941:4;-1:-1:-1;;;;;34932:27:0;;;;;;;;;;;34970:42;32326:2694;;;32195:2825;;;:::o;64649:201::-;56208:13;:11;:13::i;:::-;64714:21:::1;64754:11:::0;64746:34:::1;;;::::0;-1:-1:-1;;;64746:34:0;;6242:2:1;64746:34:0::1;::::0;::::1;6224:21:1::0;6281:2;6261:18;;;6254:30;-1:-1:-1;;;6300:18:1;;;6293:40;6350:18;;64746:34:0::1;;;;;;;;;64809:2;::::0;-1:-1:-1;;;;;64809:2:0::1;64801:41;64838:3;64823:13;:7:::0;64838:3;64823:13:::1;:::i;:::-;64822:19;;;;:::i;:::-;64801:41;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64688:162;64649:201::o:0;64365:144::-;64440:11;63299:1;63285:11;:15;:56;;;;;63319:22;;63304:11;:37;;63285:56;63277:89;;;;-1:-1:-1;;;63277:89:0;;7143:2:1;63277:89:0;;;7125:21:1;7182:2;7162:18;;;7155:30;-1:-1:-1;;;7201:18:1;;;7194:50;7261:18;;63277:89:0;6941:344:1;63277:89:0;63415:10;;63400:11;63385:12;;:26;;;;:::i;:::-;:40;;63377:73;;;;-1:-1:-1;;;63377:73:0;;7622:2:1;63377:73:0;;;7604:21:1;7661:2;7641:18;;;7634:30;-1:-1:-1;;;7680:18:1;;;7673:50;7740:18;;63377:73:0;7420:344:1;63377:73:0;56208:13:::1;:11;:13::i;:::-;64474:27:::2;64484:3;64489:11;64474:9;:27::i;:::-;64365:144:::0;;;:::o;35116:193::-;35262:39;35279:4;35285:2;35289:7;35262:39;;;;;;;;;;;;:16;:39::i;61933:123::-;56208:13;:11;:13::i;:::-;62023:8:::1;:25;62034:14:::0;62023:8;:25:::1;:::i;62213:122::-:0;56208:13;:11;:13::i;:::-;62290:22:::1;:37:::0;62213:122::o;23458:152::-;23530:7;23573:27;23592:7;23573:18;:27::i;19000:233::-;19072:7;-1:-1:-1;;;;;19096:19:0;;19092:60;;19124:28;;-1:-1:-1;;;19124:28:0;;;;;;;;;;;19092:60;-1:-1:-1;;;;;;19170:25:0;;;;;:18;:25;;;;;;13159:13;19170:55;;19000:233::o;56970:103::-;56208:13;:11;:13::i;:::-;57035:30:::1;57062:1;57035:18;:30::i;:::-;56970:103::o:0;62343:109::-;56208:13;:11;:13::i;:::-;62415:14:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;62415:29:0;;::::1;::::0;;;::::1;::::0;;62343:109::o;62563:154::-;56208:13;:11;:13::i;:::-;62658:26:::1;:51:::0;62563:154::o;61567:96::-;56208:13;:11;:13::i;:::-;61636:5:::1;:19:::0;61567:96::o;22241:104::-;22297:13;22330:7;22323:14;;;;;:::i;63478:879::-;63543:11;63299:1;63285:11;:15;:56;;;;;63319:22;;63304:11;:37;;63285:56;63277:89;;;;-1:-1:-1;;;63277:89:0;;7143:2:1;63277:89:0;;;7125:21:1;7182:2;7162:18;;;7155:30;-1:-1:-1;;;7201:18:1;;;7194:50;7261:18;;63277:89:0;6941:344:1;63277:89:0;63415:10;;63400:11;63385:12;;:26;;;;:::i;:::-;:40;;63377:73;;;;-1:-1:-1;;;63377:73:0;;7622:2:1;63377:73:0;;;7604:21:1;7661:2;7641:18;;;7634:30;-1:-1:-1;;;7680:18:1;;;7673:50;7740:18;;63377:73:0;7420:344:1;63377:73:0;63575:14:::1;::::0;::::1;::::0;::::1;;;63567:46;;;::::0;-1:-1:-1;;;63567:46:0;;10175:2:1;63567:46:0::1;::::0;::::1;10157:21:1::0;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10233:18:1;;;10226:49;10292:18;;63567:46:0::1;9973:343:1::0;63567:46:0::1;63626:13;63650:11;63642:5;;:19;;;;:::i;:::-;63626:35;;63693:26;;63678:12;;:41;63674:566;;;63810:10;63736:25;63793:28:::0;;;:16:::1;:28;::::0;;;;;63764:26:::1;::::0;:57:::1;::::0;63793:28;63764:57:::1;:::i;:::-;63736:85:::0;-1:-1:-1;63840:21:0;;63836:393:::1;;63901:17;63886:11;:32;63882:332;;63972:5;::::0;63952:25:::1;::::0;:17;:25:::1;:::i;:::-;63943:34;::::0;;::::1;:::i;:::-;;;64000:50;64020:10;64032:17;64000:19;:50::i;:::-;63882:332;;;64122:5;::::0;64108:19:::1;::::0;:11;:19:::1;:::i;:::-;64099:28;::::0;;::::1;:::i;:::-;;;64150:44;64170:10;64182:11;64150:19;:44::i;:::-;63721:519;63674:566;64273:5;64260:9;:18;;64252:50;;;::::0;-1:-1:-1;;;64252:50:0;;10656:2:1;64252:50:0::1;::::0;::::1;10638:21:1::0;10695:2;10675:18;;;10668:30;-1:-1:-1;;;10714:18:1;;;10707:49;10773:18;;64252:50:0::1;10454:343:1::0;64252:50:0::1;64315:34;64325:10;64337:11;64315:9;:34::i;29114:234::-:0;52322:10;29209:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29209:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29209:60:0;;;;;;;;;;29285:55;;540:41:1;;;29209:49:0;;52322:10;29285:55;;513:18:1;29285:55:0;;;;;;;29114:234;;:::o;62064:141::-;56208:13;:11;:13::i;:::-;62151:26:::1;:46:::0;62064:141::o;35907:407::-;36082:31;36095:4;36101:2;36105:7;36082:12;:31::i;:::-;-1:-1:-1;;;;;36128:14:0;;;:19;36124:183;;36167:56;36198:4;36204:2;36208:7;36217:5;36167:30;:56::i;:::-;36162:145;;36251:40;;-1:-1:-1;;;36251:40:0;;;;;;;;;;;36162:145;35907:407;;;;:::o;61671:254::-;56208:13;:11;:13::i;:::-;61770:10:::1;;61755:12;:25;61747:60;;;::::0;-1:-1:-1;;;61747:60:0;;11004:2:1;61747:60:0::1;::::0;::::1;10986:21:1::0;11043:2;11023:18;;;11016:30;-1:-1:-1;;;11062:18:1;;;11055:52;11124:18;;61747:60:0::1;10802:346:1::0;61747:60:0::1;61842:12;;61826;:28;;61818:63;;;::::0;-1:-1:-1;;;61818:63:0;;11004:2:1;61818:63:0::1;::::0;::::1;10986:21:1::0;11043:2;11023:18;;;11016:30;-1:-1:-1;;;11062:18:1;;;11055:52;11124:18;;61818:63:0::1;10802:346:1::0;61818:63:0::1;61892:10;:25:::0;61671:254::o;62723:490::-;62822:13;62863:17;62871:8;62863:7;:17::i;:::-;62847:98;;;;-1:-1:-1;;;62847:98:0;;11355:2:1;62847:98:0;;;11337:21:1;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;-1:-1:-1;;;11484:18:1;;;11477:45;11539:19;;62847:98:0;11153:411:1;62847:98:0;62957:8;;;;:17;;:8;:17;62954:62;;62994:14;62987:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62723:490;;;:::o;62954:62::-;63024:28;63055:10;:8;:10::i;:::-;63024:41;;63110:1;63085:14;63079:28;:32;:128;;;;;;;;;;;;;;;;;63147:14;63163:19;:8;:17;:19::i;:::-;63130:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63079:128;63072:135;62723:490;-1:-1:-1;;;62723:490:0:o;60864:93::-;;;;;;;:::i;62464:91::-;56208:13;:11;:13::i;:::-;62527:8:::1;:20:::0;;-1:-1:-1;;62527:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;62464:91::o;29505:164::-;-1:-1:-1;;;;;29626:25:0;;;29602:4;29626:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29505:164::o;57228:201::-;56208:13;:11;:13::i;:::-;-1:-1:-1;;;;;57317:22:0;::::1;57309:73;;;::::0;-1:-1:-1;;;57309:73:0;;12439:2:1;57309:73:0::1;::::0;::::1;12421:21:1::0;12478:2;12458:18;;;12451:30;12517:34;12497:18;;;12490:62;-1:-1:-1;;;12568:18:1;;;12561:36;12614:19;;57309:73:0::1;12237:402:1::0;57309:73:0::1;57393:28;57412:8;57393:18;:28::i;:::-;57228:201:::0;:::o;29927:282::-;29992:4;30082:13;;30072:7;:23;30029:153;;;;-1:-1:-1;;30133:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30133:44:0;:49;;29927:282::o;24613:1275::-;24680:7;24715;24817:13;;24810:4;:20;24806:1015;;;24855:14;24872:23;;;:17;:23;;;;;;;-1:-1:-1;;;24961:24:0;;:29;;24957:845;;25626:113;25633:6;25643:1;25633:11;25626:113;;-1:-1:-1;;;25704:6:0;25686:25;;;;:17;:25;;;;;;25626:113;;24957:845;24832:989;24806:1015;25849:31;;-1:-1:-1;;;25849:31:0;;;;;;;;;;;56487:132;56395:6;;-1:-1:-1;;;;;56395:6:0;52322:10;56551:23;56543:68;;;;-1:-1:-1;;;56543:68:0;;12846:2:1;56543:68:0;;;12828:21:1;;;12865:18;;;12858:30;12924:34;12904:18;;;12897:62;12976:18;;56543:68:0;12644:356:1;46067:112:0;46144:27;46154:2;46158:8;46144:27;;;;;;;;;;;;:9;:27::i;57589:191::-;57682:6;;;-1:-1:-1;;;;;57699:17:0;;;-1:-1:-1;;;;;;57699:17:0;;;;;;;57732:40;;57682:6;;;57699:17;57682:6;;57732:40;;57663:16;;57732:40;57652:128;57589:191;:::o;61191:120::-;-1:-1:-1;;;;;61270:24:0;;;;;;:16;:24;;;;;:33;;61298:5;;61270:24;:33;;61298:5;;61270:33;:::i;:::-;;;;-1:-1:-1;;;;61191:120:0:o;38398:716::-;38582:88;;-1:-1:-1;;;38582:88:0;;38561:4;;-1:-1:-1;;;;;38582:45:0;;;;;:88;;52322:10;;38649:4;;38655:7;;38664:5;;38582:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38582:88:0;;;;;;;;-1:-1:-1;;38582:88:0;;;;;;;;;;;;:::i;:::-;;;38578:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38865:6;:13;38882:1;38865:18;38861:235;;38911:40;;-1:-1:-1;;;38911:40:0;;;;;;;;;;;38861:235;39054:6;39048:13;39039:6;39035:2;39031:15;39024:38;38578:529;-1:-1:-1;;;;;;38741:64:0;-1:-1:-1;;;38741:64:0;;-1:-1:-1;38578:529:0;38398:716;;;;;;:::o;61446:109::-;61506:13;61539:8;61532:15;;;;;:::i;58217:723::-;58273:13;58494:5;58503:1;58494:10;58490:53;;-1:-1:-1;;58521:10:0;;;;;;;;;;;;-1:-1:-1;;;58521:10:0;;;;;58217:723::o;58490:53::-;58568:5;58553:12;58609:78;58616:9;;58609:78;;58642:8;;;;:::i;:::-;;-1:-1:-1;58665:10:0;;-1:-1:-1;58673:2:0;58665:10;;:::i;:::-;;;58609:78;;;58697:19;58729:6;58719:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58719:17:0;;58697:39;;58747:154;58754:10;;58747:154;;58781:11;58791:1;58781:11;;:::i;:::-;;-1:-1:-1;58850:10:0;58858:2;58850:5;:10;:::i;:::-;58837:24;;:2;:24;:::i;:::-;58824:39;;58807:6;58814;58807:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;58807:56:0;;;;;;;;-1:-1:-1;58878:11:0;58887:2;58878:11;;:::i;:::-;;;58747:154;;45294:689;45425:19;45431:2;45435:8;45425:5;:19::i;:::-;-1:-1:-1;;;;;45486:14:0;;;:19;45482:483;;45526:11;45540:13;45588:14;;;45621:233;45652:62;45691:1;45695:2;45699:7;;;;;;45708:5;45652:30;:62::i;:::-;45647:167;;45750:40;;-1:-1:-1;;;45750:40:0;;;;;;;;;;;45647:167;45849:3;45841:5;:11;45621:233;;45936:3;45919:13;;:20;45915:34;;45941:8;;;45915:34;45507:458;;45294:689;;;:::o;39576:2966::-;39649:20;39672:13;;;39700;;;39696:44;;39722:18;;-1:-1:-1;;;39722:18:0;;;;;;;;;;;39696:44;-1:-1:-1;;;;;40228:22:0;;;;;;:18;:22;;;;13297:2;40228:22;;;:71;;40266:32;40254:45;;40228:71;;;40542:31;;;:17;:31;;;;;-1:-1:-1;27278:15:0;;27252:24;27248:46;26847:11;26822:23;26818:41;26815:52;26805:63;;40542:173;;40777:23;;;;40542:31;;40228:22;;41542:25;40228:22;;41395:335;42056:1;42042:12;42038:20;41996:346;42097:3;42088:7;42085:16;41996:346;;42315:7;42305:8;42302:1;42275:25;42272:1;42269;42264:59;42150:1;42137:15;41996:346;;;42000:77;42375:8;42387:1;42375:13;42371:45;;42397:19;;-1:-1:-1;;;42397:19:0;;;;;;;;;;;42371:45;42433:13;:19;-1:-1:-1;64365:144:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:180;4330:6;4383:2;4371:9;4362:7;4358:23;4354:32;4351:52;;;4399:1;4396;4389:12;4351:52;4422:26;4438:9;4422:26;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:380::-;5734:1;5730:12;;;;5777;;;5798:61;;5852:4;5844:6;5840:17;5830:27;;5798:61;5905:2;5897:6;5894:14;5874:18;5871:38;5868:161;;5951:10;5946:3;5942:20;5939:1;5932:31;5986:4;5983:1;5976:15;6014:4;6011:1;6004:15;5868:161;;5655:380;;;:::o;6379:127::-;6440:10;6435:3;6431:20;6428:1;6421:31;6471:4;6468:1;6461:15;6495:4;6492:1;6485:15;6511:168;6584:9;;;6615;;6632:15;;;6626:22;;6612:37;6602:71;;6653:18;;:::i;6684:127::-;6745:10;6740:3;6736:20;6733:1;6726:31;6776:4;6773:1;6766:15;6800:4;6797:1;6790:15;6816:120;6856:1;6882;6872:35;;6887:18;;:::i;:::-;-1:-1:-1;6921:9:1;;6816:120::o;7290:125::-;7355:9;;;7376:10;;;7373:36;;;7389:18;;:::i;7895:545::-;7997:2;7992:3;7989:11;7986:448;;;8033:1;8058:5;8054:2;8047:17;8103:4;8099:2;8089:19;8173:2;8161:10;8157:19;8154:1;8150:27;8144:4;8140:38;8209:4;8197:10;8194:20;8191:47;;;-1:-1:-1;8232:4:1;8191:47;8287:2;8282:3;8278:12;8275:1;8271:20;8265:4;8261:31;8251:41;;8342:82;8360:2;8353:5;8350:13;8342:82;;;8405:17;;;8386:1;8375:13;8342:82;;8616:1352;8742:3;8736:10;8769:18;8761:6;8758:30;8755:56;;;8791:18;;:::i;:::-;8820:97;8910:6;8870:38;8902:4;8896:11;8870:38;:::i;:::-;8864:4;8820:97;:::i;:::-;8972:4;;9036:2;9025:14;;9053:1;9048:663;;;;9755:1;9772:6;9769:89;;;-1:-1:-1;9824:19:1;;;9818:26;9769:89;-1:-1:-1;;8573:1:1;8569:11;;;8565:24;8561:29;8551:40;8597:1;8593:11;;;8548:57;9871:81;;9018:944;;9048:663;7842:1;7835:14;;;7879:4;7866:18;;-1:-1:-1;;9084:20:1;;;9202:236;9216:7;9213:1;9210:14;9202:236;;;9305:19;;;9299:26;9284:42;;9397:27;;;;9365:1;9353:14;;;;9232:19;;9202:236;;;9206:3;9466:6;9457:7;9454:19;9451:201;;;9527:19;;;9521:26;-1:-1:-1;;9610:1:1;9606:14;;;9622:3;9602:24;9598:37;9594:42;9579:58;9564:74;;9451:201;-1:-1:-1;;;;;9698:1:1;9682:14;;;9678:22;9665:36;;-1:-1:-1;8616:1352:1:o;10321:128::-;10388:9;;;10409:11;;;10406:37;;;10423:18;;:::i;11569:663::-;11849:3;11887:6;11881:13;11903:66;11962:6;11957:3;11950:4;11942:6;11938:17;11903:66;:::i;:::-;12032:13;;11991:16;;;;12054:70;12032:13;11991:16;12101:4;12089:17;;12054:70;:::i;:::-;-1:-1:-1;;;12146:20:1;;12175:22;;;12224:1;12213:13;;11569:663;-1:-1:-1;;;;11569:663:1:o;13005:489::-;-1:-1:-1;;;;;13274:15:1;;;13256:34;;13326:15;;13321:2;13306:18;;13299:43;13373:2;13358:18;;13351:34;;;13421:3;13416:2;13401:18;;13394:31;;;13199:4;;13442:46;;13468:19;;13460:6;13442:46;:::i;:::-;13434:54;13005:489;-1:-1:-1;;;;;;13005:489:1:o;13499:249::-;13568:6;13621:2;13609:9;13600:7;13596:23;13592:32;13589:52;;;13637:1;13634;13627:12;13589:52;13669:9;13663:16;13688:30;13712:5;13688:30;:::i;13753:135::-;13792:3;13813:17;;;13810:43;;13833:18;;:::i;:::-;-1:-1:-1;13880:1:1;13869:13;;13753:135::o;13893:112::-;13925:1;13951;13941:35;;13956:18;;:::i;:::-;-1:-1:-1;13990:9:1;;13893:112::o;14010:127::-;14071:10;14066:3;14062:20;14059:1;14052:31;14102:4;14099:1;14092:15;14126:4;14123:1;14116:15
Swarm Source
ipfs://6aafe92f06f06ab9a8fa96c0072a93930cbd3299d5c9a1435f4fa6deed0ef4ca
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.