ERC-721
Overview
Max Total Supply
1,001 SOY
Holders
824
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SOYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OOOOOOOO
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)
// // :JJYJ~ :! !. ^7!. ~7!!!!!7~ .^ ~!. ::. ~~ .. // 75J. 5@7.^5P^ .JG!. 5B. PB!J#^ ~!!?@?!!! !GPB~ 75J!. !GYJ55~ ~JB^ ^P. 7Y5! // :BY^. J@J:::P&. ^JPJ.Y#. #P.?@^ ^@: 5B^ 5# ~&5~ .&? !@~ 7#!^&? ^@5: // PG ~@GP&B?^ .J&B: P#JJ^ ^@^ ~@: J&. ^Y#: ~@~ 5B. ~&&? :755: // :@! .#G :JG?^ ^&~ PB ^@^ :&J^J#~ .^J&: 7PYJGJ. B#. ..7@7 // .G57~^~. JP :77 :&J ?@. :Y: ^??J^ ?Y!. ::. !@^ :5Y?^ // :7??J^ ~5 .! ?? //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BB&&@@@@@@@@@@@ //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&PY555P#@@@@@@@@@ //@@@@@@@@@@@@@#P55PB&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@&G555Y5YY5B@@@@@@@@ //@@@@@@@@@@@@Y:....:^~!?5#@@@@@@@@@@@@@@@@@@@@5JJJ?GPG?7?J&@@@@@@@@@@@@@@@@@@@@@@B5Y5YY5YY5YY5&@@@@@@ //@@@@@@@@@@@Y.:::::^^^:..:P@@@@@@@@@@@@@@@@@@@!^^^^Y55!^^~#@@@@@@@@@@@@@@@@@&#BG5J?777!!77!?JJ5@@@@@@ //@@@@@@@@@@G::^^^^~~~~~^:::G@@@@@@@@@@@@@@@@@@777?!!!?~~^!&@@@@@@@@@@@@@@@@@PJJJJ?!!!?^?7!7!YJJB@@@@@ //@@@@@@@@@#^::~~!!!~!!~~:::^&@@@@@@@@@@@@@@@G5~!!!7?!!~~^?@@@@@@@@@@@@@@@@@@5JJJJ!^~~~~7?!~~?JJG@@@@@ //@@@@@@@@@7.::^7!~7!?!7^::::B@@@@@@@@@@@@@@@7~~~~~~!YP#G~Y@@@@@@@@@@@@@@@@@@PJJY?^~~^?Y!Y?7^!JJG@@@@@ //@@@@@@@#7.:::^~~~?7J7^~^:.^&@@@@@@@@@@@@@@@GP!~~~~P@@@P~B@@@@@@@@@@@@@@@@@@GJJY7^~~~~!?YY?~~JJ#@@@@@ //@@@@@@Y:.:::::^~~!?55!^:.:G@@@@@@@@@@@@@@@@@&~~~^G@@@@?^#@@@@@@@@@@@@@@@@@@#JJY7~~~~^7Y@@@G!?5@@@@@@ //@@@@@&?^..::::^~~~B@@7^?YB@@@@@@@@@@@@@@@@@@G^~~~B@@@@G!&@@@@@@@@@@@@@@@@@@@PJY7^~~~^?P@@@G77P@@@@@@ //@@@@@@@&P?!::^~!~~!J7^~&@@@@@@@@@@@@@@@@@@@@P^^^^?&@@@P7@@@@@@@@@@@@@@@@@@@@PJJ!~!~^~!?B@@Y?J5#&@@@@ //@@@@@@@@@@J^~~~!777777G@@@@@@@@@@@@@@@@@@@@@G7???~!J5?^7@@@@@@@@@@@@@@@@@@@GJJY?~!77~^~7J5GBYJ5&@@@@ //@@@@@@@@@@J^~~~~~~?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B~^Y@&BB@@@@@@@@@@@@@@@@@@@&BB&Y^~^Y#PPGB&@@&B@@@@@@ //@@@@@@@@@@J^~~~~~~~#@@@@@@@@@@@@@@@@@@@@@@@@@@@@J^^Y@@@@@@@@@@@@@@@@@@@@@@@@@@@7^~^5@@@@@@@@@@@@@@@@ //@@@@@@@@@@Y^~~~~~~^B@@@@@@@@@@@@@@@@@@@@@@@@@@@@7^^Y@@@@@@@@@@@@@@@@@@@@@@@@@@&!^~^G@@@@@@@@@@@@@@@@ //SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "contracts/access/Ownable.sol"; contract OOOOOOOO is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 0 ether; uint256 public maxSupply = 1001; uint256 public maxMintAmount = 1; uint256 public maxperwallet = 1; bool public paused = false; mapping(address => bool) public whitelisted; mapping(address => bool) public presaleWallets; mapping(address => uint256) public mintedWallets; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); mint(msg.sender, 1); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); require(mintedWallets[msg.sender] <= maxperwallet, 'exceeds max per wallet'); mintedWallets[msg.sender] += maxperwallet; if (msg.sender != owner()) { { //general public require(msg.value >= cost * _mintAmount); } } for (uint256 i = 0; i < _mintAmount; i++) { _safeMint(_to, supply + i); } } 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" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } //only owner 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 pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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: balance query for the zero address" ); 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: owner query for nonexistent token" ); 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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not 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: transfer caller is not 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) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); } /** * @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); } /** * @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 of token that is not own" ); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 { 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 {} }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"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":[],"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":[],"name":"maxperwallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","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":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000ec3565b506000600d556103e9600e556001600f5560016010556000601160006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b5060405162005cd438038062005cd48339818101604052810190620000b591906200103a565b82828160009080519060200190620000cf92919062000ec3565b508060019080519060200190620000e892919062000ec3565b5050506200010b620000ff6200013860201b60201c565b6200014060201b60201c565b6200011c816200020660201b60201c565b6200012f336001620002b160201b60201c565b505050620018ab565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002166200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023c620004a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028c906200133e565b60405180910390fd5b80600b9080519060200190620002ad92919062000ec3565b5050565b6000620002c3620004ce60201b60201c565b9050601160009054906101000a900460ff1615620002e057600080fd5b60008211620002ee57600080fd5b600f54821115620002fe57600080fd5b600e5482826200030f9190620013ec565b11156200031b57600080fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115620003a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039990620012fa565b60405180910390fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003f59190620013ec565b925050819055506200040c620004a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200045d5781600d546200044f919062001449565b3410156200045c57600080fd5b5b60005b828110156200049e57620004888482846200047c9190620013ec565b620004db60201b60201c565b80806200049590620015f1565b91505062000460565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620004fd8282604051806020016040528060008152506200050160201b60201c565b5050565b6200051383836200056f60201b60201c565b6200052860008484846200075560201b60201c565b6200056a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005619062001294565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d9906200131c565b60405180910390fd5b620005f3816200090f60201b60201c565b1562000636576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062d90620012b6565b60405180910390fd5b6200064a600083836200097b60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200069c9190620013ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007838473ffffffffffffffffffffffffffffffffffffffff1662000ac260201b62001bc01760201c565b1562000902578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007b56200013860201b60201c565b8786866040518563ffffffff1660e01b8152600401620007d9949392919062001240565b602060405180830381600087803b158015620007f457600080fd5b505af19250505080156200082857506040513d601f19601f8201168201806040525081019062000825919062001008565b60015b620008b1573d80600081146200085b576040519150601f19603f3d011682016040523d82523d6000602084013e62000860565b606091505b50600081511415620008a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a09062001294565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000907565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200099383838362000ad560201b62001bd31760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009e057620009da8162000ada60201b60201c565b62000a28565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a275762000a26838262000b2360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a755762000a6f8162000ca060201b60201c565b62000abd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000abc5762000abb828262000d7c60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b3d8462000e0860201b620013bd1760201c565b62000b499190620014aa565b905060006007600084815260200190815260200160002054905081811462000c2f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cb69190620014aa565b905060006009600084815260200190815260200160002054905060006008838154811062000ce95762000ce8620016cc565b5b90600052602060002001549050806008838154811062000d0e5762000d0d620016cc565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d605762000d5f6200169d565b5b6001900381819060005260206000200160009055905550505050565b600062000d948362000e0860201b620013bd1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e7390620012d8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000ed19062001585565b90600052602060002090601f01602090048101928262000ef5576000855562000f41565b82601f1062000f1057805160ff191683800117855562000f41565b8280016001018555821562000f41579182015b8281111562000f4057825182559160200191906001019062000f23565b5b50905062000f50919062000f54565b5090565b5b8082111562000f6f57600081600090555060010162000f55565b5090565b600062000f8a62000f848462001389565b62001360565b90508281526020810184848401111562000fa95762000fa86200172f565b5b62000fb68482856200154f565b509392505050565b60008151905062000fcf8162001891565b92915050565b600082601f83011262000fed5762000fec6200172a565b5b815162000fff84826020860162000f73565b91505092915050565b60006020828403121562001021576200102062001739565b5b6000620010318482850162000fbe565b91505092915050565b60008060006060848603121562001056576200105562001739565b5b600084015167ffffffffffffffff81111562001077576200107662001734565b5b620010858682870162000fd5565b935050602084015167ffffffffffffffff811115620010a957620010a862001734565b5b620010b78682870162000fd5565b925050604084015167ffffffffffffffff811115620010db57620010da62001734565b5b620010e98682870162000fd5565b9150509250925092565b620010fe81620014e5565b82525050565b60006200111182620013bf565b6200111d8185620013ca565b93506200112f8185602086016200154f565b6200113a816200173e565b840191505092915050565b600062001154603283620013db565b915062001161826200174f565b604082019050919050565b60006200117b601c83620013db565b915062001188826200179e565b602082019050919050565b6000620011a2602a83620013db565b9150620011af82620017c7565b604082019050919050565b6000620011c9601683620013db565b9150620011d68262001816565b602082019050919050565b6000620011f0602083620013db565b9150620011fd826200183f565b602082019050919050565b600062001217602083620013db565b9150620012248262001868565b602082019050919050565b6200123a8162001545565b82525050565b6000608082019050620012576000830187620010f3565b620012666020830186620010f3565b6200127560408301856200122f565b818103606083015262001289818462001104565b905095945050505050565b60006020820190508181036000830152620012af8162001145565b9050919050565b60006020820190508181036000830152620012d1816200116c565b9050919050565b60006020820190508181036000830152620012f38162001193565b9050919050565b600060208201905081810360008301526200131581620011ba565b9050919050565b600060208201905081810360008301526200133781620011e1565b9050919050565b60006020820190508181036000830152620013598162001208565b9050919050565b60006200136c6200137f565b90506200137a8282620015bb565b919050565b6000604051905090565b600067ffffffffffffffff821115620013a757620013a6620016fb565b5b620013b2826200173e565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013f98262001545565b9150620014068362001545565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200143e576200143d6200163f565b5b828201905092915050565b6000620014568262001545565b9150620014638362001545565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200149f576200149e6200163f565b5b828202905092915050565b6000620014b78262001545565b9150620014c48362001545565b925082821015620014da57620014d96200163f565b5b828203905092915050565b6000620014f28262001525565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200156f57808201518184015260208101905062001552565b838111156200157f576000848401525b50505050565b600060028204905060018216806200159e57607f821691505b60208210811415620015b557620015b46200166e565b5b50919050565b620015c6826200173e565b810181811067ffffffffffffffff82111715620015e857620015e7620016fb565b5b80604052505050565b6000620015fe8262001545565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200163457620016336200163f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200189c81620014f9565b8114620018a857600080fd5b50565b61441980620018bb6000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063ada7c4ed116100ab578063d8a216c51161006f578063d8a216c5146107dd578063d936547e14610808578063da3ef23f14610845578063e985e9c51461086e578063f2fde38b146108ab5761021a565b8063ada7c4ed146106e4578063b88d4fde14610721578063c66828621461074a578063c87b56dd14610775578063d5abeb01146107b25761021a565b8063715018a6116100f2578063715018a6146106255780637f00c7a61461063c5780638da5cb5b1461066557806395d89b4114610690578063a22cb465146106bb5761021a565b80635c975abb146105555780636352211e146105805780636c0360eb146105bd57806370a08231146105e85761021a565b80632f745c59116101a657806342842e0e1161017557806342842e0e14610460578063438b63001461048957806344a0d68a146104c65780634f6ccce7146104ef57806355f804b31461052c5761021a565b80632f745c59146103c057806330b2264e146103fd5780633ccfd60b1461043a57806340c10f19146104445761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806313faede61461031657806318160ddd14610341578063239c70ae1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613074565b6108d4565b60405161025391906136a3565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613047565b61094e565b005b34801561029157600080fd5b5061029a6109e7565b6040516102a791906136be565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613117565b610a79565b6040516102e4919061361a565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613007565b610afe565b005b34801561032257600080fd5b5061032b610c16565b6040516103389190613940565b60405180910390f35b34801561034d57600080fd5b50610356610c1c565b6040516103639190613940565b60405180910390f35b34801561037857600080fd5b50610381610c29565b60405161038e9190613940565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612ef1565b610c2f565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613007565b610c8f565b6040516103f49190613940565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612e84565b610d34565b60405161043191906136a3565b60405180910390f35b610442610d54565b005b61045e60048036038101906104599190613007565b610e49565b005b34801561046c57600080fd5b5061048760048036038101906104829190612ef1565b61100f565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612e84565b61102f565b6040516104bd9190613681565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613117565b6110dd565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613117565b611163565b6040516105239190613940565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906130ce565b6111d4565b005b34801561056157600080fd5b5061056a61126a565b60405161057791906136a3565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613117565b61127d565b6040516105b4919061361a565b60405180910390f35b3480156105c957600080fd5b506105d261132f565b6040516105df91906136be565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612e84565b6113bd565b60405161061c9190613940565b60405180910390f35b34801561063157600080fd5b5061063a611475565b005b34801561064857600080fd5b50610663600480360381019061065e9190613117565b6114fd565b005b34801561067157600080fd5b5061067a611583565b604051610687919061361a565b60405180910390f35b34801561069c57600080fd5b506106a56115ad565b6040516106b291906136be565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612fc7565b61163f565b005b3480156106f057600080fd5b5061070b60048036038101906107069190612e84565b6117c0565b6040516107189190613940565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612f44565b6117d8565b005b34801561075657600080fd5b5061075f61183a565b60405161076c91906136be565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613117565b6118c8565b6040516107a991906136be565b60405180910390f35b3480156107be57600080fd5b506107c7611972565b6040516107d49190613940565b60405180910390f35b3480156107e957600080fd5b506107f2611978565b6040516107ff9190613940565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612e84565b61197e565b60405161083c91906136a3565b60405180910390f35b34801561085157600080fd5b5061086c600480360381019061086791906130ce565b61199e565b005b34801561087a57600080fd5b5061089560048036038101906108909190612eb1565b611a34565b6040516108a291906136a3565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190612e84565b611ac8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610947575061094682611bd8565b5b9050919050565b610956611cba565b73ffffffffffffffffffffffffffffffffffffffff16610974611583565b73ffffffffffffffffffffffffffffffffffffffff16146109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190613880565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109f690613c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290613c49565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a8482611cc2565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613860565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b098261127d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906138e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b99611cba565b73ffffffffffffffffffffffffffffffffffffffff161480610bc85750610bc781610bc2611cba565b611a34565b5b610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906137c0565b60405180910390fd5b610c118383611d2e565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c40610c3a611cba565b82611de7565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613900565b60405180910390fd5b610c8a838383611ec5565b505050565b6000610c9a836113bd565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906136e0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d5c611cba565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611583565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613880565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610df690613605565b60006040518083038185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610e4657600080fd5b50565b6000610e53610c1c565b9050601160009054906101000a900460ff1615610e6f57600080fd5b60008211610e7c57600080fd5b600f54821115610e8b57600080fd5b600e548282610e9a9190613a7e565b1115610ea557600080fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613820565b60405180910390fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190613a7e565b92505081905550610f89611583565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd65781600d54610fc99190613b05565b341015610fd557600080fd5b5b60005b8281101561100957610ff6848284610ff19190613a7e565b612121565b808061100190613cac565b915050610fd9565b50505050565b61102a838383604051806020016040528060008152506117d8565b505050565b6060600061103c836113bd565b905060008167ffffffffffffffff81111561105a57611059613e11565b5b6040519080825280602002602001820160405280156110885781602001602082028036833780820191505090505b50905060005b828110156110d2576110a08582610c8f565b8282815181106110b3576110b2613de2565b5b60200260200101818152505080806110ca90613cac565b91505061108e565b508092505050919050565b6110e5611cba565b73ffffffffffffffffffffffffffffffffffffffff16611103611583565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613880565b60405180910390fd5b80600d8190555050565b600061116d610c1c565b82106111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613920565b60405180910390fd5b600882815481106111c2576111c1613de2565b5b90600052602060002001549050919050565b6111dc611cba565b73ffffffffffffffffffffffffffffffffffffffff166111fa611583565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613880565b60405180910390fd5b80600b9080519060200190611266929190612c98565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613800565b60405180910390fd5b80915050919050565b600b805461133c90613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461136890613c49565b80156113b55780601f1061138a576101008083540402835291602001916113b5565b820191906000526020600020905b81548152906001019060200180831161139857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906137e0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61147d611cba565b73ffffffffffffffffffffffffffffffffffffffff1661149b611583565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613880565b60405180910390fd5b6114fb600061213f565b565b611505611cba565b73ffffffffffffffffffffffffffffffffffffffff16611523611583565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613880565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115bc90613c49565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890613c49565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905090565b611647611cba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613780565b60405180910390fd5b80600560006116c2611cba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176f611cba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b491906136a3565b60405180910390a35050565b60146020528060005260406000206000915090505481565b6117e96117e3611cba565b83611de7565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613900565b60405180910390fd5b61183484848484612205565b50505050565b600c805461184790613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461187390613c49565b80156118c05780601f10611895576101008083540402835291602001916118c0565b820191906000526020600020905b8154815290600101906020018083116118a357829003601f168201915b505050505081565b60606118d382611cc2565b611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906138c0565b60405180910390fd5b600061191c612261565b9050600081511161193c576040518060200160405280600081525061196a565b80611946846122f3565b600c60405160200161195a939291906135d4565b6040516020818303038152906040525b915050919050565b600e5481565b60105481565b60126020528060005260406000206000915054906101000a900460ff1681565b6119a6611cba565b73ffffffffffffffffffffffffffffffffffffffff166119c4611583565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613880565b60405180910390fd5b80600c9080519060200190611a30929190612c98565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad0611cba565b73ffffffffffffffffffffffffffffffffffffffff16611aee611583565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613720565b60405180910390fd5b611bbd8161213f565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ca357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb35750611cb282612454565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da18361127d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df282611cc2565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906137a0565b60405180910390fd5b6000611e3c8361127d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eab57508373ffffffffffffffffffffffffffffffffffffffff16611e9384610a79565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebc5750611ebb8185611a34565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee58261127d565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f32906138a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613760565b60405180910390fd5b611fb68383836124be565b611fc1600082611d2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120119190613b5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120689190613a7e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213b8282604051806020016040528060008152506125d2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612210848484611ec5565b61221c8484848461262d565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613700565b60405180910390fd5b50505050565b6060600b805461227090613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461229c90613c49565b80156122e95780601f106122be576101008083540402835291602001916122e9565b820191906000526020600020905b8154815290600101906020018083116122cc57829003601f168201915b5050505050905090565b6060600082141561233b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244f565b600082905060005b6000821461236d57808061235690613cac565b915050600a826123669190613ad4565b9150612343565b60008167ffffffffffffffff81111561238957612388613e11565b5b6040519080825280601f01601f1916602001820160405280156123bb5781602001600182028036833780820191505090505b5090505b60008514612448576001826123d49190613b5f565b9150600a856123e39190613cf5565b60306123ef9190613a7e565b60f81b81838151811061240557612404613de2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124419190613ad4565b94506123bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124c9838383611bd3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561250c57612507816127c4565b61254b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461254a57612549838261280d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258e576125898161297a565b6125cd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125cc576125cb8282612a4b565b5b5b505050565b6125dc8383612aca565b6125e9600084848461262d565b612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90613700565b60405180910390fd5b505050565b600061264e8473ffffffffffffffffffffffffffffffffffffffff16611bc0565b156127b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612677611cba565b8786866040518563ffffffff1660e01b81526004016126999493929190613635565b602060405180830381600087803b1580156126b357600080fd5b505af19250505080156126e457506040513d601f19601f820116820180604052508101906126e191906130a1565b60015b612767573d8060008114612714576040519150601f19603f3d011682016040523d82523d6000602084013e612719565b606091505b5060008151141561275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613700565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127bc565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161281a846113bd565b6128249190613b5f565b9050600060076000848152602001908152602001600020549050818114612909576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061298e9190613b5f565b90506000600960008481526020019081526020016000205490506000600883815481106129be576129bd613de2565b5b9060005260206000200154905080600883815481106129e0576129df613de2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a2f57612a2e613db3565b5b6001900381819060005260206000200160009055905550505050565b6000612a56836113bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3190613840565b60405180910390fd5b612b4381611cc2565b15612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613740565b60405180910390fd5b612b8f600083836124be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bdf9190613a7e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ca490613c49565b90600052602060002090601f016020900481019282612cc65760008555612d0d565b82601f10612cdf57805160ff1916838001178555612d0d565b82800160010185558215612d0d579182015b82811115612d0c578251825591602001919060010190612cf1565b5b509050612d1a9190612d1e565b5090565b5b80821115612d37576000816000905550600101612d1f565b5090565b6000612d4e612d4984613980565b61395b565b905082815260208101848484011115612d6a57612d69613e45565b5b612d75848285613c07565b509392505050565b6000612d90612d8b846139b1565b61395b565b905082815260208101848484011115612dac57612dab613e45565b5b612db7848285613c07565b509392505050565b600081359050612dce81614387565b92915050565b600081359050612de38161439e565b92915050565b600081359050612df8816143b5565b92915050565b600081519050612e0d816143b5565b92915050565b600082601f830112612e2857612e27613e40565b5b8135612e38848260208601612d3b565b91505092915050565b600082601f830112612e5657612e55613e40565b5b8135612e66848260208601612d7d565b91505092915050565b600081359050612e7e816143cc565b92915050565b600060208284031215612e9a57612e99613e4f565b5b6000612ea884828501612dbf565b91505092915050565b60008060408385031215612ec857612ec7613e4f565b5b6000612ed685828601612dbf565b9250506020612ee785828601612dbf565b9150509250929050565b600080600060608486031215612f0a57612f09613e4f565b5b6000612f1886828701612dbf565b9350506020612f2986828701612dbf565b9250506040612f3a86828701612e6f565b9150509250925092565b60008060008060808587031215612f5e57612f5d613e4f565b5b6000612f6c87828801612dbf565b9450506020612f7d87828801612dbf565b9350506040612f8e87828801612e6f565b925050606085013567ffffffffffffffff811115612faf57612fae613e4a565b5b612fbb87828801612e13565b91505092959194509250565b60008060408385031215612fde57612fdd613e4f565b5b6000612fec85828601612dbf565b9250506020612ffd85828601612dd4565b9150509250929050565b6000806040838503121561301e5761301d613e4f565b5b600061302c85828601612dbf565b925050602061303d85828601612e6f565b9150509250929050565b60006020828403121561305d5761305c613e4f565b5b600061306b84828501612dd4565b91505092915050565b60006020828403121561308a57613089613e4f565b5b600061309884828501612de9565b91505092915050565b6000602082840312156130b7576130b6613e4f565b5b60006130c584828501612dfe565b91505092915050565b6000602082840312156130e4576130e3613e4f565b5b600082013567ffffffffffffffff81111561310257613101613e4a565b5b61310e84828501612e41565b91505092915050565b60006020828403121561312d5761312c613e4f565b5b600061313b84828501612e6f565b91505092915050565b600061315083836135b6565b60208301905092915050565b61316581613b93565b82525050565b600061317682613a07565b6131808185613a35565b935061318b836139e2565b8060005b838110156131bc5781516131a38882613144565b97506131ae83613a28565b92505060018101905061318f565b5085935050505092915050565b6131d281613ba5565b82525050565b60006131e382613a12565b6131ed8185613a46565b93506131fd818560208601613c16565b61320681613e54565b840191505092915050565b600061321c82613a1d565b6132268185613a62565b9350613236818560208601613c16565b61323f81613e54565b840191505092915050565b600061325582613a1d565b61325f8185613a73565b935061326f818560208601613c16565b80840191505092915050565b6000815461328881613c49565b6132928186613a73565b945060018216600081146132ad57600181146132be576132f1565b60ff198316865281860193506132f1565b6132c7856139f2565b60005b838110156132e9578154818901526001820191506020810190506132ca565b838801955050505b50505092915050565b6000613307602b83613a62565b915061331282613e65565b604082019050919050565b600061332a603283613a62565b915061333582613eb4565b604082019050919050565b600061334d602683613a62565b915061335882613f03565b604082019050919050565b6000613370601c83613a62565b915061337b82613f52565b602082019050919050565b6000613393602483613a62565b915061339e82613f7b565b604082019050919050565b60006133b6601983613a62565b91506133c182613fca565b602082019050919050565b60006133d9602c83613a62565b91506133e482613ff3565b604082019050919050565b60006133fc603883613a62565b915061340782614042565b604082019050919050565b600061341f602a83613a62565b915061342a82614091565b604082019050919050565b6000613442602983613a62565b915061344d826140e0565b604082019050919050565b6000613465601683613a62565b91506134708261412f565b602082019050919050565b6000613488602083613a62565b915061349382614158565b602082019050919050565b60006134ab602c83613a62565b91506134b682614181565b604082019050919050565b60006134ce602083613a62565b91506134d9826141d0565b602082019050919050565b60006134f1602983613a62565b91506134fc826141f9565b604082019050919050565b6000613514602f83613a62565b915061351f82614248565b604082019050919050565b6000613537602183613a62565b915061354282614297565b604082019050919050565b600061355a600083613a57565b9150613565826142e6565b600082019050919050565b600061357d603183613a62565b9150613588826142e9565b604082019050919050565b60006135a0602c83613a62565b91506135ab82614338565b604082019050919050565b6135bf81613bfd565b82525050565b6135ce81613bfd565b82525050565b60006135e0828661324a565b91506135ec828561324a565b91506135f8828461327b565b9150819050949350505050565b60006136108261354d565b9150819050919050565b600060208201905061362f600083018461315c565b92915050565b600060808201905061364a600083018761315c565b613657602083018661315c565b61366460408301856135c5565b818103606083015261367681846131d8565b905095945050505050565b6000602082019050818103600083015261369b818461316b565b905092915050565b60006020820190506136b860008301846131c9565b92915050565b600060208201905081810360008301526136d88184613211565b905092915050565b600060208201905081810360008301526136f9816132fa565b9050919050565b600060208201905081810360008301526137198161331d565b9050919050565b6000602082019050818103600083015261373981613340565b9050919050565b6000602082019050818103600083015261375981613363565b9050919050565b6000602082019050818103600083015261377981613386565b9050919050565b60006020820190508181036000830152613799816133a9565b9050919050565b600060208201905081810360008301526137b9816133cc565b9050919050565b600060208201905081810360008301526137d9816133ef565b9050919050565b600060208201905081810360008301526137f981613412565b9050919050565b6000602082019050818103600083015261381981613435565b9050919050565b6000602082019050818103600083015261383981613458565b9050919050565b600060208201905081810360008301526138598161347b565b9050919050565b600060208201905081810360008301526138798161349e565b9050919050565b60006020820190508181036000830152613899816134c1565b9050919050565b600060208201905081810360008301526138b9816134e4565b9050919050565b600060208201905081810360008301526138d981613507565b9050919050565b600060208201905081810360008301526138f98161352a565b9050919050565b6000602082019050818103600083015261391981613570565b9050919050565b6000602082019050818103600083015261393981613593565b9050919050565b600060208201905061395560008301846135c5565b92915050565b6000613965613976565b90506139718282613c7b565b919050565b6000604051905090565b600067ffffffffffffffff82111561399b5761399a613e11565b5b6139a482613e54565b9050602081019050919050565b600067ffffffffffffffff8211156139cc576139cb613e11565b5b6139d582613e54565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8982613bfd565b9150613a9483613bfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac957613ac8613d26565b5b828201905092915050565b6000613adf82613bfd565b9150613aea83613bfd565b925082613afa57613af9613d55565b5b828204905092915050565b6000613b1082613bfd565b9150613b1b83613bfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5457613b53613d26565b5b828202905092915050565b6000613b6a82613bfd565b9150613b7583613bfd565b925082821015613b8857613b87613d26565b5b828203905092915050565b6000613b9e82613bdd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c34578082015181840152602081019050613c19565b83811115613c43576000848401525b50505050565b60006002820490506001821680613c6157607f821691505b60208210811415613c7557613c74613d84565b5b50919050565b613c8482613e54565b810181811067ffffffffffffffff82111715613ca357613ca2613e11565b5b80604052505050565b6000613cb782613bfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cea57613ce9613d26565b5b600182019050919050565b6000613d0082613bfd565b9150613d0b83613bfd565b925082613d1b57613d1a613d55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61439081613b93565b811461439b57600080fd5b50565b6143a781613ba5565b81146143b257600080fd5b50565b6143be81613bb1565b81146143c957600080fd5b50565b6143d581613bfd565b81146143e057600080fd5b5056fea2646970667358221220f4d3453265d9052ec1f6df326ecd9bba39ea99df81a2efe8efeccf57ef95d63064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a43727970746f536f7973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f596f56796264656e586e4634755a633464613546564d475059344d732d56586e65416c4d427147794533412f
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80635c975abb11610123578063ada7c4ed116100ab578063d8a216c51161006f578063d8a216c5146107dd578063d936547e14610808578063da3ef23f14610845578063e985e9c51461086e578063f2fde38b146108ab5761021a565b8063ada7c4ed146106e4578063b88d4fde14610721578063c66828621461074a578063c87b56dd14610775578063d5abeb01146107b25761021a565b8063715018a6116100f2578063715018a6146106255780637f00c7a61461063c5780638da5cb5b1461066557806395d89b4114610690578063a22cb465146106bb5761021a565b80635c975abb146105555780636352211e146105805780636c0360eb146105bd57806370a08231146105e85761021a565b80632f745c59116101a657806342842e0e1161017557806342842e0e14610460578063438b63001461048957806344a0d68a146104c65780634f6ccce7146104ef57806355f804b31461052c5761021a565b80632f745c59146103c057806330b2264e146103fd5780633ccfd60b1461043a57806340c10f19146104445761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806313faede61461031657806318160ddd14610341578063239c70ae1461036c57806323b872dd146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613074565b6108d4565b60405161025391906136a3565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190613047565b61094e565b005b34801561029157600080fd5b5061029a6109e7565b6040516102a791906136be565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613117565b610a79565b6040516102e4919061361a565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613007565b610afe565b005b34801561032257600080fd5b5061032b610c16565b6040516103389190613940565b60405180910390f35b34801561034d57600080fd5b50610356610c1c565b6040516103639190613940565b60405180910390f35b34801561037857600080fd5b50610381610c29565b60405161038e9190613940565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612ef1565b610c2f565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613007565b610c8f565b6040516103f49190613940565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190612e84565b610d34565b60405161043191906136a3565b60405180910390f35b610442610d54565b005b61045e60048036038101906104599190613007565b610e49565b005b34801561046c57600080fd5b5061048760048036038101906104829190612ef1565b61100f565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612e84565b61102f565b6040516104bd9190613681565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190613117565b6110dd565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613117565b611163565b6040516105239190613940565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906130ce565b6111d4565b005b34801561056157600080fd5b5061056a61126a565b60405161057791906136a3565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613117565b61127d565b6040516105b4919061361a565b60405180910390f35b3480156105c957600080fd5b506105d261132f565b6040516105df91906136be565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612e84565b6113bd565b60405161061c9190613940565b60405180910390f35b34801561063157600080fd5b5061063a611475565b005b34801561064857600080fd5b50610663600480360381019061065e9190613117565b6114fd565b005b34801561067157600080fd5b5061067a611583565b604051610687919061361a565b60405180910390f35b34801561069c57600080fd5b506106a56115ad565b6040516106b291906136be565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612fc7565b61163f565b005b3480156106f057600080fd5b5061070b60048036038101906107069190612e84565b6117c0565b6040516107189190613940565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190612f44565b6117d8565b005b34801561075657600080fd5b5061075f61183a565b60405161076c91906136be565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190613117565b6118c8565b6040516107a991906136be565b60405180910390f35b3480156107be57600080fd5b506107c7611972565b6040516107d49190613940565b60405180910390f35b3480156107e957600080fd5b506107f2611978565b6040516107ff9190613940565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612e84565b61197e565b60405161083c91906136a3565b60405180910390f35b34801561085157600080fd5b5061086c600480360381019061086791906130ce565b61199e565b005b34801561087a57600080fd5b5061089560048036038101906108909190612eb1565b611a34565b6040516108a291906136a3565b60405180910390f35b3480156108b757600080fd5b506108d260048036038101906108cd9190612e84565b611ac8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610947575061094682611bd8565b5b9050919050565b610956611cba565b73ffffffffffffffffffffffffffffffffffffffff16610974611583565b73ffffffffffffffffffffffffffffffffffffffff16146109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190613880565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6060600080546109f690613c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2290613c49565b8015610a6f5780601f10610a4457610100808354040283529160200191610a6f565b820191906000526020600020905b815481529060010190602001808311610a5257829003601f168201915b5050505050905090565b6000610a8482611cc2565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613860565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b098261127d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906138e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b99611cba565b73ffffffffffffffffffffffffffffffffffffffff161480610bc85750610bc781610bc2611cba565b611a34565b5b610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906137c0565b60405180910390fd5b610c118383611d2e565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c40610c3a611cba565b82611de7565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690613900565b60405180910390fd5b610c8a838383611ec5565b505050565b6000610c9a836113bd565b8210610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd2906136e0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d5c611cba565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611583565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790613880565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610df690613605565b60006040518083038185875af1925050503d8060008114610e33576040519150601f19603f3d011682016040523d82523d6000602084013e610e38565b606091505b5050905080610e4657600080fd5b50565b6000610e53610c1c565b9050601160009054906101000a900460ff1615610e6f57600080fd5b60008211610e7c57600080fd5b600f54821115610e8b57600080fd5b600e548282610e9a9190613a7e565b1115610ea557600080fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613820565b60405180910390fd5b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7a9190613a7e565b92505081905550610f89611583565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fd65781600d54610fc99190613b05565b341015610fd557600080fd5b5b60005b8281101561100957610ff6848284610ff19190613a7e565b612121565b808061100190613cac565b915050610fd9565b50505050565b61102a838383604051806020016040528060008152506117d8565b505050565b6060600061103c836113bd565b905060008167ffffffffffffffff81111561105a57611059613e11565b5b6040519080825280602002602001820160405280156110885781602001602082028036833780820191505090505b50905060005b828110156110d2576110a08582610c8f565b8282815181106110b3576110b2613de2565b5b60200260200101818152505080806110ca90613cac565b91505061108e565b508092505050919050565b6110e5611cba565b73ffffffffffffffffffffffffffffffffffffffff16611103611583565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613880565b60405180910390fd5b80600d8190555050565b600061116d610c1c565b82106111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613920565b60405180910390fd5b600882815481106111c2576111c1613de2565b5b90600052602060002001549050919050565b6111dc611cba565b73ffffffffffffffffffffffffffffffffffffffff166111fa611583565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613880565b60405180910390fd5b80600b9080519060200190611266929190612c98565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90613800565b60405180910390fd5b80915050919050565b600b805461133c90613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461136890613c49565b80156113b55780601f1061138a576101008083540402835291602001916113b5565b820191906000526020600020905b81548152906001019060200180831161139857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611425906137e0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61147d611cba565b73ffffffffffffffffffffffffffffffffffffffff1661149b611583565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890613880565b60405180910390fd5b6114fb600061213f565b565b611505611cba565b73ffffffffffffffffffffffffffffffffffffffff16611523611583565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090613880565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115bc90613c49565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890613c49565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b5050505050905090565b611647611cba565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613780565b60405180910390fd5b80600560006116c2611cba565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176f611cba565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b491906136a3565b60405180910390a35050565b60146020528060005260406000206000915090505481565b6117e96117e3611cba565b83611de7565b611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90613900565b60405180910390fd5b61183484848484612205565b50505050565b600c805461184790613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461187390613c49565b80156118c05780601f10611895576101008083540402835291602001916118c0565b820191906000526020600020905b8154815290600101906020018083116118a357829003601f168201915b505050505081565b60606118d382611cc2565b611912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611909906138c0565b60405180910390fd5b600061191c612261565b9050600081511161193c576040518060200160405280600081525061196a565b80611946846122f3565b600c60405160200161195a939291906135d4565b6040516020818303038152906040525b915050919050565b600e5481565b60105481565b60126020528060005260406000206000915054906101000a900460ff1681565b6119a6611cba565b73ffffffffffffffffffffffffffffffffffffffff166119c4611583565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613880565b60405180910390fd5b80600c9080519060200190611a30929190612c98565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad0611cba565b73ffffffffffffffffffffffffffffffffffffffff16611aee611583565b73ffffffffffffffffffffffffffffffffffffffff1614611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90613880565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613720565b60405180910390fd5b611bbd8161213f565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ca357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cb35750611cb282612454565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611da18361127d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611df282611cc2565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906137a0565b60405180910390fd5b6000611e3c8361127d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eab57508373ffffffffffffffffffffffffffffffffffffffff16611e9384610a79565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ebc5750611ebb8185611a34565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ee58261127d565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f32906138a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613760565b60405180910390fd5b611fb68383836124be565b611fc1600082611d2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120119190613b5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120689190613a7e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213b8282604051806020016040528060008152506125d2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612210848484611ec5565b61221c8484848461262d565b61225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613700565b60405180910390fd5b50505050565b6060600b805461227090613c49565b80601f016020809104026020016040519081016040528092919081815260200182805461229c90613c49565b80156122e95780601f106122be576101008083540402835291602001916122e9565b820191906000526020600020905b8154815290600101906020018083116122cc57829003601f168201915b5050505050905090565b6060600082141561233b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061244f565b600082905060005b6000821461236d57808061235690613cac565b915050600a826123669190613ad4565b9150612343565b60008167ffffffffffffffff81111561238957612388613e11565b5b6040519080825280601f01601f1916602001820160405280156123bb5781602001600182028036833780820191505090505b5090505b60008514612448576001826123d49190613b5f565b9150600a856123e39190613cf5565b60306123ef9190613a7e565b60f81b81838151811061240557612404613de2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124419190613ad4565b94506123bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124c9838383611bd3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561250c57612507816127c4565b61254b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461254a57612549838261280d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258e576125898161297a565b6125cd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146125cc576125cb8282612a4b565b5b5b505050565b6125dc8383612aca565b6125e9600084848461262d565b612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90613700565b60405180910390fd5b505050565b600061264e8473ffffffffffffffffffffffffffffffffffffffff16611bc0565b156127b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612677611cba565b8786866040518563ffffffff1660e01b81526004016126999493929190613635565b602060405180830381600087803b1580156126b357600080fd5b505af19250505080156126e457506040513d601f19601f820116820180604052508101906126e191906130a1565b60015b612767573d8060008114612714576040519150601f19603f3d011682016040523d82523d6000602084013e612719565b606091505b5060008151141561275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613700565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127bc565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161281a846113bd565b6128249190613b5f565b9050600060076000848152602001908152602001600020549050818114612909576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061298e9190613b5f565b90506000600960008481526020019081526020016000205490506000600883815481106129be576129bd613de2565b5b9060005260206000200154905080600883815481106129e0576129df613de2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612a2f57612a2e613db3565b5b6001900381819060005260206000200160009055905550505050565b6000612a56836113bd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3190613840565b60405180910390fd5b612b4381611cc2565b15612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613740565b60405180910390fd5b612b8f600083836124be565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bdf9190613a7e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ca490613c49565b90600052602060002090601f016020900481019282612cc65760008555612d0d565b82601f10612cdf57805160ff1916838001178555612d0d565b82800160010185558215612d0d579182015b82811115612d0c578251825591602001919060010190612cf1565b5b509050612d1a9190612d1e565b5090565b5b80821115612d37576000816000905550600101612d1f565b5090565b6000612d4e612d4984613980565b61395b565b905082815260208101848484011115612d6a57612d69613e45565b5b612d75848285613c07565b509392505050565b6000612d90612d8b846139b1565b61395b565b905082815260208101848484011115612dac57612dab613e45565b5b612db7848285613c07565b509392505050565b600081359050612dce81614387565b92915050565b600081359050612de38161439e565b92915050565b600081359050612df8816143b5565b92915050565b600081519050612e0d816143b5565b92915050565b600082601f830112612e2857612e27613e40565b5b8135612e38848260208601612d3b565b91505092915050565b600082601f830112612e5657612e55613e40565b5b8135612e66848260208601612d7d565b91505092915050565b600081359050612e7e816143cc565b92915050565b600060208284031215612e9a57612e99613e4f565b5b6000612ea884828501612dbf565b91505092915050565b60008060408385031215612ec857612ec7613e4f565b5b6000612ed685828601612dbf565b9250506020612ee785828601612dbf565b9150509250929050565b600080600060608486031215612f0a57612f09613e4f565b5b6000612f1886828701612dbf565b9350506020612f2986828701612dbf565b9250506040612f3a86828701612e6f565b9150509250925092565b60008060008060808587031215612f5e57612f5d613e4f565b5b6000612f6c87828801612dbf565b9450506020612f7d87828801612dbf565b9350506040612f8e87828801612e6f565b925050606085013567ffffffffffffffff811115612faf57612fae613e4a565b5b612fbb87828801612e13565b91505092959194509250565b60008060408385031215612fde57612fdd613e4f565b5b6000612fec85828601612dbf565b9250506020612ffd85828601612dd4565b9150509250929050565b6000806040838503121561301e5761301d613e4f565b5b600061302c85828601612dbf565b925050602061303d85828601612e6f565b9150509250929050565b60006020828403121561305d5761305c613e4f565b5b600061306b84828501612dd4565b91505092915050565b60006020828403121561308a57613089613e4f565b5b600061309884828501612de9565b91505092915050565b6000602082840312156130b7576130b6613e4f565b5b60006130c584828501612dfe565b91505092915050565b6000602082840312156130e4576130e3613e4f565b5b600082013567ffffffffffffffff81111561310257613101613e4a565b5b61310e84828501612e41565b91505092915050565b60006020828403121561312d5761312c613e4f565b5b600061313b84828501612e6f565b91505092915050565b600061315083836135b6565b60208301905092915050565b61316581613b93565b82525050565b600061317682613a07565b6131808185613a35565b935061318b836139e2565b8060005b838110156131bc5781516131a38882613144565b97506131ae83613a28565b92505060018101905061318f565b5085935050505092915050565b6131d281613ba5565b82525050565b60006131e382613a12565b6131ed8185613a46565b93506131fd818560208601613c16565b61320681613e54565b840191505092915050565b600061321c82613a1d565b6132268185613a62565b9350613236818560208601613c16565b61323f81613e54565b840191505092915050565b600061325582613a1d565b61325f8185613a73565b935061326f818560208601613c16565b80840191505092915050565b6000815461328881613c49565b6132928186613a73565b945060018216600081146132ad57600181146132be576132f1565b60ff198316865281860193506132f1565b6132c7856139f2565b60005b838110156132e9578154818901526001820191506020810190506132ca565b838801955050505b50505092915050565b6000613307602b83613a62565b915061331282613e65565b604082019050919050565b600061332a603283613a62565b915061333582613eb4565b604082019050919050565b600061334d602683613a62565b915061335882613f03565b604082019050919050565b6000613370601c83613a62565b915061337b82613f52565b602082019050919050565b6000613393602483613a62565b915061339e82613f7b565b604082019050919050565b60006133b6601983613a62565b91506133c182613fca565b602082019050919050565b60006133d9602c83613a62565b91506133e482613ff3565b604082019050919050565b60006133fc603883613a62565b915061340782614042565b604082019050919050565b600061341f602a83613a62565b915061342a82614091565b604082019050919050565b6000613442602983613a62565b915061344d826140e0565b604082019050919050565b6000613465601683613a62565b91506134708261412f565b602082019050919050565b6000613488602083613a62565b915061349382614158565b602082019050919050565b60006134ab602c83613a62565b91506134b682614181565b604082019050919050565b60006134ce602083613a62565b91506134d9826141d0565b602082019050919050565b60006134f1602983613a62565b91506134fc826141f9565b604082019050919050565b6000613514602f83613a62565b915061351f82614248565b604082019050919050565b6000613537602183613a62565b915061354282614297565b604082019050919050565b600061355a600083613a57565b9150613565826142e6565b600082019050919050565b600061357d603183613a62565b9150613588826142e9565b604082019050919050565b60006135a0602c83613a62565b91506135ab82614338565b604082019050919050565b6135bf81613bfd565b82525050565b6135ce81613bfd565b82525050565b60006135e0828661324a565b91506135ec828561324a565b91506135f8828461327b565b9150819050949350505050565b60006136108261354d565b9150819050919050565b600060208201905061362f600083018461315c565b92915050565b600060808201905061364a600083018761315c565b613657602083018661315c565b61366460408301856135c5565b818103606083015261367681846131d8565b905095945050505050565b6000602082019050818103600083015261369b818461316b565b905092915050565b60006020820190506136b860008301846131c9565b92915050565b600060208201905081810360008301526136d88184613211565b905092915050565b600060208201905081810360008301526136f9816132fa565b9050919050565b600060208201905081810360008301526137198161331d565b9050919050565b6000602082019050818103600083015261373981613340565b9050919050565b6000602082019050818103600083015261375981613363565b9050919050565b6000602082019050818103600083015261377981613386565b9050919050565b60006020820190508181036000830152613799816133a9565b9050919050565b600060208201905081810360008301526137b9816133cc565b9050919050565b600060208201905081810360008301526137d9816133ef565b9050919050565b600060208201905081810360008301526137f981613412565b9050919050565b6000602082019050818103600083015261381981613435565b9050919050565b6000602082019050818103600083015261383981613458565b9050919050565b600060208201905081810360008301526138598161347b565b9050919050565b600060208201905081810360008301526138798161349e565b9050919050565b60006020820190508181036000830152613899816134c1565b9050919050565b600060208201905081810360008301526138b9816134e4565b9050919050565b600060208201905081810360008301526138d981613507565b9050919050565b600060208201905081810360008301526138f98161352a565b9050919050565b6000602082019050818103600083015261391981613570565b9050919050565b6000602082019050818103600083015261393981613593565b9050919050565b600060208201905061395560008301846135c5565b92915050565b6000613965613976565b90506139718282613c7b565b919050565b6000604051905090565b600067ffffffffffffffff82111561399b5761399a613e11565b5b6139a482613e54565b9050602081019050919050565b600067ffffffffffffffff8211156139cc576139cb613e11565b5b6139d582613e54565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a8982613bfd565b9150613a9483613bfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ac957613ac8613d26565b5b828201905092915050565b6000613adf82613bfd565b9150613aea83613bfd565b925082613afa57613af9613d55565b5b828204905092915050565b6000613b1082613bfd565b9150613b1b83613bfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b5457613b53613d26565b5b828202905092915050565b6000613b6a82613bfd565b9150613b7583613bfd565b925082821015613b8857613b87613d26565b5b828203905092915050565b6000613b9e82613bdd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c34578082015181840152602081019050613c19565b83811115613c43576000848401525b50505050565b60006002820490506001821680613c6157607f821691505b60208210811415613c7557613c74613d84565b5b50919050565b613c8482613e54565b810181811067ffffffffffffffff82111715613ca357613ca2613e11565b5b80604052505050565b6000613cb782613bfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cea57613ce9613d26565b5b600182019050919050565b6000613d0082613bfd565b9150613d0b83613bfd565b925082613d1b57613d1a613d55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f65786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61439081613b93565b811461439b57600080fd5b50565b6143a781613ba5565b81146143b257600080fd5b50565b6143be81613bb1565b81146143c957600080fd5b50565b6143d581613bfd565b81146143e057600080fd5b5056fea2646970667358221220f4d3453265d9052ec1f6df326ecd9bba39ea99df81a2efe8efeccf57ef95d63064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a43727970746f536f7973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534f590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f596f56796264656e586e4634755a633464613546564d475059344d732d56586e65416c4d427147794533412f
-----Decoded View---------------
Arg [0] : _name (string): CryptoSoys
Arg [1] : _symbol (string): SOY
Arg [2] : _initBaseURI (string): https://arweave.net/YoVybdenXnF4uZc4da5FVMGPY4Ms-VXneAlMBqGyE3A/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 43727970746f536f797300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 534f590000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [8] : 68747470733a2f2f617277656176652e6e65742f596f56796264656e586e4634
Arg [9] : 755a633464613546564d475059344d732d56586e65416c4d427147794533412f
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.