Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
999 BANC
Holders
292
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BANCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BadassApeNFTClub
Compiler Version
v0.8.7+commit.e28d00a7
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.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import '@openzeppelin/contracts/utils/Strings.sol'; import "erc721a/contracts/ERC721A.sol"; contract BadassApeNFTClub is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; bool public saleIsActive = false; bool public preSalesIsActive = false; string private _nonRevealedURI; string private _baseURIextended; uint256 public constant MAX_SUPPLY = 8888; uint256 public constant MAX_PUBLIC_MINT = 5; uint256 public constant PRICE_PER_TOKEN_SALES = 0.15 ether; uint256 public constant PRICE_PER_TOKEN_PRE_SALES = 0.10 ether; bool private revealed = false; bytes32 public merkleRoot = 0x4187cfabef52442e6a7cf5c041d3bb146aa490821d157ce0a832ce4d711bb73e; mapping(address => uint256) private _allowList; mapping(address => uint256) private _allowListMerkleTree; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor( string memory name, string memory symbol, string memory nonRevealedURI ) ERC721A(name, symbol) { _nonRevealedURI = nonRevealedURI; } function setPreSalesActive(bool _isPreSalesActive) external onlyOwner { preSalesIsActive = _isPreSalesActive; } function setReveal(bool _revealState) external onlyOwner { revealed = _revealState; } function setMerkleTree(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = numAllowedToMint; } } function numAvailableToMint(address addr) external view returns (uint256) { return _allowList[addr]; } function mintAllowList(uint256 numberOfTokens, bytes32[] calldata _merkleProof, uint listType) external payable callerIsUser{ require(preSalesIsActive, "Allow list is not active"); require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens"); require(listType == 0 || listType == 1, "Invalid list type"); if(listType == 0) { require(numberOfTokens + _allowListMerkleTree[msg.sender] <= 3, "Exceeded max available to purchase"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof"); _allowListMerkleTree[msg.sender] += numberOfTokens; } if(listType == 1) { require(numberOfTokens <= _allowList[msg.sender], "Exceeded max available to purchase"); _allowList[msg.sender] -= numberOfTokens; } _safeMint(msg.sender, numberOfTokens); refundIfOver(PRICE_PER_TOKEN_PRE_SALES * numberOfTokens); } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function reserve(uint256 numberOfTokens) external onlyOwner { require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens"); _safeMint(msg.sender, numberOfTokens); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return bytes(_nonRevealedURI).length != 0 ? string(abi.encodePacked(_nonRevealedURI, tokenId.toString())) : ''; } string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } function setSaleState(bool newState) external onlyOwner { saleIsActive = newState; } function mint(uint256 numberOfTokens) external payable callerIsUser { require(numberOfTokens >= 1, "You must mint at least one token"); require(saleIsActive, "Sale must be active to mint tokens"); require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase"); require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens"); _safeMint(msg.sender, numberOfTokens); refundIfOver(PRICE_PER_TOKEN_SALES * numberOfTokens); } function refundIfOver(uint256 price) private { require(msg.value >= price, "Ether value sent is not correct"); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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 // 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 MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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 (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 v4.4.1 (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 tokenId); /** * @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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"nonRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN_PRE_SALES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN_SALES","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"listType","type":"uint256"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalesIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleTree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSalesActive","type":"bool"}],"name":"setPreSalesActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealState","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055507f4187cfabef52442e6a7cf5c041d3bb146aa490821d157ce0a832ce4d711bb73e60001b600e553480156200008957600080fd5b5060405162004b3d38038062004b3d8339818101604052810190620000af919062000344565b8282620000d1620000c56200014560201b60201c565b6200014d60201b60201c565b8160039080519060200190620000e992919062000216565b5080600490805190602001906200010292919062000216565b50620001136200021160201b60201c565b6001819055505050600160098190555080600b90805190602001906200013b92919062000216565b5050505062000581565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002249062000492565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b6000620002dd620002d78462000426565b620003fd565b905082815260208101848484011115620002fc57620002fb62000561565b5b620003098482856200045c565b509392505050565b600082601f8301126200032957620003286200055c565b5b81516200033b848260208601620002c6565b91505092915050565b60008060006060848603121562000360576200035f6200056b565b5b600084015167ffffffffffffffff81111562000381576200038062000566565b5b6200038f8682870162000311565b935050602084015167ffffffffffffffff811115620003b357620003b262000566565b5b620003c18682870162000311565b925050604084015167ffffffffffffffff811115620003e557620003e462000566565b5b620003f38682870162000311565b9150509250925092565b6000620004096200041c565b9050620004178282620004c8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200044457620004436200052d565b5b6200044f8262000570565b9050602081019050919050565b60005b838110156200047c5780820151818401526020810190506200045f565b838111156200048c576000848401525b50505050565b60006002820490506001821680620004ab57607f821691505b60208210811415620004c257620004c1620004fe565b5b50919050565b620004d38262000570565b810181811067ffffffffffffffff82111715620004f557620004f46200052d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6145ac80620005916000396000f3fe6080604052600436106102045760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d1d6ff231461074e578063e985e9c514610777578063eb8d2444146107b4578063f2fde38b146107df57610204565b8063a22cb46514610659578063b88d4fde14610682578063c04a2836146106ab578063c4e37095146106e857610204565b80638295784d116100e75780638295784d146105935780638da5cb5b146105bc57806395d89b41146105e75780639c194ced14610612578063a0712d681461063d57610204565b806365f13097146104eb57806370a0823114610516578063715018a614610553578063819b25ba1461056a57610204565b80632a3f300c1161019b5780633ccfd60b1161016a5780633ccfd60b1461041a57806342842e0e14610431578063537c3e891461045a57806355f804b3146104855780636352211e146104ae57610204565b80632a3f300c146103725780632eb4a7ab1461039b5780632fb1fe60146103c657806332cb6b0c146103ef57610204565b806311d55e98116101d757806311d55e98146102d757806318160ddd146102f35780631a12f5c41461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061363e565b610808565b60405161023d9190613ba8565b60405180910390f35b34801561025257600080fd5b5061025b6108ea565b6040516102689190613bde565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136e1565b61097c565b6040516102a59190613b41565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613544565b6109f8565b005b6102f160048036038101906102ec919061370e565b610b03565b005b3480156102ff57600080fd5b50610308610f1a565b6040516103159190613d80565b60405180910390f35b34801561032a57600080fd5b50610333610f31565b6040516103409190613d80565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061342e565b610f3d565b005b34801561037e57600080fd5b50610399600480360381019061039491906135e4565b610f4d565b005b3480156103a757600080fd5b506103b0610fe6565b6040516103bd9190613bc3565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e891906135e4565b610fec565b005b3480156103fb57600080fd5b50610404611085565b6040516104119190613d80565b60405180910390f35b34801561042657600080fd5b5061042f61108b565b005b34801561043d57600080fd5b506104586004803603810190610453919061342e565b611156565b005b34801561046657600080fd5b5061046f611176565b60405161047c9190613d80565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613698565b611182565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906136e1565b611218565b6040516104e29190613b41565b60405180910390f35b3480156104f757600080fd5b5061050061122e565b60405161050d9190613d80565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906133c1565b611233565b60405161054a9190613d80565b60405180910390f35b34801561055f57600080fd5b50610568611303565b005b34801561057657600080fd5b50610591600480360381019061058c91906136e1565b61138b565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613584565b61146b565b005b3480156105c857600080fd5b506105d161157c565b6040516105de9190613b41565b60405180910390f35b3480156105f357600080fd5b506105fc6115a5565b6040516106099190613bde565b60405180910390f35b34801561061e57600080fd5b50610627611637565b6040516106349190613ba8565b60405180910390f35b610657600480360381019061065291906136e1565b61164a565b005b34801561066557600080fd5b50610680600480360381019061067b9190613504565b61180f565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613481565b611987565b005b3480156106b757600080fd5b506106d260048036038101906106cd91906133c1565b611a03565b6040516106df9190613d80565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906135e4565b611a4c565b005b34801561071d57600080fd5b50610738600480360381019061073391906136e1565b611ae5565b6040516107459190613bde565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613611565b611c00565b005b34801561078357600080fd5b5061079e600480360381019061079991906133ee565b611c86565b6040516107ab9190613ba8565b60405180910390f35b3480156107c057600080fd5b506107c9611d1a565b6040516107d69190613ba8565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906133c1565b611d2d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e357506108e282611e25565b5b9050919050565b6060600380546108f99061405c565b80601f01602080910402602001604051908101604052809291908181526020018280546109259061405c565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b5050505050905090565b600061098782611e8f565b6109bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0382611218565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611edd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abc5750610aba81610ab5611edd565b611c86565b155b15610af3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afe838383611ee5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613c60565b60405180910390fd5b600a60019054906101000a900460ff16610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613d60565b60405180910390fd5b6122b884610bcc610f1a565b610bd69190613e7a565b1115610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613c20565b60405180910390fd5b6000811480610c265750600181145b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613d20565b60405180910390fd5b6000811415610e0c576003601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610cbb9190613e7a565b1115610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390613d00565b60405180910390fd5b600033604051602001610d0f9190613ab2565b604051602081830303815290604052805190602001209050610d75848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483611f97565b610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613d40565b60405180910390fd5b84601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e039190613e7a565b92505081905550505b6001811415610eee57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054841115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613d00565b60405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee69190613f5b565b925050819055505b610ef83385611fae565b610f148467016345785d8a0000610f0f9190613f01565b611fcc565b50505050565b6000610f2461206d565b6002546001540303905090565b67016345785d8a000081565b610f48838383612072565b505050565b610f55611edd565b73ffffffffffffffffffffffffffffffffffffffff16610f7361157c565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613c80565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600e5481565b610ff4611edd565b73ffffffffffffffffffffffffffffffffffffffff1661101261157c565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613c80565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6122b881565b611093611edd565b73ffffffffffffffffffffffffffffffffffffffff166110b161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613c80565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b5050565b61117183838360405180602001604052806000815250611987565b505050565b670214e8348c4f000081565b61118a611edd565b73ffffffffffffffffffffffffffffffffffffffff166111a861157c565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613c80565b60405180910390fd5b80600c90805190602001906112149291906130bc565b5050565b600061122382612563565b600001519050919050565b600581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61130b611edd565b73ffffffffffffffffffffffffffffffffffffffff1661132961157c565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613c80565b60405180910390fd5b61138960006127f2565b565b611393611edd565b73ffffffffffffffffffffffffffffffffffffffff166113b161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613c80565b60405180910390fd5b6122b881611413610f1a565b61141d9190613e7a565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613c20565b60405180910390fd5b6114683382611fae565b50565b611473611edd565b73ffffffffffffffffffffffffffffffffffffffff1661149161157c565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613c80565b60405180910390fd5b60005b83839050811015611576578160ff16600f60008686858181106115105761150f6141f4565b5b905060200201602081019061152591906133c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061156e906140bf565b9150506114ea565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115b49061405c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061405c565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90613c60565b60405180910390fd5b60018110156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613cc0565b60405180910390fd5b600a60009054906101000a900460ff1661174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613ca0565b60405180910390fd5b600581111561178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613ce0565b60405180910390fd5b6122b88161179b610f1a565b6117a59190613e7a565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613c20565b60405180910390fd5b6117f03382611fae565b61180c81670214e8348c4f00006118079190613f01565b611fcc565b50565b611817611edd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611889611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611936611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197b9190613ba8565b60405180910390a35050565b611992848484612072565b6119b18373ffffffffffffffffffffffffffffffffffffffff166128b6565b80156119c657506119c4848484846128c9565b155b156119fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a54611edd565b73ffffffffffffffffffffffffffffffffffffffff16611a7261157c565b73ffffffffffffffffffffffffffffffffffffffff1614611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613c80565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060611af082611e8f565b611b26576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff1615151415611ba1576000600b8054611b519061405c565b90501415611b6e5760405180602001604052806000815250611b9a565b600b611b7983612a29565b604051602001611b8a929190613b1d565b6040516020818303038152906040525b9050611bfb565b6000611bab612b8a565b9050600081511415611bcc5760405180602001604052806000815250611bf7565b80611bd684612a29565b604051602001611be7929190613af9565b6040516020818303038152906040525b9150505b919050565b611c08611edd565b73ffffffffffffffffffffffffffffffffffffffff16611c2661157c565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613c80565b60405180910390fd5b80600e8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611d35611edd565b73ffffffffffffffffffffffffffffffffffffffff16611d5361157c565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613c80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613c00565b60405180910390fd5b611e22816127f2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e9a61206d565b11158015611ea9575060015482105b8015611ed6575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082611fa48584612c1c565b1490509392505050565b611fc8828260405180602001604052806000815250612ccf565b5050565b8034101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613c40565b60405180910390fd5b8034111561206a573373ffffffffffffffffffffffffffffffffffffffff166108fc823461203d9190613f5b565b9081150290604051600060405180830381858888f19350505050158015612068573d6000803e3d6000fd5b505b50565b600090565b600061207d82612563565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a4611edd565b73ffffffffffffffffffffffffffffffffffffffff1614806120d757506120d682600001516120d1611edd565b611c86565b5b8061211c57506120e5611edd565b73ffffffffffffffffffffffffffffffffffffffff166121048461097c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612155576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612225576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122328585856001612ce1565b6122426000848460000151611ee5565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124f3576001548110156124f25782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255c8585856001612ce7565b5050505050565b61256b613142565b60008290508061257961206d565b11158015612588575060015481105b156127bb576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269d5780925050506127ed565b5b6001156127b857818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b35780925050506127ed565b61269e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ef611edd565b8786866040518563ffffffff1660e01b81526004016129119493929190613b5c565b602060405180830381600087803b15801561292b57600080fd5b505af192505050801561295c57506040513d601f19601f82011682018060405250810190612959919061366b565b60015b6129d6573d806000811461298c576040519150601f19603f3d011682016040523d82523d6000602084013e612991565b606091505b506000815114156129ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a71576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b85565b600082905060005b60008214612aa3578080612a8c906140bf565b915050600a82612a9c9190613ed0565b9150612a79565b60008167ffffffffffffffff811115612abf57612abe614223565b5b6040519080825280601f01601f191660200182016040528015612af15781602001600182028036833780820191505090505b5090505b60008514612b7e57600182612b0a9190613f5b565b9150600a85612b199190614136565b6030612b259190613e7a565b60f81b818381518110612b3b57612b3a6141f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b779190613ed0565b9450612af5565b8093505050505b919050565b6060600c8054612b999061405c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc59061405c565b8015612c125780601f10612be757610100808354040283529160200191612c12565b820191906000526020600020905b815481529060010190602001808311612bf557829003601f168201915b5050505050905090565b60008082905060005b8451811015612cc4576000858281518110612c4357612c426141f4565b5b60200260200101519050808311612c84578281604051602001612c67929190613acd565b604051602081830303815290604052805190602001209250612cb0565b8083604051602001612c97929190613acd565b6040516020818303038152906040528051906020012092505b508080612cbc906140bf565b915050612c25565b508091505092915050565b612cdc8383836001612ced565b505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d5b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da36000868387612ce1565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f6d5750612f6c8773ffffffffffffffffffffffffffffffffffffffff166128b6565b5b15613033575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe260008884806001019550886128c9565b613018576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612f7357826001541461302e57600080fd5b61309f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613034575b8160018190555050506130b56000868387612ce7565b5050505050565b8280546130c89061405c565b90600052602060002090601f0160209004810192826130ea5760008555613131565b82601f1061310357805160ff1916838001178555613131565b82800160010185558215613131579182015b82811115613130578251825591602001919060010190613115565b5b50905061313e9190613185565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561319e576000816000905550600101613186565b5090565b60006131b56131b084613dc0565b613d9b565b9050828152602081018484840111156131d1576131d0614261565b5b6131dc84828561401a565b509392505050565b60006131f76131f284613df1565b613d9b565b90508281526020810184848401111561321357613212614261565b5b61321e84828561401a565b509392505050565b600081359050613235816144ec565b92915050565b60008083601f84011261325157613250614257565b5b8235905067ffffffffffffffff81111561326e5761326d614252565b5b60208301915083602082028301111561328a5761328961425c565b5b9250929050565b60008083601f8401126132a7576132a6614257565b5b8235905067ffffffffffffffff8111156132c4576132c3614252565b5b6020830191508360208202830111156132e0576132df61425c565b5b9250929050565b6000813590506132f681614503565b92915050565b60008135905061330b8161451a565b92915050565b60008135905061332081614531565b92915050565b60008151905061333581614531565b92915050565b600082601f8301126133505761334f614257565b5b81356133608482602086016131a2565b91505092915050565b600082601f83011261337e5761337d614257565b5b813561338e8482602086016131e4565b91505092915050565b6000813590506133a681614548565b92915050565b6000813590506133bb8161455f565b92915050565b6000602082840312156133d7576133d661426b565b5b60006133e584828501613226565b91505092915050565b600080604083850312156134055761340461426b565b5b600061341385828601613226565b925050602061342485828601613226565b9150509250929050565b6000806000606084860312156134475761344661426b565b5b600061345586828701613226565b935050602061346686828701613226565b925050604061347786828701613397565b9150509250925092565b6000806000806080858703121561349b5761349a61426b565b5b60006134a987828801613226565b94505060206134ba87828801613226565b93505060406134cb87828801613397565b925050606085013567ffffffffffffffff8111156134ec576134eb614266565b5b6134f88782880161333b565b91505092959194509250565b6000806040838503121561351b5761351a61426b565b5b600061352985828601613226565b925050602061353a858286016132e7565b9150509250929050565b6000806040838503121561355b5761355a61426b565b5b600061356985828601613226565b925050602061357a85828601613397565b9150509250929050565b60008060006040848603121561359d5761359c61426b565b5b600084013567ffffffffffffffff8111156135bb576135ba614266565b5b6135c78682870161323b565b935093505060206135da868287016133ac565b9150509250925092565b6000602082840312156135fa576135f961426b565b5b6000613608848285016132e7565b91505092915050565b6000602082840312156136275761362661426b565b5b6000613635848285016132fc565b91505092915050565b6000602082840312156136545761365361426b565b5b600061366284828501613311565b91505092915050565b6000602082840312156136815761368061426b565b5b600061368f84828501613326565b91505092915050565b6000602082840312156136ae576136ad61426b565b5b600082013567ffffffffffffffff8111156136cc576136cb614266565b5b6136d884828501613369565b91505092915050565b6000602082840312156136f7576136f661426b565b5b600061370584828501613397565b91505092915050565b600080600080606085870312156137285761372761426b565b5b600061373687828801613397565b945050602085013567ffffffffffffffff81111561375757613756614266565b5b61376387828801613291565b9350935050604061377687828801613397565b91505092959194509250565b61378b81613f8f565b82525050565b6137a261379d82613f8f565b614108565b82525050565b6137b181613fa1565b82525050565b6137c081613fad565b82525050565b6137d76137d282613fad565b61411a565b82525050565b60006137e882613e37565b6137f28185613e4d565b9350613802818560208601614029565b61380b81614270565b840191505092915050565b600061382182613e42565b61382b8185613e5e565b935061383b818560208601614029565b61384481614270565b840191505092915050565b600061385a82613e42565b6138648185613e6f565b9350613874818560208601614029565b80840191505092915050565b6000815461388d8161405c565b6138978186613e6f565b945060018216600081146138b257600181146138c3576138f6565b60ff198316865281860193506138f6565b6138cc85613e22565b60005b838110156138ee578154818901526001820191506020810190506138cf565b838801955050505b50505092915050565b600061390c602683613e5e565b91506139178261428e565b604082019050919050565b600061392f602083613e5e565b915061393a826142dd565b602082019050919050565b6000613952601f83613e5e565b915061395d82614306565b602082019050919050565b6000613975601e83613e5e565b91506139808261432f565b602082019050919050565b6000613998602083613e5e565b91506139a382614358565b602082019050919050565b60006139bb602283613e5e565b91506139c682614381565b604082019050919050565b60006139de602083613e5e565b91506139e9826143d0565b602082019050919050565b6000613a01601b83613e5e565b9150613a0c826143f9565b602082019050919050565b6000613a24602283613e5e565b9150613a2f82614422565b604082019050919050565b6000613a47601183613e5e565b9150613a5282614471565b602082019050919050565b6000613a6a600d83613e5e565b9150613a758261449a565b602082019050919050565b6000613a8d601883613e5e565b9150613a98826144c3565b602082019050919050565b613aac81614003565b82525050565b6000613abe8284613791565b60148201915081905092915050565b6000613ad982856137c6565b602082019150613ae982846137c6565b6020820191508190509392505050565b6000613b05828561384f565b9150613b11828461384f565b91508190509392505050565b6000613b298285613880565b9150613b35828461384f565b91508190509392505050565b6000602082019050613b566000830184613782565b92915050565b6000608082019050613b716000830187613782565b613b7e6020830186613782565b613b8b6040830185613aa3565b8181036060830152613b9d81846137dd565b905095945050505050565b6000602082019050613bbd60008301846137a8565b92915050565b6000602082019050613bd860008301846137b7565b92915050565b60006020820190508181036000830152613bf88184613816565b905092915050565b60006020820190508181036000830152613c19816138ff565b9050919050565b60006020820190508181036000830152613c3981613922565b9050919050565b60006020820190508181036000830152613c5981613945565b9050919050565b60006020820190508181036000830152613c7981613968565b9050919050565b60006020820190508181036000830152613c998161398b565b9050919050565b60006020820190508181036000830152613cb9816139ae565b9050919050565b60006020820190508181036000830152613cd9816139d1565b9050919050565b60006020820190508181036000830152613cf9816139f4565b9050919050565b60006020820190508181036000830152613d1981613a17565b9050919050565b60006020820190508181036000830152613d3981613a3a565b9050919050565b60006020820190508181036000830152613d5981613a5d565b9050919050565b60006020820190508181036000830152613d7981613a80565b9050919050565b6000602082019050613d956000830184613aa3565b92915050565b6000613da5613db6565b9050613db1828261408e565b919050565b6000604051905090565b600067ffffffffffffffff821115613ddb57613dda614223565b5b613de482614270565b9050602081019050919050565b600067ffffffffffffffff821115613e0c57613e0b614223565b5b613e1582614270565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e8582614003565b9150613e9083614003565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ec557613ec4614167565b5b828201905092915050565b6000613edb82614003565b9150613ee683614003565b925082613ef657613ef5614196565b5b828204905092915050565b6000613f0c82614003565b9150613f1783614003565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5057613f4f614167565b5b828202905092915050565b6000613f6682614003565b9150613f7183614003565b925082821015613f8457613f83614167565b5b828203905092915050565b6000613f9a82613fe3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561404757808201518184015260208101905061402c565b83811115614056576000848401525b50505050565b6000600282049050600182168061407457607f821691505b60208210811415614088576140876141c5565b5b50919050565b61409782614270565b810181811067ffffffffffffffff821117156140b6576140b5614223565b5b80604052505050565b60006140ca82614003565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140fd576140fc614167565b5b600182019050919050565b600061411382614124565b9050919050565b6000819050919050565b600061412f82614281565b9050919050565b600061414182614003565b915061414c83614003565b92508261415c5761415b614196565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206c6973742074797065000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b6144f581613f8f565b811461450057600080fd5b50565b61450c81613fa1565b811461451757600080fd5b50565b61452381613fad565b811461452e57600080fd5b50565b61453a81613fb7565b811461454557600080fd5b50565b61455181614003565b811461455c57600080fd5b50565b6145688161400d565b811461457357600080fd5b5056fea26469706673582212206dd3a0070a2577409366123f100a4557792950f597f8563f7a1e5353e543de4464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001342616461737320417065204e465420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414e4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624c515a5152584a7963365a6f456f53463252644d70775259616b33434c797753374a7853396e63446739542f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806365f1309711610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610711578063d1d6ff231461074e578063e985e9c514610777578063eb8d2444146107b4578063f2fde38b146107df57610204565b8063a22cb46514610659578063b88d4fde14610682578063c04a2836146106ab578063c4e37095146106e857610204565b80638295784d116100e75780638295784d146105935780638da5cb5b146105bc57806395d89b41146105e75780639c194ced14610612578063a0712d681461063d57610204565b806365f13097146104eb57806370a0823114610516578063715018a614610553578063819b25ba1461056a57610204565b80632a3f300c1161019b5780633ccfd60b1161016a5780633ccfd60b1461041a57806342842e0e14610431578063537c3e891461045a57806355f804b3146104855780636352211e146104ae57610204565b80632a3f300c146103725780632eb4a7ab1461039b5780632fb1fe60146103c657806332cb6b0c146103ef57610204565b806311d55e98116101d757806311d55e98146102d757806318160ddd146102f35780631a12f5c41461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061363e565b610808565b60405161023d9190613ba8565b60405180910390f35b34801561025257600080fd5b5061025b6108ea565b6040516102689190613bde565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906136e1565b61097c565b6040516102a59190613b41565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613544565b6109f8565b005b6102f160048036038101906102ec919061370e565b610b03565b005b3480156102ff57600080fd5b50610308610f1a565b6040516103159190613d80565b60405180910390f35b34801561032a57600080fd5b50610333610f31565b6040516103409190613d80565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061342e565b610f3d565b005b34801561037e57600080fd5b50610399600480360381019061039491906135e4565b610f4d565b005b3480156103a757600080fd5b506103b0610fe6565b6040516103bd9190613bc3565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e891906135e4565b610fec565b005b3480156103fb57600080fd5b50610404611085565b6040516104119190613d80565b60405180910390f35b34801561042657600080fd5b5061042f61108b565b005b34801561043d57600080fd5b506104586004803603810190610453919061342e565b611156565b005b34801561046657600080fd5b5061046f611176565b60405161047c9190613d80565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190613698565b611182565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906136e1565b611218565b6040516104e29190613b41565b60405180910390f35b3480156104f757600080fd5b5061050061122e565b60405161050d9190613d80565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906133c1565b611233565b60405161054a9190613d80565b60405180910390f35b34801561055f57600080fd5b50610568611303565b005b34801561057657600080fd5b50610591600480360381019061058c91906136e1565b61138b565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613584565b61146b565b005b3480156105c857600080fd5b506105d161157c565b6040516105de9190613b41565b60405180910390f35b3480156105f357600080fd5b506105fc6115a5565b6040516106099190613bde565b60405180910390f35b34801561061e57600080fd5b50610627611637565b6040516106349190613ba8565b60405180910390f35b610657600480360381019061065291906136e1565b61164a565b005b34801561066557600080fd5b50610680600480360381019061067b9190613504565b61180f565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613481565b611987565b005b3480156106b757600080fd5b506106d260048036038101906106cd91906133c1565b611a03565b6040516106df9190613d80565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906135e4565b611a4c565b005b34801561071d57600080fd5b50610738600480360381019061073391906136e1565b611ae5565b6040516107459190613bde565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613611565b611c00565b005b34801561078357600080fd5b5061079e600480360381019061079991906133ee565b611c86565b6040516107ab9190613ba8565b60405180910390f35b3480156107c057600080fd5b506107c9611d1a565b6040516107d69190613ba8565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906133c1565b611d2d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e357506108e282611e25565b5b9050919050565b6060600380546108f99061405c565b80601f01602080910402602001604051908101604052809291908181526020018280546109259061405c565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b5050505050905090565b600061098782611e8f565b6109bd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0382611218565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611edd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abc5750610aba81610ab5611edd565b611c86565b155b15610af3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afe838383611ee5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613c60565b60405180910390fd5b600a60019054906101000a900460ff16610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613d60565b60405180910390fd5b6122b884610bcc610f1a565b610bd69190613e7a565b1115610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613c20565b60405180910390fd5b6000811480610c265750600181145b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613d20565b60405180910390fd5b6000811415610e0c576003601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610cbb9190613e7a565b1115610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf390613d00565b60405180910390fd5b600033604051602001610d0f9190613ab2565b604051602081830303815290604052805190602001209050610d75848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483611f97565b610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613d40565b60405180910390fd5b84601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e039190613e7a565b92505081905550505b6001811415610eee57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054841115610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613d00565b60405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee69190613f5b565b925050819055505b610ef83385611fae565b610f148467016345785d8a0000610f0f9190613f01565b611fcc565b50505050565b6000610f2461206d565b6002546001540303905090565b67016345785d8a000081565b610f48838383612072565b505050565b610f55611edd565b73ffffffffffffffffffffffffffffffffffffffff16610f7361157c565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613c80565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600e5481565b610ff4611edd565b73ffffffffffffffffffffffffffffffffffffffff1661101261157c565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613c80565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6122b881565b611093611edd565b73ffffffffffffffffffffffffffffffffffffffff166110b161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613c80565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b5050565b61117183838360405180602001604052806000815250611987565b505050565b670214e8348c4f000081565b61118a611edd565b73ffffffffffffffffffffffffffffffffffffffff166111a861157c565b73ffffffffffffffffffffffffffffffffffffffff16146111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613c80565b60405180910390fd5b80600c90805190602001906112149291906130bc565b5050565b600061122382612563565b600001519050919050565b600581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561129b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61130b611edd565b73ffffffffffffffffffffffffffffffffffffffff1661132961157c565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613c80565b60405180910390fd5b61138960006127f2565b565b611393611edd565b73ffffffffffffffffffffffffffffffffffffffff166113b161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613c80565b60405180910390fd5b6122b881611413610f1a565b61141d9190613e7a565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590613c20565b60405180910390fd5b6114683382611fae565b50565b611473611edd565b73ffffffffffffffffffffffffffffffffffffffff1661149161157c565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613c80565b60405180910390fd5b60005b83839050811015611576578160ff16600f60008686858181106115105761150f6141f4565b5b905060200201602081019061152591906133c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061156e906140bf565b9150506114ea565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115b49061405c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061405c565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b5050505050905090565b600a60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90613c60565b60405180910390fd5b60018110156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613cc0565b60405180910390fd5b600a60009054906101000a900460ff1661174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613ca0565b60405180910390fd5b600581111561178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613ce0565b60405180910390fd5b6122b88161179b610f1a565b6117a59190613e7a565b11156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613c20565b60405180910390fd5b6117f03382611fae565b61180c81670214e8348c4f00006118079190613f01565b611fcc565b50565b611817611edd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611889611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611936611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197b9190613ba8565b60405180910390a35050565b611992848484612072565b6119b18373ffffffffffffffffffffffffffffffffffffffff166128b6565b80156119c657506119c4848484846128c9565b155b156119fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a54611edd565b73ffffffffffffffffffffffffffffffffffffffff16611a7261157c565b73ffffffffffffffffffffffffffffffffffffffff1614611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf90613c80565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060611af082611e8f565b611b26576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff1615151415611ba1576000600b8054611b519061405c565b90501415611b6e5760405180602001604052806000815250611b9a565b600b611b7983612a29565b604051602001611b8a929190613b1d565b6040516020818303038152906040525b9050611bfb565b6000611bab612b8a565b9050600081511415611bcc5760405180602001604052806000815250611bf7565b80611bd684612a29565b604051602001611be7929190613af9565b6040516020818303038152906040525b9150505b919050565b611c08611edd565b73ffffffffffffffffffffffffffffffffffffffff16611c2661157c565b73ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613c80565b60405180910390fd5b80600e8190555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611d35611edd565b73ffffffffffffffffffffffffffffffffffffffff16611d5361157c565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090613c80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613c00565b60405180910390fd5b611e22816127f2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e9a61206d565b11158015611ea9575060015482105b8015611ed6575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082611fa48584612c1c565b1490509392505050565b611fc8828260405180602001604052806000815250612ccf565b5050565b8034101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690613c40565b60405180910390fd5b8034111561206a573373ffffffffffffffffffffffffffffffffffffffff166108fc823461203d9190613f5b565b9081150290604051600060405180830381858888f19350505050158015612068573d6000803e3d6000fd5b505b50565b600090565b600061207d82612563565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a4611edd565b73ffffffffffffffffffffffffffffffffffffffff1614806120d757506120d682600001516120d1611edd565b611c86565b5b8061211c57506120e5611edd565b73ffffffffffffffffffffffffffffffffffffffff166121048461097c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612155576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612225576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122328585856001612ce1565b6122426000848460000151611ee5565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124f3576001548110156124f25782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461255c8585856001612ce7565b5050505050565b61256b613142565b60008290508061257961206d565b11158015612588575060015481105b156127bb576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127b957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269d5780925050506127ed565b5b6001156127b857818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127b35780925050506127ed565b61269e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128ef611edd565b8786866040518563ffffffff1660e01b81526004016129119493929190613b5c565b602060405180830381600087803b15801561292b57600080fd5b505af192505050801561295c57506040513d601f19601f82011682018060405250810190612959919061366b565b60015b6129d6573d806000811461298c576040519150601f19603f3d011682016040523d82523d6000602084013e612991565b606091505b506000815114156129ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a71576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b85565b600082905060005b60008214612aa3578080612a8c906140bf565b915050600a82612a9c9190613ed0565b9150612a79565b60008167ffffffffffffffff811115612abf57612abe614223565b5b6040519080825280601f01601f191660200182016040528015612af15781602001600182028036833780820191505090505b5090505b60008514612b7e57600182612b0a9190613f5b565b9150600a85612b199190614136565b6030612b259190613e7a565b60f81b818381518110612b3b57612b3a6141f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b779190613ed0565b9450612af5565b8093505050505b919050565b6060600c8054612b999061405c565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc59061405c565b8015612c125780601f10612be757610100808354040283529160200191612c12565b820191906000526020600020905b815481529060010190602001808311612bf557829003601f168201915b5050505050905090565b60008082905060005b8451811015612cc4576000858281518110612c4357612c426141f4565b5b60200260200101519050808311612c84578281604051602001612c67929190613acd565b604051602081830303815290604052805190602001209250612cb0565b8083604051602001612c97929190613acd565b6040516020818303038152906040528051906020012092505b508080612cbc906140bf565b915050612c25565b508091505092915050565b612cdc8383836001612ced565b505050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d5b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da36000868387612ce1565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612f6d5750612f6c8773ffffffffffffffffffffffffffffffffffffffff166128b6565b5b15613033575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe260008884806001019550886128c9565b613018576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612f7357826001541461302e57600080fd5b61309f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613034575b8160018190555050506130b56000868387612ce7565b5050505050565b8280546130c89061405c565b90600052602060002090601f0160209004810192826130ea5760008555613131565b82601f1061310357805160ff1916838001178555613131565b82800160010185558215613131579182015b82811115613130578251825591602001919060010190613115565b5b50905061313e9190613185565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561319e576000816000905550600101613186565b5090565b60006131b56131b084613dc0565b613d9b565b9050828152602081018484840111156131d1576131d0614261565b5b6131dc84828561401a565b509392505050565b60006131f76131f284613df1565b613d9b565b90508281526020810184848401111561321357613212614261565b5b61321e84828561401a565b509392505050565b600081359050613235816144ec565b92915050565b60008083601f84011261325157613250614257565b5b8235905067ffffffffffffffff81111561326e5761326d614252565b5b60208301915083602082028301111561328a5761328961425c565b5b9250929050565b60008083601f8401126132a7576132a6614257565b5b8235905067ffffffffffffffff8111156132c4576132c3614252565b5b6020830191508360208202830111156132e0576132df61425c565b5b9250929050565b6000813590506132f681614503565b92915050565b60008135905061330b8161451a565b92915050565b60008135905061332081614531565b92915050565b60008151905061333581614531565b92915050565b600082601f8301126133505761334f614257565b5b81356133608482602086016131a2565b91505092915050565b600082601f83011261337e5761337d614257565b5b813561338e8482602086016131e4565b91505092915050565b6000813590506133a681614548565b92915050565b6000813590506133bb8161455f565b92915050565b6000602082840312156133d7576133d661426b565b5b60006133e584828501613226565b91505092915050565b600080604083850312156134055761340461426b565b5b600061341385828601613226565b925050602061342485828601613226565b9150509250929050565b6000806000606084860312156134475761344661426b565b5b600061345586828701613226565b935050602061346686828701613226565b925050604061347786828701613397565b9150509250925092565b6000806000806080858703121561349b5761349a61426b565b5b60006134a987828801613226565b94505060206134ba87828801613226565b93505060406134cb87828801613397565b925050606085013567ffffffffffffffff8111156134ec576134eb614266565b5b6134f88782880161333b565b91505092959194509250565b6000806040838503121561351b5761351a61426b565b5b600061352985828601613226565b925050602061353a858286016132e7565b9150509250929050565b6000806040838503121561355b5761355a61426b565b5b600061356985828601613226565b925050602061357a85828601613397565b9150509250929050565b60008060006040848603121561359d5761359c61426b565b5b600084013567ffffffffffffffff8111156135bb576135ba614266565b5b6135c78682870161323b565b935093505060206135da868287016133ac565b9150509250925092565b6000602082840312156135fa576135f961426b565b5b6000613608848285016132e7565b91505092915050565b6000602082840312156136275761362661426b565b5b6000613635848285016132fc565b91505092915050565b6000602082840312156136545761365361426b565b5b600061366284828501613311565b91505092915050565b6000602082840312156136815761368061426b565b5b600061368f84828501613326565b91505092915050565b6000602082840312156136ae576136ad61426b565b5b600082013567ffffffffffffffff8111156136cc576136cb614266565b5b6136d884828501613369565b91505092915050565b6000602082840312156136f7576136f661426b565b5b600061370584828501613397565b91505092915050565b600080600080606085870312156137285761372761426b565b5b600061373687828801613397565b945050602085013567ffffffffffffffff81111561375757613756614266565b5b61376387828801613291565b9350935050604061377687828801613397565b91505092959194509250565b61378b81613f8f565b82525050565b6137a261379d82613f8f565b614108565b82525050565b6137b181613fa1565b82525050565b6137c081613fad565b82525050565b6137d76137d282613fad565b61411a565b82525050565b60006137e882613e37565b6137f28185613e4d565b9350613802818560208601614029565b61380b81614270565b840191505092915050565b600061382182613e42565b61382b8185613e5e565b935061383b818560208601614029565b61384481614270565b840191505092915050565b600061385a82613e42565b6138648185613e6f565b9350613874818560208601614029565b80840191505092915050565b6000815461388d8161405c565b6138978186613e6f565b945060018216600081146138b257600181146138c3576138f6565b60ff198316865281860193506138f6565b6138cc85613e22565b60005b838110156138ee578154818901526001820191506020810190506138cf565b838801955050505b50505092915050565b600061390c602683613e5e565b91506139178261428e565b604082019050919050565b600061392f602083613e5e565b915061393a826142dd565b602082019050919050565b6000613952601f83613e5e565b915061395d82614306565b602082019050919050565b6000613975601e83613e5e565b91506139808261432f565b602082019050919050565b6000613998602083613e5e565b91506139a382614358565b602082019050919050565b60006139bb602283613e5e565b91506139c682614381565b604082019050919050565b60006139de602083613e5e565b91506139e9826143d0565b602082019050919050565b6000613a01601b83613e5e565b9150613a0c826143f9565b602082019050919050565b6000613a24602283613e5e565b9150613a2f82614422565b604082019050919050565b6000613a47601183613e5e565b9150613a5282614471565b602082019050919050565b6000613a6a600d83613e5e565b9150613a758261449a565b602082019050919050565b6000613a8d601883613e5e565b9150613a98826144c3565b602082019050919050565b613aac81614003565b82525050565b6000613abe8284613791565b60148201915081905092915050565b6000613ad982856137c6565b602082019150613ae982846137c6565b6020820191508190509392505050565b6000613b05828561384f565b9150613b11828461384f565b91508190509392505050565b6000613b298285613880565b9150613b35828461384f565b91508190509392505050565b6000602082019050613b566000830184613782565b92915050565b6000608082019050613b716000830187613782565b613b7e6020830186613782565b613b8b6040830185613aa3565b8181036060830152613b9d81846137dd565b905095945050505050565b6000602082019050613bbd60008301846137a8565b92915050565b6000602082019050613bd860008301846137b7565b92915050565b60006020820190508181036000830152613bf88184613816565b905092915050565b60006020820190508181036000830152613c19816138ff565b9050919050565b60006020820190508181036000830152613c3981613922565b9050919050565b60006020820190508181036000830152613c5981613945565b9050919050565b60006020820190508181036000830152613c7981613968565b9050919050565b60006020820190508181036000830152613c998161398b565b9050919050565b60006020820190508181036000830152613cb9816139ae565b9050919050565b60006020820190508181036000830152613cd9816139d1565b9050919050565b60006020820190508181036000830152613cf9816139f4565b9050919050565b60006020820190508181036000830152613d1981613a17565b9050919050565b60006020820190508181036000830152613d3981613a3a565b9050919050565b60006020820190508181036000830152613d5981613a5d565b9050919050565b60006020820190508181036000830152613d7981613a80565b9050919050565b6000602082019050613d956000830184613aa3565b92915050565b6000613da5613db6565b9050613db1828261408e565b919050565b6000604051905090565b600067ffffffffffffffff821115613ddb57613dda614223565b5b613de482614270565b9050602081019050919050565b600067ffffffffffffffff821115613e0c57613e0b614223565b5b613e1582614270565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e8582614003565b9150613e9083614003565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ec557613ec4614167565b5b828201905092915050565b6000613edb82614003565b9150613ee683614003565b925082613ef657613ef5614196565b5b828204905092915050565b6000613f0c82614003565b9150613f1783614003565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5057613f4f614167565b5b828202905092915050565b6000613f6682614003565b9150613f7183614003565b925082821015613f8457613f83614167565b5b828203905092915050565b6000613f9a82613fe3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561404757808201518184015260208101905061402c565b83811115614056576000848401525b50505050565b6000600282049050600182168061407457607f821691505b60208210811415614088576140876141c5565b5b50919050565b61409782614270565b810181811067ffffffffffffffff821117156140b6576140b5614223565b5b80604052505050565b60006140ca82614003565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140fd576140fc614167565b5b600182019050919050565b600061411382614124565b9050919050565b6000819050919050565b600061412f82614281565b9050919050565b600061414182614003565b915061414c83614003565b92508261415c5761415b614196565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e600082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206c6973742074797065000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b6144f581613f8f565b811461450057600080fd5b50565b61450c81613fa1565b811461451757600080fd5b50565b61452381613fad565b811461452e57600080fd5b50565b61453a81613fb7565b811461454557600080fd5b50565b61455181614003565b811461455c57600080fd5b50565b6145688161400d565b811461457357600080fd5b5056fea26469706673582212206dd3a0070a2577409366123f100a4557792950f597f8563f7a1e5353e543de4464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001342616461737320417065204e465420436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414e4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d624c515a5152584a7963365a6f456f53463252644d70775259616b33434c797753374a7853396e63446739542f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Badass Ape NFT Club
Arg [1] : symbol (string): BANC
Arg [2] : nonRevealedURI (string): https://gateway.pinata.cloud/ipfs/QmbLQZQRXJyc6ZoEoSF2RdMpwRYak3CLywS7JxS9ncDg9T/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 42616461737320417065204e465420436c756200000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 42414e4300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d624c515a5152584a7963365a6f456f53463252644d70775259616b33
Arg [10] : 434c797753374a7853396e63446739542f000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.