Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
7,777 KEDU
Holders
1,991
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KEDULoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KEDU
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
import './ERC721Enumerable.sol'; import './Ownable.sol'; import './interfaces/IERC721.sol'; import './interfaces/IERC20.sol'; pragma solidity ^0.8.6; contract KEDU is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIds; // Mapping tracks each MultiVisa token's mints used, each MultiVisa token entitles holder to mint 3 KEDU, through the mintWithPass method mapping(uint256 => uint256) public mintAmtUsed; // 100 = 100% uint256 ownerShare = 54; uint256 share1 = 10; uint256 share2 = 36; uint256 public itemPrice; uint256 public _reserved = 34; // for giveaway uint256 public constant MULTIVISA_TOTAL_SUPPLY = 400; uint256 public constant MINT_PER_MULTIVISA = 3; uint256 public MINT_LIMIT = 10; // Max mint allowed per transaction bool public isActive = false; // Access modifier for mint function bool public isEarlyAccess = false; // Access modifier for mintWithPass function bool public mintFinalized = false; // Ends all minting when set to true, cannot undo string public baseURI; address public multivisa; address private share1Address = 0xFF129e3d95C6Ad2940f3A468d46d9aE25BB3bFe0; address private share2Address = 0x021A440Eb6C24df41591D1C79875d8Cb66F18d57; constructor (address _multivisa) ERC721("Keplers Civil Society", "KEDU"){ baseURI = "https://gateway.pinata.cloud/ipfs/QmS2ZABaYmAjSmDgb6yyGnvVPdxQdYUHwAx71JRqny141p/"; itemPrice = 40000000000000000; // 0.04 ETH multivisa = _multivisa; transferOwnership(address(0x5c8FC210f2ccEC69e0a78A0Ce675fcDd39BF6ba8)); } // Public Mint function mint(uint _numMints) public payable { require(isActive, "Keplers Civil Society Sale Has Not Started"); require(!mintFinalized, "Minting finalized."); require(_tokenIds.current() + _numMints <= 7777 - _reserved, "Minting Maxed Out"); require(msg.value >= itemPrice * _numMints, "Insufficient ETH sent for Payment"); require(_numMints <= MINT_LIMIT, "Specified Amount Over Max Mints Per Transaction Limit"); require(_numMints > 0, "Youre Welcome"); for(uint i = 0; i < _numMints; i++) { uint256 newItemId = _tokenIds.current(); _safeMint(msg.sender, newItemId); _tokenIds.increment(); } } // Early Mint For Multivisa Holders function mintWithPass(uint _tokenID, uint _numMints) public payable { require(isEarlyAccess, "Keplers Civil Society Early Access Sale Has Not Started"); require(!mintFinalized, "Minting finalized."); require(IERC721(multivisa).ownerOf(_tokenID) == msg.sender, "You do not own the Multivisa with specified ID"); require(mintAmtUsed[_tokenID] + _numMints <= MINT_PER_MULTIVISA, "Multivisa of Specified Token ID Cannot Mint Requested Amount"); require(msg.value >= itemPrice * _numMints, "Insufficient ETH sent for Payment"); require(_numMints > 0, "Youre Welcome"); mintAmtUsed[_tokenID] += _numMints; for(uint i = 0; i < _numMints; i++) { uint256 newItemId = _tokenIds.current(); _safeMint(msg.sender, newItemId); _tokenIds.increment(); } } // Owner can mint up to 34 Kedu for giveaways, sends _amount of kedu to _to address, onlyOwner Access function giveAway(address _to, uint256 _amount) public onlyOwner { require(_amount <= _reserved, "Requested Giveaway Exceeds Giveaway Reserves"); require(_amount > 0, "Cant give away nothing"); _reserved -= _amount; for(uint256 i; i < _amount; i++) { uint256 newItemId = _tokenIds.current(); _safeMint(_to, newItemId); _tokenIds.increment(); } } // Settors, onlyOwner access // Access modifier for mint function function setActive(bool _val) public onlyOwner { isActive = _val; } // Access modifier for mintWithPass function setEarlyAccess(bool _val) public onlyOwner { isEarlyAccess = _val; } // Set Max Mint Per Transaction Limit function setMintLimt(uint256 _limit) public onlyOwner { require(!isActive, "Cannot Change Mint Limit While Sale is Active"); MINT_LIMIT = _limit; } // Finalizes mint function endMint() public onlyOwner { mintFinalized = true; } function setBaseURI(string memory _uri) public onlyOwner { baseURI = _uri; } function setItemPrice(uint256 _price) public onlyOwner { require(!isActive, "Cannot Change Price While Sale is Active"); itemPrice = _price; } // Gettors, view functions function _baseURI() internal view override returns (string memory){ return baseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")) : ""; } // Returns amount Multivisa with ID _tokenID has minted, starts at 0 and max is 3 function getMintedCountForMultiVisaId(uint _tokenID) public view returns (uint256) { require(_tokenID < MULTIVISA_TOTAL_SUPPLY, "Invalid Multivisa Token ID"); return mintAmtUsed[_tokenID]; } function getItemPrice() public view returns (uint256){ return itemPrice; } // Returns array of tokenID's that input address _owner owns function walletOfOwner(address _owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } // Utility Functions, onlyOwner access function withdrawEth() public onlyOwner { uint256 total = address(this).balance; uint256 ownerWithdraw = total*ownerShare/100; uint256 share1Withdraw = total*share1/100; uint256 share2Withdraw = total*share2/100; require(payable(owner()).send(ownerWithdraw)); require(payable(share1Address).send(share1Withdraw)); require(payable(share2Address).send(share2Withdraw)); } // Rescue any ERC-20 tokens that are sent to contract mistakenly function withdrawToken(IERC20 _token, uint256 _amount) public onlyOwner { _token.transferFrom(address(this), owner(), _amount); } }
import './interfaces/IERC721Enumerable.sol'; import './ERC721.sol'; // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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(); } }
import './Context.sol'; pragma solidity ^0.8.0; /** * @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 "./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; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
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); }
import './Context.sol'; import './ERC165.sol'; import './libraries/Address.sol'; import './interfaces/IERC721.sol'; import './interfaces/IERC721Metadata.sol'; import './interfaces/IERC721Receiver.sol'; // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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(to).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 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); }
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; } }
import './interfaces/IERC165.sol'; // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } }
import './Counters.sol'; import './Strings.sol'; // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } }
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); }
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); }
/** *Submitted for verification at Etherscan.io on 2021-07-19 */ // File: @openzeppelin/contracts/utils/Counters.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_multivisa","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_MULTIVISA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MULTIVISA_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getItemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getMintedCountForMultiVisaId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isEarlyAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintAmtUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"},{"internalType":"uint256","name":"_numMints","type":"uint256"}],"name":"mintWithPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"multivisa","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"bool","name":"_val","type":"bool"}],"name":"setActive","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setEarlyAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setItemPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMintLimt","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":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526036600d55600a600e556024600f556022601155600a6012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff02191690831515021790555073ff129e3d95c6ad2940f3a468d46d9ae25bb3bfe0601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073021a440eb6c24df41591d1c79875d8cb66f18d57601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012557600080fd5b5060405162005d4a38038062005d4a83398181016040528101906200014b91906200058d565b6040518060400160405280601581526020017f4b65706c65727320436976696c20536f636965747900000000000000000000008152506040518060400160405280600481526020017f4b454455000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001cf929190620004c6565b508060019080519060200190620001e8929190620004c6565b5050506200020b620001ff620002b860201b60201c565b620002c060201b60201c565b60405180608001604052806051815260200162005cf960519139601490805190602001906200023c929190620004c6565b50668e1bc9bf04000060108190555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002b1735c8fc210f2ccec69e0a78a0ce675fcdd39bf6ba86200038660201b60201c565b5062000792565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000396620002b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003bc6200049c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000415576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040c906200062f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000488576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047f906200060d565b60405180910390fd5b6200049981620002c060201b60201c565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004d49062000696565b90600052602060002090601f016020900481019282620004f8576000855562000544565b82601f106200051357805160ff191683800117855562000544565b8280016001018555821562000544579182015b828111156200054357825182559160200191906001019062000526565b5b50905062000553919062000557565b5090565b5b808211156200057257600081600090555060010162000558565b5090565b600081519050620005878162000778565b92915050565b600060208284031215620005a657620005a5620006fb565b5b6000620005b68482850162000576565b91505092915050565b6000620005ce60268362000651565b9150620005db8262000700565b604082019050919050565b6000620005f560208362000651565b915062000602826200074f565b602082019050919050565b600060208201905081810360008301526200062881620005bf565b9050919050565b600060208201905081810360008301526200064a81620005e6565b9050919050565b600082825260208201905092915050565b60006200066f8262000676565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006af57607f821691505b60208210811415620006c657620006c5620006cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007838162000662565b81146200078f57600080fd5b50565b61555780620007a26000396000f3fe6080604052600436106102675760003560e01c80636aaa571d11610144578063a22cb465116100b6578063ca8001441161007a578063ca80014414610900578063dac6db1c14610929578063daff163814610954578063dbbaf4e314610991578063e985e9c5146109bc578063f2fde38b146109f957610267565b8063a22cb4651461081f578063acec338a14610848578063b88d4fde14610871578063c57e79751461089a578063c87b56dd146108c357610267565b80638da5cb5b116101085780638da5cb5b1461074457806395d89b411461076f57806398ca77951461079a5780639e281a98146107c3578063a0712d68146107ec578063a0ef91df1461080857610267565b80636aaa571d1461066f5780636c0360eb1461069a5780636ee10b03146106c557806370a08231146106f0578063715018a61461072d57610267565b80632a4baeb5116101dd5780634f6ccce7116101a15780634f6ccce71461053b578063513c4d801461057857806355f804b3146105b55780635c84a987146105de5780635f0de011146106075780636352211e1461063257610267565b80632a4baeb5146104425780632f745c591461046d57806340259769146104aa57806342842e0e146104d5578063438b6300146104fe57610267565b8063084f9e0e1161022f578063084f9e0e14610353578063095ea7b31461036f57806318160ddd146103985780632083ad82146103c357806322f3e2d4146103ee57806323b872dd1461041957610267565b8063017043a51461026c57806301ffc9a71461028357806302775240146102c057806306fdde03146102eb578063081812fc14610316575b600080fd5b34801561027857600080fd5b50610281610a22565b005b34801561028f57600080fd5b506102aa60048036038101906102a59190613a90565b610abb565b6040516102b791906142a7565b60405180910390f35b3480156102cc57600080fd5b506102d5610b35565b6040516102e291906146e4565b60405180910390f35b3480156102f757600080fd5b50610300610b3b565b60405161030d91906142c2565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613b73565b610bcd565b60405161034a91906141e7565b60405180910390f35b61036d60048036038101906103689190613ba0565b610c52565b005b34801561037b57600080fd5b50610396600480360381019061039191906139f6565b610f6e565b005b3480156103a457600080fd5b506103ad611086565b6040516103ba91906146e4565b60405180910390f35b3480156103cf57600080fd5b506103d8611093565b6040516103e591906146e4565b60405180910390f35b3480156103fa57600080fd5b5061040361109d565b60405161041091906142a7565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906138e0565b6110b0565b005b34801561044e57600080fd5b50610457611110565b60405161046491906141e7565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906139f6565b611136565b6040516104a191906146e4565b60405180910390f35b3480156104b657600080fd5b506104bf6111db565b6040516104cc91906142a7565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906138e0565b6111ee565b005b34801561050a57600080fd5b5061052560048036038101906105209190613846565b61120e565b6040516105329190614285565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613b73565b6112bc565b60405161056f91906146e4565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613b73565b61132d565b6040516105ac91906146e4565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613b2a565b61138e565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613b73565b611424565b005b34801561061357600080fd5b5061061c6114fa565b60405161062991906146e4565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613b73565b611500565b60405161066691906141e7565b60405180910390f35b34801561067b57600080fd5b506106846115b2565b60405161069191906146e4565b60405180910390f35b3480156106a657600080fd5b506106af6115b8565b6040516106bc91906142c2565b60405180910390f35b3480156106d157600080fd5b506106da611646565b6040516106e791906142a7565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613846565b611659565b60405161072491906146e4565b60405180910390f35b34801561073957600080fd5b50610742611711565b005b34801561075057600080fd5b50610759611799565b60405161076691906141e7565b60405180910390f35b34801561077b57600080fd5b506107846117c3565b60405161079191906142c2565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613b73565b611855565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613aea565b61192b565b005b61080660048036038101906108019190613b73565b611a42565b005b34801561081457600080fd5b5061081d611c64565b005b34801561082b57600080fd5b50610846600480360381019061084191906139b6565b611e4a565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613a36565b611fcb565b005b34801561087d57600080fd5b5061089860048036038101906108939190613933565b612064565b005b3480156108a657600080fd5b506108c160048036038101906108bc9190613a36565b6120c6565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190613b73565b61215f565b6040516108f791906142c2565b60405180910390f35b34801561090c57600080fd5b50610927600480360381019061092291906139f6565b61220d565b005b34801561093557600080fd5b5061093e612370565b60405161094b91906146e4565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190613b73565b612376565b60405161098891906146e4565b60405180910390f35b34801561099d57600080fd5b506109a661238e565b6040516109b391906146e4565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de91906138a0565b612393565b6040516109f091906142a7565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b9190613846565b612427565b005b610a2a61251f565b73ffffffffffffffffffffffffffffffffffffffff16610a48611799565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590614504565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2e5750610b2d82612527565b5b9050919050565b60125481565b606060008054610b4a906149df565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906149df565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b6000610bd882612609565b610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906144e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601360019054906101000a900460ff16610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906145c4565b60405180910390fd5b601360029054906101000a900460ff1615610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906143a4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610d6391906146e4565b60206040518083038186803b158015610d7b57600080fd5b505afa158015610d8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db39190613873565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614404565b60405180910390fd5b600381600c600085815260200190815260200160002054610e2a9190614802565b1115610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290614684565b60405180910390fd5b80601054610e799190614889565b341015610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906145a4565b60405180910390fd5b60008111610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614644565b60405180910390fd5b80600c60008481526020019081526020016000206000828254610f219190614802565b9250508190555060005b81811015610f69576000610f3f600b612675565b9050610f4b3382612683565b610f55600b6126a1565b508080610f6190614a42565b915050610f2b565b505050565b6000610f7982611500565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906145e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661100961251f565b73ffffffffffffffffffffffffffffffffffffffff16148061103857506110378161103261251f565b612393565b5b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90614444565b60405180910390fd5b61108183836126b7565b505050565b6000600880549050905090565b6000601054905090565b601360009054906101000a900460ff1681565b6110c16110bb61251f565b82612770565b611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614624565b60405180910390fd5b61110b83838361284e565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061114183611659565b8210611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614304565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360029054906101000a900460ff1681565b61120983838360405180602001604052806000815250612064565b505050565b6060600061121b83611659565b905060008167ffffffffffffffff81111561123957611238614ba7565b5b6040519080825280602002602001820160405280156112675781602001602082028036833780820191505090505b50905060005b828110156112b15761127f8582611136565b82828151811061129257611291614b78565b5b60200260200101818152505080806112a990614a42565b91505061126d565b508092505050919050565b60006112c6611086565b8210611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614664565b60405180910390fd5b6008828154811061131b5761131a614b78565b5b90600052602060002001549050919050565b60006101908210611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906146c4565b60405180910390fd5b600c6000838152602001908152602001600020549050919050565b61139661251f565b73ffffffffffffffffffffffffffffffffffffffff166113b4611799565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190614504565b60405180910390fd5b806014908051906020019061142092919061361b565b5050565b61142c61251f565b73ffffffffffffffffffffffffffffffffffffffff1661144a611799565b73ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790614504565b60405180910390fd5b601360009054906101000a900460ff16156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614524565b60405180910390fd5b8060128190555050565b61019081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614484565b60405180910390fd5b80915050919050565b60115481565b601480546115c5906149df565b80601f01602080910402602001604051908101604052809291908181526020018280546115f1906149df565b801561163e5780601f106116135761010080835404028352916020019161163e565b820191906000526020600020905b81548152906001019060200180831161162157829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614464565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61171961251f565b73ffffffffffffffffffffffffffffffffffffffff16611737611799565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490614504565b60405180910390fd5b6117976000612aaa565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117d2906149df565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe906149df565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050905090565b61185d61251f565b73ffffffffffffffffffffffffffffffffffffffff1661187b611799565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614504565b60405180910390fd5b601360009054906101000a900460ff1615611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890614544565b60405180910390fd5b8060108190555050565b61193361251f565b73ffffffffffffffffffffffffffffffffffffffff16611951611799565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614504565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd306119cc611799565b846040518463ffffffff1660e01b81526004016119eb93929190614202565b602060405180830381600087803b158015611a0557600080fd5b505af1158015611a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3d9190613a63565b505050565b601360009054906101000a900460ff16611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906146a4565b60405180910390fd5b601360029054906101000a900460ff1615611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906143a4565b60405180910390fd5b601154611e61611af191906148e3565b81611afc600b612675565b611b069190614802565b1115611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614384565b60405180910390fd5b80601054611b559190614889565b341015611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906145a4565b60405180910390fd5b601254811115611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd3906144a4565b60405180910390fd5b60008111611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690614644565b60405180910390fd5b60005b81811015611c60576000611c36600b612675565b9050611c423382612683565b611c4c600b6126a1565b508080611c5890614a42565b915050611c22565b5050565b611c6c61251f565b73ffffffffffffffffffffffffffffffffffffffff16611c8a611799565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790614504565b60405180910390fd5b600047905060006064600d5483611cf79190614889565b611d019190614858565b905060006064600e5484611d159190614889565b611d1f9190614858565b905060006064600f5485611d339190614889565b611d3d9190614858565b9050611d47611799565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050611d8457600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611de457600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e4457600080fd5b50505050565b611e5261251f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906143e4565b60405180910390fd5b8060056000611ecd61251f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f7a61251f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fbf91906142a7565b60405180910390a35050565b611fd361251f565b73ffffffffffffffffffffffffffffffffffffffff16611ff1611799565b73ffffffffffffffffffffffffffffffffffffffff1614612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e90614504565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b61207561206f61251f565b83612770565b6120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90614624565b60405180910390fd5b6120c084848484612b70565b50505050565b6120ce61251f565b73ffffffffffffffffffffffffffffffffffffffff166120ec611799565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614504565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606061216a82612609565b6121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614584565b60405180910390fd5b6000601480546121b8906149df565b9050116121d45760405180602001604052806000815250612206565b6121dc612bcc565b6121e583612c5e565b6040516020016121f69291906141b8565b6040516020818303038152906040525b9050919050565b61221561251f565b73ffffffffffffffffffffffffffffffffffffffff16612233611799565b73ffffffffffffffffffffffffffffffffffffffff1614612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090614504565b60405180910390fd5b6011548111156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c5906142e4565b60405180910390fd5b60008111612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614604565b60405180910390fd5b806011600082825461232391906148e3565b9250508190555060005b8181101561236b576000612341600b612675565b905061234d8482612683565b612357600b6126a1565b50808061236390614a42565b91505061232d565b505050565b60105481565b600c6020528060005260406000206000915090505481565b600381565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61242f61251f565b73ffffffffffffffffffffffffffffffffffffffff1661244d611799565b73ffffffffffffffffffffffffffffffffffffffff16146124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614504565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614344565b60405180910390fd5b61251c81612aaa565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612602575061260182612dbf565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b61269d828260405180602001604052806000815250612e29565b5050565b6001816000016000828254019250508190555050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272a83611500565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277b82612609565b6127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b190614424565b60405180910390fd5b60006127c583611500565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283457508373ffffffffffffffffffffffffffffffffffffffff1661281c84610bcd565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284557506128448185612393565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286e82611500565b73ffffffffffffffffffffffffffffffffffffffff16146128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90614564565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b906143c4565b60405180910390fd5b61293f838383612e84565b61294a6000826126b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299a91906148e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f19190614802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7b84848461284e565b612b8784848484612f98565b612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614324565b60405180910390fd5b50505050565b606060148054612bdb906149df565b80601f0160208091040260200160405190810160405280929190818152602001828054612c07906149df565b8015612c545780601f10612c2957610100808354040283529160200191612c54565b820191906000526020600020905b815481529060010190602001808311612c3757829003601f168201915b5050505050905090565b60606000821415612ca6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dba565b600082905060005b60008214612cd8578080612cc190614a42565b915050600a82612cd19190614858565b9150612cae565b60008167ffffffffffffffff811115612cf457612cf3614ba7565b5b6040519080825280601f01601f191660200182016040528015612d265781602001600182028036833780820191505090505b5090505b60008514612db357600182612d3f91906148e3565b9150600a85612d4e9190614a8b565b6030612d5a9190614802565b60f81b818381518110612d7057612d6f614b78565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dac9190614858565b9450612d2a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e33838361312f565b612e406000848484612f98565b612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690614324565b60405180910390fd5b505050565b612e8f8383836132fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ed257612ecd81613302565b612f11565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f1057612f0f838261334b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f5457612f4f816134b8565b612f93565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f9257612f918282613589565b5b5b505050565b6000612fb98473ffffffffffffffffffffffffffffffffffffffff16613608565b15613122578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fe261251f565b8786866040518563ffffffff1660e01b81526004016130049493929190614239565b602060405180830381600087803b15801561301e57600080fd5b505af192505050801561304f57506040513d601f19601f8201168201806040525081019061304c9190613abd565b60015b6130d2573d806000811461307f576040519150601f19603f3d011682016040523d82523d6000602084013e613084565b606091505b506000815114156130ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c190614324565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613127565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613196906144c4565b60405180910390fd5b6131a881612609565b156131e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131df90614364565b60405180910390fd5b6131f460008383612e84565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132449190614802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161335884611659565b61336291906148e3565b9050600060076000848152602001908152602001600020549050818114613447576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134cc91906148e3565b90506000600960008481526020019081526020016000205490506000600883815481106134fc576134fb614b78565b5b90600052602060002001549050806008838154811061351e5761351d614b78565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061356d5761356c614b49565b5b6001900381819060005260206000200160009055905550505050565b600061359483611659565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613627906149df565b90600052602060002090601f0160209004810192826136495760008555613690565b82601f1061366257805160ff1916838001178555613690565b82800160010185558215613690579182015b8281111561368f578251825591602001919060010190613674565b5b50905061369d91906136a1565b5090565b5b808211156136ba5760008160009055506001016136a2565b5090565b60006136d16136cc84614724565b6146ff565b9050828152602081018484840111156136ed576136ec614bdb565b5b6136f884828561499d565b509392505050565b600061371361370e84614755565b6146ff565b90508281526020810184848401111561372f5761372e614bdb565b5b61373a84828561499d565b509392505050565b600081359050613751816154ae565b92915050565b600081519050613766816154ae565b92915050565b60008135905061377b816154c5565b92915050565b600081519050613790816154c5565b92915050565b6000813590506137a5816154dc565b92915050565b6000815190506137ba816154dc565b92915050565b600082601f8301126137d5576137d4614bd6565b5b81356137e58482602086016136be565b91505092915050565b6000813590506137fd816154f3565b92915050565b600082601f83011261381857613817614bd6565b5b8135613828848260208601613700565b91505092915050565b6000813590506138408161550a565b92915050565b60006020828403121561385c5761385b614be5565b5b600061386a84828501613742565b91505092915050565b60006020828403121561388957613888614be5565b5b600061389784828501613757565b91505092915050565b600080604083850312156138b7576138b6614be5565b5b60006138c585828601613742565b92505060206138d685828601613742565b9150509250929050565b6000806000606084860312156138f9576138f8614be5565b5b600061390786828701613742565b935050602061391886828701613742565b925050604061392986828701613831565b9150509250925092565b6000806000806080858703121561394d5761394c614be5565b5b600061395b87828801613742565b945050602061396c87828801613742565b935050604061397d87828801613831565b925050606085013567ffffffffffffffff81111561399e5761399d614be0565b5b6139aa878288016137c0565b91505092959194509250565b600080604083850312156139cd576139cc614be5565b5b60006139db85828601613742565b92505060206139ec8582860161376c565b9150509250929050565b60008060408385031215613a0d57613a0c614be5565b5b6000613a1b85828601613742565b9250506020613a2c85828601613831565b9150509250929050565b600060208284031215613a4c57613a4b614be5565b5b6000613a5a8482850161376c565b91505092915050565b600060208284031215613a7957613a78614be5565b5b6000613a8784828501613781565b91505092915050565b600060208284031215613aa657613aa5614be5565b5b6000613ab484828501613796565b91505092915050565b600060208284031215613ad357613ad2614be5565b5b6000613ae1848285016137ab565b91505092915050565b60008060408385031215613b0157613b00614be5565b5b6000613b0f858286016137ee565b9250506020613b2085828601613831565b9150509250929050565b600060208284031215613b4057613b3f614be5565b5b600082013567ffffffffffffffff811115613b5e57613b5d614be0565b5b613b6a84828501613803565b91505092915050565b600060208284031215613b8957613b88614be5565b5b6000613b9784828501613831565b91505092915050565b60008060408385031215613bb757613bb6614be5565b5b6000613bc585828601613831565b9250506020613bd685828601613831565b9150509250929050565b6000613bec838361419a565b60208301905092915050565b613c0181614917565b82525050565b6000613c1282614796565b613c1c81856147c4565b9350613c2783614786565b8060005b83811015613c58578151613c3f8882613be0565b9750613c4a836147b7565b925050600181019050613c2b565b5085935050505092915050565b613c6e81614929565b82525050565b6000613c7f826147a1565b613c8981856147d5565b9350613c998185602086016149ac565b613ca281614bea565b840191505092915050565b6000613cb8826147ac565b613cc281856147e6565b9350613cd28185602086016149ac565b613cdb81614bea565b840191505092915050565b6000613cf1826147ac565b613cfb81856147f7565b9350613d0b8185602086016149ac565b80840191505092915050565b6000613d24602c836147e6565b9150613d2f82614bfb565b604082019050919050565b6000613d47602b836147e6565b9150613d5282614c4a565b604082019050919050565b6000613d6a6032836147e6565b9150613d7582614c99565b604082019050919050565b6000613d8d6026836147e6565b9150613d9882614ce8565b604082019050919050565b6000613db0601c836147e6565b9150613dbb82614d37565b602082019050919050565b6000613dd36011836147e6565b9150613dde82614d60565b602082019050919050565b6000613df66012836147e6565b9150613e0182614d89565b602082019050919050565b6000613e196024836147e6565b9150613e2482614db2565b604082019050919050565b6000613e3c6019836147e6565b9150613e4782614e01565b602082019050919050565b6000613e5f602e836147e6565b9150613e6a82614e2a565b604082019050919050565b6000613e82602c836147e6565b9150613e8d82614e79565b604082019050919050565b6000613ea56038836147e6565b9150613eb082614ec8565b604082019050919050565b6000613ec8602a836147e6565b9150613ed382614f17565b604082019050919050565b6000613eeb6029836147e6565b9150613ef682614f66565b604082019050919050565b6000613f0e6035836147e6565b9150613f1982614fb5565b604082019050919050565b6000613f316020836147e6565b9150613f3c82615004565b602082019050919050565b6000613f54602c836147e6565b9150613f5f8261502d565b604082019050919050565b6000613f776005836147f7565b9150613f828261507c565b600582019050919050565b6000613f9a6020836147e6565b9150613fa5826150a5565b602082019050919050565b6000613fbd602d836147e6565b9150613fc8826150ce565b604082019050919050565b6000613fe06028836147e6565b9150613feb8261511d565b604082019050919050565b60006140036029836147e6565b915061400e8261516c565b604082019050919050565b6000614026602f836147e6565b9150614031826151bb565b604082019050919050565b60006140496021836147e6565b91506140548261520a565b604082019050919050565b600061406c6037836147e6565b915061407782615259565b604082019050919050565b600061408f6021836147e6565b915061409a826152a8565b604082019050919050565b60006140b26016836147e6565b91506140bd826152f7565b602082019050919050565b60006140d56031836147e6565b91506140e082615320565b604082019050919050565b60006140f8600d836147e6565b91506141038261536f565b602082019050919050565b600061411b602c836147e6565b915061412682615398565b604082019050919050565b600061413e603c836147e6565b9150614149826153e7565b604082019050919050565b6000614161602a836147e6565b915061416c82615436565b604082019050919050565b6000614184601a836147e6565b915061418f82615485565b602082019050919050565b6141a381614993565b82525050565b6141b281614993565b82525050565b60006141c48285613ce6565b91506141d08284613ce6565b91506141db82613f6a565b91508190509392505050565b60006020820190506141fc6000830184613bf8565b92915050565b60006060820190506142176000830186613bf8565b6142246020830185613bf8565b61423160408301846141a9565b949350505050565b600060808201905061424e6000830187613bf8565b61425b6020830186613bf8565b61426860408301856141a9565b818103606083015261427a8184613c74565b905095945050505050565b6000602082019050818103600083015261429f8184613c07565b905092915050565b60006020820190506142bc6000830184613c65565b92915050565b600060208201905081810360008301526142dc8184613cad565b905092915050565b600060208201905081810360008301526142fd81613d17565b9050919050565b6000602082019050818103600083015261431d81613d3a565b9050919050565b6000602082019050818103600083015261433d81613d5d565b9050919050565b6000602082019050818103600083015261435d81613d80565b9050919050565b6000602082019050818103600083015261437d81613da3565b9050919050565b6000602082019050818103600083015261439d81613dc6565b9050919050565b600060208201905081810360008301526143bd81613de9565b9050919050565b600060208201905081810360008301526143dd81613e0c565b9050919050565b600060208201905081810360008301526143fd81613e2f565b9050919050565b6000602082019050818103600083015261441d81613e52565b9050919050565b6000602082019050818103600083015261443d81613e75565b9050919050565b6000602082019050818103600083015261445d81613e98565b9050919050565b6000602082019050818103600083015261447d81613ebb565b9050919050565b6000602082019050818103600083015261449d81613ede565b9050919050565b600060208201905081810360008301526144bd81613f01565b9050919050565b600060208201905081810360008301526144dd81613f24565b9050919050565b600060208201905081810360008301526144fd81613f47565b9050919050565b6000602082019050818103600083015261451d81613f8d565b9050919050565b6000602082019050818103600083015261453d81613fb0565b9050919050565b6000602082019050818103600083015261455d81613fd3565b9050919050565b6000602082019050818103600083015261457d81613ff6565b9050919050565b6000602082019050818103600083015261459d81614019565b9050919050565b600060208201905081810360008301526145bd8161403c565b9050919050565b600060208201905081810360008301526145dd8161405f565b9050919050565b600060208201905081810360008301526145fd81614082565b9050919050565b6000602082019050818103600083015261461d816140a5565b9050919050565b6000602082019050818103600083015261463d816140c8565b9050919050565b6000602082019050818103600083015261465d816140eb565b9050919050565b6000602082019050818103600083015261467d8161410e565b9050919050565b6000602082019050818103600083015261469d81614131565b9050919050565b600060208201905081810360008301526146bd81614154565b9050919050565b600060208201905081810360008301526146dd81614177565b9050919050565b60006020820190506146f960008301846141a9565b92915050565b600061470961471a565b90506147158282614a11565b919050565b6000604051905090565b600067ffffffffffffffff82111561473f5761473e614ba7565b5b61474882614bea565b9050602081019050919050565b600067ffffffffffffffff8211156147705761476f614ba7565b5b61477982614bea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061480d82614993565b915061481883614993565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484d5761484c614abc565b5b828201905092915050565b600061486382614993565b915061486e83614993565b92508261487e5761487d614aeb565b5b828204905092915050565b600061489482614993565b915061489f83614993565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d8576148d7614abc565b5b828202905092915050565b60006148ee82614993565b91506148f983614993565b92508282101561490c5761490b614abc565b5b828203905092915050565b600061492282614973565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061496c82614917565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149ca5780820151818401526020810190506149af565b838111156149d9576000848401525b50505050565b600060028204905060018216806149f757607f821691505b60208210811415614a0b57614a0a614b1a565b5b50919050565b614a1a82614bea565b810181811067ffffffffffffffff82111715614a3957614a38614ba7565b5b80604052505050565b6000614a4d82614993565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a8057614a7f614abc565b5b600182019050919050565b6000614a9682614993565b9150614aa183614993565b925082614ab157614ab0614aeb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f526571756573746564204769766561776179204578636565647320476976656160008201527f7761792052657365727665730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67204d61786564204f7574000000000000000000000000000000600082015250565b7f4d696e74696e672066696e616c697a65642e0000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520646f206e6f74206f776e20746865204d756c7469766973612077697460008201527f6820737065636966696564204944000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420416d6f756e74204f766572204d6178204d696e74732060008201527f506572205472616e73616374696f6e204c696d69740000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74204368616e6765204d696e74204c696d6974205768696c65205360008201527f616c652069732041637469766500000000000000000000000000000000000000602082015250565b7f43616e6e6f74204368616e6765205072696365205768696c652053616c65206960008201527f7320416374697665000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e74204554482073656e7420666f72205061796d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4b65706c65727320436976696c20536f6369657479204561726c79204163636560008201527f73732053616c6520486173204e6f742053746172746564000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420676976652061776179206e6f7468696e6700000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7572652057656c636f6d6500000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d756c746976697361206f662053706563696669656420546f6b656e2049442060008201527f43616e6e6f74204d696e742052657175657374656420416d6f756e7400000000602082015250565b7f4b65706c65727320436976696c20536f63696574792053616c6520486173204e60008201527f6f74205374617274656400000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d756c74697669736120546f6b656e204944000000000000600082015250565b6154b781614917565b81146154c257600080fd5b50565b6154ce81614929565b81146154d957600080fd5b50565b6154e581614935565b81146154f057600080fd5b50565b6154fc81614961565b811461550757600080fd5b50565b61551381614993565b811461551e57600080fd5b5056fea264697066735822122039642da8e29c749df1be3cf50926cca2be61d8bcd9e25d69c79277786e4e7af064736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53325a414261596d416a536d446762367979476e7656506478516459554877417837314a52716e79313431702f000000000000000000000000a118c27ff48cddeb6225d20cbcad1a888f53bd28
Deployed Bytecode
0x6080604052600436106102675760003560e01c80636aaa571d11610144578063a22cb465116100b6578063ca8001441161007a578063ca80014414610900578063dac6db1c14610929578063daff163814610954578063dbbaf4e314610991578063e985e9c5146109bc578063f2fde38b146109f957610267565b8063a22cb4651461081f578063acec338a14610848578063b88d4fde14610871578063c57e79751461089a578063c87b56dd146108c357610267565b80638da5cb5b116101085780638da5cb5b1461074457806395d89b411461076f57806398ca77951461079a5780639e281a98146107c3578063a0712d68146107ec578063a0ef91df1461080857610267565b80636aaa571d1461066f5780636c0360eb1461069a5780636ee10b03146106c557806370a08231146106f0578063715018a61461072d57610267565b80632a4baeb5116101dd5780634f6ccce7116101a15780634f6ccce71461053b578063513c4d801461057857806355f804b3146105b55780635c84a987146105de5780635f0de011146106075780636352211e1461063257610267565b80632a4baeb5146104425780632f745c591461046d57806340259769146104aa57806342842e0e146104d5578063438b6300146104fe57610267565b8063084f9e0e1161022f578063084f9e0e14610353578063095ea7b31461036f57806318160ddd146103985780632083ad82146103c357806322f3e2d4146103ee57806323b872dd1461041957610267565b8063017043a51461026c57806301ffc9a71461028357806302775240146102c057806306fdde03146102eb578063081812fc14610316575b600080fd5b34801561027857600080fd5b50610281610a22565b005b34801561028f57600080fd5b506102aa60048036038101906102a59190613a90565b610abb565b6040516102b791906142a7565b60405180910390f35b3480156102cc57600080fd5b506102d5610b35565b6040516102e291906146e4565b60405180910390f35b3480156102f757600080fd5b50610300610b3b565b60405161030d91906142c2565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613b73565b610bcd565b60405161034a91906141e7565b60405180910390f35b61036d60048036038101906103689190613ba0565b610c52565b005b34801561037b57600080fd5b50610396600480360381019061039191906139f6565b610f6e565b005b3480156103a457600080fd5b506103ad611086565b6040516103ba91906146e4565b60405180910390f35b3480156103cf57600080fd5b506103d8611093565b6040516103e591906146e4565b60405180910390f35b3480156103fa57600080fd5b5061040361109d565b60405161041091906142a7565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906138e0565b6110b0565b005b34801561044e57600080fd5b50610457611110565b60405161046491906141e7565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906139f6565b611136565b6040516104a191906146e4565b60405180910390f35b3480156104b657600080fd5b506104bf6111db565b6040516104cc91906142a7565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906138e0565b6111ee565b005b34801561050a57600080fd5b5061052560048036038101906105209190613846565b61120e565b6040516105329190614285565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613b73565b6112bc565b60405161056f91906146e4565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613b73565b61132d565b6040516105ac91906146e4565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190613b2a565b61138e565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613b73565b611424565b005b34801561061357600080fd5b5061061c6114fa565b60405161062991906146e4565b60405180910390f35b34801561063e57600080fd5b5061065960048036038101906106549190613b73565b611500565b60405161066691906141e7565b60405180910390f35b34801561067b57600080fd5b506106846115b2565b60405161069191906146e4565b60405180910390f35b3480156106a657600080fd5b506106af6115b8565b6040516106bc91906142c2565b60405180910390f35b3480156106d157600080fd5b506106da611646565b6040516106e791906142a7565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613846565b611659565b60405161072491906146e4565b60405180910390f35b34801561073957600080fd5b50610742611711565b005b34801561075057600080fd5b50610759611799565b60405161076691906141e7565b60405180910390f35b34801561077b57600080fd5b506107846117c3565b60405161079191906142c2565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613b73565b611855565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613aea565b61192b565b005b61080660048036038101906108019190613b73565b611a42565b005b34801561081457600080fd5b5061081d611c64565b005b34801561082b57600080fd5b50610846600480360381019061084191906139b6565b611e4a565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613a36565b611fcb565b005b34801561087d57600080fd5b5061089860048036038101906108939190613933565b612064565b005b3480156108a657600080fd5b506108c160048036038101906108bc9190613a36565b6120c6565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190613b73565b61215f565b6040516108f791906142c2565b60405180910390f35b34801561090c57600080fd5b50610927600480360381019061092291906139f6565b61220d565b005b34801561093557600080fd5b5061093e612370565b60405161094b91906146e4565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190613b73565b612376565b60405161098891906146e4565b60405180910390f35b34801561099d57600080fd5b506109a661238e565b6040516109b391906146e4565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de91906138a0565b612393565b6040516109f091906142a7565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b9190613846565b612427565b005b610a2a61251f565b73ffffffffffffffffffffffffffffffffffffffff16610a48611799565b73ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9590614504565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2e5750610b2d82612527565b5b9050919050565b60125481565b606060008054610b4a906149df565b80601f0160208091040260200160405190810160405280929190818152602001828054610b76906149df565b8015610bc35780601f10610b9857610100808354040283529160200191610bc3565b820191906000526020600020905b815481529060010190602001808311610ba657829003601f168201915b5050505050905090565b6000610bd882612609565b610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e906144e4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601360019054906101000a900460ff16610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906145c4565b60405180910390fd5b601360029054906101000a900460ff1615610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906143a4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610d6391906146e4565b60206040518083038186803b158015610d7b57600080fd5b505afa158015610d8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db39190613873565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090614404565b60405180910390fd5b600381600c600085815260200190815260200160002054610e2a9190614802565b1115610e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6290614684565b60405180910390fd5b80601054610e799190614889565b341015610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906145a4565b60405180910390fd5b60008111610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590614644565b60405180910390fd5b80600c60008481526020019081526020016000206000828254610f219190614802565b9250508190555060005b81811015610f69576000610f3f600b612675565b9050610f4b3382612683565b610f55600b6126a1565b508080610f6190614a42565b915050610f2b565b505050565b6000610f7982611500565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906145e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661100961251f565b73ffffffffffffffffffffffffffffffffffffffff16148061103857506110378161103261251f565b612393565b5b611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90614444565b60405180910390fd5b61108183836126b7565b505050565b6000600880549050905090565b6000601054905090565b601360009054906101000a900460ff1681565b6110c16110bb61251f565b82612770565b611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790614624565b60405180910390fd5b61110b83838361284e565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061114183611659565b8210611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614304565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360029054906101000a900460ff1681565b61120983838360405180602001604052806000815250612064565b505050565b6060600061121b83611659565b905060008167ffffffffffffffff81111561123957611238614ba7565b5b6040519080825280602002602001820160405280156112675781602001602082028036833780820191505090505b50905060005b828110156112b15761127f8582611136565b82828151811061129257611291614b78565b5b60200260200101818152505080806112a990614a42565b91505061126d565b508092505050919050565b60006112c6611086565b8210611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90614664565b60405180910390fd5b6008828154811061131b5761131a614b78565b5b90600052602060002001549050919050565b60006101908210611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906146c4565b60405180910390fd5b600c6000838152602001908152602001600020549050919050565b61139661251f565b73ffffffffffffffffffffffffffffffffffffffff166113b4611799565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190614504565b60405180910390fd5b806014908051906020019061142092919061361b565b5050565b61142c61251f565b73ffffffffffffffffffffffffffffffffffffffff1661144a611799565b73ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790614504565b60405180910390fd5b601360009054906101000a900460ff16156114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614524565b60405180910390fd5b8060128190555050565b61019081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090614484565b60405180910390fd5b80915050919050565b60115481565b601480546115c5906149df565b80601f01602080910402602001604051908101604052809291908181526020018280546115f1906149df565b801561163e5780601f106116135761010080835404028352916020019161163e565b820191906000526020600020905b81548152906001019060200180831161162157829003601f168201915b505050505081565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614464565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61171961251f565b73ffffffffffffffffffffffffffffffffffffffff16611737611799565b73ffffffffffffffffffffffffffffffffffffffff161461178d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178490614504565b60405180910390fd5b6117976000612aaa565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546117d2906149df565b80601f01602080910402602001604051908101604052809291908181526020018280546117fe906149df565b801561184b5780601f106118205761010080835404028352916020019161184b565b820191906000526020600020905b81548152906001019060200180831161182e57829003601f168201915b5050505050905090565b61185d61251f565b73ffffffffffffffffffffffffffffffffffffffff1661187b611799565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614504565b60405180910390fd5b601360009054906101000a900460ff1615611921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191890614544565b60405180910390fd5b8060108190555050565b61193361251f565b73ffffffffffffffffffffffffffffffffffffffff16611951611799565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614504565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd306119cc611799565b846040518463ffffffff1660e01b81526004016119eb93929190614202565b602060405180830381600087803b158015611a0557600080fd5b505af1158015611a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3d9190613a63565b505050565b601360009054906101000a900460ff16611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a88906146a4565b60405180910390fd5b601360029054906101000a900460ff1615611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad8906143a4565b60405180910390fd5b601154611e61611af191906148e3565b81611afc600b612675565b611b069190614802565b1115611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90614384565b60405180910390fd5b80601054611b559190614889565b341015611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e906145a4565b60405180910390fd5b601254811115611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd3906144a4565b60405180910390fd5b60008111611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690614644565b60405180910390fd5b60005b81811015611c60576000611c36600b612675565b9050611c423382612683565b611c4c600b6126a1565b508080611c5890614a42565b915050611c22565b5050565b611c6c61251f565b73ffffffffffffffffffffffffffffffffffffffff16611c8a611799565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790614504565b60405180910390fd5b600047905060006064600d5483611cf79190614889565b611d019190614858565b905060006064600e5484611d159190614889565b611d1f9190614858565b905060006064600f5485611d339190614889565b611d3d9190614858565b9050611d47611799565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050611d8457600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611de457600080fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e4457600080fd5b50505050565b611e5261251f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906143e4565b60405180910390fd5b8060056000611ecd61251f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f7a61251f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fbf91906142a7565b60405180910390a35050565b611fd361251f565b73ffffffffffffffffffffffffffffffffffffffff16611ff1611799565b73ffffffffffffffffffffffffffffffffffffffff1614612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e90614504565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b61207561206f61251f565b83612770565b6120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90614624565b60405180910390fd5b6120c084848484612b70565b50505050565b6120ce61251f565b73ffffffffffffffffffffffffffffffffffffffff166120ec611799565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614504565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b606061216a82612609565b6121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614584565b60405180910390fd5b6000601480546121b8906149df565b9050116121d45760405180602001604052806000815250612206565b6121dc612bcc565b6121e583612c5e565b6040516020016121f69291906141b8565b6040516020818303038152906040525b9050919050565b61221561251f565b73ffffffffffffffffffffffffffffffffffffffff16612233611799565b73ffffffffffffffffffffffffffffffffffffffff1614612289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228090614504565b60405180910390fd5b6011548111156122ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c5906142e4565b60405180910390fd5b60008111612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614604565b60405180910390fd5b806011600082825461232391906148e3565b9250508190555060005b8181101561236b576000612341600b612675565b905061234d8482612683565b612357600b6126a1565b50808061236390614a42565b91505061232d565b505050565b60105481565b600c6020528060005260406000206000915090505481565b600381565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61242f61251f565b73ffffffffffffffffffffffffffffffffffffffff1661244d611799565b73ffffffffffffffffffffffffffffffffffffffff16146124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90614504565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614344565b60405180910390fd5b61251c81612aaa565b50565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612602575061260182612dbf565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600081600001549050919050565b61269d828260405180602001604052806000815250612e29565b5050565b6001816000016000828254019250508190555050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661272a83611500565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061277b82612609565b6127ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b190614424565b60405180910390fd5b60006127c583611500565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061283457508373ffffffffffffffffffffffffffffffffffffffff1661281c84610bcd565b73ffffffffffffffffffffffffffffffffffffffff16145b8061284557506128448185612393565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661286e82611500565b73ffffffffffffffffffffffffffffffffffffffff16146128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb90614564565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b906143c4565b60405180910390fd5b61293f838383612e84565b61294a6000826126b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461299a91906148e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f19190614802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b7b84848461284e565b612b8784848484612f98565b612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd90614324565b60405180910390fd5b50505050565b606060148054612bdb906149df565b80601f0160208091040260200160405190810160405280929190818152602001828054612c07906149df565b8015612c545780601f10612c2957610100808354040283529160200191612c54565b820191906000526020600020905b815481529060010190602001808311612c3757829003601f168201915b5050505050905090565b60606000821415612ca6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dba565b600082905060005b60008214612cd8578080612cc190614a42565b915050600a82612cd19190614858565b9150612cae565b60008167ffffffffffffffff811115612cf457612cf3614ba7565b5b6040519080825280601f01601f191660200182016040528015612d265781602001600182028036833780820191505090505b5090505b60008514612db357600182612d3f91906148e3565b9150600a85612d4e9190614a8b565b6030612d5a9190614802565b60f81b818381518110612d7057612d6f614b78565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dac9190614858565b9450612d2a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e33838361312f565b612e406000848484612f98565b612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690614324565b60405180910390fd5b505050565b612e8f8383836132fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ed257612ecd81613302565b612f11565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f1057612f0f838261334b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f5457612f4f816134b8565b612f93565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f9257612f918282613589565b5b5b505050565b6000612fb98473ffffffffffffffffffffffffffffffffffffffff16613608565b15613122578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fe261251f565b8786866040518563ffffffff1660e01b81526004016130049493929190614239565b602060405180830381600087803b15801561301e57600080fd5b505af192505050801561304f57506040513d601f19601f8201168201806040525081019061304c9190613abd565b60015b6130d2573d806000811461307f576040519150601f19603f3d011682016040523d82523d6000602084013e613084565b606091505b506000815114156130ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c190614324565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613127565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613196906144c4565b60405180910390fd5b6131a881612609565b156131e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131df90614364565b60405180910390fd5b6131f460008383612e84565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132449190614802565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161335884611659565b61336291906148e3565b9050600060076000848152602001908152602001600020549050818114613447576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134cc91906148e3565b90506000600960008481526020019081526020016000205490506000600883815481106134fc576134fb614b78565b5b90600052602060002001549050806008838154811061351e5761351d614b78565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061356d5761356c614b49565b5b6001900381819060005260206000200160009055905550505050565b600061359483611659565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613627906149df565b90600052602060002090601f0160209004810192826136495760008555613690565b82601f1061366257805160ff1916838001178555613690565b82800160010185558215613690579182015b8281111561368f578251825591602001919060010190613674565b5b50905061369d91906136a1565b5090565b5b808211156136ba5760008160009055506001016136a2565b5090565b60006136d16136cc84614724565b6146ff565b9050828152602081018484840111156136ed576136ec614bdb565b5b6136f884828561499d565b509392505050565b600061371361370e84614755565b6146ff565b90508281526020810184848401111561372f5761372e614bdb565b5b61373a84828561499d565b509392505050565b600081359050613751816154ae565b92915050565b600081519050613766816154ae565b92915050565b60008135905061377b816154c5565b92915050565b600081519050613790816154c5565b92915050565b6000813590506137a5816154dc565b92915050565b6000815190506137ba816154dc565b92915050565b600082601f8301126137d5576137d4614bd6565b5b81356137e58482602086016136be565b91505092915050565b6000813590506137fd816154f3565b92915050565b600082601f83011261381857613817614bd6565b5b8135613828848260208601613700565b91505092915050565b6000813590506138408161550a565b92915050565b60006020828403121561385c5761385b614be5565b5b600061386a84828501613742565b91505092915050565b60006020828403121561388957613888614be5565b5b600061389784828501613757565b91505092915050565b600080604083850312156138b7576138b6614be5565b5b60006138c585828601613742565b92505060206138d685828601613742565b9150509250929050565b6000806000606084860312156138f9576138f8614be5565b5b600061390786828701613742565b935050602061391886828701613742565b925050604061392986828701613831565b9150509250925092565b6000806000806080858703121561394d5761394c614be5565b5b600061395b87828801613742565b945050602061396c87828801613742565b935050604061397d87828801613831565b925050606085013567ffffffffffffffff81111561399e5761399d614be0565b5b6139aa878288016137c0565b91505092959194509250565b600080604083850312156139cd576139cc614be5565b5b60006139db85828601613742565b92505060206139ec8582860161376c565b9150509250929050565b60008060408385031215613a0d57613a0c614be5565b5b6000613a1b85828601613742565b9250506020613a2c85828601613831565b9150509250929050565b600060208284031215613a4c57613a4b614be5565b5b6000613a5a8482850161376c565b91505092915050565b600060208284031215613a7957613a78614be5565b5b6000613a8784828501613781565b91505092915050565b600060208284031215613aa657613aa5614be5565b5b6000613ab484828501613796565b91505092915050565b600060208284031215613ad357613ad2614be5565b5b6000613ae1848285016137ab565b91505092915050565b60008060408385031215613b0157613b00614be5565b5b6000613b0f858286016137ee565b9250506020613b2085828601613831565b9150509250929050565b600060208284031215613b4057613b3f614be5565b5b600082013567ffffffffffffffff811115613b5e57613b5d614be0565b5b613b6a84828501613803565b91505092915050565b600060208284031215613b8957613b88614be5565b5b6000613b9784828501613831565b91505092915050565b60008060408385031215613bb757613bb6614be5565b5b6000613bc585828601613831565b9250506020613bd685828601613831565b9150509250929050565b6000613bec838361419a565b60208301905092915050565b613c0181614917565b82525050565b6000613c1282614796565b613c1c81856147c4565b9350613c2783614786565b8060005b83811015613c58578151613c3f8882613be0565b9750613c4a836147b7565b925050600181019050613c2b565b5085935050505092915050565b613c6e81614929565b82525050565b6000613c7f826147a1565b613c8981856147d5565b9350613c998185602086016149ac565b613ca281614bea565b840191505092915050565b6000613cb8826147ac565b613cc281856147e6565b9350613cd28185602086016149ac565b613cdb81614bea565b840191505092915050565b6000613cf1826147ac565b613cfb81856147f7565b9350613d0b8185602086016149ac565b80840191505092915050565b6000613d24602c836147e6565b9150613d2f82614bfb565b604082019050919050565b6000613d47602b836147e6565b9150613d5282614c4a565b604082019050919050565b6000613d6a6032836147e6565b9150613d7582614c99565b604082019050919050565b6000613d8d6026836147e6565b9150613d9882614ce8565b604082019050919050565b6000613db0601c836147e6565b9150613dbb82614d37565b602082019050919050565b6000613dd36011836147e6565b9150613dde82614d60565b602082019050919050565b6000613df66012836147e6565b9150613e0182614d89565b602082019050919050565b6000613e196024836147e6565b9150613e2482614db2565b604082019050919050565b6000613e3c6019836147e6565b9150613e4782614e01565b602082019050919050565b6000613e5f602e836147e6565b9150613e6a82614e2a565b604082019050919050565b6000613e82602c836147e6565b9150613e8d82614e79565b604082019050919050565b6000613ea56038836147e6565b9150613eb082614ec8565b604082019050919050565b6000613ec8602a836147e6565b9150613ed382614f17565b604082019050919050565b6000613eeb6029836147e6565b9150613ef682614f66565b604082019050919050565b6000613f0e6035836147e6565b9150613f1982614fb5565b604082019050919050565b6000613f316020836147e6565b9150613f3c82615004565b602082019050919050565b6000613f54602c836147e6565b9150613f5f8261502d565b604082019050919050565b6000613f776005836147f7565b9150613f828261507c565b600582019050919050565b6000613f9a6020836147e6565b9150613fa5826150a5565b602082019050919050565b6000613fbd602d836147e6565b9150613fc8826150ce565b604082019050919050565b6000613fe06028836147e6565b9150613feb8261511d565b604082019050919050565b60006140036029836147e6565b915061400e8261516c565b604082019050919050565b6000614026602f836147e6565b9150614031826151bb565b604082019050919050565b60006140496021836147e6565b91506140548261520a565b604082019050919050565b600061406c6037836147e6565b915061407782615259565b604082019050919050565b600061408f6021836147e6565b915061409a826152a8565b604082019050919050565b60006140b26016836147e6565b91506140bd826152f7565b602082019050919050565b60006140d56031836147e6565b91506140e082615320565b604082019050919050565b60006140f8600d836147e6565b91506141038261536f565b602082019050919050565b600061411b602c836147e6565b915061412682615398565b604082019050919050565b600061413e603c836147e6565b9150614149826153e7565b604082019050919050565b6000614161602a836147e6565b915061416c82615436565b604082019050919050565b6000614184601a836147e6565b915061418f82615485565b602082019050919050565b6141a381614993565b82525050565b6141b281614993565b82525050565b60006141c48285613ce6565b91506141d08284613ce6565b91506141db82613f6a565b91508190509392505050565b60006020820190506141fc6000830184613bf8565b92915050565b60006060820190506142176000830186613bf8565b6142246020830185613bf8565b61423160408301846141a9565b949350505050565b600060808201905061424e6000830187613bf8565b61425b6020830186613bf8565b61426860408301856141a9565b818103606083015261427a8184613c74565b905095945050505050565b6000602082019050818103600083015261429f8184613c07565b905092915050565b60006020820190506142bc6000830184613c65565b92915050565b600060208201905081810360008301526142dc8184613cad565b905092915050565b600060208201905081810360008301526142fd81613d17565b9050919050565b6000602082019050818103600083015261431d81613d3a565b9050919050565b6000602082019050818103600083015261433d81613d5d565b9050919050565b6000602082019050818103600083015261435d81613d80565b9050919050565b6000602082019050818103600083015261437d81613da3565b9050919050565b6000602082019050818103600083015261439d81613dc6565b9050919050565b600060208201905081810360008301526143bd81613de9565b9050919050565b600060208201905081810360008301526143dd81613e0c565b9050919050565b600060208201905081810360008301526143fd81613e2f565b9050919050565b6000602082019050818103600083015261441d81613e52565b9050919050565b6000602082019050818103600083015261443d81613e75565b9050919050565b6000602082019050818103600083015261445d81613e98565b9050919050565b6000602082019050818103600083015261447d81613ebb565b9050919050565b6000602082019050818103600083015261449d81613ede565b9050919050565b600060208201905081810360008301526144bd81613f01565b9050919050565b600060208201905081810360008301526144dd81613f24565b9050919050565b600060208201905081810360008301526144fd81613f47565b9050919050565b6000602082019050818103600083015261451d81613f8d565b9050919050565b6000602082019050818103600083015261453d81613fb0565b9050919050565b6000602082019050818103600083015261455d81613fd3565b9050919050565b6000602082019050818103600083015261457d81613ff6565b9050919050565b6000602082019050818103600083015261459d81614019565b9050919050565b600060208201905081810360008301526145bd8161403c565b9050919050565b600060208201905081810360008301526145dd8161405f565b9050919050565b600060208201905081810360008301526145fd81614082565b9050919050565b6000602082019050818103600083015261461d816140a5565b9050919050565b6000602082019050818103600083015261463d816140c8565b9050919050565b6000602082019050818103600083015261465d816140eb565b9050919050565b6000602082019050818103600083015261467d8161410e565b9050919050565b6000602082019050818103600083015261469d81614131565b9050919050565b600060208201905081810360008301526146bd81614154565b9050919050565b600060208201905081810360008301526146dd81614177565b9050919050565b60006020820190506146f960008301846141a9565b92915050565b600061470961471a565b90506147158282614a11565b919050565b6000604051905090565b600067ffffffffffffffff82111561473f5761473e614ba7565b5b61474882614bea565b9050602081019050919050565b600067ffffffffffffffff8211156147705761476f614ba7565b5b61477982614bea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061480d82614993565b915061481883614993565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561484d5761484c614abc565b5b828201905092915050565b600061486382614993565b915061486e83614993565b92508261487e5761487d614aeb565b5b828204905092915050565b600061489482614993565b915061489f83614993565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d8576148d7614abc565b5b828202905092915050565b60006148ee82614993565b91506148f983614993565b92508282101561490c5761490b614abc565b5b828203905092915050565b600061492282614973565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061496c82614917565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149ca5780820151818401526020810190506149af565b838111156149d9576000848401525b50505050565b600060028204905060018216806149f757607f821691505b60208210811415614a0b57614a0a614b1a565b5b50919050565b614a1a82614bea565b810181811067ffffffffffffffff82111715614a3957614a38614ba7565b5b80604052505050565b6000614a4d82614993565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a8057614a7f614abc565b5b600182019050919050565b6000614a9682614993565b9150614aa183614993565b925082614ab157614ab0614aeb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f526571756573746564204769766561776179204578636565647320476976656160008201527f7761792052657365727665730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e74696e67204d61786564204f7574000000000000000000000000000000600082015250565b7f4d696e74696e672066696e616c697a65642e0000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520646f206e6f74206f776e20746865204d756c7469766973612077697460008201527f6820737065636966696564204944000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53706563696669656420416d6f756e74204f766572204d6178204d696e74732060008201527f506572205472616e73616374696f6e204c696d69740000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f74204368616e6765204d696e74204c696d6974205768696c65205360008201527f616c652069732041637469766500000000000000000000000000000000000000602082015250565b7f43616e6e6f74204368616e6765205072696365205768696c652053616c65206960008201527f7320416374697665000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e74204554482073656e7420666f72205061796d656e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4b65706c65727320436976696c20536f6369657479204561726c79204163636560008201527f73732053616c6520486173204e6f742053746172746564000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420676976652061776179206e6f7468696e6700000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f7572652057656c636f6d6500000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d756c746976697361206f662053706563696669656420546f6b656e2049442060008201527f43616e6e6f74204d696e742052657175657374656420416d6f756e7400000000602082015250565b7f4b65706c65727320436976696c20536f63696574792053616c6520486173204e60008201527f6f74205374617274656400000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d756c74697669736120546f6b656e204944000000000000600082015250565b6154b781614917565b81146154c257600080fd5b50565b6154ce81614929565b81146154d957600080fd5b50565b6154e581614935565b81146154f057600080fd5b50565b6154fc81614961565b811461550757600080fd5b50565b61551381614993565b811461551e57600080fd5b5056fea264697066735822122039642da8e29c749df1be3cf50926cca2be61d8bcd9e25d69c79277786e4e7af064736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a118c27ff48cddeb6225d20cbcad1a888f53bd28
-----Decoded View---------------
Arg [0] : _multivisa (address): 0xa118C27Ff48cDdeB6225D20cBCAD1A888F53bD28
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a118c27ff48cddeb6225d20cbcad1a888f53bd28
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.