ERC-721
Overview
Max Total Supply
1,333 OORC
Holders
789
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OORCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OmegaOrc
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // Sources flattened with hardhat v2.9.7 https://hardhat.org // File erc721a/contracts/[email protected] // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File erc721a/contracts/[email protected] // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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` 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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 `_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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try 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)) } } } } /** * @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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/OmegaOrc.sol /// SPDX-License-Identifier: MIT pragma solidity 0.8.7; contract OmegaOrc is ERC721A, Ownable { using Strings for uint256; string public baseURI; uint256 public constant maxPerOne = 1; uint256 public constant maxPerTwo = 2; uint256 public constant maxPerThree = 3; uint256 public constant orcSupply = 1333; bytes32 public merkleRootOne = 0x8db2bf88bb01c9d0b09241ccee6cfab3560a4c732b4c34f0ede66c503992e127; bytes32 public merkleRootTwo = 0x425d1bb1828566451fe5f0484ea32aff160a0e6d6e3715cad35e09d0436e645a; bytes32 public merkleRootThree = 0xad54200330683c1b0fe4f3c9131fbbbf17489cfd77c8debe3f32fc0b4078a5ac; bytes32 public merkleRootFinal = 0x72e5fdfab6e99537eedc6913b42da7585f2268574624ac938dc2c3f1ae07f5cf; bool public publicOpen = false; bool public burnOpen = false; mapping(address => uint256) mintedOne; mapping(address => uint256) mintedTwo; mapping(address => uint256) mintedThree; mapping(address => uint256) mintedFinal; mapping(address => uint256) mintedPublic; modifier onlySender() { require(msg.sender == tx.origin); _; } modifier isPublicOpen() { require(publicOpen == true); _; } modifier isBurnOpen() { require(burnOpen == true); _; } constructor(string memory _initBaseURI) ERC721A("Omega Orc", "OORC") { setBaseURI(_initBaseURI); _mint(msg.sender, 10); } function publicMint() public payable isPublicOpen onlySender { require(mintedPublic[msg.sender] < maxPerOne); require(totalSupply() + maxPerOne <= orcSupply); mintedPublic[msg.sender] += maxPerOne; _mint(msg.sender, maxPerOne); } function finalMint(bytes32[] calldata _merkleProof) public payable onlySender { require(mintedFinal[msg.sender] < maxPerOne); require(totalSupply() + maxPerOne <= orcSupply); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRootFinal, leaf), "Invalid proof." ); mintedFinal[msg.sender] += maxPerOne; _mint(msg.sender, maxPerOne); } function oneMint(bytes32[] calldata _merkleProof) public payable onlySender { require(mintedOne[msg.sender] < maxPerOne); require(totalSupply() + maxPerOne <= orcSupply); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRootOne, leaf), "Invalid proof." ); mintedOne[msg.sender] += maxPerOne; _mint(msg.sender, maxPerOne); } function twoMint(bytes32[] calldata _merkleProof) public payable onlySender { require(mintedTwo[msg.sender] < maxPerTwo); require(totalSupply() + maxPerTwo <= orcSupply); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRootTwo, leaf), "Invalid proof." ); mintedTwo[msg.sender] += maxPerTwo; _mint(msg.sender, maxPerTwo); } function threeMint(bytes32[] calldata _merkleProof) public payable onlySender { require(mintedThree[msg.sender] < maxPerThree); require(totalSupply() + maxPerThree <= orcSupply); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_merkleProof, merkleRootThree, leaf), "Invalid proof." ); mintedThree[msg.sender] += maxPerThree; _mint(msg.sender, maxPerThree); } function changeMerkleOne(bytes32 incoming) public onlyOwner { merkleRootOne = incoming; } function changeMerkleTwo(bytes32 incoming) public onlyOwner { merkleRootTwo = incoming; } function changeMerkleThree(bytes32 incoming) public onlyOwner { merkleRootThree = incoming; } function changeMerkleFinal(bytes32 incoming) public onlyOwner { merkleRootFinal = incoming; } function flipPublic() public onlyOwner { publicOpen = !publicOpen; } function flipBurn() public onlyOwner { burnOpen = !burnOpen; } function burnOrc(uint256 tokenID) public isBurnOpen { _burn(tokenID); } function burnOrcs(uint256[] memory tokenIDs) public isBurnOpen { for(uint256 i=0; i<tokenIDs.length; i++) { _burn(tokenIDs[i]); } } function withdrawEther() external onlyOwner { (bool hs, ) = payable(msg.sender).call{value: address(this).balance}( "" ); require(hs); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), ".json" ) ) : ""; } function getBalance() public view returns (uint256) { return address(this).balance; } function walletOfOwner(address address_) public view virtual returns (uint256[] memory) { uint256 _balance = balanceOf(address_); uint256[] memory _tokens = new uint256[](_balance); uint256 _index; uint256 _loopThrough = totalSupply(); for (uint256 i = 0; i < _loopThrough; i++) { bool _exists = _exists(i); if (_exists) { if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; } } else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; } } return _tokens; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"burnOrc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"burnOrcs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"incoming","type":"bytes32"}],"name":"changeMerkleFinal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"incoming","type":"bytes32"}],"name":"changeMerkleOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"incoming","type":"bytes32"}],"name":"changeMerkleThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"incoming","type":"bytes32"}],"name":"changeMerkleTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"finalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFinal","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootOne","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootThree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootTwo","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"oneMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"orcSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"threeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"twoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040527f8db2bf88bb01c9d0b09241ccee6cfab3560a4c732b4c34f0ede66c503992e127600a557f425d1bb1828566451fe5f0484ea32aff160a0e6d6e3715cad35e09d0436e645a600b557fad54200330683c1b0fe4f3c9131fbbbf17489cfd77c8debe3f32fc0b4078a5ac600c557f72e5fdfab6e99537eedc6913b42da7585f2268574624ac938dc2c3f1ae07f5cf600d55600e805461ffff19169055348015620000ac57600080fd5b506040516200292738038062002927833981016040819052620000cf91620003b4565b60408051808201825260098152684f6d656761204f726360b81b6020808301918252835180850190945260048452634f4f524360e01b9084015281519192916200011c916002916200030e565b508051620001329060039060208401906200030e565b50506000805550620001443362000163565b6200014f81620001b5565b6200015c33600a6200022d565b50620004e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620002299060099060208401906200030e565b5050565b6000546001600160a01b0383166200025757604051622e076360e81b815260040160405180910390fd5b81620002765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620002c15750600055505050565b8280546200031c9062000490565b90600052602060002090601f0160209004810192826200034057600085556200038b565b82601f106200035b57805160ff19168380011785556200038b565b828001600101855582156200038b579182015b828111156200038b5782518255916020019190600101906200036e565b50620003999291506200039d565b5090565b5b808211156200039957600081556001016200039e565b60006020808385031215620003c857600080fd5b82516001600160401b0380821115620003e057600080fd5b818501915085601f830112620003f557600080fd5b8151818111156200040a576200040a620004cd565b604051601f8201601f19908116603f01168101908382118183101715620004355762000435620004cd565b8160405282815288868487010111156200044e57600080fd5b600093505b8284101562000472578484018601518185018701529285019262000453565b82841115620004845760008684830101525b98975050505050505050565b600181811c90821680620004a557607f821691505b60208210811415620004c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61243480620004f36000396000f3fe6080604052600436106102725760003560e01c80637362377b1161014f578063b88d4fde116100c1578063d365e5a11161007a578063d365e5a1146106c5578063d6fb1d47146106e5578063e7243779146106fa578063e985e9c514610710578063e9f3f93314610759578063f2fde38b1461076e57600080fd5b8063b88d4fde14610621578063ba70c51514610641578063c848a9c21461065b578063c877142b14610670578063c87b56dd14610685578063cc4b0c51146106a557600080fd5b806392cca8141161011357806392cca8141461058d57806395d89b41146105a3578063a22cb465146105b8578063a36e76f5146105d8578063a8f915f0146105eb578063b21471681461060b57600080fd5b80637362377b146105115780638088f47314610526578063817772fb1461053c5780638da5cb5b1461055c57806391c8593d1461057a57600080fd5b806334bc4ef7116101e857806355f804b3116101ac57806355f804b31461047457806359ff958a146104945780636352211e146104a75780636c0360eb146104c757806370a08231146104dc578063715018a6146104fc57600080fd5b806334bc4ef7146103c8578063400240d4146103e857806342842e0e14610408578063438b630014610428578063477dfefb1461045557600080fd5b806312065fe01161023a57806312065fe01461034c57806318160ddd1461035f57806323b872dd1461037857806326092b83146103985780632a1e2edc146103a05780632fb3d4cc146103b557600080fd5b806301ffc9a714610277578063061b0b4c146102ac57806306fdde03146102d0578063081812fc146102f2578063095ea7b31461032a575b600080fd5b34801561028357600080fd5b5061029761029236600461208a565b61078e565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c261053581565b6040519081526020016102a3565b3480156102dc57600080fd5b506102e56107e0565b6040516102a39190612216565b3480156102fe57600080fd5b5061031261030d366004612071565b610872565b6040516001600160a01b0390911681526020016102a3565b34801561033657600080fd5b5061034a610345366004611f25565b6108b6565b005b34801561035857600080fd5b50476102c2565b34801561036b57600080fd5b50600154600054036102c2565b34801561038457600080fd5b5061034a610393366004611e31565b610989565b61034a610999565b3480156103ac57600080fd5b5061034a610a2f565b61034a6103c3366004611f4f565b610a7f565b3480156103d457600080fd5b5061034a6103e3366004612071565b610b87565b3480156103f457600080fd5b5061034a610403366004612071565b610bad565b34801561041457600080fd5b5061034a610423366004611e31565b610bdc565b34801561043457600080fd5b50610448610443366004611de3565b610bf7565b6040516102a391906121d2565b34801561046157600080fd5b50600e5461029790610100900460ff1681565b34801561048057600080fd5b5061034a61048f3660046120c4565b610d32565b61034a6104a2366004611f4f565b610d73565b3480156104b357600080fd5b506103126104c2366004612071565b610e7b565b3480156104d357600080fd5b506102e5610e86565b3480156104e857600080fd5b506102c26104f7366004611de3565b610f14565b34801561050857600080fd5b5061034a610f63565b34801561051d57600080fd5b5061034a610f97565b34801561053257600080fd5b506102c2600b5481565b34801561054857600080fd5b5061034a610557366004612071565b611016565b34801561056857600080fd5b506008546001600160a01b0316610312565b61034a610588366004611f4f565b611045565b34801561059957600080fd5b506102c2600a5481565b3480156105af57600080fd5b506102e561114d565b3480156105c457600080fd5b5061034a6105d3366004611ee9565b61115c565b61034a6105e6366004611f4f565b6111f2565b3480156105f757600080fd5b5061034a610606366004612071565b6112e9565b34801561061757600080fd5b506102c2600d5481565b34801561062d57600080fd5b5061034a61063c366004611e6d565b611318565b34801561064d57600080fd5b50600e546102979060ff1681565b34801561066757600080fd5b506102c2600381565b34801561067c57600080fd5b5061034a611362565b34801561069157600080fd5b506102e56106a0366004612071565b6113a0565b3480156106b157600080fd5b5061034a6106c0366004611fc4565b61146c565b3480156106d157600080fd5b5061034a6106e0366004612071565b6114c6565b3480156106f157600080fd5b506102c2600181565b34801561070657600080fd5b506102c2600c5481565b34801561071c57600080fd5b5061029761072b366004611dfe565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102c2600281565b34801561077a57600080fd5b5061034a610789366004611de3565b6114f5565b60006301ffc9a760e01b6001600160e01b0319831614806107bf57506380ac58cd60e01b6001600160e01b03198316145b806107da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107ef90612326565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612326565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261158d565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c1826115b4565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461092d57610910813361072b565b61092d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610994838383611615565b505050565b600e5460ff1615156001146109ad57600080fd5b3332146109b957600080fd5b336000908152601360205260409020546001116109d557600080fd5b61053560016109e76001546000540390565b6109f191906122b7565b11156109fc57600080fd5b336000908152601360205260408120805460019290610a1c9084906122b7565b90915550610a2d90503360016117b8565b565b6008546001600160a01b03163314610a625760405162461bcd60e51b8152600401610a5990612229565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b333214610a8b57600080fd5b336000908152600f6020526040902054600111610aa757600080fd5b6105356001610ab96001546000540390565b610ac391906122b7565b1115610ace57600080fd5b600033604051602001610ae19190612139565b604051602081830303815290604052805190602001209050610b3a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611896565b610b565760405162461bcd60e51b8152600401610a599061225e565b336000908152600f60205260408120805460019290610b769084906122b7565b9091555061099490503360016117b8565b600e5460ff610100909104161515600114610ba157600080fd5b610baa816118ac565b50565b6008546001600160a01b03163314610bd75760405162461bcd60e51b8152600401610a5990612229565b600b55565b61099483838360405180602001604052806000815250611318565b60606000610c0483610f14565b905060008167ffffffffffffffff811115610c2157610c216123d2565b604051908082528060200260200182016040528015610c4a578160200160208202803683370190505b509050600080610c5d6001546000540390565b905060005b81811015610d27576000610c758261158d565b90508015610cd057876001600160a01b0316610c9083610e7b565b6001600160a01b03161415610ccb5781858581518110610cb257610cb26123bc565b602090810291909101015283610cc781612361565b9450505b610d14565b80158015610d01575084610ce56001886122e3565b81518110610cf557610cf56123bc565b60200260200101516000145b15610d145782610d1081612361565b9350505b5080610d1f81612361565b915050610c62565b509195945050505050565b6008546001600160a01b03163314610d5c5760405162461bcd60e51b8152600401610a5990612229565b8051610d6f906009906020840190611cd6565b5050565b333214610d7f57600080fd5b33600090815260106020526040902054600211610d9b57600080fd5b6105356002610dad6001546000540390565b610db791906122b7565b1115610dc257600080fd5b600033604051602001610dd59190612139565b604051602081830303815290604052805190602001209050610e2e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611896565b610e4a5760405162461bcd60e51b8152600401610a599061225e565b336000908152601060205260408120805460029290610e6a9084906122b7565b9091555061099490503360026117b8565b60006107da826115b4565b60098054610e9390612326565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebf90612326565b8015610f0c5780601f10610ee157610100808354040283529160200191610f0c565b820191906000526020600020905b815481529060010190602001808311610eef57829003601f168201915b505050505081565b60006001600160a01b038216610f3d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f8d5760405162461bcd60e51b8152600401610a5990612229565b610a2d60006118b7565b6008546001600160a01b03163314610fc15760405162461bcd60e51b8152600401610a5990612229565b604051600090339047908381818185875af1925050503d8060008114611003576040519150601f19603f3d011682016040523d82523d6000602084013e611008565b606091505b5050905080610baa57600080fd5b6008546001600160a01b031633146110405760405162461bcd60e51b8152600401610a5990612229565b600d55565b33321461105157600080fd5b3360009081526011602052604090205460031161106d57600080fd5b610535600361107f6001546000540390565b61108991906122b7565b111561109457600080fd5b6000336040516020016110a79190612139565b60405160208183030381529060405280519060200120905061110083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611896565b61111c5760405162461bcd60e51b8152600401610a599061225e565b33600090815260116020526040812080546003929061113c9084906122b7565b9091555061099490503360036117b8565b6060600380546107ef90612326565b6001600160a01b0382163314156111865760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3332146111fe57600080fd5b3360009081526012602052604090205460011161121a57600080fd5b610535600161122c6001546000540390565b61123691906122b7565b111561124157600080fd5b6000336040516020016112549190612139565b6040516020818303038152906040528051906020012090506112ad83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611896565b6112c95760405162461bcd60e51b8152600401610a599061225e565b336000908152601260205260408120805460019290610b769084906122b7565b6008546001600160a01b031633146113135760405162461bcd60e51b8152600401610a5990612229565b600c55565b611323848484611615565b6001600160a01b0383163b1561135c5761133f84848484611909565b61135c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610a5990612229565b600e805460ff19811660ff90911615179055565b60606113ab8261158d565b6114105760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a59565b600061141a611a01565b9050600081511161143a5760405180602001604052806000815250611465565b8061144484611a10565b604051602001611455929190612156565b6040516020818303038152906040525b9392505050565b600e5460ff61010090910416151560011461148657600080fd5b60005b8151811015610d6f576114b48282815181106114a7576114a76123bc565b60200260200101516118ac565b806114be81612361565b915050611489565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610a5990612229565b600a55565b6008546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610a5990612229565b6001600160a01b0381166115845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a59565b610baa816118b7565b60008054821080156107da575050600090815260046020526040902054600160e01b161590565b6000816000548110156115fc57600081815260046020526040902054600160e01b81166115fa575b806114655750600019016000818152600460205260409020546115dc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611620826115b4565b9050836001600160a01b0316816001600160a01b0316146116535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116715750611671853361072b565b8061168c57503361168184610872565b6001600160a01b0316145b9050806116ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611770576001830160008181526004602052604090205461176e57600054811461176e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b0383166117e157604051622e076360e81b815260040160405180910390fd5b816117ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184a5750600055505050565b6000826118a38584611b0e565b14949350505050565b610baa816000611b82565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061193e903390899088908890600401612195565b602060405180830381600087803b15801561195857600080fd5b505af1925050508015611988575060408051601f3d908101601f19168201909252611985918101906120a7565b60015b6119e3573d8080156119b6576040519150601f19603f3d011682016040523d82523d6000602084013e6119bb565b606091505b5080516119db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ef90612326565b606081611a345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5e5780611a4881612361565b9150611a579050600a836122cf565b9150611a38565b60008167ffffffffffffffff811115611a7957611a796123d2565b6040519080825280601f01601f191660200182016040528015611aa3576020820181803683370190505b5090505b84156119f957611ab86001836122e3565b9150611ac5600a8661237c565b611ad09060306122b7565b60f81b818381518110611ae557611ae56123bc565b60200101906001600160f81b031916908160001a905350611b07600a866122cf565b9450611aa7565b600081815b8451811015611b7a576000858281518110611b3057611b306123bc565b60200260200101519050808311611b565760008381526020829052604090209250611b67565b600081815260208490526040902092505b5080611b7281612361565b915050611b13565b509392505050565b6000611b8d836115b4565b9050808215611bf1576000336001600160a01b0383161480611bb45750611bb4823361072b565b80611bcf575033611bc486610872565b6001600160a01b0316145b905080611bef57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611c905760018401600081815260046020526040902054611c8e576000548114611c8e5760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b828054611ce290612326565b90600052602060002090601f016020900481019282611d045760008555611d4a565b82601f10611d1d57805160ff1916838001178555611d4a565b82800160010185558215611d4a579182015b82811115611d4a578251825591602001919060010190611d2f565b50611d56929150611d5a565b5090565b5b80821115611d565760008155600101611d5b565b600067ffffffffffffffff831115611d8957611d896123d2565b611d9c601f8401601f1916602001612286565b9050828152838383011115611db057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611dde57600080fd5b919050565b600060208284031215611df557600080fd5b61146582611dc7565b60008060408385031215611e1157600080fd5b611e1a83611dc7565b9150611e2860208401611dc7565b90509250929050565b600080600060608486031215611e4657600080fd5b611e4f84611dc7565b9250611e5d60208501611dc7565b9150604084013590509250925092565b60008060008060808587031215611e8357600080fd5b611e8c85611dc7565b9350611e9a60208601611dc7565b925060408501359150606085013567ffffffffffffffff811115611ebd57600080fd5b8501601f81018713611ece57600080fd5b611edd87823560208401611d6f565b91505092959194509250565b60008060408385031215611efc57600080fd5b611f0583611dc7565b915060208301358015158114611f1a57600080fd5b809150509250929050565b60008060408385031215611f3857600080fd5b611f4183611dc7565b946020939093013593505050565b60008060208385031215611f6257600080fd5b823567ffffffffffffffff80821115611f7a57600080fd5b818501915085601f830112611f8e57600080fd5b813581811115611f9d57600080fd5b8660208260051b8501011115611fb257600080fd5b60209290920196919550909350505050565b60006020808385031215611fd757600080fd5b823567ffffffffffffffff80821115611fef57600080fd5b818501915085601f83011261200357600080fd5b813581811115612015576120156123d2565b8060051b9150612026848301612286565b8181528481019084860184860187018a101561204157600080fd5b600095505b83861015612064578035835260019590950194918601918601612046565b5098975050505050505050565b60006020828403121561208357600080fd5b5035919050565b60006020828403121561209c57600080fd5b8135611465816123e8565b6000602082840312156120b957600080fd5b8151611465816123e8565b6000602082840312156120d657600080fd5b813567ffffffffffffffff8111156120ed57600080fd5b8201601f810184136120fe57600080fd5b6119f984823560208401611d6f565b600081518084526121258160208601602086016122fa565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516121688184602088016122fa565b83519083019061217c8183602088016122fa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121c89083018461210d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561220a578351835292840192918401916001016121ee565b50909695505050505050565b602081526000611465602083018461210d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122af576122af6123d2565b604052919050565b600082198211156122ca576122ca612390565b500190565b6000826122de576122de6123a6565b500490565b6000828210156122f5576122f5612390565b500390565b60005b838110156123155781810151838201526020016122fd565b8381111561135c5750506000910152565b600181811c9082168061233a57607f821691505b6020821081141561235b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237557612375612390565b5060010190565b60008261238b5761238b6123a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610baa57600080fdfea264697066735822122002cc3eda9dc5149d09048b029d1edbd2619e974f8c368cd7721e09ce9b44bc3164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f616d6574687973742d6a7573742d6d616361772d3939362e6d7970696e6174612e636c6f75642f697066732f516d58503870334b4b376b4d697031536f63694c6739346b693748424e466666473144357761337a7633633943792f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80637362377b1161014f578063b88d4fde116100c1578063d365e5a11161007a578063d365e5a1146106c5578063d6fb1d47146106e5578063e7243779146106fa578063e985e9c514610710578063e9f3f93314610759578063f2fde38b1461076e57600080fd5b8063b88d4fde14610621578063ba70c51514610641578063c848a9c21461065b578063c877142b14610670578063c87b56dd14610685578063cc4b0c51146106a557600080fd5b806392cca8141161011357806392cca8141461058d57806395d89b41146105a3578063a22cb465146105b8578063a36e76f5146105d8578063a8f915f0146105eb578063b21471681461060b57600080fd5b80637362377b146105115780638088f47314610526578063817772fb1461053c5780638da5cb5b1461055c57806391c8593d1461057a57600080fd5b806334bc4ef7116101e857806355f804b3116101ac57806355f804b31461047457806359ff958a146104945780636352211e146104a75780636c0360eb146104c757806370a08231146104dc578063715018a6146104fc57600080fd5b806334bc4ef7146103c8578063400240d4146103e857806342842e0e14610408578063438b630014610428578063477dfefb1461045557600080fd5b806312065fe01161023a57806312065fe01461034c57806318160ddd1461035f57806323b872dd1461037857806326092b83146103985780632a1e2edc146103a05780632fb3d4cc146103b557600080fd5b806301ffc9a714610277578063061b0b4c146102ac57806306fdde03146102d0578063081812fc146102f2578063095ea7b31461032a575b600080fd5b34801561028357600080fd5b5061029761029236600461208a565b61078e565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c261053581565b6040519081526020016102a3565b3480156102dc57600080fd5b506102e56107e0565b6040516102a39190612216565b3480156102fe57600080fd5b5061031261030d366004612071565b610872565b6040516001600160a01b0390911681526020016102a3565b34801561033657600080fd5b5061034a610345366004611f25565b6108b6565b005b34801561035857600080fd5b50476102c2565b34801561036b57600080fd5b50600154600054036102c2565b34801561038457600080fd5b5061034a610393366004611e31565b610989565b61034a610999565b3480156103ac57600080fd5b5061034a610a2f565b61034a6103c3366004611f4f565b610a7f565b3480156103d457600080fd5b5061034a6103e3366004612071565b610b87565b3480156103f457600080fd5b5061034a610403366004612071565b610bad565b34801561041457600080fd5b5061034a610423366004611e31565b610bdc565b34801561043457600080fd5b50610448610443366004611de3565b610bf7565b6040516102a391906121d2565b34801561046157600080fd5b50600e5461029790610100900460ff1681565b34801561048057600080fd5b5061034a61048f3660046120c4565b610d32565b61034a6104a2366004611f4f565b610d73565b3480156104b357600080fd5b506103126104c2366004612071565b610e7b565b3480156104d357600080fd5b506102e5610e86565b3480156104e857600080fd5b506102c26104f7366004611de3565b610f14565b34801561050857600080fd5b5061034a610f63565b34801561051d57600080fd5b5061034a610f97565b34801561053257600080fd5b506102c2600b5481565b34801561054857600080fd5b5061034a610557366004612071565b611016565b34801561056857600080fd5b506008546001600160a01b0316610312565b61034a610588366004611f4f565b611045565b34801561059957600080fd5b506102c2600a5481565b3480156105af57600080fd5b506102e561114d565b3480156105c457600080fd5b5061034a6105d3366004611ee9565b61115c565b61034a6105e6366004611f4f565b6111f2565b3480156105f757600080fd5b5061034a610606366004612071565b6112e9565b34801561061757600080fd5b506102c2600d5481565b34801561062d57600080fd5b5061034a61063c366004611e6d565b611318565b34801561064d57600080fd5b50600e546102979060ff1681565b34801561066757600080fd5b506102c2600381565b34801561067c57600080fd5b5061034a611362565b34801561069157600080fd5b506102e56106a0366004612071565b6113a0565b3480156106b157600080fd5b5061034a6106c0366004611fc4565b61146c565b3480156106d157600080fd5b5061034a6106e0366004612071565b6114c6565b3480156106f157600080fd5b506102c2600181565b34801561070657600080fd5b506102c2600c5481565b34801561071c57600080fd5b5061029761072b366004611dfe565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102c2600281565b34801561077a57600080fd5b5061034a610789366004611de3565b6114f5565b60006301ffc9a760e01b6001600160e01b0319831614806107bf57506380ac58cd60e01b6001600160e01b03198316145b806107da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107ef90612326565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612326565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261158d565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c1826115b4565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461092d57610910813361072b565b61092d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610994838383611615565b505050565b600e5460ff1615156001146109ad57600080fd5b3332146109b957600080fd5b336000908152601360205260409020546001116109d557600080fd5b61053560016109e76001546000540390565b6109f191906122b7565b11156109fc57600080fd5b336000908152601360205260408120805460019290610a1c9084906122b7565b90915550610a2d90503360016117b8565b565b6008546001600160a01b03163314610a625760405162461bcd60e51b8152600401610a5990612229565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b333214610a8b57600080fd5b336000908152600f6020526040902054600111610aa757600080fd5b6105356001610ab96001546000540390565b610ac391906122b7565b1115610ace57600080fd5b600033604051602001610ae19190612139565b604051602081830303815290604052805190602001209050610b3a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611896565b610b565760405162461bcd60e51b8152600401610a599061225e565b336000908152600f60205260408120805460019290610b769084906122b7565b9091555061099490503360016117b8565b600e5460ff610100909104161515600114610ba157600080fd5b610baa816118ac565b50565b6008546001600160a01b03163314610bd75760405162461bcd60e51b8152600401610a5990612229565b600b55565b61099483838360405180602001604052806000815250611318565b60606000610c0483610f14565b905060008167ffffffffffffffff811115610c2157610c216123d2565b604051908082528060200260200182016040528015610c4a578160200160208202803683370190505b509050600080610c5d6001546000540390565b905060005b81811015610d27576000610c758261158d565b90508015610cd057876001600160a01b0316610c9083610e7b565b6001600160a01b03161415610ccb5781858581518110610cb257610cb26123bc565b602090810291909101015283610cc781612361565b9450505b610d14565b80158015610d01575084610ce56001886122e3565b81518110610cf557610cf56123bc565b60200260200101516000145b15610d145782610d1081612361565b9350505b5080610d1f81612361565b915050610c62565b509195945050505050565b6008546001600160a01b03163314610d5c5760405162461bcd60e51b8152600401610a5990612229565b8051610d6f906009906020840190611cd6565b5050565b333214610d7f57600080fd5b33600090815260106020526040902054600211610d9b57600080fd5b6105356002610dad6001546000540390565b610db791906122b7565b1115610dc257600080fd5b600033604051602001610dd59190612139565b604051602081830303815290604052805190602001209050610e2e83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611896565b610e4a5760405162461bcd60e51b8152600401610a599061225e565b336000908152601060205260408120805460029290610e6a9084906122b7565b9091555061099490503360026117b8565b60006107da826115b4565b60098054610e9390612326565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebf90612326565b8015610f0c5780601f10610ee157610100808354040283529160200191610f0c565b820191906000526020600020905b815481529060010190602001808311610eef57829003601f168201915b505050505081565b60006001600160a01b038216610f3d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f8d5760405162461bcd60e51b8152600401610a5990612229565b610a2d60006118b7565b6008546001600160a01b03163314610fc15760405162461bcd60e51b8152600401610a5990612229565b604051600090339047908381818185875af1925050503d8060008114611003576040519150601f19603f3d011682016040523d82523d6000602084013e611008565b606091505b5050905080610baa57600080fd5b6008546001600160a01b031633146110405760405162461bcd60e51b8152600401610a5990612229565b600d55565b33321461105157600080fd5b3360009081526011602052604090205460031161106d57600080fd5b610535600361107f6001546000540390565b61108991906122b7565b111561109457600080fd5b6000336040516020016110a79190612139565b60405160208183030381529060405280519060200120905061110083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611896565b61111c5760405162461bcd60e51b8152600401610a599061225e565b33600090815260116020526040812080546003929061113c9084906122b7565b9091555061099490503360036117b8565b6060600380546107ef90612326565b6001600160a01b0382163314156111865760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3332146111fe57600080fd5b3360009081526012602052604090205460011161121a57600080fd5b610535600161122c6001546000540390565b61123691906122b7565b111561124157600080fd5b6000336040516020016112549190612139565b6040516020818303038152906040528051906020012090506112ad83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611896565b6112c95760405162461bcd60e51b8152600401610a599061225e565b336000908152601260205260408120805460019290610b769084906122b7565b6008546001600160a01b031633146113135760405162461bcd60e51b8152600401610a5990612229565b600c55565b611323848484611615565b6001600160a01b0383163b1561135c5761133f84848484611909565b61135c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610a5990612229565b600e805460ff19811660ff90911615179055565b60606113ab8261158d565b6114105760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a59565b600061141a611a01565b9050600081511161143a5760405180602001604052806000815250611465565b8061144484611a10565b604051602001611455929190612156565b6040516020818303038152906040525b9392505050565b600e5460ff61010090910416151560011461148657600080fd5b60005b8151811015610d6f576114b48282815181106114a7576114a76123bc565b60200260200101516118ac565b806114be81612361565b915050611489565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610a5990612229565b600a55565b6008546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610a5990612229565b6001600160a01b0381166115845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a59565b610baa816118b7565b60008054821080156107da575050600090815260046020526040902054600160e01b161590565b6000816000548110156115fc57600081815260046020526040902054600160e01b81166115fa575b806114655750600019016000818152600460205260409020546115dc565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611620826115b4565b9050836001600160a01b0316816001600160a01b0316146116535760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116715750611671853361072b565b8061168c57503361168184610872565b6001600160a01b0316145b9050806116ac57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611770576001830160008181526004602052604090205461176e57600054811461176e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b0383166117e157604051622e076360e81b815260040160405180910390fd5b816117ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184a5750600055505050565b6000826118a38584611b0e565b14949350505050565b610baa816000611b82565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061193e903390899088908890600401612195565b602060405180830381600087803b15801561195857600080fd5b505af1925050508015611988575060408051601f3d908101601f19168201909252611985918101906120a7565b60015b6119e3573d8080156119b6576040519150601f19603f3d011682016040523d82523d6000602084013e6119bb565b606091505b5080516119db576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ef90612326565b606081611a345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5e5780611a4881612361565b9150611a579050600a836122cf565b9150611a38565b60008167ffffffffffffffff811115611a7957611a796123d2565b6040519080825280601f01601f191660200182016040528015611aa3576020820181803683370190505b5090505b84156119f957611ab86001836122e3565b9150611ac5600a8661237c565b611ad09060306122b7565b60f81b818381518110611ae557611ae56123bc565b60200101906001600160f81b031916908160001a905350611b07600a866122cf565b9450611aa7565b600081815b8451811015611b7a576000858281518110611b3057611b306123bc565b60200260200101519050808311611b565760008381526020829052604090209250611b67565b600081815260208490526040902092505b5080611b7281612361565b915050611b13565b509392505050565b6000611b8d836115b4565b9050808215611bf1576000336001600160a01b0383161480611bb45750611bb4823361072b565b80611bcf575033611bc486610872565b6001600160a01b0316145b905080611bef57604051632ce44b5f60e11b815260040160405180910390fd5b505b600084815260066020908152604080832080546001600160a01b03191690556001600160a01b03841683526005825280832080546fffffffffffffffffffffffffffffffff01905586835260049091529020600360e01b4260a01b8317179055600160e11b8216611c905760018401600081815260046020526040902054611c8e576000548114611c8e5760008181526004602052604090208390555b505b60405184906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b828054611ce290612326565b90600052602060002090601f016020900481019282611d045760008555611d4a565b82601f10611d1d57805160ff1916838001178555611d4a565b82800160010185558215611d4a579182015b82811115611d4a578251825591602001919060010190611d2f565b50611d56929150611d5a565b5090565b5b80821115611d565760008155600101611d5b565b600067ffffffffffffffff831115611d8957611d896123d2565b611d9c601f8401601f1916602001612286565b9050828152838383011115611db057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611dde57600080fd5b919050565b600060208284031215611df557600080fd5b61146582611dc7565b60008060408385031215611e1157600080fd5b611e1a83611dc7565b9150611e2860208401611dc7565b90509250929050565b600080600060608486031215611e4657600080fd5b611e4f84611dc7565b9250611e5d60208501611dc7565b9150604084013590509250925092565b60008060008060808587031215611e8357600080fd5b611e8c85611dc7565b9350611e9a60208601611dc7565b925060408501359150606085013567ffffffffffffffff811115611ebd57600080fd5b8501601f81018713611ece57600080fd5b611edd87823560208401611d6f565b91505092959194509250565b60008060408385031215611efc57600080fd5b611f0583611dc7565b915060208301358015158114611f1a57600080fd5b809150509250929050565b60008060408385031215611f3857600080fd5b611f4183611dc7565b946020939093013593505050565b60008060208385031215611f6257600080fd5b823567ffffffffffffffff80821115611f7a57600080fd5b818501915085601f830112611f8e57600080fd5b813581811115611f9d57600080fd5b8660208260051b8501011115611fb257600080fd5b60209290920196919550909350505050565b60006020808385031215611fd757600080fd5b823567ffffffffffffffff80821115611fef57600080fd5b818501915085601f83011261200357600080fd5b813581811115612015576120156123d2565b8060051b9150612026848301612286565b8181528481019084860184860187018a101561204157600080fd5b600095505b83861015612064578035835260019590950194918601918601612046565b5098975050505050505050565b60006020828403121561208357600080fd5b5035919050565b60006020828403121561209c57600080fd5b8135611465816123e8565b6000602082840312156120b957600080fd5b8151611465816123e8565b6000602082840312156120d657600080fd5b813567ffffffffffffffff8111156120ed57600080fd5b8201601f810184136120fe57600080fd5b6119f984823560208401611d6f565b600081518084526121258160208601602086016122fa565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516121688184602088016122fa565b83519083019061217c8183602088016122fa565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121c89083018461210d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561220a578351835292840192918401916001016121ee565b50909695505050505050565b602081526000611465602083018461210d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122af576122af6123d2565b604052919050565b600082198211156122ca576122ca612390565b500190565b6000826122de576122de6123a6565b500490565b6000828210156122f5576122f5612390565b500390565b60005b838110156123155781810151838201526020016122fd565b8381111561135c5750506000910152565b600181811c9082168061233a57607f821691505b6020821081141561235b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561237557612375612390565b5060010190565b60008261238b5761238b6123a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610baa57600080fdfea264697066735822122002cc3eda9dc5149d09048b029d1edbd2619e974f8c368cd7721e09ce9b44bc3164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f616d6574687973742d6a7573742d6d616361772d3939362e6d7970696e6174612e636c6f75642f697066732f516d58503870334b4b376b4d697031536f63694c6739346b693748424e466666473144357761337a7633633943792f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://amethyst-just-macaw-996.mypinata.cloud/ipfs/QmXP8p3KK7kMip1SociLg94ki7HBNFffG1D5wa3zv3c9Cy/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [2] : 68747470733a2f2f616d6574687973742d6a7573742d6d616361772d3939362e
Arg [3] : 6d7970696e6174612e636c6f75642f697066732f516d58503870334b4b376b4d
Arg [4] : 697031536f63694c6739346b693748424e466666473144357761337a76336339
Arg [5] : 43792f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46781:6675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13149:615;;;;;;;;;;-1:-1:-1;13149:615:0;;;;;:::i;:::-;;:::i;:::-;;;8436:14:1;;8429:22;8411:41;;8399:2;8384:18;13149:615:0;;;;;;;;47022:40;;;;;;;;;;;;47058:4;47022:40;;;;;8609:25:1;;;8597:2;8582:18;47022:40:0;8463:177:1;18162:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20230:204::-;;;;;;;;;;-1:-1:-1;20230:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7097:32:1;;;7079:51;;7067:2;7052:18;20230:204:0;6933:203:1;19690:474:0;;;;;;;;;;-1:-1:-1;19690:474:0;;;;;:::i;:::-;;:::i;:::-;;52616:99;;;;;;;;;;-1:-1:-1;52686:21:0;52616:99;;12203:315;;;;;;;;;;-1:-1:-1;12469:12:0;;12256:7;12453:13;:28;12203:315;;21116:170;;;;;;;;;;-1:-1:-1;21116:170:0;;;;;:::i;:::-;;:::i;48265:272::-;;;:::i;51180:81::-;;;;;;;;;;;;;:::i;49069:508::-;;;;;;:::i;:::-;;:::i;51269:90::-;;;;;;;;;;-1:-1:-1;51269:90:0;;;;;:::i;:::-;;:::i;50744:103::-;;;;;;;;;;-1:-1:-1;50744:103:0;;;;;:::i;:::-;;:::i;21357:185::-;;;;;;;;;;-1:-1:-1;21357:185:0;;;;;:::i;:::-;;:::i;52723:730::-;;;;;;;;;;-1:-1:-1;52723:730:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47572:28::-;;;;;;;;;;-1:-1:-1;47572:28:0;;;;;;;;;;;51861:104;;;;;;;;;;-1:-1:-1;51861:104:0;;;;;:::i;:::-;;:::i;49585:508::-;;;;;;:::i;:::-;;:::i;17951:144::-;;;;;;;;;;-1:-1:-1;17951:144:0;;;;;:::i;:::-;;:::i;46860:21::-;;;;;;;;;;;;;:::i;13828:224::-;;;;;;;;;;-1:-1:-1;13828:224:0;;;;;:::i;:::-;;:::i;41043:103::-;;;;;;;;;;;;;:::i;51556:181::-;;;;;;;;;;;;;:::i;47184:106::-;;;;;;;;;;;;;;;;50970:107;;;;;;;;;;-1:-1:-1;50970:107:0;;;;;:::i;:::-;;:::i;40392:87::-;;;;;;;;;;-1:-1:-1;40465:6:0;;-1:-1:-1;;;;;40465:6:0;40392:87;;50101:524;;;;;;:::i;:::-;;:::i;47071:106::-;;;;;;;;;;;;;;;;18331:104;;;;;;;;;;;;;:::i;20506:308::-;;;;;;;;;;-1:-1:-1;20506:308:0;;;;;:::i;:::-;;:::i;48545:516::-;;;;;;:::i;:::-;;:::i;50855:107::-;;;;;;;;;;-1:-1:-1;50855:107:0;;;;;:::i;:::-;;:::i;47412:108::-;;;;;;;;;;;;;;;;21613:396;;;;;;;;;;-1:-1:-1;21613:396:0;;;;;:::i;:::-;;:::i;47535:30::-;;;;;;;;;;-1:-1:-1;47535:30:0;;;;;;;;46976:39;;;;;;;;;;;;47014:1;46976:39;;51085:87;;;;;;;;;;;;;:::i;51973:635::-;;;;;;;;;;-1:-1:-1;51973:635:0;;;;;:::i;:::-;;:::i;51367:181::-;;;;;;;;;;-1:-1:-1;51367:181:0;;;;;:::i;:::-;;:::i;50633:103::-;;;;;;;;;;-1:-1:-1;50633:103:0;;;;;:::i;:::-;;:::i;46888:37::-;;;;;;;;;;;;46924:1;46888:37;;47297:108;;;;;;;;;;;;;;;;20885:164;;;;;;;;;;-1:-1:-1;20885:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21006:25:0;;;20982:4;21006:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20885:164;46932:37;;;;;;;;;;;;46968:1;46932:37;;41301:201;;;;;;;;;;-1:-1:-1;41301:201:0;;;;;:::i;:::-;;:::i;13149:615::-;13234:4;-1:-1:-1;;;;;;;;;13534:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13611:25:0;;;13534:102;:179;;;-1:-1:-1;;;;;;;;;;13688:25:0;;;13534:179;13514:199;13149:615;-1:-1:-1;;13149:615:0:o;18162:100::-;18216:13;18249:5;18242:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18162:100;:::o;20230:204::-;20298:7;20323:16;20331:7;20323;:16::i;:::-;20318:64;;20348:34;;-1:-1:-1;;;20348:34:0;;;;;;;;;;;20318:64;-1:-1:-1;20402:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20402:24:0;;20230:204::o;19690:474::-;19763:13;19795:27;19814:7;19795:18;:27::i;:::-;19763:61;;19845:5;-1:-1:-1;;;;;19839:11:0;:2;-1:-1:-1;;;;;19839:11:0;;19835:48;;;19859:24;;-1:-1:-1;;;19859:24:0;;;;;;;;;;;19835:48;36333:10;-1:-1:-1;;;;;19900:28:0;;;19896:175;;19948:44;19965:5;36333:10;20885:164;:::i;19948:44::-;19943:128;;20020:35;;-1:-1:-1;;;20020:35:0;;;;;;;;;;;19943:128;20083:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20083:29:0;-1:-1:-1;;;;;20083:29:0;;;;;;;;;20128:28;;20083:24;;20128:28;;;;;;;19752:412;19690:474;;:::o;21116:170::-;21250:28;21260:4;21266:2;21270:7;21250:9;:28::i;:::-;21116:170;;;:::o;48265:272::-;47974:10;;;;:18;;:10;:18;47966:27;;;;;;47881:10:::1;47895:9;47881:23;47873:32;;;::::0;::::1;;48358:10:::2;48345:24;::::0;;;:12:::2;:24;::::0;;;;;46924:1:::2;-1:-1:-1::0;48337:45:0::2;;;::::0;::::2;;47058:4;46924:1;48401:13;12469:12:::0;;12256:7;12453:13;:28;;12203:315;48401:13:::2;:25;;;;:::i;:::-;:38;;48393:47;;;::::0;::::2;;48466:10;48453:24;::::0;;;:12:::2;:24;::::0;;;;:37;;46924:1:::2;::::0;48453:24;:37:::2;::::0;46924:1;;48453:37:::2;:::i;:::-;::::0;;;-1:-1:-1;48501:28:0::2;::::0;-1:-1:-1;48507:10:0::2;46924:1;48501:5;:28::i;:::-;48265:272::o:0;51180:81::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;;;;;;;;;51245:8:::1;::::0;;-1:-1:-1;;51233:20:0;::::1;51245:8;::::0;;;::::1;;;51244:9;51233:20:::0;;::::1;;::::0;;51180:81::o;49069:508::-;47881:10;47895:9;47881:23;47873:32;;;;;;49206:10:::1;49196:21;::::0;;;:9:::1;:21;::::0;;;;;46924:1:::1;-1:-1:-1::0;49188:42:0::1;;;::::0;::::1;;47058:4;46924:1;49249:13;12469:12:::0;;12256:7;12453:13;:28;;12203:315;49249:13:::1;:25;;;;:::i;:::-;:38;;49241:47;;;::::0;::::1;;49301:12;49343:10;49326:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;49316:39;;;;;;49301:54;;49388:53;49407:12;;49388:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49421:13:0::1;::::0;;-1:-1:-1;49436:4:0;;-1:-1:-1;49388:18:0::1;:53::i;:::-;49366:117;;;;-1:-1:-1::0;;;49366:117:0::1;;;;;;;:::i;:::-;49506:10;49496:21;::::0;;;:9:::1;:21;::::0;;;;:34;;46924:1:::1;::::0;49496:21;:34:::1;::::0;46924:1;;49496:34:::1;:::i;:::-;::::0;;;-1:-1:-1;49541:28:0::1;::::0;-1:-1:-1;49547:10:0::1;46924:1;49541:5;:28::i;51269:90::-:0;48060:8;;;;;;;;:16;;:8;:16;48052:25;;;;;;51337:14:::1;51343:7;51337:5;:14::i;:::-;51269:90:::0;:::o;50744:103::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;50815:13:::1;:24:::0;50744:103::o;21357:185::-;21495:39;21512:4;21518:2;21522:7;21495:39;;;;;;;;;;;;:16;:39::i;52723:730::-;52829:16;52863;52882:19;52892:8;52882:9;:19::i;:::-;52863:38;;52912:24;52953:8;52939:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52939:23:0;;52912:50;;52973:14;52998:20;53021:13;12469:12;;12256:7;12453:13;:28;;12203:315;53021:13;52998:36;;53050:9;53045:376;53069:12;53065:1;:16;53045:376;;;53103:12;53118:10;53126:1;53118:7;:10::i;:::-;53103:25;;53147:7;53143:267;;;53193:8;-1:-1:-1;;;;;53179:22:0;:10;53187:1;53179:7;:10::i;:::-;-1:-1:-1;;;;;53179:22:0;;53175:121;;;53244:1;53226:7;53234:6;53226:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;53268:8;;;;:::i;:::-;;;;53175:121;53143:267;;;53322:7;53321:8;:38;;;;-1:-1:-1;53333:7:0;53341:12;53352:1;53341:8;:12;:::i;:::-;53333:21;;;;;;;;:::i;:::-;;;;;;;53358:1;53333:26;53321:38;53317:93;;;53380:14;;;;:::i;:::-;;;;53317:93;-1:-1:-1;53083:3:0;;;;:::i;:::-;;;;53045:376;;;-1:-1:-1;53438:7:0;;52723:730;-1:-1:-1;;;;;52723:730:0:o;51861:104::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;51936:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51861:104:::0;:::o;49585:508::-;47881:10;47895:9;47881:23;47873:32;;;;;;49722:10:::1;49712:21;::::0;;;:9:::1;:21;::::0;;;;;46968:1:::1;-1:-1:-1::0;49704:42:0::1;;;::::0;::::1;;47058:4;46968:1;49765:13;12469:12:::0;;12256:7;12453:13;:28;;12203:315;49765:13:::1;:25;;;;:::i;:::-;:38;;49757:47;;;::::0;::::1;;49817:12;49859:10;49842:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;49832:39;;;;;;49817:54;;49904:53;49923:12;;49904:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49937:13:0::1;::::0;;-1:-1:-1;49952:4:0;;-1:-1:-1;49904:18:0::1;:53::i;:::-;49882:117;;;;-1:-1:-1::0;;;49882:117:0::1;;;;;;;:::i;:::-;50022:10;50012:21;::::0;;;:9:::1;:21;::::0;;;;:34;;46968:1:::1;::::0;50012:21;:34:::1;::::0;46968:1;;50012:34:::1;:::i;:::-;::::0;;;-1:-1:-1;50057:28:0::1;::::0;-1:-1:-1;50063:10:0::1;46968:1;50057:5;:28::i;17951:144::-:0;18015:7;18058:27;18077:7;18058:18;:27::i;46860:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13828:224::-;13892:7;-1:-1:-1;;;;;13916:19:0;;13912:60;;13944:28;;-1:-1:-1;;;13944:28:0;;;;;;;;;;;13912:60;-1:-1:-1;;;;;;13990:25:0;;;;;:18;:25;;;;;;9167:13;13990:54;;13828:224::o;41043:103::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;41108:30:::1;41135:1;41108:18;:30::i;51556:181::-:0;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;51625:82:::1;::::0;51612:7:::1;::::0;51633:10:::1;::::0;51657:21:::1;::::0;51612:7;51625:82;51612:7;51625:82;51657:21;51633:10;51625:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51611:96;;;51726:2;51718:11;;;::::0;::::1;50970:107:::0;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;51043:15:::1;:26:::0;50970:107::o;50101:524::-;47881:10;47895:9;47881:23;47873:32;;;;;;50242:10:::1;50230:23;::::0;;;:11:::1;:23;::::0;;;;;47014:1:::1;-1:-1:-1::0;50222:46:0::1;;;::::0;::::1;;47058:4;47014:1;50287:13;12469:12:::0;;12256:7;12453:13;:28;;12203:315;50287:13:::1;:27;;;;:::i;:::-;:40;;50279:49;;;::::0;::::1;;50341:12;50383:10;50366:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;50356:39;;;;;;50341:54;;50428:55;50447:12;;50428:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;50461:15:0::1;::::0;;-1:-1:-1;50478:4:0;;-1:-1:-1;50428:18:0::1;:55::i;:::-;50406:119;;;;-1:-1:-1::0;;;50406:119:0::1;;;;;;;:::i;:::-;50550:10;50538:23;::::0;;;:11:::1;:23;::::0;;;;:38;;47014:1:::1;::::0;50538:23;:38:::1;::::0;47014:1;;50538:38:::1;:::i;:::-;::::0;;;-1:-1:-1;50587:30:0::1;::::0;-1:-1:-1;50593:10:0::1;47014:1;50587:5;:30::i;18331:104::-:0;18387:13;18420:7;18413:14;;;;;:::i;20506:308::-;-1:-1:-1;;;;;20605:31:0;;36333:10;20605:31;20601:61;;;20645:17;;-1:-1:-1;;;20645:17:0;;;;;;;;;;;20601:61;36333:10;20675:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20675:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20675:60:0;;;;;;;;;;20751:55;;8411:41:1;;;20675:49:0;;36333:10;20751:55;;8384:18:1;20751:55:0;;;;;;;20506:308;;:::o;48545:516::-;47881:10;47895:9;47881:23;47873:32;;;;;;48686:10:::1;48674:23;::::0;;;:11:::1;:23;::::0;;;;;46924:1:::1;-1:-1:-1::0;48666:44:0::1;;;::::0;::::1;;47058:4;46924:1;48729:13;12469:12:::0;;12256:7;12453:13;:28;;12203:315;48729:13:::1;:25;;;;:::i;:::-;:38;;48721:47;;;::::0;::::1;;48781:12;48823:10;48806:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48796:39;;;;;;48781:54;;48868:55;48887:12;;48868:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;48901:15:0::1;::::0;;-1:-1:-1;48918:4:0;;-1:-1:-1;48868:18:0::1;:55::i;:::-;48846:119;;;;-1:-1:-1::0;;;48846:119:0::1;;;;;;;:::i;:::-;48990:10;48978:23;::::0;;;:11:::1;:23;::::0;;;;:36;;46924:1:::1;::::0;48978:23;:36:::1;::::0;46924:1;;48978:36:::1;:::i;50855:107::-:0;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;50928:15:::1;:26:::0;50855:107::o;21613:396::-;21780:28;21790:4;21796:2;21800:7;21780:9;:28::i;:::-;-1:-1:-1;;;;;21823:14:0;;;:19;21819:183;;21862:56;21893:4;21899:2;21903:7;21912:5;21862:30;:56::i;:::-;21857:145;;21946:40;;-1:-1:-1;;;21946:40:0;;;;;;;;;;;21857:145;21613:396;;;;:::o;51085:87::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;51154:10:::1;::::0;;-1:-1:-1;;51140:24:0;::::1;51154:10;::::0;;::::1;51153:11;51140:24;::::0;;51085:87::o;51973:635::-;52091:13;52144:16;52152:7;52144;:16::i;:::-;52122:114;;;;-1:-1:-1;;;52122:114:0;;9071:2:1;52122:114:0;;;9053:21:1;9110:2;9090:18;;;9083:30;9149:34;9129:18;;;9122:62;-1:-1:-1;;;9200:18:1;;;9193:46;9256:19;;52122:114:0;8869:412:1;52122:114:0;52247:28;52278:10;:8;:10::i;:::-;52247:41;;52350:1;52325:14;52319:28;:32;:281;;;;;;;;;;;;;;;;;52443:14;52484:18;:7;:16;:18::i;:::-;52400:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52319:281;52299:301;51973:635;-1:-1:-1;;;51973:635:0:o;51367:181::-;48060:8;;;;;;;;:16;;:8;:16;48052:25;;;;;;51450:9:::1;51446:95;51465:8;:15;51463:1;:17;51446:95;;;51511:18;51517:8;51526:1;51517:11;;;;;;;;:::i;:::-;;;;;;;51511:5;:18::i;:::-;51482:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51446:95;;50633:103:::0;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;50704:13:::1;:24:::0;50633:103::o;41301:201::-;40465:6;;-1:-1:-1;;;;;40465:6:0;36333:10;40612:23;40604:68;;;;-1:-1:-1;;;40604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41390:22:0;::::1;41382:73;;;::::0;-1:-1:-1;;;41382:73:0;;9488:2:1;41382:73:0::1;::::0;::::1;9470:21:1::0;9527:2;9507:18;;;9500:30;9566:34;9546:18;;;9539:62;-1:-1:-1;;;9617:18:1;;;9610:36;9663:19;;41382:73:0::1;9286:402:1::0;41382:73:0::1;41466:28;41485:8;41466:18;:28::i;22264:273::-:0;22321:4;22411:13;;22401:7;:23;22358:152;;;;-1:-1:-1;;22462:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22462:43:0;:48;;22264:273::o;15466:1129::-;15533:7;15568;15670:13;;15663:4;:20;15659:869;;;15708:14;15725:23;;;:17;:23;;;;;;-1:-1:-1;;;15814:23:0;;15810:699;;16333:113;16340:11;16333:113;;-1:-1:-1;;;16411:6:0;16393:25;;;;:17;:25;;;;;;16333:113;;15810:699;15685:843;15659:869;16556:31;;-1:-1:-1;;;16556:31:0;;;;;;;;;;;27503:2515;27618:27;27648;27667:7;27648:18;:27::i;:::-;27618:57;;27733:4;-1:-1:-1;;;;;27692:45:0;27708:19;-1:-1:-1;;;;;27692:45:0;;27688:86;;27746:28;;-1:-1:-1;;;27746:28:0;;;;;;;;;;;27688:86;27787:22;36333:10;-1:-1:-1;;;;;27813:27:0;;;;:87;;-1:-1:-1;27857:43:0;27874:4;36333:10;20885:164;:::i;27857:43::-;27813:147;;;-1:-1:-1;36333:10:0;27917:20;27929:7;27917:11;:20::i;:::-;-1:-1:-1;;;;;27917:43:0;;27813:147;27787:174;;27979:17;27974:66;;28005:35;;-1:-1:-1;;;28005:35:0;;;;;;;;;;;27974:66;-1:-1:-1;;;;;28055:16:0;;28051:52;;28080:23;;-1:-1:-1;;;28080:23:0;;;;;;;;;;;28051:52;28232:24;;;;:15;:24;;;;;;;;28225:31;;-1:-1:-1;;;;;;28225:31:0;;;-1:-1:-1;;;;;28624:24:0;;;;;:18;:24;;;;;28622:26;;-1:-1:-1;;28622:26:0;;;28693:22;;;;;;;28691:24;;-1:-1:-1;28691:24:0;;;28986:26;;;:17;:26;;;;;-1:-1:-1;;;29074:15:0;9821:3;29074:41;29032:84;;:128;;28986:174;;;29280:46;;29276:626;;29384:1;29374:11;;29352:19;29507:30;;;:17;:30;;;;;;29503:384;;29645:13;;29630:11;:28;29626:242;;29792:30;;;;:17;:30;;;;;:52;;;29626:242;29333:569;29276:626;29949:7;29945:2;-1:-1:-1;;;;;29930:27:0;29939:4;-1:-1:-1;;;;;29930:27:0;;;;;;;;;;;27607:2411;;27503:2515;;;:::o;25593:1656::-;25658:20;25681:13;-1:-1:-1;;;;;25709:16:0;;25705:48;;25734:19;;-1:-1:-1;;;25734:19:0;;;;;;;;;;;25705:48;25768:13;25764:44;;25790:18;;-1:-1:-1;;;25790:18:0;;;;;;;;;;;25764:44;-1:-1:-1;;;;;26357:22:0;;;;;;:18;:22;;;;9304:2;26357:22;;;:70;;26395:31;26383:44;;26357:70;;;26670:31;;;:17;:31;;;;;26763:15;9821:3;26763:41;26721:84;;-1:-1:-1;26841:13:0;;10084:3;26826:56;26721:162;26670:213;;:31;26964:23;;;27004:111;27031:40;;27056:14;;;;;-1:-1:-1;;;;;27031:40:0;;;27048:1;;27031:40;;27048:1;;27031:40;27110:3;27095:12;:18;27004:111;;-1:-1:-1;27131:13:0;:28;21116:170;;;:::o;43088:190::-;43213:4;43266;43237:25;43250:5;43257:4;43237:12;:25::i;:::-;:33;;43088:190;-1:-1:-1;;;;43088:190:0:o;30096:89::-;30156:21;30162:7;30171:5;30156;:21::i;41662:191::-;41755:6;;;-1:-1:-1;;;;;41772:17:0;;;-1:-1:-1;;;;;;41772:17:0;;;;;;;41805:40;;41755:6;;;41772:17;41755:6;;41805:40;;41736:16;;41805:40;41725:128;41662:191;:::o;33715:716::-;33899:88;;-1:-1:-1;;;33899:88:0;;33878:4;;-1:-1:-1;;;;;33899:45:0;;;;;:88;;36333:10;;33966:4;;33972:7;;33981:5;;33899:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33899:88:0;;;;;;;;-1:-1:-1;;33899:88:0;;;;;;;;;;;;:::i;:::-;;;33895:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34182:13:0;;34178:235;;34228:40;;-1:-1:-1;;;34228:40:0;;;;;;;;;;;34178:235;34371:6;34365:13;34356:6;34352:2;34348:15;34341:38;33895:529;-1:-1:-1;;;;;;34058:64:0;-1:-1:-1;;;34058:64:0;;-1:-1:-1;33895:529:0;33715:716;;;;;;:::o;51745:108::-;51805:13;51838:7;51831:14;;;;;:::i;44924:723::-;44980:13;45201:10;45197:53;;-1:-1:-1;;45228:10:0;;;;;;;;;;;;-1:-1:-1;;;45228:10:0;;;;;44924:723::o;45197:53::-;45275:5;45260:12;45316:78;45323:9;;45316:78;;45349:8;;;;:::i;:::-;;-1:-1:-1;45372:10:0;;-1:-1:-1;45380:2:0;45372:10;;:::i;:::-;;;45316:78;;;45404:19;45436:6;45426:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45426:17:0;;45404:39;;45454:154;45461:10;;45454:154;;45488:11;45498:1;45488:11;;:::i;:::-;;-1:-1:-1;45557:10:0;45565:2;45557:5;:10;:::i;:::-;45544:24;;:2;:24;:::i;:::-;45531:39;;45514:6;45521;45514:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;45514:56:0;;;;;;;;-1:-1:-1;45585:11:0;45594:2;45585:11;;:::i;:::-;;;45454:154;;43639:675;43722:7;43765:4;43722:7;43780:497;43804:5;:12;43800:1;:16;43780:497;;;43838:20;43861:5;43867:1;43861:8;;;;;;;;:::i;:::-;;;;;;;43838:31;;43904:12;43888;:28;43884:382;;44390:13;44440:15;;;44476:4;44469:15;;;44523:4;44507:21;;44016:57;;43884:382;;;44390:13;44440:15;;;44476:4;44469:15;;;44523:4;44507:21;;44193:57;;43884:382;-1:-1:-1;43818:3:0;;;;:::i;:::-;;;;43780:497;;;-1:-1:-1;44294:12:0;43639:675;-1:-1:-1;;;43639:675:0:o;30414:2809::-;30494:27;30524;30543:7;30524:18;:27::i;:::-;30494:57;-1:-1:-1;30494:57:0;30629:311;;;;30663:22;36333:10;-1:-1:-1;;;;;30689:27:0;;;;:91;;-1:-1:-1;30737:43:0;30754:4;36333:10;20885:164;:::i;30737:43::-;30689:155;;;-1:-1:-1;36333:10:0;30801:20;30813:7;30801:11;:20::i;:::-;-1:-1:-1;;;;;30801:43:0;;30689:155;30663:182;;30867:17;30862:66;;30893:35;;-1:-1:-1;;;30893:35:0;;;;;;;;;;;30862:66;30648:292;30629:311;31076:24;;;;:15;:24;;;;;;;;31069:31;;-1:-1:-1;;;;;;31069:31:0;;;-1:-1:-1;;;;;31689:24:0;;;;:18;:24;;;;;:59;;31717:31;31689:59;;;31986:26;;;:17;:26;;;;;-1:-1:-1;;;32076:15:0;9821:3;32076:41;32032:86;;:165;31986:211;;-1:-1:-1;;;32317:46:0;;32313:626;;32421:1;32411:11;;32389:19;32544:30;;;:17;:30;;;;;;32540:384;;32682:13;;32667:11;:28;32663:242;;32829:30;;;;:17;:30;;;;;:52;;;32663:242;32370:569;32313:626;32967:35;;32994:7;;32990:1;;-1:-1:-1;;;;;32967:35:0;;;;;32990:1;;32967:35;-1:-1:-1;;33190:12:0;:14;;;;;;-1:-1:-1;;30414:2809:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:615::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2877:9;2864:23;2906:18;2947:2;2939:6;2936:14;2933:34;;;2963:1;2960;2953:12;2933:34;3001:6;2990:9;2986:22;2976:32;;3046:7;3039:4;3035:2;3031:13;3027:27;3017:55;;3068:1;3065;3058:12;3017:55;3108:2;3095:16;3134:2;3126:6;3123:14;3120:34;;;3150:1;3147;3140:12;3120:34;3203:7;3198:2;3188:6;3185:1;3181:14;3177:2;3173:23;3169:32;3166:45;3163:65;;;3224:1;3221;3214:12;3163:65;3255:2;3247:11;;;;;3277:6;;-1:-1:-1;2674:615:1;;-1:-1:-1;;;;2674:615:1:o;3294:957::-;3378:6;3409:2;3452;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3508:9;3495:23;3537:18;3578:2;3570:6;3567:14;3564:34;;;3594:1;3591;3584:12;3564:34;3632:6;3621:9;3617:22;3607:32;;3677:7;3670:4;3666:2;3662:13;3658:27;3648:55;;3699:1;3696;3689:12;3648:55;3735:2;3722:16;3757:2;3753;3750:10;3747:36;;;3763:18;;:::i;:::-;3809:2;3806:1;3802:10;3792:20;;3832:28;3856:2;3852;3848:11;3832:28;:::i;:::-;3894:15;;;3925:12;;;;3957:11;;;3987;;;3983:20;;3980:33;-1:-1:-1;3977:53:1;;;4026:1;4023;4016:12;3977:53;4048:1;4039:10;;4058:163;4072:2;4069:1;4066:9;4058:163;;;4129:17;;4117:30;;4090:1;4083:9;;;;;4167:12;;;;4199;;4058:163;;;-1:-1:-1;4240:5:1;3294:957;-1:-1:-1;;;;;;;;3294:957:1:o;4256:180::-;4315:6;4368:2;4356:9;4347:7;4343:23;4339:32;4336:52;;;4384:1;4381;4374:12;4336:52;-1:-1:-1;4407:23:1;;4256:180;-1:-1:-1;4256:180:1:o;4441:245::-;4499:6;4552:2;4540:9;4531:7;4527:23;4523:32;4520:52;;;4568:1;4565;4558:12;4520:52;4607:9;4594:23;4626:30;4650:5;4626:30;:::i;4691:249::-;4760:6;4813:2;4801:9;4792:7;4788:23;4784:32;4781:52;;;4829:1;4826;4819:12;4781:52;4861:9;4855:16;4880:30;4904:5;4880:30;:::i;4945:450::-;5014:6;5067:2;5055:9;5046:7;5042:23;5038:32;5035:52;;;5083:1;5080;5073:12;5035:52;5123:9;5110:23;5156:18;5148:6;5145:30;5142:50;;;5188:1;5185;5178:12;5142:50;5211:22;;5264:4;5256:13;;5252:27;-1:-1:-1;5242:55:1;;5293:1;5290;5283:12;5242:55;5316:73;5381:7;5376:2;5363:16;5358:2;5354;5350:11;5316:73;:::i;5585:257::-;5626:3;5664:5;5658:12;5691:6;5686:3;5679:19;5707:63;5763:6;5756:4;5751:3;5747:14;5740:4;5733:5;5729:16;5707:63;:::i;:::-;5824:2;5803:15;-1:-1:-1;;5799:29:1;5790:39;;;;5831:4;5786:50;;5585:257;-1:-1:-1;;5585:257:1:o;5847:229::-;5996:2;5992:15;;;;-1:-1:-1;;5988:53:1;5976:66;;6067:2;6058:12;;5847:229::o;6081:637::-;6361:3;6399:6;6393:13;6415:53;6461:6;6456:3;6449:4;6441:6;6437:17;6415:53;:::i;:::-;6531:13;;6490:16;;;;6553:57;6531:13;6490:16;6587:4;6575:17;;6553:57;:::i;:::-;-1:-1:-1;;;6632:20:1;;6661:22;;;6710:1;6699:13;;6081:637;-1:-1:-1;;;;6081:637:1:o;7141:488::-;-1:-1:-1;;;;;7410:15:1;;;7392:34;;7462:15;;7457:2;7442:18;;7435:43;7509:2;7494:18;;7487:34;;;7557:3;7552:2;7537:18;;7530:31;;;7335:4;;7578:45;;7603:19;;7595:6;7578:45;:::i;:::-;7570:53;7141:488;-1:-1:-1;;;;;;7141:488:1:o;7634:632::-;7805:2;7857:21;;;7927:13;;7830:18;;;7949:22;;;7776:4;;7805:2;8028:15;;;;8002:2;7987:18;;;7776:4;8071:169;8085:6;8082:1;8079:13;8071:169;;;8146:13;;8134:26;;8215:15;;;;8180:12;;;;8107:1;8100:9;8071:169;;;-1:-1:-1;8257:3:1;;7634:632;-1:-1:-1;;;;;;7634:632:1:o;8645:219::-;8794:2;8783:9;8776:21;8757:4;8814:44;8854:2;8843:9;8839:18;8831:6;8814:44;:::i;9693:356::-;9895:2;9877:21;;;9914:18;;;9907:30;9973:34;9968:2;9953:18;;9946:62;10040:2;10025:18;;9693:356::o;10054:338::-;10256:2;10238:21;;;10295:2;10275:18;;;10268:30;-1:-1:-1;;;10329:2:1;10314:18;;10307:44;10383:2;10368:18;;10054:338::o;10579:275::-;10650:2;10644:9;10715:2;10696:13;;-1:-1:-1;;10692:27:1;10680:40;;10750:18;10735:34;;10771:22;;;10732:62;10729:88;;;10797:18;;:::i;:::-;10833:2;10826:22;10579:275;;-1:-1:-1;10579:275:1:o;10859:128::-;10899:3;10930:1;10926:6;10923:1;10920:13;10917:39;;;10936:18;;:::i;:::-;-1:-1:-1;10972:9:1;;10859:128::o;10992:120::-;11032:1;11058;11048:35;;11063:18;;:::i;:::-;-1:-1:-1;11097:9:1;;10992:120::o;11117:125::-;11157:4;11185:1;11182;11179:8;11176:34;;;11190:18;;:::i;:::-;-1:-1:-1;11227:9:1;;11117:125::o;11247:258::-;11319:1;11329:113;11343:6;11340:1;11337:13;11329:113;;;11419:11;;;11413:18;11400:11;;;11393:39;11365:2;11358:10;11329:113;;;11460:6;11457:1;11454:13;11451:48;;;-1:-1:-1;;11495:1:1;11477:16;;11470:27;11247:258::o;11510:380::-;11589:1;11585:12;;;;11632;;;11653:61;;11707:4;11699:6;11695:17;11685:27;;11653:61;11760:2;11752:6;11749:14;11729:18;11726:38;11723:161;;;11806:10;11801:3;11797:20;11794:1;11787:31;11841:4;11838:1;11831:15;11869:4;11866:1;11859:15;11723:161;;11510:380;;;:::o;11895:135::-;11934:3;-1:-1:-1;;11955:17:1;;11952:43;;;11975:18;;:::i;:::-;-1:-1:-1;12022:1:1;12011:13;;11895:135::o;12035:112::-;12067:1;12093;12083:35;;12098:18;;:::i;:::-;-1:-1:-1;12132:9:1;;12035:112::o;12152:127::-;12213:10;12208:3;12204:20;12201:1;12194:31;12244:4;12241:1;12234:15;12268:4;12265:1;12258:15;12284:127;12345:10;12340:3;12336:20;12333:1;12326:31;12376:4;12373:1;12366:15;12400:4;12397:1;12390:15;12416:127;12477:10;12472:3;12468:20;12465:1;12458:31;12508:4;12505:1;12498:15;12532:4;12529:1;12522:15;12548:127;12609:10;12604:3;12600:20;12597:1;12590:31;12640:4;12637:1;12630:15;12664:4;12661:1;12654:15;12680:131;-1:-1:-1;;;;;;12754:32:1;;12744:43;;12734:71;;12801:1;12798;12791:12
Swarm Source
ipfs://02cc3eda9dc5149d09048b029d1edbd2619e974f8c368cd7721e09ce9b44bc31
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.