Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 4 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
LeaveMeAlone
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; /* _ _ _ _ (c).-.(c) LEAVE (c).-.(c) / ._. \ / ._. \ __\( Y )/__ ME __\( Y )/__ (_.-/'-'\-._) (_.-/'-'\-._) || || ALONE || || _.' `-' '._ _.' `-' '._ (.-./`-'\.-.) (.-./`-'\.-.) `-' `-' `-' `-' */ contract LeaveMeAlone is ERC721A, Ownable { using ECDSA for bytes32; using Strings for uint256; uint256 public constant TOTAL_MAX_SUPPLY = 10000; uint256 public constant TOTAL_FREE_MINTS = 1337; uint256 public constant MAX_FREE_MINT_PER_WALLET = 1; uint256 public constant MAX_PUBLIC_MINT_PER_WALLET = 5; uint256 public constant TOKEN_PRICE = .02 ether; address public signatureVerifier; bool public publicSaleActive; bool public freeMintActive; uint256 public freeMintCount; mapping(address => uint256) public freeMintClaimed; string private _baseTokenURI; constructor() ERC721A("Leave Me Alone", "GRRLZ") {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier underMaxSupply(uint256 _quantity) { require( _totalMinted() + _quantity <= TOTAL_MAX_SUPPLY, "Purchase would exceed max supply" ); _; } modifier hasValidSignature(bytes memory _signature, bytes memory message) { bytes32 messageHash = ECDSA.toEthSignedMessageHash(keccak256(message)); require(messageHash.recover(_signature) == signatureVerifier, "Unrecognizable Hash"); _; } modifier validateFreeMintStatus() { require(freeMintActive, "free claim is not active"); require(freeMintCount + 1 <= TOTAL_FREE_MINTS, "Purchase would exceed max supply of free mints"); require(freeMintClaimed[msg.sender] == 0, "wallet has already free minted"); _; } modifier validatePublicStatus(uint256 _quantity) { require(publicSaleActive, "public sale is not active"); require(msg.value >= TOKEN_PRICE * _quantity, "Need to send more ETH."); require( _numberMinted(msg.sender) + _quantity - freeMintClaimed[msg.sender] <= MAX_PUBLIC_MINT_PER_WALLET, "This purchase would exceed maximum allocation for public mints for this wallet" ); _; } function freeMint(bytes memory _signature) external callerIsUser validateFreeMintStatus hasValidSignature(_signature, abi.encodePacked(msg.sender)) underMaxSupply(1) { freeMintClaimed[msg.sender] = 1; freeMintCount++; _mint(msg.sender, 1, "", false); } function mint(bytes memory _signature, uint256 _quantity) external payable callerIsUser validatePublicStatus(_quantity) underMaxSupply(_quantity) hasValidSignature(_signature, abi.encodePacked(msg.sender)) { _mint(msg.sender, _quantity, "", false); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function ownerMint(uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(msg.sender, _numberToMint, "", false); } function ownerMintToAddress(address _recipient, uint256 _numberToMint) external onlyOwner underMaxSupply(_numberToMint) { _mint(_recipient, _numberToMint, "", false); } function setFreeMintCount(uint256 _count) external onlyOwner{ freeMintCount = _count; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawFunds() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner { (bool success, ) =_address.call{value: amount}(""); require(success, "Transfer failed."); } function flipFreeMintActive() external onlyOwner { freeMintActive = !freeMintActive; } function flipPublicSaleActive() external onlyOwner { publicSaleActive = !publicSaleActive; } function setSignatureVerifier(address _signatureVerifier) external onlyOwner { signatureVerifier = _signatureVerifier; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"_numberToMint","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"}],"name":"ownerMintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signatureVerifier","type":"address"}],"name":"setSignatureVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signatureVerifier","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f4c65617665204d6520416c6f6e650000000000000000000000000000000000008152506040518060400160405280600581526020017f4752524c5a000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620001c1565b508060039080519060200190620000af929190620001c1565b50620000c0620000ee60201b60201c565b6000819055505050620000e8620000dc620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf90620002a0565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b957607f821691505b60208210811415620002d057620002cf62000271565b5b50919050565b614bef80620002e66000396000f3fe60806040526004361061022f5760003560e01c80638f430db01161012e578063cb5bc2aa116100ab578063e55f58bb1161006f578063e55f58bb146107f3578063e985e9c51461081e578063f19e75d41461085b578063f2fde38b14610884578063fde919f6146108ad5761022f565b8063cb5bc2aa146106fa578063d2d8cb6714610725578063dc33e68114610750578063e08a66051461078d578063e0ec7c36146107b65761022f565b8063a6eb27e2116100f2578063a6eb27e214610613578063b88d4fde1461063e578063bc8893b414610667578063c87b56dd14610692578063c8d5ed68146106cf5761022f565b80638f430db01461055657806395d89b411461056d5780639aaf21f414610598578063a22cb465146105c1578063a4513e92146105ea5761022f565b806324600fc3116101bc5780636352211e116101805780636352211e1461046f57806365b1de20146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b5761022f565b806324600fc3146103b4578063253ca934146103cb57806342842e0e146103f45780634f7f89761461041d57806355f804b3146104465761022f565b8063089d466511610203578063089d4665146102f5578063095ea7b31461032057806318160ddd146103495780631b5cb7f31461037457806323b872dd1461038b5761022f565b80622576121461023457806301ffc9a71461025057806306fdde031461028d578063081812fc146102b8575b600080fd5b61024e60048036038101906102499190613894565b6108d8565b005b34801561025c57600080fd5b5061027760048036038101906102729190613948565b610be0565b6040516102849190613990565b60405180910390f35b34801561029957600080fd5b506102a2610cc2565b6040516102af9190613a33565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190613a55565b610d54565b6040516102ec9190613ac3565b60405180910390f35b34801561030157600080fd5b5061030a610dd0565b6040516103179190613aed565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613b34565b610dd6565b005b34801561035557600080fd5b5061035e610ee1565b60405161036b9190613aed565b60405180910390f35b34801561038057600080fd5b50610389610ef8565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613b74565b610fa0565b005b3480156103c057600080fd5b506103c9610fb0565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613a55565b6110db565b005b34801561040057600080fd5b5061041b60048036038101906104169190613b74565b611161565b005b34801561042957600080fd5b50610444600480360381019061043f9190613b34565b611181565b005b34801561045257600080fd5b5061046d60048036038101906104689190613c27565b6112ae565b005b34801561047b57600080fd5b5061049660048036038101906104919190613a55565b611340565b6040516104a39190613ac3565b60405180910390f35b3480156104b857600080fd5b506104c1611356565b6040516104ce9190613aed565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613c74565b61135c565b60405161050b9190613aed565b60405180910390f35b34801561052057600080fd5b5061052961142c565b005b34801561053757600080fd5b506105406114b4565b60405161054d9190613ac3565b60405180910390f35b34801561056257600080fd5b5061056b6114de565b005b34801561057957600080fd5b50610582611586565b60405161058f9190613a33565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613b34565b611618565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190613ccd565b61170d565b005b3480156105f657600080fd5b50610611600480360381019061060c9190613d0d565b611885565b005b34801561061f57600080fd5b50610628611bc8565b6040516106359190613aed565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613d56565b611bcd565b005b34801561067357600080fd5b5061067c611c49565b6040516106899190613990565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613a55565b611c5c565b6040516106c69190613a33565b60405180910390f35b3480156106db57600080fd5b506106e4611cfb565b6040516106f19190613aed565b60405180910390f35b34801561070657600080fd5b5061070f611d00565b60405161071c9190613990565b60405180910390f35b34801561073157600080fd5b5061073a611d13565b6040516107479190613aed565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613c74565b611d1e565b6040516107849190613aed565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613c74565b611d30565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190613c74565b611df0565b6040516107ea9190613aed565b60405180910390f35b3480156107ff57600080fd5b50610808611e08565b6040516108159190613aed565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613dd9565b611e0e565b6040516108529190613990565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613a55565b611ea2565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613c74565b611f96565b005b3480156108b957600080fd5b506108c261208e565b6040516108cf9190613ac3565b60405180910390f35b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613e65565b60405180910390fd5b80600960149054906101000a900460ff16610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613ed1565b60405180910390fd5b8066470de4df8200006109a99190613f20565b3410156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613fc6565b60405180910390fd5b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610a37336120b4565b610a419190613fe6565b610a4b919061403c565b1115610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390614108565b60405180910390fd5b8161271081610a9961211e565b610aa39190613fe6565b1115610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90614174565b60405180910390fd5b8333604051602001610af691906141dc565b6040516020818303038152906040526000610b178280519060200120612131565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b65848361216190919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290614243565b60405180910390fd5b610bd73387604051806020016040528060008152506000612188565b50505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cbb5750610cba82612556565b5b9050919050565b606060028054610cd190614292565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90614292565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d5f826125c0565b610d95576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61053981565b6000610de182611340565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e49576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6861260e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9a5750610e9881610e9361260e565b611e0e565b155b15610ed1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edc838383612616565b505050565b6000610eeb6126c8565b6001546000540303905090565b610f0061260e565b73ffffffffffffffffffffffffffffffffffffffff16610f1e6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614310565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b610fab8383836126cd565b505050565b610fb861260e565b73ffffffffffffffffffffffffffffffffffffffff16610fd66114b4565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614310565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161105290614361565b60006040518083038185875af1925050503d806000811461108f576040519150601f19603f3d011682016040523d82523d6000602084013e611094565b606091505b50509050806110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906143c2565b60405180910390fd5b50565b6110e361260e565b73ffffffffffffffffffffffffffffffffffffffff166111016114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90614310565b60405180910390fd5b80600a8190555050565b61117c83838360405180602001604052806000815250611bcd565b505050565b61118961260e565b73ffffffffffffffffffffffffffffffffffffffff166111a76114b4565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490614310565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161122390614361565b60006040518083038185875af1925050503d8060008114611260576040519150601f19603f3d011682016040523d82523d6000602084013e611265565b606091505b50509050806112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906143c2565b60405180910390fd5b505050565b6112b661260e565b73ffffffffffffffffffffffffffffffffffffffff166112d46114b4565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190614310565b60405180910390fd5b8181600c919061133b92919061361e565b505050565b600061134b82612b83565b600001519050919050565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143461260e565b73ffffffffffffffffffffffffffffffffffffffff166114526114b4565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614310565b60405180910390fd5b6114b26000612e12565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e661260e565b73ffffffffffffffffffffffffffffffffffffffff166115046114b4565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614310565b60405180910390fd5b600960159054906101000a900460ff1615600960156101000a81548160ff021916908315150217905550565b60606003805461159590614292565b80601f01602080910402602001604051908101604052809291908181526020018280546115c190614292565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b5050505050905090565b61162061260e565b73ffffffffffffffffffffffffffffffffffffffff1661163e6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90614310565b60405180910390fd5b80612710816116a161211e565b6116ab9190613fe6565b11156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614174565b60405180910390fd5b6117088383604051806020016040528060008152506000612188565b505050565b61171561260e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061178761260e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183461260e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118799190613990565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613e65565b60405180910390fd5b600960159054906101000a900460ff16611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061442e565b60405180910390fd5b6105396001600a546119549190613fe6565b1115611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c906144c0565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e9061452c565b60405180910390fd5b8033604051602001611a2991906141dc565b6040516020818303038152906040526000611a4a8280519060200120612131565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a98848361216190919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590614243565b60405180910390fd5b600161271081611afc61211e565b611b069190613fe6565b1115611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614174565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6000815480929190611b9f9061454c565b9190505550611bc1336001604051806020016040528060008152506000612188565b5050505050565b600181565b611bd88484846126cd565b611bf78373ffffffffffffffffffffffffffffffffffffffff16612ed8565b8015611c0c5750611c0a84848484612efb565b155b15611c43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960149054906101000a900460ff1681565b6060611c67826125c0565b611c9d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ca761305b565b9050600081511415611cc85760405180602001604052806000815250611cf3565b80611cd2846130ed565b604051602001611ce392919061461d565b6040516020818303038152906040525b915050919050565b600581565b600960159054906101000a900460ff1681565b66470de4df82000081565b6000611d29826120b4565b9050919050565b611d3861260e565b73ffffffffffffffffffffffffffffffffffffffff16611d566114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390614310565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915090505481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eaa61260e565b73ffffffffffffffffffffffffffffffffffffffff16611ec86114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614310565b60405180910390fd5b8061271081611f2b61211e565b611f359190613fe6565b1115611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614174565b60405180910390fd5b611f923383604051806020016040528060008152506000612188565b5050565b611f9e61260e565b73ffffffffffffffffffffffffffffffffffffffff16611fbc6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906146be565b60405180910390fd5b61208b81612e12565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006121286126c8565b60005403905090565b6000816040516020016121449190614755565b604051602081830303815290604052805190602001209050919050565b6000806000612170858561324e565b9150915061217d816132d1565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156121f5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612230576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223d60008683876134a6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561240757506124068773ffffffffffffffffffffffffffffffffffffffff16612ed8565b5b156124cd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247c6000888480600101955088612efb565b6124b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561240d5782600054146124c857600080fd5b612539565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156124ce575b81600081905550505061254f60008683876134ac565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816125cb6126c8565b111580156125da575060005482105b8015612607575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006126d882612b83565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612743576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661276461260e565b73ffffffffffffffffffffffffffffffffffffffff16148061279357506127928561278d61260e565b611e0e565b5b806127d857506127a161260e565b73ffffffffffffffffffffffffffffffffffffffff166127c084610d54565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612811576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612878576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288585858560016134a6565b61289160008487612616565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b11576000548214612b1057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7c85858560016134ac565b5050505050565b612b8b6136a4565b600082905080612b996126c8565b11158015612ba8575060005481105b15612ddb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dd957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cbd578092505050612e0d565b5b600115612dd857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dd3578092505050612e0d565b612cbe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2161260e565b8786866040518563ffffffff1660e01b8152600401612f4394939291906147d0565b602060405180830381600087803b158015612f5d57600080fd5b505af1925050508015612f8e57506040513d601f19601f82011682018060405250810190612f8b9190614831565b60015b613008573d8060008114612fbe576040519150601f19603f3d011682016040523d82523d6000602084013e612fc3565b606091505b50600081511415613000576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461306a90614292565b80601f016020809104026020016040519081016040528092919081815260200182805461309690614292565b80156130e35780601f106130b8576101008083540402835291602001916130e3565b820191906000526020600020905b8154815290600101906020018083116130c657829003601f168201915b5050505050905090565b60606000821415613135576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613249565b600082905060005b600082146131675780806131509061454c565b915050600a82613160919061488d565b915061313d565b60008167ffffffffffffffff81111561318357613182613733565b5b6040519080825280601f01601f1916602001820160405280156131b55781602001600182028036833780820191505090505b5090505b60008514613242576001826131ce919061403c565b9150600a856131dd91906148be565b60306131e99190613fe6565b60f81b8183815181106131ff576131fe6148ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561323b919061488d565b94506131b9565b8093505050505b919050565b6000806041835114156132905760008060006020860151925060408601519150606086015160001a9050613284878285856134b2565b945094505050506132ca565b6040835114156132c15760008060208501519150604085015190506132b68683836135bf565b9350935050506132ca565b60006002915091505b9250929050565b600060048111156132e5576132e461491e565b5b8160048111156132f8576132f761491e565b5b1415613303576134a3565b600160048111156133175761331661491e565b5b81600481111561332a5761332961491e565b5b141561336b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336290614999565b60405180910390fd5b6002600481111561337f5761337e61491e565b5b8160048111156133925761339161491e565b5b14156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90614a05565b60405180910390fd5b600360048111156133e7576133e661491e565b5b8160048111156133fa576133f961491e565b5b141561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614a97565b60405180910390fd5b60048081111561344e5761344d61491e565b5b8160048111156134615761346061491e565b5b14156134a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349990614b29565b60405180910390fd5b5b50565b50505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156134ed5760006003915091506135b6565b601b8560ff16141580156135055750601c8560ff1614155b156135175760006004915091506135b6565b60006001878787876040516000815260200160405260405161353c9493929190614b74565b6020604051602081039080840390855afa15801561355e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135ad576000600192509250506135b6565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6136029190613fe6565b9050613610878288856134b2565b935093505050935093915050565b82805461362a90614292565b90600052602060002090601f01602090048101928261364c5760008555613693565b82601f1061366557803560ff1916838001178555613693565b82800160010185558215613693579182015b82811115613692578235825591602001919060010190613677565b5b5090506136a091906136e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137005760008160009055506001016136e8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61376b82613722565b810181811067ffffffffffffffff8211171561378a57613789613733565b5b80604052505050565b600061379d613704565b90506137a98282613762565b919050565b600067ffffffffffffffff8211156137c9576137c8613733565b5b6137d282613722565b9050602081019050919050565b82818337600083830152505050565b60006138016137fc846137ae565b613793565b90508281526020810184848401111561381d5761381c61371d565b5b6138288482856137df565b509392505050565b600082601f83011261384557613844613718565b5b81356138558482602086016137ee565b91505092915050565b6000819050919050565b6138718161385e565b811461387c57600080fd5b50565b60008135905061388e81613868565b92915050565b600080604083850312156138ab576138aa61370e565b5b600083013567ffffffffffffffff8111156138c9576138c8613713565b5b6138d585828601613830565b92505060206138e68582860161387f565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613925816138f0565b811461393057600080fd5b50565b6000813590506139428161391c565b92915050565b60006020828403121561395e5761395d61370e565b5b600061396c84828501613933565b91505092915050565b60008115159050919050565b61398a81613975565b82525050565b60006020820190506139a56000830184613981565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e55780820151818401526020810190506139ca565b838111156139f4576000848401525b50505050565b6000613a05826139ab565b613a0f81856139b6565b9350613a1f8185602086016139c7565b613a2881613722565b840191505092915050565b60006020820190508181036000830152613a4d81846139fa565b905092915050565b600060208284031215613a6b57613a6a61370e565b5b6000613a798482850161387f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aad82613a82565b9050919050565b613abd81613aa2565b82525050565b6000602082019050613ad86000830184613ab4565b92915050565b613ae78161385e565b82525050565b6000602082019050613b026000830184613ade565b92915050565b613b1181613aa2565b8114613b1c57600080fd5b50565b600081359050613b2e81613b08565b92915050565b60008060408385031215613b4b57613b4a61370e565b5b6000613b5985828601613b1f565b9250506020613b6a8582860161387f565b9150509250929050565b600080600060608486031215613b8d57613b8c61370e565b5b6000613b9b86828701613b1f565b9350506020613bac86828701613b1f565b9250506040613bbd8682870161387f565b9150509250925092565b600080fd5b600080fd5b60008083601f840112613be757613be6613718565b5b8235905067ffffffffffffffff811115613c0457613c03613bc7565b5b602083019150836001820283011115613c2057613c1f613bcc565b5b9250929050565b60008060208385031215613c3e57613c3d61370e565b5b600083013567ffffffffffffffff811115613c5c57613c5b613713565b5b613c6885828601613bd1565b92509250509250929050565b600060208284031215613c8a57613c8961370e565b5b6000613c9884828501613b1f565b91505092915050565b613caa81613975565b8114613cb557600080fd5b50565b600081359050613cc781613ca1565b92915050565b60008060408385031215613ce457613ce361370e565b5b6000613cf285828601613b1f565b9250506020613d0385828601613cb8565b9150509250929050565b600060208284031215613d2357613d2261370e565b5b600082013567ffffffffffffffff811115613d4157613d40613713565b5b613d4d84828501613830565b91505092915050565b60008060008060808587031215613d7057613d6f61370e565b5b6000613d7e87828801613b1f565b9450506020613d8f87828801613b1f565b9350506040613da08782880161387f565b925050606085013567ffffffffffffffff811115613dc157613dc0613713565b5b613dcd87828801613830565b91505092959194509250565b60008060408385031215613df057613def61370e565b5b6000613dfe85828601613b1f565b9250506020613e0f85828601613b1f565b9150509250929050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613e4f601e836139b6565b9150613e5a82613e19565b602082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f7075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b6000613ebb6019836139b6565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2b8261385e565b9150613f368361385e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6f57613f6e613ef1565b5b828202905092915050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000613fb06016836139b6565b9150613fbb82613f7a565b602082019050919050565b60006020820190508181036000830152613fdf81613fa3565b9050919050565b6000613ff18261385e565b9150613ffc8361385e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403157614030613ef1565b5b828201905092915050565b60006140478261385e565b91506140528361385e565b92508282101561406557614064613ef1565b5b828203905092915050565b7f5468697320707572636861736520776f756c6420657863656564206d6178696d60008201527f756d20616c6c6f636174696f6e20666f72207075626c6963206d696e7473206660208201527f6f7220746869732077616c6c6574000000000000000000000000000000000000604082015250565b60006140f2604e836139b6565b91506140fd82614070565b606082019050919050565b60006020820190508181036000830152614121816140e5565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061415e6020836139b6565b915061416982614128565b602082019050919050565b6000602082019050818103600083015261418d81614151565b9050919050565b60008160601b9050919050565b60006141ac82614194565b9050919050565b60006141be826141a1565b9050919050565b6141d66141d182613aa2565b6141b3565b82525050565b60006141e882846141c5565b60148201915081905092915050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b600061422d6013836139b6565b9150614238826141f7565b602082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142aa57607f821691505b602082108114156142be576142bd614263565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142fa6020836139b6565b9150614305826142c4565b602082019050919050565b60006020820190508181036000830152614329816142ed565b9050919050565b600081905092915050565b50565b600061434b600083614330565b91506143568261433b565b600082019050919050565b600061436c8261433e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006143ac6010836139b6565b91506143b782614376565b602082019050919050565b600060208201905081810360008301526143db8161439f565b9050919050565b7f6672656520636c61696d206973206e6f74206163746976650000000000000000600082015250565b60006144186018836139b6565b9150614423826143e2565b602082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662066726565206d696e7473000000000000000000000000000000000000602082015250565b60006144aa602e836139b6565b91506144b58261444e565b604082019050919050565b600060208201905081810360008301526144d98161449d565b9050919050565b7f77616c6c65742068617320616c72656164792066726565206d696e7465640000600082015250565b6000614516601e836139b6565b9150614521826144e0565b602082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b60006145578261385e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561458a57614589613ef1565b5b600182019050919050565b600081905092915050565b60006145ab826139ab565b6145b58185614595565b93506145c58185602086016139c7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614607600583614595565b9150614612826145d1565b600582019050919050565b600061462982856145a0565b915061463582846145a0565b9150614640826145fa565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a86026836139b6565b91506146b38261464c565b604082019050919050565b600060208201905081810360008301526146d78161469b565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614714601c83614595565b915061471f826146de565b601c82019050919050565b6000819050919050565b6000819050919050565b61474f61474a8261472a565b614734565b82525050565b600061476082614707565b915061476c828461473e565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b60006147a28261477b565b6147ac8185614786565b93506147bc8185602086016139c7565b6147c581613722565b840191505092915050565b60006080820190506147e56000830187613ab4565b6147f26020830186613ab4565b6147ff6040830185613ade565b81810360608301526148118184614797565b905095945050505050565b60008151905061482b8161391c565b92915050565b6000602082840312156148475761484661370e565b5b60006148558482850161481c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148988261385e565b91506148a38361385e565b9250826148b3576148b261485e565b5b828204905092915050565b60006148c98261385e565b91506148d48361385e565b9250826148e4576148e361485e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006149836018836139b6565b915061498e8261494d565b602082019050919050565b600060208201905081810360008301526149b281614976565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006149ef601f836139b6565b91506149fa826149b9565b602082019050919050565b60006020820190508181036000830152614a1e816149e2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a816022836139b6565b9150614a8c82614a25565b604082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b136022836139b6565b9150614b1e82614ab7565b604082019050919050565b60006020820190508181036000830152614b4281614b06565b9050919050565b614b528161472a565b82525050565b600060ff82169050919050565b614b6e81614b58565b82525050565b6000608082019050614b896000830187614b49565b614b966020830186614b65565b614ba36040830185614b49565b614bb06060830184614b49565b9594505050505056fea26469706673582212206f51dbb4f9169be961714913f75adf4e8adf8d1e81f9334facfddb83016cbe8664736f6c63430008090033
Deployed Bytecode
0x60806040526004361061022f5760003560e01c80638f430db01161012e578063cb5bc2aa116100ab578063e55f58bb1161006f578063e55f58bb146107f3578063e985e9c51461081e578063f19e75d41461085b578063f2fde38b14610884578063fde919f6146108ad5761022f565b8063cb5bc2aa146106fa578063d2d8cb6714610725578063dc33e68114610750578063e08a66051461078d578063e0ec7c36146107b65761022f565b8063a6eb27e2116100f2578063a6eb27e214610613578063b88d4fde1461063e578063bc8893b414610667578063c87b56dd14610692578063c8d5ed68146106cf5761022f565b80638f430db01461055657806395d89b411461056d5780639aaf21f414610598578063a22cb465146105c1578063a4513e92146105ea5761022f565b806324600fc3116101bc5780636352211e116101805780636352211e1461046f57806365b1de20146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b5761022f565b806324600fc3146103b4578063253ca934146103cb57806342842e0e146103f45780634f7f89761461041d57806355f804b3146104465761022f565b8063089d466511610203578063089d4665146102f5578063095ea7b31461032057806318160ddd146103495780631b5cb7f31461037457806323b872dd1461038b5761022f565b80622576121461023457806301ffc9a71461025057806306fdde031461028d578063081812fc146102b8575b600080fd5b61024e60048036038101906102499190613894565b6108d8565b005b34801561025c57600080fd5b5061027760048036038101906102729190613948565b610be0565b6040516102849190613990565b60405180910390f35b34801561029957600080fd5b506102a2610cc2565b6040516102af9190613a33565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190613a55565b610d54565b6040516102ec9190613ac3565b60405180910390f35b34801561030157600080fd5b5061030a610dd0565b6040516103179190613aed565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613b34565b610dd6565b005b34801561035557600080fd5b5061035e610ee1565b60405161036b9190613aed565b60405180910390f35b34801561038057600080fd5b50610389610ef8565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613b74565b610fa0565b005b3480156103c057600080fd5b506103c9610fb0565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613a55565b6110db565b005b34801561040057600080fd5b5061041b60048036038101906104169190613b74565b611161565b005b34801561042957600080fd5b50610444600480360381019061043f9190613b34565b611181565b005b34801561045257600080fd5b5061046d60048036038101906104689190613c27565b6112ae565b005b34801561047b57600080fd5b5061049660048036038101906104919190613a55565b611340565b6040516104a39190613ac3565b60405180910390f35b3480156104b857600080fd5b506104c1611356565b6040516104ce9190613aed565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613c74565b61135c565b60405161050b9190613aed565b60405180910390f35b34801561052057600080fd5b5061052961142c565b005b34801561053757600080fd5b506105406114b4565b60405161054d9190613ac3565b60405180910390f35b34801561056257600080fd5b5061056b6114de565b005b34801561057957600080fd5b50610582611586565b60405161058f9190613a33565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190613b34565b611618565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190613ccd565b61170d565b005b3480156105f657600080fd5b50610611600480360381019061060c9190613d0d565b611885565b005b34801561061f57600080fd5b50610628611bc8565b6040516106359190613aed565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613d56565b611bcd565b005b34801561067357600080fd5b5061067c611c49565b6040516106899190613990565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190613a55565b611c5c565b6040516106c69190613a33565b60405180910390f35b3480156106db57600080fd5b506106e4611cfb565b6040516106f19190613aed565b60405180910390f35b34801561070657600080fd5b5061070f611d00565b60405161071c9190613990565b60405180910390f35b34801561073157600080fd5b5061073a611d13565b6040516107479190613aed565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613c74565b611d1e565b6040516107849190613aed565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613c74565b611d30565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190613c74565b611df0565b6040516107ea9190613aed565b60405180910390f35b3480156107ff57600080fd5b50610808611e08565b6040516108159190613aed565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190613dd9565b611e0e565b6040516108529190613990565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613a55565b611ea2565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613c74565b611f96565b005b3480156108b957600080fd5b506108c261208e565b6040516108cf9190613ac3565b60405180910390f35b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90613e65565b60405180910390fd5b80600960149054906101000a900460ff16610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613ed1565b60405180910390fd5b8066470de4df8200006109a99190613f20565b3410156109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613fc6565b60405180910390fd5b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610a37336120b4565b610a419190613fe6565b610a4b919061403c565b1115610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390614108565b60405180910390fd5b8161271081610a9961211e565b610aa39190613fe6565b1115610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90614174565b60405180910390fd5b8333604051602001610af691906141dc565b6040516020818303038152906040526000610b178280519060200120612131565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610b65848361216190919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290614243565b60405180910390fd5b610bd73387604051806020016040528060008152506000612188565b50505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cab57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cbb5750610cba82612556565b5b9050919050565b606060028054610cd190614292565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90614292565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d5f826125c0565b610d95576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61053981565b6000610de182611340565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e49576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6861260e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9a5750610e9881610e9361260e565b611e0e565b155b15610ed1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edc838383612616565b505050565b6000610eeb6126c8565b6001546000540303905090565b610f0061260e565b73ffffffffffffffffffffffffffffffffffffffff16610f1e6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614310565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b610fab8383836126cd565b505050565b610fb861260e565b73ffffffffffffffffffffffffffffffffffffffff16610fd66114b4565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614310565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161105290614361565b60006040518083038185875af1925050503d806000811461108f576040519150601f19603f3d011682016040523d82523d6000602084013e611094565b606091505b50509050806110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906143c2565b60405180910390fd5b50565b6110e361260e565b73ffffffffffffffffffffffffffffffffffffffff166111016114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90614310565b60405180910390fd5b80600a8190555050565b61117c83838360405180602001604052806000815250611bcd565b505050565b61118961260e565b73ffffffffffffffffffffffffffffffffffffffff166111a76114b4565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490614310565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161122390614361565b60006040518083038185875af1925050503d8060008114611260576040519150601f19603f3d011682016040523d82523d6000602084013e611265565b606091505b50509050806112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a0906143c2565b60405180910390fd5b505050565b6112b661260e565b73ffffffffffffffffffffffffffffffffffffffff166112d46114b4565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190614310565b60405180910390fd5b8181600c919061133b92919061361e565b505050565b600061134b82612b83565b600001519050919050565b61271081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61143461260e565b73ffffffffffffffffffffffffffffffffffffffff166114526114b4565b73ffffffffffffffffffffffffffffffffffffffff16146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90614310565b60405180910390fd5b6114b26000612e12565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e661260e565b73ffffffffffffffffffffffffffffffffffffffff166115046114b4565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614310565b60405180910390fd5b600960159054906101000a900460ff1615600960156101000a81548160ff021916908315150217905550565b60606003805461159590614292565b80601f01602080910402602001604051908101604052809291908181526020018280546115c190614292565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b5050505050905090565b61162061260e565b73ffffffffffffffffffffffffffffffffffffffff1661163e6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90614310565b60405180910390fd5b80612710816116a161211e565b6116ab9190613fe6565b11156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614174565b60405180910390fd5b6117088383604051806020016040528060008152506000612188565b505050565b61171561260e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561177a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061178761260e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183461260e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118799190613990565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613e65565b60405180910390fd5b600960159054906101000a900460ff16611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061442e565b60405180910390fd5b6105396001600a546119549190613fe6565b1115611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c906144c0565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e9061452c565b60405180910390fd5b8033604051602001611a2991906141dc565b6040516020818303038152906040526000611a4a8280519060200120612131565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a98848361216190919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590614243565b60405180910390fd5b600161271081611afc61211e565b611b069190613fe6565b1115611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614174565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a6000815480929190611b9f9061454c565b9190505550611bc1336001604051806020016040528060008152506000612188565b5050505050565b600181565b611bd88484846126cd565b611bf78373ffffffffffffffffffffffffffffffffffffffff16612ed8565b8015611c0c5750611c0a84848484612efb565b155b15611c43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960149054906101000a900460ff1681565b6060611c67826125c0565b611c9d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ca761305b565b9050600081511415611cc85760405180602001604052806000815250611cf3565b80611cd2846130ed565b604051602001611ce392919061461d565b6040516020818303038152906040525b915050919050565b600581565b600960159054906101000a900460ff1681565b66470de4df82000081565b6000611d29826120b4565b9050919050565b611d3861260e565b73ffffffffffffffffffffffffffffffffffffffff16611d566114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390614310565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915090505481565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eaa61260e565b73ffffffffffffffffffffffffffffffffffffffff16611ec86114b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614310565b60405180910390fd5b8061271081611f2b61211e565b611f359190613fe6565b1115611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614174565b60405180910390fd5b611f923383604051806020016040528060008152506000612188565b5050565b611f9e61260e565b73ffffffffffffffffffffffffffffffffffffffff16611fbc6114b4565b73ffffffffffffffffffffffffffffffffffffffff1614612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200990614310565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612079906146be565b60405180910390fd5b61208b81612e12565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006121286126c8565b60005403905090565b6000816040516020016121449190614755565b604051602081830303815290604052805190602001209050919050565b6000806000612170858561324e565b9150915061217d816132d1565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156121f5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612230576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223d60008683876134a6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561240757506124068773ffffffffffffffffffffffffffffffffffffffff16612ed8565b5b156124cd575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461247c6000888480600101955088612efb565b6124b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561240d5782600054146124c857600080fd5b612539565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156124ce575b81600081905550505061254f60008683876134ac565b5050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816125cb6126c8565b111580156125da575060005482105b8015612607575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006126d882612b83565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612743576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661276461260e565b73ffffffffffffffffffffffffffffffffffffffff16148061279357506127928561278d61260e565b611e0e565b5b806127d857506127a161260e565b73ffffffffffffffffffffffffffffffffffffffff166127c084610d54565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612811576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612878576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288585858560016134a6565b61289160008487612616565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b11576000548214612b1057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7c85858560016134ac565b5050505050565b612b8b6136a4565b600082905080612b996126c8565b11158015612ba8575060005481105b15612ddb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dd957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cbd578092505050612e0d565b5b600115612dd857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dd3578092505050612e0d565b612cbe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2161260e565b8786866040518563ffffffff1660e01b8152600401612f4394939291906147d0565b602060405180830381600087803b158015612f5d57600080fd5b505af1925050508015612f8e57506040513d601f19601f82011682018060405250810190612f8b9190614831565b60015b613008573d8060008114612fbe576040519150601f19603f3d011682016040523d82523d6000602084013e612fc3565b606091505b50600081511415613000576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461306a90614292565b80601f016020809104026020016040519081016040528092919081815260200182805461309690614292565b80156130e35780601f106130b8576101008083540402835291602001916130e3565b820191906000526020600020905b8154815290600101906020018083116130c657829003601f168201915b5050505050905090565b60606000821415613135576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613249565b600082905060005b600082146131675780806131509061454c565b915050600a82613160919061488d565b915061313d565b60008167ffffffffffffffff81111561318357613182613733565b5b6040519080825280601f01601f1916602001820160405280156131b55781602001600182028036833780820191505090505b5090505b60008514613242576001826131ce919061403c565b9150600a856131dd91906148be565b60306131e99190613fe6565b60f81b8183815181106131ff576131fe6148ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561323b919061488d565b94506131b9565b8093505050505b919050565b6000806041835114156132905760008060006020860151925060408601519150606086015160001a9050613284878285856134b2565b945094505050506132ca565b6040835114156132c15760008060208501519150604085015190506132b68683836135bf565b9350935050506132ca565b60006002915091505b9250929050565b600060048111156132e5576132e461491e565b5b8160048111156132f8576132f761491e565b5b1415613303576134a3565b600160048111156133175761331661491e565b5b81600481111561332a5761332961491e565b5b141561336b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336290614999565b60405180910390fd5b6002600481111561337f5761337e61491e565b5b8160048111156133925761339161491e565b5b14156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90614a05565b60405180910390fd5b600360048111156133e7576133e661491e565b5b8160048111156133fa576133f961491e565b5b141561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614a97565b60405180910390fd5b60048081111561344e5761344d61491e565b5b8160048111156134615761346061491e565b5b14156134a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349990614b29565b60405180910390fd5b5b50565b50505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156134ed5760006003915091506135b6565b601b8560ff16141580156135055750601c8560ff1614155b156135175760006004915091506135b6565b60006001878787876040516000815260200160405260405161353c9493929190614b74565b6020604051602081039080840390855afa15801561355e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135ad576000600192509250506135b6565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6136029190613fe6565b9050613610878288856134b2565b935093505050935093915050565b82805461362a90614292565b90600052602060002090601f01602090048101928261364c5760008555613693565b82601f1061366557803560ff1916838001178555613693565b82800160010185558215613693579182015b82811115613692578235825591602001919060010190613677565b5b5090506136a091906136e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137005760008160009055506001016136e8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61376b82613722565b810181811067ffffffffffffffff8211171561378a57613789613733565b5b80604052505050565b600061379d613704565b90506137a98282613762565b919050565b600067ffffffffffffffff8211156137c9576137c8613733565b5b6137d282613722565b9050602081019050919050565b82818337600083830152505050565b60006138016137fc846137ae565b613793565b90508281526020810184848401111561381d5761381c61371d565b5b6138288482856137df565b509392505050565b600082601f83011261384557613844613718565b5b81356138558482602086016137ee565b91505092915050565b6000819050919050565b6138718161385e565b811461387c57600080fd5b50565b60008135905061388e81613868565b92915050565b600080604083850312156138ab576138aa61370e565b5b600083013567ffffffffffffffff8111156138c9576138c8613713565b5b6138d585828601613830565b92505060206138e68582860161387f565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613925816138f0565b811461393057600080fd5b50565b6000813590506139428161391c565b92915050565b60006020828403121561395e5761395d61370e565b5b600061396c84828501613933565b91505092915050565b60008115159050919050565b61398a81613975565b82525050565b60006020820190506139a56000830184613981565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139e55780820151818401526020810190506139ca565b838111156139f4576000848401525b50505050565b6000613a05826139ab565b613a0f81856139b6565b9350613a1f8185602086016139c7565b613a2881613722565b840191505092915050565b60006020820190508181036000830152613a4d81846139fa565b905092915050565b600060208284031215613a6b57613a6a61370e565b5b6000613a798482850161387f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aad82613a82565b9050919050565b613abd81613aa2565b82525050565b6000602082019050613ad86000830184613ab4565b92915050565b613ae78161385e565b82525050565b6000602082019050613b026000830184613ade565b92915050565b613b1181613aa2565b8114613b1c57600080fd5b50565b600081359050613b2e81613b08565b92915050565b60008060408385031215613b4b57613b4a61370e565b5b6000613b5985828601613b1f565b9250506020613b6a8582860161387f565b9150509250929050565b600080600060608486031215613b8d57613b8c61370e565b5b6000613b9b86828701613b1f565b9350506020613bac86828701613b1f565b9250506040613bbd8682870161387f565b9150509250925092565b600080fd5b600080fd5b60008083601f840112613be757613be6613718565b5b8235905067ffffffffffffffff811115613c0457613c03613bc7565b5b602083019150836001820283011115613c2057613c1f613bcc565b5b9250929050565b60008060208385031215613c3e57613c3d61370e565b5b600083013567ffffffffffffffff811115613c5c57613c5b613713565b5b613c6885828601613bd1565b92509250509250929050565b600060208284031215613c8a57613c8961370e565b5b6000613c9884828501613b1f565b91505092915050565b613caa81613975565b8114613cb557600080fd5b50565b600081359050613cc781613ca1565b92915050565b60008060408385031215613ce457613ce361370e565b5b6000613cf285828601613b1f565b9250506020613d0385828601613cb8565b9150509250929050565b600060208284031215613d2357613d2261370e565b5b600082013567ffffffffffffffff811115613d4157613d40613713565b5b613d4d84828501613830565b91505092915050565b60008060008060808587031215613d7057613d6f61370e565b5b6000613d7e87828801613b1f565b9450506020613d8f87828801613b1f565b9350506040613da08782880161387f565b925050606085013567ffffffffffffffff811115613dc157613dc0613713565b5b613dcd87828801613830565b91505092959194509250565b60008060408385031215613df057613def61370e565b5b6000613dfe85828601613b1f565b9250506020613e0f85828601613b1f565b9150509250929050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613e4f601e836139b6565b9150613e5a82613e19565b602082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f7075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b6000613ebb6019836139b6565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f2b8261385e565b9150613f368361385e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f6f57613f6e613ef1565b5b828202905092915050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b6000613fb06016836139b6565b9150613fbb82613f7a565b602082019050919050565b60006020820190508181036000830152613fdf81613fa3565b9050919050565b6000613ff18261385e565b9150613ffc8361385e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561403157614030613ef1565b5b828201905092915050565b60006140478261385e565b91506140528361385e565b92508282101561406557614064613ef1565b5b828203905092915050565b7f5468697320707572636861736520776f756c6420657863656564206d6178696d60008201527f756d20616c6c6f636174696f6e20666f72207075626c6963206d696e7473206660208201527f6f7220746869732077616c6c6574000000000000000000000000000000000000604082015250565b60006140f2604e836139b6565b91506140fd82614070565b606082019050919050565b60006020820190508181036000830152614121816140e5565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061415e6020836139b6565b915061416982614128565b602082019050919050565b6000602082019050818103600083015261418d81614151565b9050919050565b60008160601b9050919050565b60006141ac82614194565b9050919050565b60006141be826141a1565b9050919050565b6141d66141d182613aa2565b6141b3565b82525050565b60006141e882846141c5565b60148201915081905092915050565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b600061422d6013836139b6565b9150614238826141f7565b602082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142aa57607f821691505b602082108114156142be576142bd614263565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142fa6020836139b6565b9150614305826142c4565b602082019050919050565b60006020820190508181036000830152614329816142ed565b9050919050565b600081905092915050565b50565b600061434b600083614330565b91506143568261433b565b600082019050919050565b600061436c8261433e565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006143ac6010836139b6565b91506143b782614376565b602082019050919050565b600060208201905081810360008301526143db8161439f565b9050919050565b7f6672656520636c61696d206973206e6f74206163746976650000000000000000600082015250565b60006144186018836139b6565b9150614423826143e2565b602082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662066726565206d696e7473000000000000000000000000000000000000602082015250565b60006144aa602e836139b6565b91506144b58261444e565b604082019050919050565b600060208201905081810360008301526144d98161449d565b9050919050565b7f77616c6c65742068617320616c72656164792066726565206d696e7465640000600082015250565b6000614516601e836139b6565b9150614521826144e0565b602082019050919050565b6000602082019050818103600083015261454581614509565b9050919050565b60006145578261385e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561458a57614589613ef1565b5b600182019050919050565b600081905092915050565b60006145ab826139ab565b6145b58185614595565b93506145c58185602086016139c7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614607600583614595565b9150614612826145d1565b600582019050919050565b600061462982856145a0565b915061463582846145a0565b9150614640826145fa565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146a86026836139b6565b91506146b38261464c565b604082019050919050565b600060208201905081810360008301526146d78161469b565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614714601c83614595565b915061471f826146de565b601c82019050919050565b6000819050919050565b6000819050919050565b61474f61474a8261472a565b614734565b82525050565b600061476082614707565b915061476c828461473e565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b60006147a28261477b565b6147ac8185614786565b93506147bc8185602086016139c7565b6147c581613722565b840191505092915050565b60006080820190506147e56000830187613ab4565b6147f26020830186613ab4565b6147ff6040830185613ade565b81810360608301526148118184614797565b905095945050505050565b60008151905061482b8161391c565b92915050565b6000602082840312156148475761484661370e565b5b60006148558482850161481c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148988261385e565b91506148a38361385e565b9250826148b3576148b261485e565b5b828204905092915050565b60006148c98261385e565b91506148d48361385e565b9250826148e4576148e361485e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006149836018836139b6565b915061498e8261494d565b602082019050919050565b600060208201905081810360008301526149b281614976565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006149ef601f836139b6565b91506149fa826149b9565b602082019050919050565b60006020820190508181036000830152614a1e816149e2565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a816022836139b6565b9150614a8c82614a25565b604082019050919050565b60006020820190508181036000830152614ab081614a74565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b136022836139b6565b9150614b1e82614ab7565b604082019050919050565b60006020820190508181036000830152614b4281614b06565b9050919050565b614b528161472a565b82525050565b600060ff82169050919050565b614b6e81614b58565b82525050565b6000608082019050614b896000830187614b49565b614b966020830186614b65565b614ba36040830185614b49565b614bb06060830184614b49565b9594505050505056fea26469706673582212206f51dbb4f9169be961714913f75adf4e8adf8d1e81f9334facfddb83016cbe8664736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.