ERC-721
Overview
Max Total Supply
463 DINO
Holders
134
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DINOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JurasickPets
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 20000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** */ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract JurasickPets is ERC721A, Ownable, ReentrancyGuard { bool publicSale = false; bool wlSale = false; address wlSigner; address payable jpWallet; address payable jpCommunityWallet; uint256 constant nbFree = 300; uint256 constant wlPrice = 0.06 ether; uint256 constant price = 0.08 ether; uint64 nbFreeMinted = 0; uint256 maxWLMint = 1; uint256 constant maxMint = 20; uint8 vestingStep = 0; uint64 constant limitAge2 = 259200; // Prod : 3j = 3 * 24 * 3600 = 259_200 uint64 constant limitAge3 = 2851200; // Prod : 3 j+ 30j = 259_200 + 30 * 24 * 3600 = 259_200 + 2_592_000 = 2_851_200 uint64 constant limitAge4 = 8035200; // Prod 3 j+ 30j + 60j = 259_200 + 2_592_000 + 2 * 2_592_000 = 8_035_200 uint64 constant limitAge5 = 15811200; // Prod 3 j+ 30j + 60j + 90j = 259_200 + 2_592_000 + 2 * 2_592_000 + 3 * 2_592_000 = 15_811_200 mapping(uint256 => uint256) private birthDate; mapping(uint256 => uint256) private familySize; mapping(uint8 => uint256) private vestingStepAllowedRatio; constructor(address _wlSigner, address payable _jpWallet, address payable _jpCommunityWallet) ERC721A("JurasickPets", "DINO", 20, 10000) { wlSigner = _wlSigner; jpWallet = _jpWallet; jpCommunityWallet = _jpCommunityWallet; vestingStepAllowedRatio[0] = 30; // +20 community only 1st step vestingStepAllowedRatio[1] = 20; vestingStepAllowedRatio[2] = 25; vestingStepAllowedRatio[3] = 32; vestingStepAllowedRatio[4] = 50; vestingStepAllowedRatio[5] = 100; } // Accessors : function getBirthDate(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "getBirthDate query for nonexistent token"); return birthDate[tokenId]; } function getAge(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "getAge query for nonexistent token"); return block.timestamp - birthDate[tokenId]; } function getEvolutionaryStage(uint256 tokenId) public view returns (string memory) { uint256 age = getAge(tokenId); if (age < limitAge2) { return "Egg"; } if (age < limitAge3) { return "Youngster"; } if (age < limitAge4) { return "Grown-up"; } if (age < limitAge5) { return "Oldie"; } return "Fossil"; } function getFamilySize(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "getFamilySize query for nonexistent token"); return familySize[tokenId]; } function updateBirthDate(uint256 tokenId) internal { if (tokenId >= totalSupply()) { birthDate[tokenId] = block.timestamp; return; } uint256 age = getAge(tokenId); if (age < limitAge2) { birthDate[tokenId] = block.timestamp; // Back to the beginning of Egg stage } else if (age < limitAge3) { birthDate[tokenId] = block.timestamp - limitAge2; // Back to the beginning of Youngster stage } else if (age < limitAge4) { birthDate[tokenId] = block.timestamp - limitAge3; // Back to the beginning of Grown-Up stage } else if (age < limitAge5) { birthDate[tokenId] = block.timestamp - limitAge4; // Back to the beginning of Oldie stage } else { birthDate[tokenId] = block.timestamp - limitAge5; // Back to the beginning of Fossil stage } } // MINTING function freeMint(uint64 quantity) external onlyOwner { require(nbFreeMinted + quantity <= nbFree, "Reached max free supply"); nbFreeMinted = nbFreeMinted + quantity; _lfMint(quantity); } function wlMint( uint64 quantity, uint8 v, bytes32 r, bytes32 s ) external payable callerIsUser { require(wlSale, "Sale has not begun yet"); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); require(quantity <= maxWLMint, "Cannot mint this many at a time"); require( wlPrice * quantity == msg.value, "Ether value sent is not correct" ); require(super.balanceOf(msg.sender) + quantity <= maxWLMint, "Cannot mint more Dinos"); bool checked = checkWL(msg.sender, v, r, s); require(checked, "You are not on the WL ... or not signed properly."); _lfMint(quantity); } function mint(uint64 quantity) external payable callerIsUser { require(publicSale, "Public sale has not begun yet"); require( totalSupply() + quantity <= collectionSize, "Reached max supply" ); require(quantity <= maxMint, "Cannot mint this many at a time"); require( price * quantity == msg.value, "Ether value sent is not correct" ); _lfMint(quantity); } function _lfMint(uint256 quantity) private { for (uint256 i = totalSupply(); i < totalSupply() + quantity; i++) { updateBirthDate(i); // Family size : familySize[i] = super.balanceOf(msg.sender); } _safeMint(msg.sender, quantity); } function checkWL( address addr, uint8 v, bytes32 r, bytes32 s ) private view returns (bool) { bytes32 digest = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(addr)) ) ); address recovered = ecrecover(digest, v, r, s); return recovered == wlSigner; } // Update params : function setMaxWLMint(uint256 n) external onlyOwner nonReentrant { maxWLMint = n; } // Withdraw money function withdrawMoney() external onlyOwner nonReentrant { require( wlSale == false && publicSale == false, "Cannot get money if not minted out :(" ); require(checkVestingStep(), "Not authorized to take money now ;)"); uint256 balanceToWithdraw = (address(this).balance / 100) * vestingStepAllowedRatio[vestingStep]; if(vestingStep == 0) { // Send money to community wallet : uint256 balanceToWithdrawCommunity = (address(this).balance / 100) * 20; payable(jpCommunityWallet).transfer(balanceToWithdrawCommunity); } payable(jpWallet).transfer(balanceToWithdraw); vestingStep++; } function checkVestingStep() internal view returns (bool) { // After the mint ... first step if (vestingStep == 0) return true; if (vestingStep == 1 && block.timestamp > 1654034400) return true; // 2022-06-01 if (vestingStep == 2 && block.timestamp > 1656626400) return true; // 2022-07-01 if (vestingStep == 3 && block.timestamp > 1659304800) return true; // 2022-08-01 if (vestingStep == 4 && block.timestamp > 1661983200) return true; // 2022-09-01 if (vestingStep == 5 && block.timestamp > 1664575200) return true; // 2022-10-01 return false; } function emergencyWithdrawMoney() external onlyOwner nonReentrant { require( block.timestamp >= 1664575200, "Cannot withdraw all before this date..." ); // 2022-10-01 0hZ payable(jpWallet).transfer(address(this).balance); } string private _baseTokenURI = "https://www.jurasickpets.com/jurasickpets-back/token/metadata/"; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } // Utils : function openWL() external onlyOwner { wlSale = true; publicSale = false; } function openPublic() external onlyOwner { wlSale = false; publicSale = true; } function closeSales() external onlyOwner { wlSale = false; publicSale = false; } function getSale() external view returns (string memory) { if (wlSale) return "wl"; if (publicSale) return "public"; return "none"; } function updateFamilySize(address newOwner, uint256 tokenId) internal { familySize[tokenId] = super.balanceOf(newOwner); } /// ERC721 related /** * @dev See {ERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { updateFamilySize(to, tokenId); updateBirthDate(tokenId); super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override { updateFamilySize(to, tokenId); updateBirthDate(tokenId); super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { updateFamilySize(to, tokenId); updateBirthDate(tokenId); super.safeTransferFrom(from, to, tokenId, _data); } // Utils: modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } }
// 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 pragma solidity ^0.8.0; 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"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override virtual { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override virtual { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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 tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` 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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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": true, "runs": 20000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_wlSigner","type":"address"},{"internalType":"address payable","name":"_jpWallet","type":"address"},{"internalType":"address payable","name":"_jpCommunityWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAge","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getBirthDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getEvolutionaryStage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFamilySize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSale","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setMaxWLMint","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6000808055600755600a805461ffff19169055600c8054600160a01b600160e01b03191690556001600d55600e805460ff19169055610120604052603e60c0818152906200442360e03980516200005f91601291602090910190620002fd565b503480156200006d57600080fd5b5060405162004461380380620044618339810160408190526200009091620003a3565b6040518060400160405280600c81526020016b4a7572617369636b5065747360a01b8152506040518060400160405280600481526020016344494e4f60e01b815250601461271060008111620001035760405162461bcd60e51b8152600401620000fa906200043d565b60405180910390fd5b60008211620001265760405162461bcd60e51b8152600401620000fa90620003f6565b83516200013b906001906020870190620002fd565b50825162000151906002906020860190620002fd565b5060a091909152608052506200017290506200016c620002a7565b620002ab565b6001600955600a80546001600160a01b03948516620100000262010000600160b01b0319909116179055600b80549284166001600160a01b0319938416179055600c805491909316911617905560116020908152601e7f4ad3b33220dddc71b994a52d72c06b10862965f7d926534c05c00fb7e819e7b75560147f17bc176d2408558f6e4111feebc3cab4e16b63e967be91cde721f4c8a488b5525560197f08037d7b151cc412d25674a4e66b334d9ae9d2e5517a7feaae5cdb828bf1c628557f9bfbaa59f8e10e7868f8b402de9d605a390c45ddaebd8c9de3c6f31e733c87ff5560327f251164fe1d8864fe5e86082eae9c288bc2b58695a4d28538dfe86e9e4f17558555600560005260647fc550213cee30afd5e67ccba7be3d381bbc169034ae08eb3ec9168caca9fe55e755620004e1565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200030b906200048b565b90600052602060002090601f0160209004810192826200032f57600085556200037a565b82601f106200034a57805160ff19168380011785556200037a565b828001600101855582156200037a579182015b828111156200037a5782518255916020019190600101906200035d565b50620003889291506200038c565b5090565b5b808211156200038857600081556001016200038d565b600080600060608486031215620003b8578283fd5b8351620003c581620004c8565b6020850151909350620003d881620004c8565b6040850151909250620003eb81620004c8565b809150509250925092565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b600281046001821680620004a057607f821691505b60208210811415620004c257634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0381168114620004de57600080fd5b50565b60805160a051613f076200051c60003960008181611d0001528181611d2a0152612859015260008181610f81015261192b0152613f076000f3fe6080604052600436106102345760003560e01c80636352211e11610138578063a22cb465116100b0578063d7224ba01161007f578063f2fde38b11610064578063f2fde38b146105e7578063fb9d09c814610607578063fe8c72eb1461061a57610234565b8063d7224ba0146105b2578063e985e9c5146105c757610234565b8063a22cb4651461053d578063ac4460021461055d578063b88d4fde14610572578063c87b56dd1461059257610234565b806378653915116101075780638da5cb5b116100ec5780638da5cb5b146104f357806390f7c4321461050857806395d89b411461052857610234565b806378653915146104be5780637a17e60f146104d357610234565b80636352211e146104565780636c6cdfe11461047657806370a0823114610489578063715018a6146104a957610234565b806315a8f073116101cb5780632f745c591161019a57806342842e0e1161017f57806342842e0e146103f65780634f6ccce71461041657806355f804b31461043657610234565b80632f745c59146103c15780633fc80006146103e157610234565b806315a8f0731461035757806318160ddd1461036c57806323b872dd146103815780632ccc63f6146103a157610234565b8063081812fc11610207578063081812fc146102c8578063095ea7b3146102f55780630bae3288146103155780630e37008a1461032a57610234565b806301ffc9a71461023957806302be8bff1461026f578063032680a81461029157806306fdde03146102a6575b600080fd5b34801561024557600080fd5b50610259610254366004612e03565b61063a565b6040516102669190613066565b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004612ec0565b610730565b005b34801561029d57600080fd5b5061028f610878565b3480156102b257600080fd5b506102bb610923565b604051610266919061308f565b3480156102d457600080fd5b506102e86102e3366004612ea8565b6109b6565b6040516102669190612ffc565b34801561030157600080fd5b5061028f610310366004612dda565b610a06565b34801561032157600080fd5b506102bb610ad3565b34801561033657600080fd5b5061034a610345366004612ea8565b610b9d565b6040516102669190613bec565b34801561036357600080fd5b5061028f610bdd565b34801561037857600080fd5b5061034a610c60565b34801561038d57600080fd5b5061028f61039c366004612c7b565b610c66565b3480156103ad57600080fd5b5061034a6103bc366004612ea8565b610c84565b3480156103cd57600080fd5b5061034a6103dc366004612dda565b610cbe565b3480156103ed57600080fd5b5061028f610df2565b34801561040257600080fd5b5061028f610411366004612c7b565b610e78565b34801561042257600080fd5b5061034a610431366004612ea8565b610e96565b34801561044257600080fd5b5061028f610451366004612e3b565b610ec2565b34801561046257600080fd5b506102e8610471366004612ea8565b610f27565b61028f610484366004612eda565b610f39565b34801561049557600080fd5b5061034a6104a4366004612c2f565b6110c6565b3480156104b557600080fd5b5061028f611136565b3480156104ca57600080fd5b5061028f61119b565b3480156104df57600080fd5b506102bb6104ee366004612ea8565b61128e565b3480156104ff57600080fd5b506102e86113f0565b34801561051457600080fd5b5061034a610523366004612ea8565b61140c565b34801561053457600080fd5b506102bb611446565b34801561054957600080fd5b5061028f610558366004612da0565b611455565b34801561056957600080fd5b5061028f611575565b34801561057e57600080fd5b5061028f61058d366004612cb6565b61176a565b34801561059e57600080fd5b506102bb6105ad366004612ea8565b61178f565b3480156105be57600080fd5b5061034a611812565b3480156105d357600080fd5b506102596105e2366004612c49565b611818565b3480156105f357600080fd5b5061028f610602366004612c2f565b611853565b61028f610615366004612ec0565b6118e8565b34801561062657600080fd5b5061028f610635366004612ea8565b6119fd565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106cd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071957507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610728575061072882611a83565b90505b919050565b610738611acd565b73ffffffffffffffffffffffffffffffffffffffff166107566113f0565b73ffffffffffffffffffffffffffffffffffffffff16146107925760405162461bcd60e51b81526004016107899061366e565b60405180910390fd5b600c5461012c906107c690839074010000000000000000000000000000000000000000900467ffffffffffffffff16613c38565b67ffffffffffffffff1611156107ee5760405162461bcd60e51b8152600401610789906137f1565b600c5461081e90829074010000000000000000000000000000000000000000900467ffffffffffffffff16613c38565b600c80547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000067ffffffffffffffff93841602179055610875908216611ad1565b50565b610880611acd565b73ffffffffffffffffffffffffffffffffffffffff1661089e6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146108d15760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff90911661010017169055565b60606001805461093290613d55565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613d55565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b505050505090505b90565b60006109c182611b36565b6109dd5760405162461bcd60e51b815260040161078990613afb565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a1182610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5f5760405162461bcd60e51b81526004016107899061385f565b8073ffffffffffffffffffffffffffffffffffffffff16610a7e611acd565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa7816105e2611acd565b610ac35760405162461bcd60e51b8152600401610789906134fa565b610ace838383611b3d565b505050565b600a54606090610100900460ff1615610b20575060408051808201909152600281527f776c00000000000000000000000000000000000000000000000000000000000060208201526109b3565b600a5460ff1615610b65575060408051808201909152600681527f7075626c6963000000000000000000000000000000000000000000000000000060208201526109b3565b5060408051808201909152600481527f6e6f6e6500000000000000000000000000000000000000000000000000000000602082015290565b6000610ba882611b36565b610bc45760405162461bcd60e51b8152600401610789906130ff565b6000828152600f60205260409020546107289042613cdd565b610be5611acd565b73ffffffffffffffffffffffffffffffffffffffff16610c036113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c365760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169055565b60005490565b610c708282611bbe565b610c7981611bda565b610ace838383611ca9565b6000610c8f82611b36565b610cab5760405162461bcd60e51b815260040161078990613700565b5060009081526010602052604090205490565b6000610cc9836110c6565b8210610ce75760405162461bcd60e51b8152600401610789906130a2565b6000610cf1610c60565b905060008060005b83811015610dd35760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610d6a57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc05786841415610db257509350610dec92505050565b83610dbc81613da9565b9450505b5080610dcb81613da9565b915050610cf9565b5060405162461bcd60e51b8152600401610789906139ad565b92915050565b610dfa611acd565b73ffffffffffffffffffffffffffffffffffffffff16610e186113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b5760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166001179055565b610e828282611bbe565b610e8b81611bda565b610ace838383611cb4565b6000610ea0610c60565b8210610ebe5760405162461bcd60e51b815260040161078990613364565b5090565b610eca611acd565b73ffffffffffffffffffffffffffffffffffffffff16610ee86113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b5760405162461bcd60e51b81526004016107899061366e565b610ace60128383612b29565b6000610f3282611ccf565b5192915050565b323314610f585760405162461bcd60e51b81526004016107899061348c565b600a54610100900460ff16610f7f5760405162461bcd60e51b815260040161078990613828565b7f00000000000000000000000000000000000000000000000000000000000000008467ffffffffffffffff16610fb3610c60565b610fbd9190613c20565b1115610fdb5760405162461bcd60e51b8152600401610789906133c1565b600d548467ffffffffffffffff1611156110075760405162461bcd60e51b815260040161078990613b58565b3461102367ffffffffffffffff861666d529ae9e860000613c6f565b146110405760405162461bcd60e51b815260040161078990613455565b600d548467ffffffffffffffff16611057336110c6565b6110619190613c20565b111561107f5760405162461bcd60e51b8152600401610789906134c3565b600061108d33858585611e00565b9050806110ac5760405162461bcd60e51b815260040161078990613193565b6110bf8567ffffffffffffffff16611ad1565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82166110fb5760405162461bcd60e51b8152600401610789906135b4565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b61113e611acd565b73ffffffffffffffffffffffffffffffffffffffff1661115c6113f0565b73ffffffffffffffffffffffffffffffffffffffff161461118f5760405162461bcd60e51b81526004016107899061366e565b6111996000611ef3565b565b6111a3611acd565b73ffffffffffffffffffffffffffffffffffffffff166111c16113f0565b73ffffffffffffffffffffffffffffffffffffffff16146111f45760405162461bcd60e51b81526004016107899061366e565b600260095414156112175760405162461bcd60e51b815260040161078990613a0a565b600260095563633766e04210156112405760405162461bcd60e51b815260040161078990613557565b600b5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611286573d6000803e3d6000fd5b506001600955565b6060600061129b83610b9d565b90506203f4808110156112e357505060408051808201909152600381527f4567670000000000000000000000000000000000000000000000000000000000602082015261072b565b622b818081101561132957505060408051808201909152600981527f596f756e67737465720000000000000000000000000000000000000000000000602082015261072b565b627a9b8081101561136f57505060408051808201909152600881527f47726f776e2d7570000000000000000000000000000000000000000000000000602082015261072b565b62f142808110156113b557505060408051808201909152600581527f4f6c646965000000000000000000000000000000000000000000000000000000602082015261072b565b505060408051808201909152600681527f466f7373696c00000000000000000000000000000000000000000000000000006020820152919050565b60085473ffffffffffffffffffffffffffffffffffffffff1690565b600061141782611b36565b6114335760405162461bcd60e51b815260040161078990613307565b506000908152600f602052604090205490565b60606002805461093290613d55565b61145d611acd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a85760405162461bcd60e51b81526004016107899061375d565b80600660006114b5611acd565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155611524611acd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115699190613066565b60405180910390a35050565b61157d611acd565b73ffffffffffffffffffffffffffffffffffffffff1661159b6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146115ce5760405162461bcd60e51b81526004016107899061366e565b600260095414156115f15760405162461bcd60e51b815260040161078990613a0a565b6002600955600a54610100900460ff161580156116115750600a5460ff16155b61162d5760405162461bcd60e51b815260040161078990613a9e565b611635611f6a565b6116515760405162461bcd60e51b8152600401610789906132aa565b600e5460ff16600090815260116020526040812054611671606447613c5b565b61167b9190613c6f565b600e5490915060ff166116eb576000611695606447613c5b565b6116a0906014613c6f565b600c5460405191925073ffffffffffffffffffffffffffffffffffffffff169082156108fc029083906000818181858888f193505050501580156116e8573d6000803e3d6000fd5b50505b600b5460405173ffffffffffffffffffffffffffffffffffffffff9091169082156108fc029083906000818181858888f19350505050158015611732573d6000803e3d6000fd5b50600e805460ff1690600061174683613de2565b91906101000a81548160ff021916908360ff16021790555050506001600981905550565b6117748383611bbe565b61177d82611bda565b6117898484848461203e565b50505050565b606061179a82611b36565b6117b65760405162461bcd60e51b8152600401610789906136a3565b60006117c0612071565b905060008151116117e0576040518060200160405280600081525061180b565b806117ea84612080565b6040516020016117fb929190612f9c565b6040516020818303038152906040525b9392505050565b60075481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b61185b611acd565b73ffffffffffffffffffffffffffffffffffffffff166118796113f0565b73ffffffffffffffffffffffffffffffffffffffff16146118ac5760405162461bcd60e51b81526004016107899061366e565b73ffffffffffffffffffffffffffffffffffffffff81166118df5760405162461bcd60e51b8152600401610789906131f0565b61087581611ef3565b3233146119075760405162461bcd60e51b81526004016107899061348c565b600a5460ff166119295760405162461bcd60e51b81526004016107899061315c565b7f00000000000000000000000000000000000000000000000000000000000000008167ffffffffffffffff1661195d610c60565b6119679190613c20565b11156119855760405162461bcd60e51b8152600401610789906133c1565b60148167ffffffffffffffff1611156119b05760405162461bcd60e51b815260040161078990613b58565b346119cd67ffffffffffffffff831667011c37937e080000613c6f565b146119ea5760405162461bcd60e51b815260040161078990613455565b6108758167ffffffffffffffff16611ad1565b611a05611acd565b73ffffffffffffffffffffffffffffffffffffffff16611a236113f0565b73ffffffffffffffffffffffffffffffffffffffff1614611a565760405162461bcd60e51b81526004016107899061366e565b60026009541415611a795760405162461bcd60e51b815260040161078990613a0a565b600d556001600955565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000611adb610c60565b90505b81611ae7610c60565b611af19190613c20565b811015611b2b57611b0181611bda565b611b0a336110c6565b60008281526010602052604090205580611b2381613da9565b915050611ade565b506108753382612201565b6000541190565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611bc7826110c6565b6000918252601060205260409091205550565b611be2610c60565b8110611bfe576000818152600f60205260409020429055610875565b6000611c0982610b9d565b90506203f480811015611c2c576000828152600f60205260409020429055611ca5565b622b8180811015611c5857611c446203f48042613cdd565b6000838152600f6020526040902055611ca5565b627a9b80811015611c7057611c44622b818042613cdd565b62f14280811015611c8857611c44627a9b8042613cdd565b611c9562f1428042613cdd565b6000838152600f60205260409020555b5050565b610ace83838361221b565b610ace8383836040518060200160405280600081525061176a565b611cd7612bc7565b611ce082611b36565b611cfc5760405162461bcd60e51b81526004016107899061324d565b60007f00000000000000000000000000000000000000000000000000000000000000008310611d5d57611d4f7f000000000000000000000000000000000000000000000000000000000000000084613cdd565b611d5a906001613c20565b90505b825b818110611de75760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611dd457925061072b915050565b5080611ddf81613d20565b915050611d5f565b5060405162461bcd60e51b815260040161078990613a41565b60008085604051602001611e149190612f6c565b60405160208183030381529060405280519060200120604051602001611e3a9190612fcb565b604051602081830303815290604052805190602001209050600060018287878760405160008152602001604052604051611e779493929190613071565b6020604051602081039080840390855afa158015611e99573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151600a5462010000900473ffffffffffffffffffffffffffffffffffffffff90811691161493505050505b949350505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5460009060ff16611f7f575060016109b3565b600e5460ff166001148015611f9757506362968fe042115b15611fa4575060016109b3565b600e5460ff166002148015611fbc57506362be1ce042115b15611fc9575060016109b3565b600e5460ff166003148015611fe157506362e6fb6042115b15611fee575060016109b3565b600e5460ff166004148015612006575063630fd9e042115b15612013575060016109b3565b600e5460ff16600514801561202b575063633766e042115b15612038575060016109b3565b50600090565b61204984848461221b565b6120558484848461267a565b6117895760405162461bcd60e51b8152600401610789906138bc565b60606012805461093290613d55565b6060816120c1575060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015261072b565b8160005b81156120eb57806120d581613da9565b91506120e49050600a83613c5b565b91506120c5565b60008167ffffffffffffffff81111561212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b8415611eeb5761216c600183613cdd565b9150612179600a86613e02565b612184906030613c20565b60f81b8183815181106121c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121fa600a86613c5b565b945061215b565b611ca58282604051806020016040528060008152506127fb565b600061222682611ccf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661224d611acd565b73ffffffffffffffffffffffffffffffffffffffff1614806122a95750612272611acd565b73ffffffffffffffffffffffffffffffffffffffff16612291846109b6565b73ffffffffffffffffffffffffffffffffffffffff16145b806122bd575081516122bd906105e2611acd565b9050806122dc5760405162461bcd60e51b815260040161078990613794565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461232b5760405162461bcd60e51b815260040161078990613611565b73ffffffffffffffffffffffffffffffffffffffff841661235e5760405162461bcd60e51b8152600401610789906133f8565b61236b8585856001611789565b61237b6000848460000151611b3d565b73ffffffffffffffffffffffffffffffffffffffff851660009081526004602052604081208054600192906123c39084906fffffffffffffffffffffffffffffffff16613cac565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff86166000908152600460205260408120805460019450909261242591859116613bf5565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff929093167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116171617905561250e846001613c20565b60008181526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff1661260a5761254381611b36565b1561260a57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494517fffffffffffffffffffffffff00000000000000000000000000000000000000009095169216919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000093909116929092029190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126728686866001611789565b505050505050565b600061269b8473ffffffffffffffffffffffffffffffffffffffff16612b23565b156127f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c4611acd565b8786866040518563ffffffff1660e01b81526004016126e6949392919061301d565b602060405180830381600087803b15801561270057600080fd5b505af192505050801561274e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261274b91810190612e1f565b60015b6127a8573d80801561277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b5080516127a05760405162461bcd60e51b8152600401610789906138bc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611eeb565b506001611eeb565b60005473ffffffffffffffffffffffffffffffffffffffff84166128315760405162461bcd60e51b815260040161078990613950565b61283a81611b36565b156128575760405162461bcd60e51b815260040161078990613919565b7f00000000000000000000000000000000000000000000000000000000000000008311156128975760405162461bcd60e51b815260040161078990613b8f565b6128a46000858386611789565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612923908790613bf5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161294a9190613bf5565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260046020908152604080832087518154988401518816700100000000000000000000000000000000029088167fffffffffffffffffffffffffffffffff0000000000000000000000000000000090991698909817909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff959093167fffffffffffffffffffffffff000000000000000000000000000000000000000090941693909317939093161790915582905b85811015612b1157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ad5600088848861267a565b612af15760405162461bcd60e51b8152600401610789906138bc565b81612afb81613da9565b9250508080612b0990613da9565b915050612a7b565b50600081815561267290878588611789565b3b151590565b828054612b3590613d55565b90600052602060002090601f016020900481019282612b575760008555612bbb565b82601f10612b8e578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612bbb565b82800160010185558215612bbb579182015b82811115612bbb578235825591602001919060010190612ba0565b50610ebe929150612bde565b604080518082019091526000808252602082015290565b5b80821115610ebe5760008155600101612bdf565b803573ffffffffffffffffffffffffffffffffffffffff8116811461072b57600080fd5b803567ffffffffffffffff8116811461072b57600080fd5b600060208284031215612c40578081fd5b61180b82612bf3565b60008060408385031215612c5b578081fd5b612c6483612bf3565b9150612c7260208401612bf3565b90509250929050565b600080600060608486031215612c8f578081fd5b612c9884612bf3565b9250612ca660208501612bf3565b9150604084013590509250925092565b60008060008060808587031215612ccb578081fd5b612cd485612bf3565b93506020612ce3818701612bf3565b935060408601359250606086013567ffffffffffffffff80821115612d06578384fd5b818801915088601f830112612d19578384fd5b813581811115612d2b57612d2b613e74565b604051847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401168201018181108482111715612d6c57612d6c613e74565b60405281815283820185018b1015612d82578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612db2578182fd5b612dbb83612bf3565b915060208301358015158114612dcf578182fd5b809150509250929050565b60008060408385031215612dec578182fd5b612df583612bf3565b946020939093013593505050565b600060208284031215612e14578081fd5b813561180b81613ea3565b600060208284031215612e30578081fd5b815161180b81613ea3565b60008060208385031215612e4d578182fd5b823567ffffffffffffffff80821115612e64578384fd5b818501915085601f830112612e77578384fd5b813581811115612e85578485fd5b866020828501011115612e96578485fd5b60209290920196919550909350505050565b600060208284031215612eb9578081fd5b5035919050565b600060208284031215612ed1578081fd5b61180b82612c17565b60008060008060808587031215612eef578384fd5b612ef885612c17565b9350602085013560ff81168114612f0d578384fd5b93969395505050506040820135916060013590565b60008151808452612f3a816020860160208601613cf4565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60008351612fae818460208801613cf4565b835190830190612fc2818360208801613cf4565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261305c6080830184612f22565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261180b6020830184612f22565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f67657441676520717565727920666f72206e6f6e6578697374656e7420746f6b60408201527f656e000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604082015260600190565b60208082526031908201527f596f7520617265206e6f74206f6e2074686520574c202e2e2e206f72206e6f7460408201527f207369676e65642070726f7065726c792e000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360408201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f4e6f7420617574686f72697a656420746f2074616b65206d6f6e6579206e6f7760408201527f203b290000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f67657442697274684461746520717565727920666f72206e6f6e65786973746560408201527f6e7420746f6b656e000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560408201527f6e64730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f52656163686564206d617820737570706c790000000000000000000000000000604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526016908201527f43616e6e6f74206d696e74206d6f72652044696e6f7300000000000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526027908201527f43616e6e6f7420776974686472617720616c6c206265666f726520746869732060408201527f646174652e2e2e00000000000000000000000000000000000000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460408201527f206f776e65720000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526029908201527f67657446616d696c7953697a6520717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b60208082526017908201527f52656163686564206d6178206672656520737570706c79000000000000000000604082015260600190565b60208082526016908201527f53616c6520686173206e6f7420626567756e2079657400000000000000000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201527f6572000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201527f6f776e657220627920696e646578000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526025908201527f43616e6e6f7420676574206d6f6e6579206966206e6f74206d696e746564206f60408201527f7574203a28000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f43616e6e6f74206d696e742074686973206d616e7920617420612074696d6500604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960408201527f6768000000000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612fc257612fc2613e16565b60008219821115613c3357613c33613e16565b500190565b600067ffffffffffffffff808316818516808303821115612fc257612fc2613e16565b600082613c6a57613c6a613e45565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ca757613ca7613e16565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015613cd557613cd5613e16565b039392505050565b600082821015613cef57613cef613e16565b500390565b60005b83811015613d0f578181015183820152602001613cf7565b838111156117895750506000910152565b600081613d2f57613d2f613e16565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600281046001821680613d6957607f821691505b60208210811415613da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ddb57613ddb613e16565b5060010190565b600060ff821660ff811415613df957613df9613e16565b60010192915050565b600082613e1157613e11613e45565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461087557600080fdfea2646970667358221220a560137a927180782cb11fe6da5b887150f83f71122371651f02853217f99f2164736f6c6343000800003368747470733a2f2f7777772e6a7572617369636b706574732e636f6d2f6a7572617369636b706574732d6261636b2f746f6b656e2f6d657461646174612f00000000000000000000000078733e0eca791ad8ff810e0f62ebfdf524bdeaca000000000000000000000000dabd1c16a1037797f98d98328aa2a9220b857090000000000000000000000000672ffa86cf971ac0dd10542b441375e31ae9d02e
Deployed Bytecode
0x6080604052600436106102345760003560e01c80636352211e11610138578063a22cb465116100b0578063d7224ba01161007f578063f2fde38b11610064578063f2fde38b146105e7578063fb9d09c814610607578063fe8c72eb1461061a57610234565b8063d7224ba0146105b2578063e985e9c5146105c757610234565b8063a22cb4651461053d578063ac4460021461055d578063b88d4fde14610572578063c87b56dd1461059257610234565b806378653915116101075780638da5cb5b116100ec5780638da5cb5b146104f357806390f7c4321461050857806395d89b411461052857610234565b806378653915146104be5780637a17e60f146104d357610234565b80636352211e146104565780636c6cdfe11461047657806370a0823114610489578063715018a6146104a957610234565b806315a8f073116101cb5780632f745c591161019a57806342842e0e1161017f57806342842e0e146103f65780634f6ccce71461041657806355f804b31461043657610234565b80632f745c59146103c15780633fc80006146103e157610234565b806315a8f0731461035757806318160ddd1461036c57806323b872dd146103815780632ccc63f6146103a157610234565b8063081812fc11610207578063081812fc146102c8578063095ea7b3146102f55780630bae3288146103155780630e37008a1461032a57610234565b806301ffc9a71461023957806302be8bff1461026f578063032680a81461029157806306fdde03146102a6575b600080fd5b34801561024557600080fd5b50610259610254366004612e03565b61063a565b6040516102669190613066565b60405180910390f35b34801561027b57600080fd5b5061028f61028a366004612ec0565b610730565b005b34801561029d57600080fd5b5061028f610878565b3480156102b257600080fd5b506102bb610923565b604051610266919061308f565b3480156102d457600080fd5b506102e86102e3366004612ea8565b6109b6565b6040516102669190612ffc565b34801561030157600080fd5b5061028f610310366004612dda565b610a06565b34801561032157600080fd5b506102bb610ad3565b34801561033657600080fd5b5061034a610345366004612ea8565b610b9d565b6040516102669190613bec565b34801561036357600080fd5b5061028f610bdd565b34801561037857600080fd5b5061034a610c60565b34801561038d57600080fd5b5061028f61039c366004612c7b565b610c66565b3480156103ad57600080fd5b5061034a6103bc366004612ea8565b610c84565b3480156103cd57600080fd5b5061034a6103dc366004612dda565b610cbe565b3480156103ed57600080fd5b5061028f610df2565b34801561040257600080fd5b5061028f610411366004612c7b565b610e78565b34801561042257600080fd5b5061034a610431366004612ea8565b610e96565b34801561044257600080fd5b5061028f610451366004612e3b565b610ec2565b34801561046257600080fd5b506102e8610471366004612ea8565b610f27565b61028f610484366004612eda565b610f39565b34801561049557600080fd5b5061034a6104a4366004612c2f565b6110c6565b3480156104b557600080fd5b5061028f611136565b3480156104ca57600080fd5b5061028f61119b565b3480156104df57600080fd5b506102bb6104ee366004612ea8565b61128e565b3480156104ff57600080fd5b506102e86113f0565b34801561051457600080fd5b5061034a610523366004612ea8565b61140c565b34801561053457600080fd5b506102bb611446565b34801561054957600080fd5b5061028f610558366004612da0565b611455565b34801561056957600080fd5b5061028f611575565b34801561057e57600080fd5b5061028f61058d366004612cb6565b61176a565b34801561059e57600080fd5b506102bb6105ad366004612ea8565b61178f565b3480156105be57600080fd5b5061034a611812565b3480156105d357600080fd5b506102596105e2366004612c49565b611818565b3480156105f357600080fd5b5061028f610602366004612c2f565b611853565b61028f610615366004612ec0565b6118e8565b34801561062657600080fd5b5061028f610635366004612ea8565b6119fd565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106cd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061071957507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610728575061072882611a83565b90505b919050565b610738611acd565b73ffffffffffffffffffffffffffffffffffffffff166107566113f0565b73ffffffffffffffffffffffffffffffffffffffff16146107925760405162461bcd60e51b81526004016107899061366e565b60405180910390fd5b600c5461012c906107c690839074010000000000000000000000000000000000000000900467ffffffffffffffff16613c38565b67ffffffffffffffff1611156107ee5760405162461bcd60e51b8152600401610789906137f1565b600c5461081e90829074010000000000000000000000000000000000000000900467ffffffffffffffff16613c38565b600c80547fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000067ffffffffffffffff93841602179055610875908216611ad1565b50565b610880611acd565b73ffffffffffffffffffffffffffffffffffffffff1661089e6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146108d15760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff90911661010017169055565b60606001805461093290613d55565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90613d55565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b505050505090505b90565b60006109c182611b36565b6109dd5760405162461bcd60e51b815260040161078990613afb565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a1182610f27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a5f5760405162461bcd60e51b81526004016107899061385f565b8073ffffffffffffffffffffffffffffffffffffffff16610a7e611acd565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa7816105e2611acd565b610ac35760405162461bcd60e51b8152600401610789906134fa565b610ace838383611b3d565b505050565b600a54606090610100900460ff1615610b20575060408051808201909152600281527f776c00000000000000000000000000000000000000000000000000000000000060208201526109b3565b600a5460ff1615610b65575060408051808201909152600681527f7075626c6963000000000000000000000000000000000000000000000000000060208201526109b3565b5060408051808201909152600481527f6e6f6e6500000000000000000000000000000000000000000000000000000000602082015290565b6000610ba882611b36565b610bc45760405162461bcd60e51b8152600401610789906130ff565b6000828152600f60205260409020546107289042613cdd565b610be5611acd565b73ffffffffffffffffffffffffffffffffffffffff16610c036113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c365760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000169055565b60005490565b610c708282611bbe565b610c7981611bda565b610ace838383611ca9565b6000610c8f82611b36565b610cab5760405162461bcd60e51b815260040161078990613700565b5060009081526010602052604090205490565b6000610cc9836110c6565b8210610ce75760405162461bcd60e51b8152600401610789906130a2565b6000610cf1610c60565b905060008060005b83811015610dd35760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215610d6a57805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc05786841415610db257509350610dec92505050565b83610dbc81613da9565b9450505b5080610dcb81613da9565b915050610cf9565b5060405162461bcd60e51b8152600401610789906139ad565b92915050565b610dfa611acd565b73ffffffffffffffffffffffffffffffffffffffff16610e186113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610e4b5760405162461bcd60e51b81526004016107899061366e565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166001179055565b610e828282611bbe565b610e8b81611bda565b610ace838383611cb4565b6000610ea0610c60565b8210610ebe5760405162461bcd60e51b815260040161078990613364565b5090565b610eca611acd565b73ffffffffffffffffffffffffffffffffffffffff16610ee86113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b5760405162461bcd60e51b81526004016107899061366e565b610ace60128383612b29565b6000610f3282611ccf565b5192915050565b323314610f585760405162461bcd60e51b81526004016107899061348c565b600a54610100900460ff16610f7f5760405162461bcd60e51b815260040161078990613828565b7f00000000000000000000000000000000000000000000000000000000000027108467ffffffffffffffff16610fb3610c60565b610fbd9190613c20565b1115610fdb5760405162461bcd60e51b8152600401610789906133c1565b600d548467ffffffffffffffff1611156110075760405162461bcd60e51b815260040161078990613b58565b3461102367ffffffffffffffff861666d529ae9e860000613c6f565b146110405760405162461bcd60e51b815260040161078990613455565b600d548467ffffffffffffffff16611057336110c6565b6110619190613c20565b111561107f5760405162461bcd60e51b8152600401610789906134c3565b600061108d33858585611e00565b9050806110ac5760405162461bcd60e51b815260040161078990613193565b6110bf8567ffffffffffffffff16611ad1565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82166110fb5760405162461bcd60e51b8152600401610789906135b4565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600460205260409020546fffffffffffffffffffffffffffffffff1690565b61113e611acd565b73ffffffffffffffffffffffffffffffffffffffff1661115c6113f0565b73ffffffffffffffffffffffffffffffffffffffff161461118f5760405162461bcd60e51b81526004016107899061366e565b6111996000611ef3565b565b6111a3611acd565b73ffffffffffffffffffffffffffffffffffffffff166111c16113f0565b73ffffffffffffffffffffffffffffffffffffffff16146111f45760405162461bcd60e51b81526004016107899061366e565b600260095414156112175760405162461bcd60e51b815260040161078990613a0a565b600260095563633766e04210156112405760405162461bcd60e51b815260040161078990613557565b600b5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015611286573d6000803e3d6000fd5b506001600955565b6060600061129b83610b9d565b90506203f4808110156112e357505060408051808201909152600381527f4567670000000000000000000000000000000000000000000000000000000000602082015261072b565b622b818081101561132957505060408051808201909152600981527f596f756e67737465720000000000000000000000000000000000000000000000602082015261072b565b627a9b8081101561136f57505060408051808201909152600881527f47726f776e2d7570000000000000000000000000000000000000000000000000602082015261072b565b62f142808110156113b557505060408051808201909152600581527f4f6c646965000000000000000000000000000000000000000000000000000000602082015261072b565b505060408051808201909152600681527f466f7373696c00000000000000000000000000000000000000000000000000006020820152919050565b60085473ffffffffffffffffffffffffffffffffffffffff1690565b600061141782611b36565b6114335760405162461bcd60e51b815260040161078990613307565b506000908152600f602052604090205490565b60606002805461093290613d55565b61145d611acd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a85760405162461bcd60e51b81526004016107899061375d565b80600660006114b5611acd565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155611524611acd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115699190613066565b60405180910390a35050565b61157d611acd565b73ffffffffffffffffffffffffffffffffffffffff1661159b6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146115ce5760405162461bcd60e51b81526004016107899061366e565b600260095414156115f15760405162461bcd60e51b815260040161078990613a0a565b6002600955600a54610100900460ff161580156116115750600a5460ff16155b61162d5760405162461bcd60e51b815260040161078990613a9e565b611635611f6a565b6116515760405162461bcd60e51b8152600401610789906132aa565b600e5460ff16600090815260116020526040812054611671606447613c5b565b61167b9190613c6f565b600e5490915060ff166116eb576000611695606447613c5b565b6116a0906014613c6f565b600c5460405191925073ffffffffffffffffffffffffffffffffffffffff169082156108fc029083906000818181858888f193505050501580156116e8573d6000803e3d6000fd5b50505b600b5460405173ffffffffffffffffffffffffffffffffffffffff9091169082156108fc029083906000818181858888f19350505050158015611732573d6000803e3d6000fd5b50600e805460ff1690600061174683613de2565b91906101000a81548160ff021916908360ff16021790555050506001600981905550565b6117748383611bbe565b61177d82611bda565b6117898484848461203e565b50505050565b606061179a82611b36565b6117b65760405162461bcd60e51b8152600401610789906136a3565b60006117c0612071565b905060008151116117e0576040518060200160405280600081525061180b565b806117ea84612080565b6040516020016117fb929190612f9c565b6040516020818303038152906040525b9392505050565b60075481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b61185b611acd565b73ffffffffffffffffffffffffffffffffffffffff166118796113f0565b73ffffffffffffffffffffffffffffffffffffffff16146118ac5760405162461bcd60e51b81526004016107899061366e565b73ffffffffffffffffffffffffffffffffffffffff81166118df5760405162461bcd60e51b8152600401610789906131f0565b61087581611ef3565b3233146119075760405162461bcd60e51b81526004016107899061348c565b600a5460ff166119295760405162461bcd60e51b81526004016107899061315c565b7f00000000000000000000000000000000000000000000000000000000000027108167ffffffffffffffff1661195d610c60565b6119679190613c20565b11156119855760405162461bcd60e51b8152600401610789906133c1565b60148167ffffffffffffffff1611156119b05760405162461bcd60e51b815260040161078990613b58565b346119cd67ffffffffffffffff831667011c37937e080000613c6f565b146119ea5760405162461bcd60e51b815260040161078990613455565b6108758167ffffffffffffffff16611ad1565b611a05611acd565b73ffffffffffffffffffffffffffffffffffffffff16611a236113f0565b73ffffffffffffffffffffffffffffffffffffffff1614611a565760405162461bcd60e51b81526004016107899061366e565b60026009541415611a795760405162461bcd60e51b815260040161078990613a0a565b600d556001600955565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b3390565b6000611adb610c60565b90505b81611ae7610c60565b611af19190613c20565b811015611b2b57611b0181611bda565b611b0a336110c6565b60008281526010602052604090205580611b2381613da9565b915050611ade565b506108753382612201565b6000541190565b60008281526005602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611bc7826110c6565b6000918252601060205260409091205550565b611be2610c60565b8110611bfe576000818152600f60205260409020429055610875565b6000611c0982610b9d565b90506203f480811015611c2c576000828152600f60205260409020429055611ca5565b622b8180811015611c5857611c446203f48042613cdd565b6000838152600f6020526040902055611ca5565b627a9b80811015611c7057611c44622b818042613cdd565b62f14280811015611c8857611c44627a9b8042613cdd565b611c9562f1428042613cdd565b6000838152600f60205260409020555b5050565b610ace83838361221b565b610ace8383836040518060200160405280600081525061176a565b611cd7612bc7565b611ce082611b36565b611cfc5760405162461bcd60e51b81526004016107899061324d565b60007f00000000000000000000000000000000000000000000000000000000000000148310611d5d57611d4f7f000000000000000000000000000000000000000000000000000000000000001484613cdd565b611d5a906001613c20565b90505b825b818110611de75760008181526003602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff169183019190915215611dd457925061072b915050565b5080611ddf81613d20565b915050611d5f565b5060405162461bcd60e51b815260040161078990613a41565b60008085604051602001611e149190612f6c565b60405160208183030381529060405280519060200120604051602001611e3a9190612fcb565b604051602081830303815290604052805190602001209050600060018287878760405160008152602001604052604051611e779493929190613071565b6020604051602081039080840390855afa158015611e99573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151600a5462010000900473ffffffffffffffffffffffffffffffffffffffff90811691161493505050505b949350505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5460009060ff16611f7f575060016109b3565b600e5460ff166001148015611f9757506362968fe042115b15611fa4575060016109b3565b600e5460ff166002148015611fbc57506362be1ce042115b15611fc9575060016109b3565b600e5460ff166003148015611fe157506362e6fb6042115b15611fee575060016109b3565b600e5460ff166004148015612006575063630fd9e042115b15612013575060016109b3565b600e5460ff16600514801561202b575063633766e042115b15612038575060016109b3565b50600090565b61204984848461221b565b6120558484848461267a565b6117895760405162461bcd60e51b8152600401610789906138bc565b60606012805461093290613d55565b6060816120c1575060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015261072b565b8160005b81156120eb57806120d581613da9565b91506120e49050600a83613c5b565b91506120c5565b60008167ffffffffffffffff81111561212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612157576020820181803683370190505b5090505b8415611eeb5761216c600183613cdd565b9150612179600a86613e02565b612184906030613c20565b60f81b8183815181106121c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121fa600a86613c5b565b945061215b565b611ca58282604051806020016040528060008152506127fb565b600061222682611ccf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661224d611acd565b73ffffffffffffffffffffffffffffffffffffffff1614806122a95750612272611acd565b73ffffffffffffffffffffffffffffffffffffffff16612291846109b6565b73ffffffffffffffffffffffffffffffffffffffff16145b806122bd575081516122bd906105e2611acd565b9050806122dc5760405162461bcd60e51b815260040161078990613794565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461232b5760405162461bcd60e51b815260040161078990613611565b73ffffffffffffffffffffffffffffffffffffffff841661235e5760405162461bcd60e51b8152600401610789906133f8565b61236b8585856001611789565b61237b6000848460000151611b3d565b73ffffffffffffffffffffffffffffffffffffffff851660009081526004602052604081208054600192906123c39084906fffffffffffffffffffffffffffffffff16613cac565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff86166000908152600460205260408120805460019450909261242591859116613bf5565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600390915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff929093167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116171617905561250e846001613c20565b60008181526003602052604090205490915073ffffffffffffffffffffffffffffffffffffffff1661260a5761254381611b36565b1561260a57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494517fffffffffffffffffffffffff00000000000000000000000000000000000000009095169216919091177fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000093909116929092029190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126728686866001611789565b505050505050565b600061269b8473ffffffffffffffffffffffffffffffffffffffff16612b23565b156127f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c4611acd565b8786866040518563ffffffff1660e01b81526004016126e6949392919061301d565b602060405180830381600087803b15801561270057600080fd5b505af192505050801561274e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261274b91810190612e1f565b60015b6127a8573d80801561277c576040519150601f19603f3d011682016040523d82523d6000602084013e612781565b606091505b5080516127a05760405162461bcd60e51b8152600401610789906138bc565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611eeb565b506001611eeb565b60005473ffffffffffffffffffffffffffffffffffffffff84166128315760405162461bcd60e51b815260040161078990613950565b61283a81611b36565b156128575760405162461bcd60e51b815260040161078990613919565b7f00000000000000000000000000000000000000000000000000000000000000148311156128975760405162461bcd60e51b815260040161078990613b8f565b6128a46000858386611789565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600460209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612923908790613bf5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161294a9190613bf5565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260046020908152604080832087518154988401518816700100000000000000000000000000000000029088167fffffffffffffffffffffffffffffffff0000000000000000000000000000000090991698909817909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600390955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff959093167fffffffffffffffffffffffff000000000000000000000000000000000000000090941693909317939093161790915582905b85811015612b1157604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612ad5600088848861267a565b612af15760405162461bcd60e51b8152600401610789906138bc565b81612afb81613da9565b9250508080612b0990613da9565b915050612a7b565b50600081815561267290878588611789565b3b151590565b828054612b3590613d55565b90600052602060002090601f016020900481019282612b575760008555612bbb565b82601f10612b8e578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612bbb565b82800160010185558215612bbb579182015b82811115612bbb578235825591602001919060010190612ba0565b50610ebe929150612bde565b604080518082019091526000808252602082015290565b5b80821115610ebe5760008155600101612bdf565b803573ffffffffffffffffffffffffffffffffffffffff8116811461072b57600080fd5b803567ffffffffffffffff8116811461072b57600080fd5b600060208284031215612c40578081fd5b61180b82612bf3565b60008060408385031215612c5b578081fd5b612c6483612bf3565b9150612c7260208401612bf3565b90509250929050565b600080600060608486031215612c8f578081fd5b612c9884612bf3565b9250612ca660208501612bf3565b9150604084013590509250925092565b60008060008060808587031215612ccb578081fd5b612cd485612bf3565b93506020612ce3818701612bf3565b935060408601359250606086013567ffffffffffffffff80821115612d06578384fd5b818801915088601f830112612d19578384fd5b813581811115612d2b57612d2b613e74565b604051847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401168201018181108482111715612d6c57612d6c613e74565b60405281815283820185018b1015612d82578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612db2578182fd5b612dbb83612bf3565b915060208301358015158114612dcf578182fd5b809150509250929050565b60008060408385031215612dec578182fd5b612df583612bf3565b946020939093013593505050565b600060208284031215612e14578081fd5b813561180b81613ea3565b600060208284031215612e30578081fd5b815161180b81613ea3565b60008060208385031215612e4d578182fd5b823567ffffffffffffffff80821115612e64578384fd5b818501915085601f830112612e77578384fd5b813581811115612e85578485fd5b866020828501011115612e96578485fd5b60209290920196919550909350505050565b600060208284031215612eb9578081fd5b5035919050565b600060208284031215612ed1578081fd5b61180b82612c17565b60008060008060808587031215612eef578384fd5b612ef885612c17565b9350602085013560ff81168114612f0d578384fd5b93969395505050506040820135916060013590565b60008151808452612f3a816020860160208601613cf4565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b60008351612fae818460208801613cf4565b835190830190612fc2818360208801613cf4565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261305c6080830184612f22565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261180b6020830184612f22565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f67657441676520717565727920666f72206e6f6e6578697374656e7420746f6b60408201527f656e000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604082015260600190565b60208082526031908201527f596f7520617265206e6f74206f6e2074686520574c202e2e2e206f72206e6f7460408201527f207369676e65642070726f7065726c792e000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360408201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f4e6f7420617574686f72697a656420746f2074616b65206d6f6e6579206e6f7760408201527f203b290000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f67657442697274684461746520717565727920666f72206e6f6e65786973746560408201527f6e7420746f6b656e000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560408201527f6e64730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f52656163686564206d617820737570706c790000000000000000000000000000604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526016908201527f43616e6e6f74206d696e74206d6f72652044696e6f7300000000000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526027908201527f43616e6e6f7420776974686472617720616c6c206265666f726520746869732060408201527f646174652e2e2e00000000000000000000000000000000000000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201527f65726f2061646472657373000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460408201527f206f776e65720000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526029908201527f67657446616d696c7953697a6520717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060408201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606082015260800190565b60208082526017908201527f52656163686564206d6178206672656520737570706c79000000000000000000604082015260600190565b60208082526016908201527f53616c6520686173206e6f7420626567756e2079657400000000000000000000604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201527f6572000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527f6563656976657220696d706c656d656e74657200000000000000000000000000606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201527f6f776e657220627920696e646578000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526025908201527f43616e6e6f7420676574206d6f6e6579206966206e6f74206d696e746564206f60408201527f7574203a28000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201527f78697374656e7420746f6b656e00000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f43616e6e6f74206d696e742074686973206d616e7920617420612074696d6500604082015260600190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960408201527f6768000000000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612fc257612fc2613e16565b60008219821115613c3357613c33613e16565b500190565b600067ffffffffffffffff808316818516808303821115612fc257612fc2613e16565b600082613c6a57613c6a613e45565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ca757613ca7613e16565b500290565b60006fffffffffffffffffffffffffffffffff83811690831681811015613cd557613cd5613e16565b039392505050565b600082821015613cef57613cef613e16565b500390565b60005b83811015613d0f578181015183820152602001613cf7565b838111156117895750506000910152565b600081613d2f57613d2f613e16565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600281046001821680613d6957607f821691505b60208210811415613da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ddb57613ddb613e16565b5060010190565b600060ff821660ff811415613df957613df9613e16565b60010192915050565b600082613e1157613e11613e45565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461087557600080fdfea2646970667358221220a560137a927180782cb11fe6da5b887150f83f71122371651f02853217f99f2164736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000078733e0eca791ad8ff810e0f62ebfdf524bdeaca000000000000000000000000dabd1c16a1037797f98d98328aa2a9220b857090000000000000000000000000672ffa86cf971ac0dd10542b441375e31ae9d02e
-----Decoded View---------------
Arg [0] : _wlSigner (address): 0x78733e0eCa791ad8fF810E0f62eBFDF524bDeaCA
Arg [1] : _jpWallet (address): 0xDabd1c16A1037797f98d98328AA2a9220b857090
Arg [2] : _jpCommunityWallet (address): 0x672Ffa86cf971aC0Dd10542b441375E31Ae9d02e
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000078733e0eca791ad8ff810e0f62ebfdf524bdeaca
Arg [1] : 000000000000000000000000dabd1c16a1037797f98d98328aa2a9220b857090
Arg [2] : 000000000000000000000000672ffa86cf971ac0dd10542b441375e31ae9d02e
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.