Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
93 RDC
Holders
41
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RebelDogsClub
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // ============================================================================= // ||-------------------------- Rebel Dogs Club ------------------------------|| // ============================================================================= contract RebelDogsClub is ERC721, ERC721Enumerable, Ownable { using Strings for uint256; string public contractURI; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.03 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 3; uint256 public nftPerAddressLimit = 3; uint96 royaltyFeesInBips = 550; // Royalty percentage set to 5.5 % bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address royaltyAddress; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor() ERC721("Rebel Dogs Club", "RDC") { setBaseURI( "ipfs://bafybeic2avs7cl4puzdegxjcenjtz4m3l42u54zy22sm5iypylznkr46m4/" ); setNotRevealedURI( "ipfs://bafybeia2gqhjsw3watdcnihowqtym4ojrcgvdirtmrbp5spdmgekeamslm/metadata.json" ); setContractURI( "https://nftstorage.link/ipfs/bafybeiconvpwj3yzutiyvcfp3vykqypa4uqy7eifz2xek5jksekhmcrmhu/contractURI.json" ); royaltyAddress = owner(); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require( _mintAmount <= maxMintAmount, "max mint amount per session exceeded" ); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if (onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require( ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded" ); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function royaltyInfo(uint256, uint256 _salePrice) external view virtual returns (address, uint256) { return (royaltyAddress, calculateRoyalty(_salePrice)); } function calculateRoyalty(uint256 _salePrice) public view returns (uint256) { return (_salePrice / 10000) * royaltyFeesInBips; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return interfaceId == 0x2a55205a || super.supportsInterface(interfaceId); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function checkWhitelisted() public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == msg.sender) { return true; } } return false; } // Setter Functions function reveal() public onlyOwner { revealed = true; } function notRevealed() public onlyOwner { revealed = false; } function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { royaltyAddress = _receiver; royaltyFeesInBips = _royaltyFeesInBips; } function offPreSale() public onlyOwner { cost = 0.05 ether; onlyWhitelisted = false; } function setContractURI(string memory _contracturi) public onlyOwner { contractURI = _contracturi; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { // This will payout the owner 100% of the contract balance. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// 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 (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (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 (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 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contracturi","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620004a0565b50666a94d74f430000600f5561271060105560036011556003601255610226601360006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555060006013600c6101000a81548160ff02191690831515021790555060006013600d6101000a81548160ff02191690831515021790555060016013600e6101000a81548160ff021916908315150217905550348015620000fe57600080fd5b506040518060400160405280600f81526020017f526562656c20446f677320436c756200000000000000000000000000000000008152506040518060400160405280600381526020017f5244430000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000183929190620004a0565b5080600190805190602001906200019c929190620004a0565b505050620001bf620001b36200029360201b60201c565b6200029b60201b60201c565b620001e960405180608001604052806043815260200162005683604391396200036160201b60201c565b6200021360405180608001604052806050815260200162005633605091396200038d60201b60201c565b6200023d6040518060a0016040528060698152602001620055ca60699139620003b960201b60201c565b6200024d620003e560201b60201c565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000638565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003716200040f60201b60201c565b80600c908051906020019062000389929190620004a0565b5050565b6200039d6200040f60201b60201c565b80600e9080519060200190620003b5929190620004a0565b5050565b620003c96200040f60201b60201c565b80600b9080519060200190620003e1929190620004a0565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200041f6200029360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000445620003e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200049e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004959062000577565b60405180910390fd5b565b828054620004ae90620005aa565b90600052602060002090601f016020900481019282620004d257600085556200051e565b82601f10620004ed57805160ff19168380011785556200051e565b828001600101855582156200051e579182015b828111156200051d57825182559160200191906001019062000500565b5b5090506200052d919062000531565b5090565b5b808211156200054c57600081600090555060010162000532565b5090565b60006200055f60208362000599565b91506200056c826200060f565b602082019050919050565b60006020820190508181036000830152620005928162000550565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620005c357607f821691505b60208210811415620005da57620005d9620005e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614f8280620006486000396000f3fe60806040526004361061031a5760003560e01c80636c0360eb116101ab578063b88d4fde116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610ba9578063edec5f2714610be6578063f2c4ce1e14610c0f578063f2fde38b14610c385761031a565b8063d5abeb0114610b2a578063da3ef23f14610b55578063e8a3d48514610b7e5761031a565b8063bc3402e2116100d1578063bc3402e214610a82578063c668286214610a99578063c87b56dd14610ac4578063d0eb26b014610b015761031a565b8063b88d4fde146109f1578063ba4e5c4914610a1a578063ba7d2c7614610a575761031a565b806395d89b4111610164578063a0c073db1161013e578063a0c073db1461095d578063a22cb46514610974578063a2e696131461099d578063a475b5dd146109da5761031a565b806395d89b41146108eb5780639c70b51214610916578063a0712d68146109415761031a565b80636c0360eb146107ef57806370a082311461081a578063715018a6146108575780637f00c7a61461086e5780638da5cb5b14610897578063938e3d7b146108c25761031a565b80632a55205a1161026a578063438b63001161022357806351830227116101fd578063518302271461073357806355f804b31461075e5780635c975abb146107875780636352211e146107b25761031a565b8063438b63001461069057806344a0d68a146106cd5780634f6ccce7146106f65761031a565b80632a55205a1461057c5780632f745c59146105ba5780633af32abf146105f75780633c952764146106345780633ccfd60b1461065d57806342842e0e146106675761031a565b8063095ea7b3116102d757806318cae269116102b157806318cae269146104c0578063239c70ae146104fd57806323b872dd1461052857806326d54f30146105515761031a565b8063095ea7b31461044157806313faede61461046a57806318160ddd146104955761031a565b806301ffc9a71461031f57806302329a291461035c57806302fa7c471461038557806306fdde03146103ae578063081812fc146103d9578063081c8c4414610416575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906139d7565b610c61565b60405161035391906140fb565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906139aa565b610ca3565b005b34801561039157600080fd5b506103ac60048036038101906103a7919061391d565b610cc8565b005b3480156103ba57600080fd5b506103c3610d46565b6040516103d09190614116565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613a7a565b610dd8565b60405161040d9190614049565b60405180910390f35b34801561042257600080fd5b5061042b610e1e565b6040516104389190614116565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906138dd565b610eac565b005b34801561047657600080fd5b5061047f610fc4565b60405161048c9190614418565b60405180910390f35b3480156104a157600080fd5b506104aa610fca565b6040516104b79190614418565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061375a565b610fd7565b6040516104f49190614418565b60405180910390f35b34801561050957600080fd5b50610512610fef565b60405161051f9190614418565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906137c7565b610ff5565b005b34801561055d57600080fd5b50610566611055565b60405161057391906140fb565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613aa7565b611102565b6040516105b19291906140b0565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906138dd565b61113c565b6040516105ee9190614418565b60405180910390f35b34801561060357600080fd5b5061061e6004803603810190610619919061375a565b6111e1565b60405161062b91906140fb565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906139aa565b611290565b005b6106656112b5565b005b34801561067357600080fd5b5061068e600480360381019061068991906137c7565b61133d565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061375a565b61135d565b6040516106c491906140d9565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613a7a565b61140b565b005b34801561070257600080fd5b5061071d60048036038101906107189190613a7a565b61141d565b60405161072a9190614418565b60405180910390f35b34801561073f57600080fd5b5061074861148e565b60405161075591906140fb565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613a31565b6114a1565b005b34801561079357600080fd5b5061079c6114c3565b6040516107a991906140fb565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190613a7a565b6114d6565b6040516107e69190614049565b60405180910390f35b3480156107fb57600080fd5b50610804611588565b6040516108119190614116565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061375a565b611616565b60405161084e9190614418565b60405180910390f35b34801561086357600080fd5b5061086c6116ce565b005b34801561087a57600080fd5b5061089560048036038101906108909190613a7a565b6116e2565b005b3480156108a357600080fd5b506108ac6116f4565b6040516108b99190614049565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613a31565b61171e565b005b3480156108f757600080fd5b50610900611740565b60405161090d9190614116565b60405180910390f35b34801561092257600080fd5b5061092b6117d2565b60405161093891906140fb565b60405180910390f35b61095b60048036038101906109569190613a7a565b6117e5565b005b34801561096957600080fd5b50610972611b2e565b005b34801561098057600080fd5b5061099b6004803603810190610996919061389d565b611b53565b005b3480156109a957600080fd5b506109c460048036038101906109bf9190613a7a565b611b69565b6040516109d19190614418565b60405180910390f35b3480156109e657600080fd5b506109ef611bb3565b005b3480156109fd57600080fd5b50610a186004803603810190610a13919061381a565b611bd8565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190613a7a565b611c3a565b604051610a4e9190614049565b60405180910390f35b348015610a6357600080fd5b50610a6c611c79565b604051610a799190614418565b60405180910390f35b348015610a8e57600080fd5b50610a97611c7f565b005b348015610aa557600080fd5b50610aae611cb2565b604051610abb9190614116565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190613a7a565b611d40565b604051610af89190614116565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b239190613a7a565b611e99565b005b348015610b3657600080fd5b50610b3f611eab565b604051610b4c9190614418565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b779190613a31565b611eb1565b005b348015610b8a57600080fd5b50610b93611ed3565b604051610ba09190614116565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb9190613787565b611f61565b604051610bdd91906140fb565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c08919061395d565b611ff5565b005b348015610c1b57600080fd5b50610c366004803603810190610c319190613a31565b612021565b005b348015610c4457600080fd5b50610c5f6004803603810190610c5a919061375a565b612043565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9c5750610c9b826120c7565b5b9050919050565b610cab612141565b806013600c6101000a81548160ff02191690831515021790555050565b610cd0612141565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050565b606060008054610d5590614739565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190614739565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de3826121bf565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610e2b90614739565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614739565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b6000610eb7826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90614358565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f4761220a565b73ffffffffffffffffffffffffffffffffffffffff161480610f765750610f7581610f7061220a565b611f61565b5b610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614298565b60405180910390fd5b610fbf8383612212565b505050565b600f5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b60115481565b61100661100061220a565b826122cb565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906143d8565b60405180910390fd5b611050838383612360565b505050565b600080600090505b6015805490508110156110f9573373ffffffffffffffffffffffffffffffffffffffff1660158281548110611095576110946148d2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110e65760019150506110ff565b80806110f19061479c565b91505061105d565b50600090505b90565b600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661113184611b69565b915091509250929050565b600061114783611616565b8210611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614138565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015611285578273ffffffffffffffffffffffffffffffffffffffff1660158281548110611221576112206148d2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561127257600191505061128b565b808061127d9061479c565b9150506111e9565b50600090505b919050565b611298612141565b806013600e6101000a81548160ff02191690831515021790555050565b6112bd612141565b60006112c76116f4565b73ffffffffffffffffffffffffffffffffffffffff16476040516112ea90614034565b60006040518083038185875af1925050503d8060008114611327576040519150601f19603f3d011682016040523d82523d6000602084013e61132c565b606091505b505090508061133a57600080fd5b50565b61135883838360405180602001604052806000815250611bd8565b505050565b6060600061136a83611616565b905060008167ffffffffffffffff81111561138857611387614901565b5b6040519080825280602002602001820160405280156113b65781602001602082028036833780820191505090505b50905060005b82811015611400576113ce858261113c565b8282815181106113e1576113e06148d2565b5b60200260200101818152505080806113f89061479c565b9150506113bc565b508092505050919050565b611413612141565b80600f8190555050565b6000611427610fca565b8210611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90614398565b60405180910390fd5b6008828154811061147c5761147b6148d2565b5b90600052602060002001549050919050565b6013600d9054906101000a900460ff1681565b6114a9612141565b80600c90805190602001906114bf929190613442565b5050565b6013600c9054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614338565b60405180910390fd5b80915050919050565b600c805461159590614739565b80601f01602080910402602001604051908101604052809291908181526020018280546115c190614739565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90614238565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d6612141565b6116e060006125c7565b565b6116ea612141565b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611726612141565b80600b908051906020019061173c929190613442565b5050565b60606001805461174f90614739565b80601f016020809104026020016040519081016040528092919081815260200182805461177b90614739565b80156117c85780601f1061179d576101008083540402835291602001916117c8565b820191906000526020600020905b8154815290600101906020018083116117ab57829003601f168201915b5050505050905090565b6013600e9054906101000a900460ff1681565b6013600c9054906101000a900460ff1615611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906142f8565b60405180910390fd5b600061183f610fca565b905060008211611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906143f8565b60405180910390fd5b6011548211156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614278565b60405180910390fd5b60105482826118d89190614556565b1115611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614258565b60405180910390fd5b6119216116f4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9e57600115156013600e9054906101000a900460ff1615151415611a4d57611978336111e1565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae906143b8565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548382611a0a9190614556565b1115611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906141d8565b60405180910390fd5b505b81600f54611a5b91906145dd565b341015611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614378565b60405180910390fd5b5b6000600190505b828111611b2957601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611afc9061479c565b9190505550611b16338284611b119190614556565b61268d565b8080611b219061479c565b915050611aa5565b505050565b611b36612141565b60006013600d6101000a81548160ff021916908315150217905550565b611b65611b5e61220a565b83836126ab565b5050565b6000601360009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611ba291906145ac565b611bac91906145dd565b9050919050565b611bbb612141565b60016013600d6101000a81548160ff021916908315150217905550565b611be9611be361220a565b836122cb565b611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906143d8565b60405180910390fd5b611c3484848484612818565b50505050565b60158181548110611c4a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611c87612141565b66b1a2bc2ec50000600f8190555060006013600e6101000a81548160ff021916908315150217905550565b600d8054611cbf90614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611ceb90614739565b8015611d385780601f10611d0d57610100808354040283529160200191611d38565b820191906000526020600020905b815481529060010190602001808311611d1b57829003601f168201915b505050505081565b6060611d4b82612874565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190614318565b60405180910390fd5b600015156013600d9054906101000a900460ff1615151415611e3857600e8054611db390614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddf90614739565b8015611e2c5780601f10611e0157610100808354040283529160200191611e2c565b820191906000526020600020905b815481529060010190602001808311611e0f57829003601f168201915b50505050509050611e94565b6000611e426128e0565b90506000815111611e625760405180602001604052806000815250611e90565b80611e6c84612972565b600d604051602001611e8093929190614003565b6040516020818303038152906040525b9150505b919050565b611ea1612141565b8060128190555050565b60105481565b611eb9612141565b80600d9080519060200190611ecf929190613442565b5050565b600b8054611ee090614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0c90614739565b8015611f595780601f10611f2e57610100808354040283529160200191611f59565b820191906000526020600020905b815481529060010190602001808311611f3c57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ffd612141565b6015600061200b91906134c8565b81816015919061201c9291906134e9565b505050565b612029612141565b80600e908051906020019061203f929190613442565b5050565b61204b612141565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614178565b60405180910390fd5b6120c4816125c7565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213a575061213982612ad3565b5b9050919050565b61214961220a565b73ffffffffffffffffffffffffffffffffffffffff166121676116f4565b73ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b4906142d8565b60405180910390fd5b565b6121c881612874565b612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614338565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612285836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806122d7836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231957506123188185611f61565b5b8061235757508373ffffffffffffffffffffffffffffffffffffffff1661233f84610dd8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612380826114d6565b73ffffffffffffffffffffffffffffffffffffffff16146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614198565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d906141f8565b60405180910390fd5b612451838383612bb5565b61245c600082612212565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ac9190614637565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125039190614556565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c2838383612bc5565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a7828260405180602001604052806000815250612bca565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614218565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161280b91906140fb565b60405180910390a3505050565b612823848484612360565b61282f84848484612c25565b61286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590614158565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c80546128ef90614739565b80601f016020809104026020016040519081016040528092919081815260200182805461291b90614739565b80156129685780601f1061293d57610100808354040283529160200191612968565b820191906000526020600020905b81548152906001019060200180831161294b57829003601f168201915b5050505050905090565b606060008214156129ba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ace565b600082905060005b600082146129ec5780806129d59061479c565b915050600a826129e591906145ac565b91506129c2565b60008167ffffffffffffffff811115612a0857612a07614901565b5b6040519080825280601f01601f191660200182016040528015612a3a5781602001600182028036833780820191505090505b5090505b60008514612ac757600182612a539190614637565b9150600a85612a6291906147e5565b6030612a6e9190614556565b60f81b818381518110612a8457612a836148d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac091906145ac565b9450612a3e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b9e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bae5750612bad82612dbc565b5b9050919050565b612bc0838383612e26565b505050565b505050565b612bd48383612f3a565b612be16000848484612c25565b612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614158565b60405180910390fd5b505050565b6000612c468473ffffffffffffffffffffffffffffffffffffffff16613114565b15612daf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6f61220a565b8786866040518563ffffffff1660e01b8152600401612c919493929190614064565b602060405180830381600087803b158015612cab57600080fd5b505af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190613a04565b60015b612d5f573d8060008114612d0c576040519150601f19603f3d011682016040523d82523d6000602084013e612d11565b606091505b50600081511415612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90614158565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e31838383613137565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7457612e6f8161313c565b612eb3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb257612eb18382613185565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef657612ef1816132f2565b612f35565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3457612f3382826133c3565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906142b8565b60405180910390fd5b612fb381612874565b15612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea906141b8565b60405180910390fd5b612fff60008383612bb5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304f9190614556565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311060008383612bc5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161319284611616565b61319c9190614637565b9050600060076000848152602001908152602001600020549050818114613281576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133069190614637565b9050600060096000848152602001908152602001600020549050600060088381548110613336576133356148d2565b5b906000526020600020015490508060088381548110613358576133576148d2565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a7576133a66148a3565b5b6001900381819060005260206000200160009055905550505050565b60006133ce83611616565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461344e90614739565b90600052602060002090601f01602090048101928261347057600085556134b7565b82601f1061348957805160ff19168380011785556134b7565b828001600101855582156134b7579182015b828111156134b657825182559160200191906001019061349b565b5b5090506134c49190613589565b5090565b50805460008255906000526020600020908101906134e69190613589565b50565b828054828255906000526020600020908101928215613578579160200282015b8281111561357757823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613509565b5b5090506135859190613589565b5090565b5b808211156135a257600081600090555060010161358a565b5090565b60006135b96135b484614458565b614433565b9050828152602081018484840111156135d5576135d461493f565b5b6135e08482856146f7565b509392505050565b60006135fb6135f684614489565b614433565b9050828152602081018484840111156136175761361661493f565b5b6136228482856146f7565b509392505050565b60008135905061363981614ed9565b92915050565b60008083601f84011261365557613654614935565b5b8235905067ffffffffffffffff81111561367257613671614930565b5b60208301915083602082028301111561368e5761368d61493a565b5b9250929050565b6000813590506136a481614ef0565b92915050565b6000813590506136b981614f07565b92915050565b6000815190506136ce81614f07565b92915050565b600082601f8301126136e9576136e8614935565b5b81356136f98482602086016135a6565b91505092915050565b600082601f83011261371757613716614935565b5b81356137278482602086016135e8565b91505092915050565b60008135905061373f81614f1e565b92915050565b60008135905061375481614f35565b92915050565b6000602082840312156137705761376f614949565b5b600061377e8482850161362a565b91505092915050565b6000806040838503121561379e5761379d614949565b5b60006137ac8582860161362a565b92505060206137bd8582860161362a565b9150509250929050565b6000806000606084860312156137e0576137df614949565b5b60006137ee8682870161362a565b93505060206137ff8682870161362a565b925050604061381086828701613730565b9150509250925092565b6000806000806080858703121561383457613833614949565b5b60006138428782880161362a565b94505060206138538782880161362a565b935050604061386487828801613730565b925050606085013567ffffffffffffffff81111561388557613884614944565b5b613891878288016136d4565b91505092959194509250565b600080604083850312156138b4576138b3614949565b5b60006138c28582860161362a565b92505060206138d385828601613695565b9150509250929050565b600080604083850312156138f4576138f3614949565b5b60006139028582860161362a565b925050602061391385828601613730565b9150509250929050565b6000806040838503121561393457613933614949565b5b60006139428582860161362a565b925050602061395385828601613745565b9150509250929050565b6000806020838503121561397457613973614949565b5b600083013567ffffffffffffffff81111561399257613991614944565b5b61399e8582860161363f565b92509250509250929050565b6000602082840312156139c0576139bf614949565b5b60006139ce84828501613695565b91505092915050565b6000602082840312156139ed576139ec614949565b5b60006139fb848285016136aa565b91505092915050565b600060208284031215613a1a57613a19614949565b5b6000613a28848285016136bf565b91505092915050565b600060208284031215613a4757613a46614949565b5b600082013567ffffffffffffffff811115613a6557613a64614944565b5b613a7184828501613702565b91505092915050565b600060208284031215613a9057613a8f614949565b5b6000613a9e84828501613730565b91505092915050565b60008060408385031215613abe57613abd614949565b5b6000613acc85828601613730565b9250506020613add85828601613730565b9150509250929050565b6000613af38383613fe5565b60208301905092915050565b613b088161466b565b82525050565b6000613b19826144df565b613b23818561450d565b9350613b2e836144ba565b8060005b83811015613b5f578151613b468882613ae7565b9750613b5183614500565b925050600181019050613b32565b5085935050505092915050565b613b758161467d565b82525050565b6000613b86826144ea565b613b90818561451e565b9350613ba0818560208601614706565b613ba98161494e565b840191505092915050565b6000613bbf826144f5565b613bc9818561453a565b9350613bd9818560208601614706565b613be28161494e565b840191505092915050565b6000613bf8826144f5565b613c02818561454b565b9350613c12818560208601614706565b80840191505092915050565b60008154613c2b81614739565b613c35818661454b565b94506001821660008114613c505760018114613c6157613c94565b60ff19831686528186019350613c94565b613c6a856144ca565b60005b83811015613c8c57815481890152600182019150602081019050613c6d565b838801955050505b50505092915050565b6000613caa602b8361453a565b9150613cb58261495f565b604082019050919050565b6000613ccd60328361453a565b9150613cd8826149ae565b604082019050919050565b6000613cf060268361453a565b9150613cfb826149fd565b604082019050919050565b6000613d1360258361453a565b9150613d1e82614a4c565b604082019050919050565b6000613d36601c8361453a565b9150613d4182614a9b565b602082019050919050565b6000613d59601c8361453a565b9150613d6482614ac4565b602082019050919050565b6000613d7c60248361453a565b9150613d8782614aed565b604082019050919050565b6000613d9f60198361453a565b9150613daa82614b3c565b602082019050919050565b6000613dc260298361453a565b9150613dcd82614b65565b604082019050919050565b6000613de560168361453a565b9150613df082614bb4565b602082019050919050565b6000613e0860248361453a565b9150613e1382614bdd565b604082019050919050565b6000613e2b603e8361453a565b9150613e3682614c2c565b604082019050919050565b6000613e4e60208361453a565b9150613e5982614c7b565b602082019050919050565b6000613e7160208361453a565b9150613e7c82614ca4565b602082019050919050565b6000613e9460168361453a565b9150613e9f82614ccd565b602082019050919050565b6000613eb7602f8361453a565b9150613ec282614cf6565b604082019050919050565b6000613eda60188361453a565b9150613ee582614d45565b602082019050919050565b6000613efd60218361453a565b9150613f0882614d6e565b604082019050919050565b6000613f2060008361452f565b9150613f2b82614dbd565b600082019050919050565b6000613f4360128361453a565b9150613f4e82614dc0565b602082019050919050565b6000613f66602c8361453a565b9150613f7182614de9565b604082019050919050565b6000613f8960178361453a565b9150613f9482614e38565b602082019050919050565b6000613fac602e8361453a565b9150613fb782614e61565b604082019050919050565b6000613fcf601b8361453a565b9150613fda82614eb0565b602082019050919050565b613fee816146d5565b82525050565b613ffd816146d5565b82525050565b600061400f8286613bed565b915061401b8285613bed565b91506140278284613c1e565b9150819050949350505050565b600061403f82613f13565b9150819050919050565b600060208201905061405e6000830184613aff565b92915050565b60006080820190506140796000830187613aff565b6140866020830186613aff565b6140936040830185613ff4565b81810360608301526140a58184613b7b565b905095945050505050565b60006040820190506140c56000830185613aff565b6140d26020830184613ff4565b9392505050565b600060208201905081810360008301526140f38184613b0e565b905092915050565b60006020820190506141106000830184613b6c565b92915050565b600060208201905081810360008301526141308184613bb4565b905092915050565b6000602082019050818103600083015261415181613c9d565b9050919050565b6000602082019050818103600083015261417181613cc0565b9050919050565b6000602082019050818103600083015261419181613ce3565b9050919050565b600060208201905081810360008301526141b181613d06565b9050919050565b600060208201905081810360008301526141d181613d29565b9050919050565b600060208201905081810360008301526141f181613d4c565b9050919050565b6000602082019050818103600083015261421181613d6f565b9050919050565b6000602082019050818103600083015261423181613d92565b9050919050565b6000602082019050818103600083015261425181613db5565b9050919050565b6000602082019050818103600083015261427181613dd8565b9050919050565b6000602082019050818103600083015261429181613dfb565b9050919050565b600060208201905081810360008301526142b181613e1e565b9050919050565b600060208201905081810360008301526142d181613e41565b9050919050565b600060208201905081810360008301526142f181613e64565b9050919050565b6000602082019050818103600083015261431181613e87565b9050919050565b6000602082019050818103600083015261433181613eaa565b9050919050565b6000602082019050818103600083015261435181613ecd565b9050919050565b6000602082019050818103600083015261437181613ef0565b9050919050565b6000602082019050818103600083015261439181613f36565b9050919050565b600060208201905081810360008301526143b181613f59565b9050919050565b600060208201905081810360008301526143d181613f7c565b9050919050565b600060208201905081810360008301526143f181613f9f565b9050919050565b6000602082019050818103600083015261441181613fc2565b9050919050565b600060208201905061442d6000830184613ff4565b92915050565b600061443d61444e565b9050614449828261476b565b919050565b6000604051905090565b600067ffffffffffffffff82111561447357614472614901565b5b61447c8261494e565b9050602081019050919050565b600067ffffffffffffffff8211156144a4576144a3614901565b5b6144ad8261494e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614816565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614845565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614816565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614816565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614724578082015181840152602081019050614709565b83811115614733576000848401525b50505050565b6000600282049050600182168061475157607f821691505b6020821081141561476557614764614874565b5b50919050565b6147748261494e565b810181811067ffffffffffffffff8211171561479357614792614901565b5b80604052505050565b60006147a7826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147da576147d9614816565b5b600182019050919050565b60006147f0826146d5565b91506147fb836146d5565b92508261480b5761480a614845565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614ee28161466b565b8114614eed57600080fd5b50565b614ef98161467d565b8114614f0457600080fd5b50565b614f1081614689565b8114614f1b57600080fd5b50565b614f27816146d5565b8114614f3257600080fd5b50565b614f3e816146df565b8114614f4957600080fd5b5056fea2646970667358221220a9a4c19b94e23a32d09e24486245acd36ec845de0d96be880594e0bc204261d864736f6c6343000807003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f62616679626569636f6e7670776a33797a75746979766366703376796b7179706134757179376569667a3278656b356a6b73656b686d63726d68752f636f6e74726163745552492e6a736f6e697066733a2f2f6261667962656961326771686a73773377617464636e69686f777174796d346f6a72636776646972746d726270357370646d67656b65616d736c6d2f6d657461646174612e6a736f6e697066733a2f2f62616679626569633261767337636c3470757a646567786a63656e6a747a346d336c34327535347a793232736d35697970796c7a6e6b7234366d342f
Deployed Bytecode
0x60806040526004361061031a5760003560e01c80636c0360eb116101ab578063b88d4fde116100f7578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610ba9578063edec5f2714610be6578063f2c4ce1e14610c0f578063f2fde38b14610c385761031a565b8063d5abeb0114610b2a578063da3ef23f14610b55578063e8a3d48514610b7e5761031a565b8063bc3402e2116100d1578063bc3402e214610a82578063c668286214610a99578063c87b56dd14610ac4578063d0eb26b014610b015761031a565b8063b88d4fde146109f1578063ba4e5c4914610a1a578063ba7d2c7614610a575761031a565b806395d89b4111610164578063a0c073db1161013e578063a0c073db1461095d578063a22cb46514610974578063a2e696131461099d578063a475b5dd146109da5761031a565b806395d89b41146108eb5780639c70b51214610916578063a0712d68146109415761031a565b80636c0360eb146107ef57806370a082311461081a578063715018a6146108575780637f00c7a61461086e5780638da5cb5b14610897578063938e3d7b146108c25761031a565b80632a55205a1161026a578063438b63001161022357806351830227116101fd578063518302271461073357806355f804b31461075e5780635c975abb146107875780636352211e146107b25761031a565b8063438b63001461069057806344a0d68a146106cd5780634f6ccce7146106f65761031a565b80632a55205a1461057c5780632f745c59146105ba5780633af32abf146105f75780633c952764146106345780633ccfd60b1461065d57806342842e0e146106675761031a565b8063095ea7b3116102d757806318cae269116102b157806318cae269146104c0578063239c70ae146104fd57806323b872dd1461052857806326d54f30146105515761031a565b8063095ea7b31461044157806313faede61461046a57806318160ddd146104955761031a565b806301ffc9a71461031f57806302329a291461035c57806302fa7c471461038557806306fdde03146103ae578063081812fc146103d9578063081c8c4414610416575b600080fd5b34801561032b57600080fd5b50610346600480360381019061034191906139d7565b610c61565b60405161035391906140fb565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906139aa565b610ca3565b005b34801561039157600080fd5b506103ac60048036038101906103a7919061391d565b610cc8565b005b3480156103ba57600080fd5b506103c3610d46565b6040516103d09190614116565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613a7a565b610dd8565b60405161040d9190614049565b60405180910390f35b34801561042257600080fd5b5061042b610e1e565b6040516104389190614116565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906138dd565b610eac565b005b34801561047657600080fd5b5061047f610fc4565b60405161048c9190614418565b60405180910390f35b3480156104a157600080fd5b506104aa610fca565b6040516104b79190614418565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061375a565b610fd7565b6040516104f49190614418565b60405180910390f35b34801561050957600080fd5b50610512610fef565b60405161051f9190614418565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906137c7565b610ff5565b005b34801561055d57600080fd5b50610566611055565b60405161057391906140fb565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613aa7565b611102565b6040516105b19291906140b0565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc91906138dd565b61113c565b6040516105ee9190614418565b60405180910390f35b34801561060357600080fd5b5061061e6004803603810190610619919061375a565b6111e1565b60405161062b91906140fb565b60405180910390f35b34801561064057600080fd5b5061065b600480360381019061065691906139aa565b611290565b005b6106656112b5565b005b34801561067357600080fd5b5061068e600480360381019061068991906137c7565b61133d565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061375a565b61135d565b6040516106c491906140d9565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613a7a565b61140b565b005b34801561070257600080fd5b5061071d60048036038101906107189190613a7a565b61141d565b60405161072a9190614418565b60405180910390f35b34801561073f57600080fd5b5061074861148e565b60405161075591906140fb565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613a31565b6114a1565b005b34801561079357600080fd5b5061079c6114c3565b6040516107a991906140fb565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d49190613a7a565b6114d6565b6040516107e69190614049565b60405180910390f35b3480156107fb57600080fd5b50610804611588565b6040516108119190614116565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061375a565b611616565b60405161084e9190614418565b60405180910390f35b34801561086357600080fd5b5061086c6116ce565b005b34801561087a57600080fd5b5061089560048036038101906108909190613a7a565b6116e2565b005b3480156108a357600080fd5b506108ac6116f4565b6040516108b99190614049565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613a31565b61171e565b005b3480156108f757600080fd5b50610900611740565b60405161090d9190614116565b60405180910390f35b34801561092257600080fd5b5061092b6117d2565b60405161093891906140fb565b60405180910390f35b61095b60048036038101906109569190613a7a565b6117e5565b005b34801561096957600080fd5b50610972611b2e565b005b34801561098057600080fd5b5061099b6004803603810190610996919061389d565b611b53565b005b3480156109a957600080fd5b506109c460048036038101906109bf9190613a7a565b611b69565b6040516109d19190614418565b60405180910390f35b3480156109e657600080fd5b506109ef611bb3565b005b3480156109fd57600080fd5b50610a186004803603810190610a13919061381a565b611bd8565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190613a7a565b611c3a565b604051610a4e9190614049565b60405180910390f35b348015610a6357600080fd5b50610a6c611c79565b604051610a799190614418565b60405180910390f35b348015610a8e57600080fd5b50610a97611c7f565b005b348015610aa557600080fd5b50610aae611cb2565b604051610abb9190614116565b60405180910390f35b348015610ad057600080fd5b50610aeb6004803603810190610ae69190613a7a565b611d40565b604051610af89190614116565b60405180910390f35b348015610b0d57600080fd5b50610b286004803603810190610b239190613a7a565b611e99565b005b348015610b3657600080fd5b50610b3f611eab565b604051610b4c9190614418565b60405180910390f35b348015610b6157600080fd5b50610b7c6004803603810190610b779190613a31565b611eb1565b005b348015610b8a57600080fd5b50610b93611ed3565b604051610ba09190614116565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb9190613787565b611f61565b604051610bdd91906140fb565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c08919061395d565b611ff5565b005b348015610c1b57600080fd5b50610c366004803603810190610c319190613a31565b612021565b005b348015610c4457600080fd5b50610c5f6004803603810190610c5a919061375a565b612043565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9c5750610c9b826120c7565b5b9050919050565b610cab612141565b806013600c6101000a81548160ff02191690831515021790555050565b610cd0612141565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050565b606060008054610d5590614739565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190614739565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b5050505050905090565b6000610de3826121bf565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610e2b90614739565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5790614739565b8015610ea45780601f10610e7957610100808354040283529160200191610ea4565b820191906000526020600020905b815481529060010190602001808311610e8757829003601f168201915b505050505081565b6000610eb7826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90614358565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f4761220a565b73ffffffffffffffffffffffffffffffffffffffff161480610f765750610f7581610f7061220a565b611f61565b5b610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614298565b60405180910390fd5b610fbf8383612212565b505050565b600f5481565b6000600880549050905090565b60166020528060005260406000206000915090505481565b60115481565b61100661100061220a565b826122cb565b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906143d8565b60405180910390fd5b611050838383612360565b505050565b600080600090505b6015805490508110156110f9573373ffffffffffffffffffffffffffffffffffffffff1660158281548110611095576110946148d2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156110e65760019150506110ff565b80806110f19061479c565b91505061105d565b50600090505b90565b600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661113184611b69565b915091509250929050565b600061114783611616565b8210611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90614138565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015611285578273ffffffffffffffffffffffffffffffffffffffff1660158281548110611221576112206148d2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561127257600191505061128b565b808061127d9061479c565b9150506111e9565b50600090505b919050565b611298612141565b806013600e6101000a81548160ff02191690831515021790555050565b6112bd612141565b60006112c76116f4565b73ffffffffffffffffffffffffffffffffffffffff16476040516112ea90614034565b60006040518083038185875af1925050503d8060008114611327576040519150601f19603f3d011682016040523d82523d6000602084013e61132c565b606091505b505090508061133a57600080fd5b50565b61135883838360405180602001604052806000815250611bd8565b505050565b6060600061136a83611616565b905060008167ffffffffffffffff81111561138857611387614901565b5b6040519080825280602002602001820160405280156113b65781602001602082028036833780820191505090505b50905060005b82811015611400576113ce858261113c565b8282815181106113e1576113e06148d2565b5b60200260200101818152505080806113f89061479c565b9150506113bc565b508092505050919050565b611413612141565b80600f8190555050565b6000611427610fca565b8210611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f90614398565b60405180910390fd5b6008828154811061147c5761147b6148d2565b5b90600052602060002001549050919050565b6013600d9054906101000a900460ff1681565b6114a9612141565b80600c90805190602001906114bf929190613442565b5050565b6013600c9054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614338565b60405180910390fd5b80915050919050565b600c805461159590614739565b80601f01602080910402602001604051908101604052809291908181526020018280546115c190614739565b801561160e5780601f106115e35761010080835404028352916020019161160e565b820191906000526020600020905b8154815290600101906020018083116115f157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90614238565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116d6612141565b6116e060006125c7565b565b6116ea612141565b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611726612141565b80600b908051906020019061173c929190613442565b5050565b60606001805461174f90614739565b80601f016020809104026020016040519081016040528092919081815260200182805461177b90614739565b80156117c85780601f1061179d576101008083540402835291602001916117c8565b820191906000526020600020905b8154815290600101906020018083116117ab57829003601f168201915b5050505050905090565b6013600e9054906101000a900460ff1681565b6013600c9054906101000a900460ff1615611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906142f8565b60405180910390fd5b600061183f610fca565b905060008211611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906143f8565b60405180910390fd5b6011548211156118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090614278565b60405180910390fd5b60105482826118d89190614556565b1115611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090614258565b60405180910390fd5b6119216116f4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a9e57600115156013600e9054906101000a900460ff1615151415611a4d57611978336111e1565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae906143b8565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548382611a0a9190614556565b1115611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a42906141d8565b60405180910390fd5b505b81600f54611a5b91906145dd565b341015611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614378565b60405180910390fd5b5b6000600190505b828111611b2957601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611afc9061479c565b9190505550611b16338284611b119190614556565b61268d565b8080611b219061479c565b915050611aa5565b505050565b611b36612141565b60006013600d6101000a81548160ff021916908315150217905550565b611b65611b5e61220a565b83836126ab565b5050565b6000601360009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611ba291906145ac565b611bac91906145dd565b9050919050565b611bbb612141565b60016013600d6101000a81548160ff021916908315150217905550565b611be9611be361220a565b836122cb565b611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906143d8565b60405180910390fd5b611c3484848484612818565b50505050565b60158181548110611c4a57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611c87612141565b66b1a2bc2ec50000600f8190555060006013600e6101000a81548160ff021916908315150217905550565b600d8054611cbf90614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611ceb90614739565b8015611d385780601f10611d0d57610100808354040283529160200191611d38565b820191906000526020600020905b815481529060010190602001808311611d1b57829003601f168201915b505050505081565b6060611d4b82612874565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8190614318565b60405180910390fd5b600015156013600d9054906101000a900460ff1615151415611e3857600e8054611db390614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611ddf90614739565b8015611e2c5780601f10611e0157610100808354040283529160200191611e2c565b820191906000526020600020905b815481529060010190602001808311611e0f57829003601f168201915b50505050509050611e94565b6000611e426128e0565b90506000815111611e625760405180602001604052806000815250611e90565b80611e6c84612972565b600d604051602001611e8093929190614003565b6040516020818303038152906040525b9150505b919050565b611ea1612141565b8060128190555050565b60105481565b611eb9612141565b80600d9080519060200190611ecf929190613442565b5050565b600b8054611ee090614739565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0c90614739565b8015611f595780601f10611f2e57610100808354040283529160200191611f59565b820191906000526020600020905b815481529060010190602001808311611f3c57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ffd612141565b6015600061200b91906134c8565b81816015919061201c9291906134e9565b505050565b612029612141565b80600e908051906020019061203f929190613442565b5050565b61204b612141565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290614178565b60405180910390fd5b6120c4816125c7565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213a575061213982612ad3565b5b9050919050565b61214961220a565b73ffffffffffffffffffffffffffffffffffffffff166121676116f4565b73ffffffffffffffffffffffffffffffffffffffff16146121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b4906142d8565b60405180910390fd5b565b6121c881612874565b612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fe90614338565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612285836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806122d7836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231957506123188185611f61565b5b8061235757508373ffffffffffffffffffffffffffffffffffffffff1661233f84610dd8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612380826114d6565b73ffffffffffffffffffffffffffffffffffffffff16146123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd90614198565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d906141f8565b60405180910390fd5b612451838383612bb5565b61245c600082612212565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ac9190614637565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125039190614556565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125c2838383612bc5565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a7828260405180602001604052806000815250612bca565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190614218565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161280b91906140fb565b60405180910390a3505050565b612823848484612360565b61282f84848484612c25565b61286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590614158565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c80546128ef90614739565b80601f016020809104026020016040519081016040528092919081815260200182805461291b90614739565b80156129685780601f1061293d57610100808354040283529160200191612968565b820191906000526020600020905b81548152906001019060200180831161294b57829003601f168201915b5050505050905090565b606060008214156129ba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ace565b600082905060005b600082146129ec5780806129d59061479c565b915050600a826129e591906145ac565b91506129c2565b60008167ffffffffffffffff811115612a0857612a07614901565b5b6040519080825280601f01601f191660200182016040528015612a3a5781602001600182028036833780820191505090505b5090505b60008514612ac757600182612a539190614637565b9150600a85612a6291906147e5565b6030612a6e9190614556565b60f81b818381518110612a8457612a836148d2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ac091906145ac565b9450612a3e565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b9e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bae5750612bad82612dbc565b5b9050919050565b612bc0838383612e26565b505050565b505050565b612bd48383612f3a565b612be16000848484612c25565b612c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1790614158565b60405180910390fd5b505050565b6000612c468473ffffffffffffffffffffffffffffffffffffffff16613114565b15612daf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c6f61220a565b8786866040518563ffffffff1660e01b8152600401612c919493929190614064565b602060405180830381600087803b158015612cab57600080fd5b505af1925050508015612cdc57506040513d601f19601f82011682018060405250810190612cd99190613a04565b60015b612d5f573d8060008114612d0c576040519150601f19603f3d011682016040523d82523d6000602084013e612d11565b606091505b50600081511415612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90614158565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db4565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e31838383613137565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e7457612e6f8161313c565b612eb3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612eb257612eb18382613185565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef657612ef1816132f2565b612f35565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f3457612f3382826133c3565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906142b8565b60405180910390fd5b612fb381612874565b15612ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fea906141b8565b60405180910390fd5b612fff60008383612bb5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304f9190614556565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461311060008383612bc5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161319284611616565b61319c9190614637565b9050600060076000848152602001908152602001600020549050818114613281576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133069190614637565b9050600060096000848152602001908152602001600020549050600060088381548110613336576133356148d2565b5b906000526020600020015490508060088381548110613358576133576148d2565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133a7576133a66148a3565b5b6001900381819060005260206000200160009055905550505050565b60006133ce83611616565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461344e90614739565b90600052602060002090601f01602090048101928261347057600085556134b7565b82601f1061348957805160ff19168380011785556134b7565b828001600101855582156134b7579182015b828111156134b657825182559160200191906001019061349b565b5b5090506134c49190613589565b5090565b50805460008255906000526020600020908101906134e69190613589565b50565b828054828255906000526020600020908101928215613578579160200282015b8281111561357757823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613509565b5b5090506135859190613589565b5090565b5b808211156135a257600081600090555060010161358a565b5090565b60006135b96135b484614458565b614433565b9050828152602081018484840111156135d5576135d461493f565b5b6135e08482856146f7565b509392505050565b60006135fb6135f684614489565b614433565b9050828152602081018484840111156136175761361661493f565b5b6136228482856146f7565b509392505050565b60008135905061363981614ed9565b92915050565b60008083601f84011261365557613654614935565b5b8235905067ffffffffffffffff81111561367257613671614930565b5b60208301915083602082028301111561368e5761368d61493a565b5b9250929050565b6000813590506136a481614ef0565b92915050565b6000813590506136b981614f07565b92915050565b6000815190506136ce81614f07565b92915050565b600082601f8301126136e9576136e8614935565b5b81356136f98482602086016135a6565b91505092915050565b600082601f83011261371757613716614935565b5b81356137278482602086016135e8565b91505092915050565b60008135905061373f81614f1e565b92915050565b60008135905061375481614f35565b92915050565b6000602082840312156137705761376f614949565b5b600061377e8482850161362a565b91505092915050565b6000806040838503121561379e5761379d614949565b5b60006137ac8582860161362a565b92505060206137bd8582860161362a565b9150509250929050565b6000806000606084860312156137e0576137df614949565b5b60006137ee8682870161362a565b93505060206137ff8682870161362a565b925050604061381086828701613730565b9150509250925092565b6000806000806080858703121561383457613833614949565b5b60006138428782880161362a565b94505060206138538782880161362a565b935050604061386487828801613730565b925050606085013567ffffffffffffffff81111561388557613884614944565b5b613891878288016136d4565b91505092959194509250565b600080604083850312156138b4576138b3614949565b5b60006138c28582860161362a565b92505060206138d385828601613695565b9150509250929050565b600080604083850312156138f4576138f3614949565b5b60006139028582860161362a565b925050602061391385828601613730565b9150509250929050565b6000806040838503121561393457613933614949565b5b60006139428582860161362a565b925050602061395385828601613745565b9150509250929050565b6000806020838503121561397457613973614949565b5b600083013567ffffffffffffffff81111561399257613991614944565b5b61399e8582860161363f565b92509250509250929050565b6000602082840312156139c0576139bf614949565b5b60006139ce84828501613695565b91505092915050565b6000602082840312156139ed576139ec614949565b5b60006139fb848285016136aa565b91505092915050565b600060208284031215613a1a57613a19614949565b5b6000613a28848285016136bf565b91505092915050565b600060208284031215613a4757613a46614949565b5b600082013567ffffffffffffffff811115613a6557613a64614944565b5b613a7184828501613702565b91505092915050565b600060208284031215613a9057613a8f614949565b5b6000613a9e84828501613730565b91505092915050565b60008060408385031215613abe57613abd614949565b5b6000613acc85828601613730565b9250506020613add85828601613730565b9150509250929050565b6000613af38383613fe5565b60208301905092915050565b613b088161466b565b82525050565b6000613b19826144df565b613b23818561450d565b9350613b2e836144ba565b8060005b83811015613b5f578151613b468882613ae7565b9750613b5183614500565b925050600181019050613b32565b5085935050505092915050565b613b758161467d565b82525050565b6000613b86826144ea565b613b90818561451e565b9350613ba0818560208601614706565b613ba98161494e565b840191505092915050565b6000613bbf826144f5565b613bc9818561453a565b9350613bd9818560208601614706565b613be28161494e565b840191505092915050565b6000613bf8826144f5565b613c02818561454b565b9350613c12818560208601614706565b80840191505092915050565b60008154613c2b81614739565b613c35818661454b565b94506001821660008114613c505760018114613c6157613c94565b60ff19831686528186019350613c94565b613c6a856144ca565b60005b83811015613c8c57815481890152600182019150602081019050613c6d565b838801955050505b50505092915050565b6000613caa602b8361453a565b9150613cb58261495f565b604082019050919050565b6000613ccd60328361453a565b9150613cd8826149ae565b604082019050919050565b6000613cf060268361453a565b9150613cfb826149fd565b604082019050919050565b6000613d1360258361453a565b9150613d1e82614a4c565b604082019050919050565b6000613d36601c8361453a565b9150613d4182614a9b565b602082019050919050565b6000613d59601c8361453a565b9150613d6482614ac4565b602082019050919050565b6000613d7c60248361453a565b9150613d8782614aed565b604082019050919050565b6000613d9f60198361453a565b9150613daa82614b3c565b602082019050919050565b6000613dc260298361453a565b9150613dcd82614b65565b604082019050919050565b6000613de560168361453a565b9150613df082614bb4565b602082019050919050565b6000613e0860248361453a565b9150613e1382614bdd565b604082019050919050565b6000613e2b603e8361453a565b9150613e3682614c2c565b604082019050919050565b6000613e4e60208361453a565b9150613e5982614c7b565b602082019050919050565b6000613e7160208361453a565b9150613e7c82614ca4565b602082019050919050565b6000613e9460168361453a565b9150613e9f82614ccd565b602082019050919050565b6000613eb7602f8361453a565b9150613ec282614cf6565b604082019050919050565b6000613eda60188361453a565b9150613ee582614d45565b602082019050919050565b6000613efd60218361453a565b9150613f0882614d6e565b604082019050919050565b6000613f2060008361452f565b9150613f2b82614dbd565b600082019050919050565b6000613f4360128361453a565b9150613f4e82614dc0565b602082019050919050565b6000613f66602c8361453a565b9150613f7182614de9565b604082019050919050565b6000613f8960178361453a565b9150613f9482614e38565b602082019050919050565b6000613fac602e8361453a565b9150613fb782614e61565b604082019050919050565b6000613fcf601b8361453a565b9150613fda82614eb0565b602082019050919050565b613fee816146d5565b82525050565b613ffd816146d5565b82525050565b600061400f8286613bed565b915061401b8285613bed565b91506140278284613c1e565b9150819050949350505050565b600061403f82613f13565b9150819050919050565b600060208201905061405e6000830184613aff565b92915050565b60006080820190506140796000830187613aff565b6140866020830186613aff565b6140936040830185613ff4565b81810360608301526140a58184613b7b565b905095945050505050565b60006040820190506140c56000830185613aff565b6140d26020830184613ff4565b9392505050565b600060208201905081810360008301526140f38184613b0e565b905092915050565b60006020820190506141106000830184613b6c565b92915050565b600060208201905081810360008301526141308184613bb4565b905092915050565b6000602082019050818103600083015261415181613c9d565b9050919050565b6000602082019050818103600083015261417181613cc0565b9050919050565b6000602082019050818103600083015261419181613ce3565b9050919050565b600060208201905081810360008301526141b181613d06565b9050919050565b600060208201905081810360008301526141d181613d29565b9050919050565b600060208201905081810360008301526141f181613d4c565b9050919050565b6000602082019050818103600083015261421181613d6f565b9050919050565b6000602082019050818103600083015261423181613d92565b9050919050565b6000602082019050818103600083015261425181613db5565b9050919050565b6000602082019050818103600083015261427181613dd8565b9050919050565b6000602082019050818103600083015261429181613dfb565b9050919050565b600060208201905081810360008301526142b181613e1e565b9050919050565b600060208201905081810360008301526142d181613e41565b9050919050565b600060208201905081810360008301526142f181613e64565b9050919050565b6000602082019050818103600083015261431181613e87565b9050919050565b6000602082019050818103600083015261433181613eaa565b9050919050565b6000602082019050818103600083015261435181613ecd565b9050919050565b6000602082019050818103600083015261437181613ef0565b9050919050565b6000602082019050818103600083015261439181613f36565b9050919050565b600060208201905081810360008301526143b181613f59565b9050919050565b600060208201905081810360008301526143d181613f7c565b9050919050565b600060208201905081810360008301526143f181613f9f565b9050919050565b6000602082019050818103600083015261441181613fc2565b9050919050565b600060208201905061442d6000830184613ff4565b92915050565b600061443d61444e565b9050614449828261476b565b919050565b6000604051905090565b600067ffffffffffffffff82111561447357614472614901565b5b61447c8261494e565b9050602081019050919050565b600067ffffffffffffffff8211156144a4576144a3614901565b5b6144ad8261494e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614561826146d5565b915061456c836146d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a1576145a0614816565b5b828201905092915050565b60006145b7826146d5565b91506145c2836146d5565b9250826145d2576145d1614845565b5b828204905092915050565b60006145e8826146d5565b91506145f3836146d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561462c5761462b614816565b5b828202905092915050565b6000614642826146d5565b915061464d836146d5565b9250828210156146605761465f614816565b5b828203905092915050565b6000614676826146b5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614724578082015181840152602081019050614709565b83811115614733576000848401525b50505050565b6000600282049050600182168061475157607f821691505b6020821081141561476557614764614874565b5b50919050565b6147748261494e565b810181811067ffffffffffffffff8211171561479357614792614901565b5b80604052505050565b60006147a7826146d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147da576147d9614816565b5b600182019050919050565b60006147f0826146d5565b91506147fb836146d5565b92508261480b5761480a614845565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614ee28161466b565b8114614eed57600080fd5b50565b614ef98161467d565b8114614f0457600080fd5b50565b614f1081614689565b8114614f1b57600080fd5b50565b614f27816146d5565b8114614f3257600080fd5b50565b614f3e816146df565b8114614f4957600080fd5b5056fea2646970667358221220a9a4c19b94e23a32d09e24486245acd36ec845de0d96be880594e0bc204261d864736f6c63430008070033
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.