Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 E.T.
Holders
347
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 E.T.Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheETExperiment
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract TheETExperiment is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; mapping(address => uint256) public numberMinted; // Mapping for each alien's stage // 1 -> S-I Ovomorph // 2 -> S-II Embryo // 3 -> S-III Drone // 4 -> S-IV Soldier // 5 -> S-V Praetorian mapping(uint256 => uint256) public stage; // Fixed parameter initialization uint256 public mintPrice = 0.05 ether; uint256 public maxMintPerAddress = 3; uint256 public maxSupply = 1000; uint256 public evolutionPrice = 0.015 ether; uint256[] public stagePopulation = [ 0, 0, 0, 0, 0 ]; uint256[] public maxStagePopulation = [ 1000, 500, 300, 150, 50 ]; // Array of URIs corresponding to each stage string[] private stageURIs = [ "bafybeibeqwrwb5l5rkakz3una3bxuh5l57wsqzqkzv3xptxswnxyah5eem/", //Ovomorph CID "bafybeiahms42zqjodj466sgx76r3gi7rc37yiqeeyo5xkwmpefvednihai/", //Embryo CID "bafybeigmgeuzk576ublovloj6vrgzbnmsywnfwzqjkb5h7frgzqyfglcre/", //Drone CID "bafybeifgewxl4hoppielmf5hgzw323h3omy62ln5lbhn433qrinz4hflhe/", //Soldier CID "bafybeih5zarv3vk45qegwyg4j5xunl4c7upxp32vfu7yp7nb22gibqyrza/" //Praetorian CID ]; // URI suffix = ".json" string private suffix = ".json"; constructor() ERC721("The E.T. Experiment", "E.T.") { _pause(); } /* ======== SETTERS ======== */ function setStageURI(uint256 _stage, string calldata _cid) public onlyOwner { require(_stage >= 1 && _stage <= 5, "Stage out of bounds!"); stageURIs[_stage - 1] = string(abi.encodePacked(_cid, "/")); } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } function setMaxMintPerAddress(uint256 _maxMintPerAddress) public onlyOwner { maxMintPerAddress = _maxMintPerAddress; } function setEvolutionPrice(uint256 _evolutionPrice) public onlyOwner { evolutionPrice = _evolutionPrice; } /* ======== INTERNAL ======== */ function _baseURI() internal pure override returns (string memory) { return "ipfs://"; } /* ======== EXTERNAL ======== */ function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function freeMint(uint256 numberOfTokens) external whenNotPaused { require(numberMinted[_msgSender()] + numberOfTokens <= maxMintPerAddress || _msgSender() == owner(), "Purchase would exceed max mint per address!"); require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply!"); for(uint256 i = 0; i < numberOfTokens; i++) { numberMinted[_msgSender()]++; _tokenIdCounter.increment(); uint256 tokenId = _tokenIdCounter.current(); stage[tokenId] = 1; stagePopulation[0]++; string memory uri = string(abi.encodePacked(stageURIs[stage[tokenId] - 1], tokenId.toString(), suffix)); _safeMint(_msgSender(), tokenId); _setTokenURI(tokenId, uri); } } function mint(uint256 numberOfTokens) external payable whenNotPaused { require(msg.value >= numberOfTokens*mintPrice, "Not enough funds!"); require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply!"); for(uint256 i = 0; i < numberOfTokens; i++) { numberMinted[_msgSender()]++; _tokenIdCounter.increment(); uint256 tokenId = _tokenIdCounter.current(); stage[tokenId] = 1; stagePopulation[0]++; string memory uri = string(abi.encodePacked(stageURIs[stage[tokenId] - 1], tokenId.toString(), suffix)); _safeMint(_msgSender(), tokenId); _setTokenURI(tokenId, uri); } } function evolve(uint256 tokenId, uint256 numberOfLevels) external payable whenNotPaused { require(_msgSender() == ownerOf(tokenId), "Can't evolve an E.T. you don't own!"); require(msg.value >= numberOfLevels*evolutionPrice, "Not enough funds!"); uint256 currentStage = stage[tokenId]; uint256 targetStage = stage[tokenId] + numberOfLevels; require(currentStage < 5, "Max level reached for this E.T.!"); require(targetStage <= 5, "Evolution would exceed max E.T. stage!"); require(stagePopulation[targetStage - 1] < maxStagePopulation[targetStage - 1], "Max population for target evolution stage reached!"); stagePopulation[currentStage - 1]--; stagePopulation[targetStage - 1]++; stage[tokenId] = targetStage; string memory uri = string(abi.encodePacked(stageURIs[targetStage - 1], tokenId.toString(), suffix)); _setTokenURI(tokenId, uri); } function withdrawEth() external nonReentrant { payable(address(owner())).transfer(address(this).balance); } function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } /* ======== OVERRIDES ======== */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evolutionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numberOfLevels","type":"uint256"}],"name":"evolve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","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":[{"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":"maxMintPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxStagePopulation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_evolutionPrice","type":"uint256"}],"name":"setEvolutionPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerAddress","type":"uint256"}],"name":"setMaxMintPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"},{"internalType":"string","name":"_cid","type":"string"}],"name":"setStageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stagePopulation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec5000060105560036011556103e860125566354a6ba7a180006013556040518060a00160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff1681525060149060056200007292919062000484565b506040518060a001604052806103e861ffff1681526020016101f461ffff16815260200161012c61ffff168152602001609661ffff168152602001603261ffff168152506015906005620000c8929190620004db565b506040518060a001604052806040518060600160405280603c815260200162005669603c913981526020016040518060600160405280603c81526020016200562d603c913981526020016040518060600160405280603c8152602001620055b5603c913981526020016040518060600160405280603c8152602001620055f1603c913981526020016040518060600160405280603c815260200162005579603c913981525060169060056200017f92919062000533565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060179080519060200190620001cd9291906200059a565b50348015620001db57600080fd5b506040518060400160405280601381526020017f54686520452e542e204578706572696d656e74000000000000000000000000008152506040518060400160405280600481526020017f452e542e000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002609291906200059a565b508060019080519060200190620002799291906200059a565b5050506000600b60006101000a81548160ff021916908315150217905550620002b7620002ab620002d560201b60201c565b620002dd60201b60201c565b6001600c81905550620002cf620003a360201b60201c565b62000802565b600033905090565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003b36200041860201b60201c565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003ff620002d560201b60201c565b6040516200040e9190620006f0565b60405180910390a1565b620004286200046d60201b60201c565b156200046b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000462906200070d565b60405180910390fd5b565b6000600b60009054906101000a900460ff16905090565b828054828255906000526020600020908101928215620004c8579160200282015b82811115620004c7578251829060ff16905591602001919060010190620004a5565b5b509050620004d791906200062b565b5090565b82805482825590600052602060002090810192821562000520579160200282015b828111156200051f578251829061ffff16905591602001919060010190620004fc565b5b5090506200052f91906200062b565b5090565b82805482825590600052602060002090810192821562000587579160200282015b8281111562000586578251829080519060200190620005759291906200059a565b509160200191906001019062000554565b5b5090506200059691906200064a565b5090565b828054620005a89062000774565b90600052602060002090601f016020900481019282620005cc576000855562000618565b82601f10620005e757805160ff191683800117855562000618565b8280016001018555821562000618579182015b8281111562000617578251825591602001919060010190620005fa565b5b5090506200062791906200062b565b5090565b5b80821115620006465760008160009055506001016200062c565b5090565b5b808211156200066e576000818162000664919062000672565b506001016200064b565b5090565b508054620006809062000774565b6000825580601f10620006945750620006b5565b601f016020900490600052602060002090810190620006b491906200062b565b5b50565b620006c38162000740565b82525050565b6000620006d86010836200072f565b9150620006e582620007d9565b602082019050919050565b6000602082019050620007076000830184620006b8565b92915050565b600060208201905081810360008301526200072881620006c9565b9050919050565b600082825260208201905092915050565b60006200074d8262000754565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200078d57607f821691505b60208210811415620007a457620007a3620007aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b614d6780620008126000396000f3fe6080604052600436106102305760003560e01c80636aac90c71161012e578063a0ef91df116100ab578063d5abeb011161006f578063d5abeb011461081d578063dc33e68114610848578063e985e9c514610885578063f2fde38b146108c2578063f4a0a528146108eb57610230565b8063a0ef91df1461073a578063a22cb46514610751578063b88d4fde1461077a578063c3e7e0d7146107a3578063c87b56dd146107e057610230565b80638980f11f116100f25780638980f11f146106745780638b3806631461069d5780638da5cb5b146106c857806395d89b41146106f3578063a0712d681461071e57610230565b80636aac90c7146105b757806370a08231146105e0578063715018a61461061d5780637c928fe9146106345780638456cb591461065d57610230565b80633ae4514e116101bc57806354d9eef61161018057806354d9eef6146104bc578063572849c4146104f95780635c975abb146105245780636352211e1461054f5780636817c76c1461058c57610230565b80633ae4514e146103e65780633f4ba83a1461042357806342842e0e1461043a5780634f6ccce71461046357806350ccda0c146104a057610230565b806318160ddd1161020357806318160ddd146103035780631e14d44b1461032e57806323b872dd146103575780632f745c5914610380578063316d86a4146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613600565b610914565b6040516102699190613d78565b60405180910390f35b34801561027e57600080fd5b50610287610926565b6040516102949190613d93565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061365a565b6109b8565b6040516102d19190613ce8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613593565b6109fe565b005b34801561030f57600080fd5b50610318610b16565b6040516103259190614115565b60405180910390f35b34801561033a57600080fd5b506103556004803603810190610350919061365a565b610b23565b005b34801561036357600080fd5b5061037e6004803603810190610379919061347d565b610b35565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613593565b610b95565b6040516103b49190614115565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061365a565b610c3a565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061365a565b610c4c565b60405161041a9190614115565b60405180910390f35b34801561042f57600080fd5b50610438610c70565b005b34801561044657600080fd5b50610461600480360381019061045c919061347d565b610c82565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061365a565b610ca2565b6040516104979190614115565b60405180910390f35b6104ba60048036038101906104b591906136e7565b610d13565b005b3480156104c857600080fd5b506104e360048036038101906104de919061365a565b611043565b6040516104f09190614115565b60405180910390f35b34801561050557600080fd5b5061050e61105b565b60405161051b9190614115565b60405180910390f35b34801561053057600080fd5b50610539611061565b6040516105469190613d78565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061365a565b611078565b6040516105839190613ce8565b60405180910390f35b34801561059857600080fd5b506105a161112a565b6040516105ae9190614115565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613687565b611130565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613410565b6111ee565b6040516106149190614115565b60405180910390f35b34801561062957600080fd5b506106326112a6565b005b34801561064057600080fd5b5061065b6004803603810190610656919061365a565b6112ba565b005b34801561066957600080fd5b50610672611561565b005b34801561068057600080fd5b5061069b60048036038101906106969190613593565b611573565b005b3480156106a957600080fd5b506106b2611614565b6040516106bf9190614115565b60405180910390f35b3480156106d457600080fd5b506106dd61161a565b6040516106ea9190613ce8565b60405180910390f35b3480156106ff57600080fd5b50610708611644565b6040516107159190613d93565b60405180910390f35b6107386004803603810190610733919061365a565b6116d6565b005b34801561074657600080fd5b5061074f6118f3565b005b34801561075d57600080fd5b5061077860048036038101906107739190613553565b611999565b005b34801561078657600080fd5b506107a1600480360381019061079c91906134d0565b6119af565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061365a565b611a11565b6040516107d79190614115565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061365a565b611a35565b6040516108149190613d93565b60405180910390f35b34801561082957600080fd5b50610832611a47565b60405161083f9190614115565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613410565b611a4d565b60405161087c9190614115565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061343d565b611a65565b6040516108b99190613d78565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613410565b611af9565b005b3480156108f757600080fd5b50610912600480360381019061090d919061365a565b611b7d565b005b600061091f82611b8f565b9050919050565b606060008054610935906143d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610961906143d3565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b60006109c382611c09565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0982611078565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190614055565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611c54565b73ffffffffffffffffffffffffffffffffffffffff161480610ac85750610ac781610ac2611c54565b611a65565b5b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613fb5565b60405180910390fd5b610b118383611c5c565b505050565b6000600880549050905090565b610b2b611d15565b8060118190555050565b610b46610b40611c54565b82611d93565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906140b5565b60405180910390fd5b610b90838383611e28565b505050565b6000610ba0836111ee565b8210610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613dd5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c42611d15565b8060138190555050565b60148181548110610c5c57600080fd5b906000526020600020016000915090505481565b610c78611d15565b610c8061208f565b565b610c9d838383604051806020016040528060008152506119af565b505050565b6000610cac610b16565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490614095565b60405180910390fd5b60088281548110610d0157610d0061456c565b5b90600052602060002001549050919050565b610d1b6120f2565b610d2482611078565b73ffffffffffffffffffffffffffffffffffffffff16610d42611c54565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613f15565b60405180910390fd5b60135481610da69190614265565b341015610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90614015565b60405180910390fd5b6000600f6000848152602001908152602001600020549050600082600f600086815260200190815260200160002054610e2191906141de565b905060058210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613f95565b60405180910390fd5b6005811115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614075565b60405180910390fd5b6015600182610eb991906142bf565b81548110610eca57610ec961456c565b5b90600052602060002001546014600183610ee491906142bf565b81548110610ef557610ef461456c565b5b906000526020600020015410610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790613ef5565b60405180910390fd5b6014600183610f4f91906142bf565b81548110610f6057610f5f61456c565b5b906000526020600020016000815480929190610f7b906143a9565b91905055506014600182610f8f91906142bf565b81548110610fa057610f9f61456c565b5b906000526020600020016000815480929190610fbb90614436565b919050555080600f60008681526020019081526020016000208190555060006016600183610fe991906142bf565b81548110610ffa57610ff961456c565b5b9060005260206000200161100d8661213c565b601760405160200161102193929190613cb7565b604051602081830303815290604052905061103c858261229d565b5050505050565b600f6020528060005260406000206000915090505481565b60115481565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614035565b60405180910390fd5b80915050919050565b60105481565b611138611d15565b6001831015801561114a575060058311155b611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613ed5565b60405180910390fd5b818160405160200161119c929190613c6f565b60405160208183030381529060405260166001856111ba91906142bf565b815481106111cb576111ca61456c565b5b9060005260206000200190805190602001906111e8929190613229565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613f55565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ae611d15565b6112b86000612311565b565b6112c26120f2565b60115481600e60006112d2611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131791906141de565b11158061135d575061132761161a565b73ffffffffffffffffffffffffffffffffffffffff16611345611c54565b73ffffffffffffffffffffffffffffffffffffffff16145b61139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613e35565b60405180910390fd5b601254816113a8610b16565b6113b291906141de565b11156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea906140f5565b60405180910390fd5b60005b8181101561155d57600e600061140a611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061145590614436565b9190505550611464600d6123d7565b6000611470600d6123ed565b90506001600f60008381526020019081526020016000208190555060146000815481106114a05761149f61456c565b5b9060005260206000200160008154809291906114bb90614436565b9190505550600060166001600f6000858152602001908152602001600020546114e491906142bf565b815481106114f5576114f461456c565b5b906000526020600020016115088361213c565b601760405160200161151c93929190613cb7565b604051602081830303815290604052905061153e611538611c54565b836123fb565b611548828261229d565b5050808061155590614436565b9150506113f6565b5050565b611569611d15565b611571612419565b565b61157b611d15565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61159f61161a565b836040518363ffffffff1660e01b81526004016115bd929190613d4f565b602060405180830381600087803b1580156115d757600080fd5b505af11580156115eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160f91906135d3565b505050565b60135481565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611653906143d3565b80601f016020809104026020016040519081016040528092919081815260200182805461167f906143d3565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b5050505050905090565b6116de6120f2565b601054816116ec9190614265565b34101561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614015565b60405180910390fd5b6012548161173a610b16565b61174491906141de565b1115611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906140f5565b60405180910390fd5b60005b818110156118ef57600e600061179c611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117e790614436565b91905055506117f6600d6123d7565b6000611802600d6123ed565b90506001600f60008381526020019081526020016000208190555060146000815481106118325761183161456c565b5b90600052602060002001600081548092919061184d90614436565b9190505550600060166001600f60008581526020019081526020016000205461187691906142bf565b815481106118875761188661456c565b5b9060005260206000200161189a8361213c565b60176040516020016118ae93929190613cb7565b60405160208183030381529060405290506118d06118ca611c54565b836123fb565b6118da828261229d565b505080806118e790614436565b915050611788565b5050565b6002600c541415611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906140d5565b60405180910390fd5b6002600c8190555061194961161a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561198e573d6000803e3d6000fd5b506001600c81905550565b6119ab6119a4611c54565b838361247c565b5050565b6119c06119ba611c54565b83611d93565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906140b5565b60405180910390fd5b611a0b848484846125e9565b50505050565b60158181548110611a2157600080fd5b906000526020600020016000915090505481565b6060611a4082612645565b9050919050565b60125481565b600e6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b01611d15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613e15565b60405180910390fd5b611b7a81612311565b50565b611b85611d15565b8060108190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c025750611c0182612758565b5b9050919050565b611c128161283a565b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614035565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ccf83611078565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d1d611c54565b73ffffffffffffffffffffffffffffffffffffffff16611d3b61161a565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613ff5565b60405180910390fd5b565b600080611d9f83611078565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de15750611de08185611a65565b5b80611e1f57508373ffffffffffffffffffffffffffffffffffffffff16611e07846109b8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4882611078565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9590613e55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613e95565b60405180910390fd5b611f198383836128a6565b611f24600082611c5c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7491906142bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcb91906141de565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208a8383836128be565b505050565b6120976128c3565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120db611c54565b6040516120e89190613ce8565b60405180910390a1565b6120fa611061565b1561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613f35565b60405180910390fd5b565b60606000821415612184576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612298565b600082905060005b600082146121b657808061219f90614436565b915050600a826121af9190614234565b915061218c565b60008167ffffffffffffffff8111156121d2576121d161459b565b5b6040519080825280601f01601f1916602001820160405280156122045781602001600182028036833780820191505090505b5090505b600085146122915760018261221d91906142bf565b9150600a8561222c919061447f565b603061223891906141de565b60f81b81838151811061224e5761224d61456c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228a9190614234565b9450612208565b8093505050505b919050565b6122a68261283a565b6122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613f75565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061230c929190613229565b505050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61241582826040518060200160405280600081525061290c565b5050565b6124216120f2565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612465611c54565b6040516124729190613ce8565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290613eb5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125dc9190613d78565b60405180910390a3505050565b6125f4848484611e28565b61260084848484612967565b61263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263690613df5565b60405180910390fd5b50505050565b606061265082611c09565b6000600a60008481526020019081526020016000208054612670906143d3565b80601f016020809104026020016040519081016040528092919081815260200182805461269c906143d3565b80156126e95780601f106126be576101008083540402835291602001916126e9565b820191906000526020600020905b8154815290600101906020018083116126cc57829003601f168201915b5050505050905060006126fa612afe565b9050600081511415612710578192505050612753565b60008251111561274557808260405160200161272d929190613c93565b60405160208183030381529060405292505050612753565b61274e84612b3b565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061282357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612833575061283282612ba3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6128ae6120f2565b6128b9838383612c0d565b505050565b505050565b6128cb611061565b61290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190613db5565b60405180910390fd5b565b6129168383612d21565b6129236000848484612967565b612962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295990613df5565b60405180910390fd5b505050565b60006129888473ffffffffffffffffffffffffffffffffffffffff16612efb565b15612af1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b1611c54565b8786866040518563ffffffff1660e01b81526004016129d39493929190613d03565b602060405180830381600087803b1580156129ed57600080fd5b505af1925050508015612a1e57506040513d601f19601f82011682018060405250810190612a1b919061362d565b60015b612aa1573d8060008114612a4e576040519150601f19603f3d011682016040523d82523d6000602084013e612a53565b606091505b50600081511415612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9090613df5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af6565b600190505b949350505050565b60606040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250905090565b6060612b4682611c09565b6000612b50612afe565b90506000815111612b705760405180602001604052806000815250612b9b565b80612b7a8461213c565b604051602001612b8b929190613c93565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c18838383612f1e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5b57612c5681612f23565b612c9a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c9957612c988382612f6c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cdd57612cd8816130d9565b612d1c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d1b57612d1a82826131aa565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890613fd5565b60405180910390fd5b612d9a8161283a565b15612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190613e75565b60405180910390fd5b612de6600083836128a6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3691906141de565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef7600083836128be565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f79846111ee565b612f8391906142bf565b9050600060076000848152602001908152602001600020549050818114613068576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130ed91906142bf565b905060006009600084815260200190815260200160002054905060006008838154811061311d5761311c61456c565b5b90600052602060002001549050806008838154811061313f5761313e61456c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061318e5761318d61453d565b5b6001900381819060005260206000200160009055905550505050565b60006131b5836111ee565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613235906143d3565b90600052602060002090601f016020900481019282613257576000855561329e565b82601f1061327057805160ff191683800117855561329e565b8280016001018555821561329e579182015b8281111561329d578251825591602001919060010190613282565b5b5090506132ab91906132af565b5090565b5b808211156132c85760008160009055506001016132b0565b5090565b60006132df6132da84614155565b614130565b9050828152602081018484840111156132fb576132fa6145d9565b5b613306848285614367565b509392505050565b60008135905061331d81614cd5565b92915050565b60008135905061333281614cec565b92915050565b60008151905061334781614cec565b92915050565b60008135905061335c81614d03565b92915050565b60008151905061337181614d03565b92915050565b600082601f83011261338c5761338b6145cf565b5b813561339c8482602086016132cc565b91505092915050565b60008083601f8401126133bb576133ba6145cf565b5b8235905067ffffffffffffffff8111156133d8576133d76145ca565b5b6020830191508360018202830111156133f4576133f36145d4565b5b9250929050565b60008135905061340a81614d1a565b92915050565b600060208284031215613426576134256145e3565b5b60006134348482850161330e565b91505092915050565b60008060408385031215613454576134536145e3565b5b60006134628582860161330e565b92505060206134738582860161330e565b9150509250929050565b600080600060608486031215613496576134956145e3565b5b60006134a48682870161330e565b93505060206134b58682870161330e565b92505060406134c6868287016133fb565b9150509250925092565b600080600080608085870312156134ea576134e96145e3565b5b60006134f88782880161330e565b94505060206135098782880161330e565b935050604061351a878288016133fb565b925050606085013567ffffffffffffffff81111561353b5761353a6145de565b5b61354787828801613377565b91505092959194509250565b6000806040838503121561356a576135696145e3565b5b60006135788582860161330e565b925050602061358985828601613323565b9150509250929050565b600080604083850312156135aa576135a96145e3565b5b60006135b88582860161330e565b92505060206135c9858286016133fb565b9150509250929050565b6000602082840312156135e9576135e86145e3565b5b60006135f784828501613338565b91505092915050565b600060208284031215613616576136156145e3565b5b60006136248482850161334d565b91505092915050565b600060208284031215613643576136426145e3565b5b600061365184828501613362565b91505092915050565b6000602082840312156136705761366f6145e3565b5b600061367e848285016133fb565b91505092915050565b6000806000604084860312156136a05761369f6145e3565b5b60006136ae868287016133fb565b935050602084013567ffffffffffffffff8111156136cf576136ce6145de565b5b6136db868287016133a5565b92509250509250925092565b600080604083850312156136fe576136fd6145e3565b5b600061370c858286016133fb565b925050602061371d858286016133fb565b9150509250929050565b613730816142f3565b82525050565b61373f81614305565b82525050565b60006137508261419b565b61375a81856141b1565b935061376a818560208601614376565b613773816145e8565b840191505092915050565b600061378a83856141d3565b9350613797838584614367565b82840190509392505050565b60006137ae826141a6565b6137b881856141c2565b93506137c8818560208601614376565b6137d1816145e8565b840191505092915050565b60006137e7826141a6565b6137f181856141d3565b9350613801818560208601614376565b80840191505092915050565b6000815461381a816143d3565b61382481866141d3565b9450600182166000811461383f576001811461385057613883565b60ff19831686528186019350613883565b61385985614186565b60005b8381101561387b5781548189015260018201915060208101905061385c565b838801955050505b50505092915050565b60006138996014836141c2565b91506138a4826145f9565b602082019050919050565b60006138bc602b836141c2565b91506138c782614622565b604082019050919050565b60006138df6032836141c2565b91506138ea82614671565b604082019050919050565b60006139026026836141c2565b915061390d826146c0565b604082019050919050565b6000613925602b836141c2565b91506139308261470f565b604082019050919050565b60006139486025836141c2565b91506139538261475e565b604082019050919050565b600061396b601c836141c2565b9150613976826147ad565b602082019050919050565b600061398e6024836141c2565b9150613999826147d6565b604082019050919050565b60006139b16019836141c2565b91506139bc82614825565b602082019050919050565b60006139d46014836141c2565b91506139df8261484e565b602082019050919050565b60006139f76032836141c2565b9150613a0282614877565b604082019050919050565b6000613a1a6023836141c2565b9150613a25826148c6565b604082019050919050565b6000613a3d6010836141c2565b9150613a4882614915565b602082019050919050565b6000613a606029836141c2565b9150613a6b8261493e565b604082019050919050565b6000613a83602e836141c2565b9150613a8e8261498d565b604082019050919050565b6000613aa66020836141c2565b9150613ab1826149dc565b602082019050919050565b6000613ac9603e836141c2565b9150613ad482614a05565b604082019050919050565b6000613aec6020836141c2565b9150613af782614a54565b602082019050919050565b6000613b0f6020836141c2565b9150613b1a82614a7d565b602082019050919050565b6000613b326011836141c2565b9150613b3d82614aa6565b602082019050919050565b6000613b556018836141c2565b9150613b6082614acf565b602082019050919050565b6000613b786021836141c2565b9150613b8382614af8565b604082019050919050565b6000613b9b6026836141c2565b9150613ba682614b47565b604082019050919050565b6000613bbe602c836141c2565b9150613bc982614b96565b604082019050919050565b6000613be1602e836141c2565b9150613bec82614be5565b604082019050919050565b6000613c04601f836141c2565b9150613c0f82614c34565b602082019050919050565b6000613c276001836141d3565b9150613c3282614c5d565b600182019050919050565b6000613c4a6021836141c2565b9150613c5582614c86565b604082019050919050565b613c698161435d565b82525050565b6000613c7c82848661377e565b9150613c8782613c1a565b91508190509392505050565b6000613c9f82856137dc565b9150613cab82846137dc565b91508190509392505050565b6000613cc3828661380d565b9150613ccf82856137dc565b9150613cdb828461380d565b9150819050949350505050565b6000602082019050613cfd6000830184613727565b92915050565b6000608082019050613d186000830187613727565b613d256020830186613727565b613d326040830185613c60565b8181036060830152613d448184613745565b905095945050505050565b6000604082019050613d646000830185613727565b613d716020830184613c60565b9392505050565b6000602082019050613d8d6000830184613736565b92915050565b60006020820190508181036000830152613dad81846137a3565b905092915050565b60006020820190508181036000830152613dce8161388c565b9050919050565b60006020820190508181036000830152613dee816138af565b9050919050565b60006020820190508181036000830152613e0e816138d2565b9050919050565b60006020820190508181036000830152613e2e816138f5565b9050919050565b60006020820190508181036000830152613e4e81613918565b9050919050565b60006020820190508181036000830152613e6e8161393b565b9050919050565b60006020820190508181036000830152613e8e8161395e565b9050919050565b60006020820190508181036000830152613eae81613981565b9050919050565b60006020820190508181036000830152613ece816139a4565b9050919050565b60006020820190508181036000830152613eee816139c7565b9050919050565b60006020820190508181036000830152613f0e816139ea565b9050919050565b60006020820190508181036000830152613f2e81613a0d565b9050919050565b60006020820190508181036000830152613f4e81613a30565b9050919050565b60006020820190508181036000830152613f6e81613a53565b9050919050565b60006020820190508181036000830152613f8e81613a76565b9050919050565b60006020820190508181036000830152613fae81613a99565b9050919050565b60006020820190508181036000830152613fce81613abc565b9050919050565b60006020820190508181036000830152613fee81613adf565b9050919050565b6000602082019050818103600083015261400e81613b02565b9050919050565b6000602082019050818103600083015261402e81613b25565b9050919050565b6000602082019050818103600083015261404e81613b48565b9050919050565b6000602082019050818103600083015261406e81613b6b565b9050919050565b6000602082019050818103600083015261408e81613b8e565b9050919050565b600060208201905081810360008301526140ae81613bb1565b9050919050565b600060208201905081810360008301526140ce81613bd4565b9050919050565b600060208201905081810360008301526140ee81613bf7565b9050919050565b6000602082019050818103600083015261410e81613c3d565b9050919050565b600060208201905061412a6000830184613c60565b92915050565b600061413a61414b565b90506141468282614405565b919050565b6000604051905090565b600067ffffffffffffffff8211156141705761416f61459b565b5b614179826145e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141e98261435d565b91506141f48361435d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614229576142286144b0565b5b828201905092915050565b600061423f8261435d565b915061424a8361435d565b92508261425a576142596144df565b5b828204905092915050565b60006142708261435d565b915061427b8361435d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142b4576142b36144b0565b5b828202905092915050565b60006142ca8261435d565b91506142d58361435d565b9250828210156142e8576142e76144b0565b5b828203905092915050565b60006142fe8261433d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614394578082015181840152602081019050614379565b838111156143a3576000848401525b50505050565b60006143b48261435d565b915060008214156143c8576143c76144b0565b5b600182039050919050565b600060028204905060018216806143eb57607f821691505b602082108114156143ff576143fe61450e565b5b50919050565b61440e826145e8565b810181811067ffffffffffffffff8211171561442d5761442c61459b565b5b80604052505050565b60006144418261435d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614474576144736144b0565b5b600182019050919050565b600061448a8261435d565b91506144958361435d565b9250826144a5576144a46144df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178206d696e74207060008201527f6572206164647265737321000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5374616765206f7574206f6620626f756e647321000000000000000000000000600082015250565b7f4d617820706f70756c6174696f6e20666f72207461726765742065766f6c757460008201527f696f6e2073746167652072656163686564210000000000000000000000000000602082015250565b7f43616e27742065766f6c766520616e20452e542e20796f7520646f6e2774206f60008201527f776e210000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4d6178206c6576656c207265616368656420666f72207468697320452e542e21600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45766f6c7574696f6e20776f756c6420657863656564206d617820452e542e2060008201527f7374616765210000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b614cde816142f3565b8114614ce957600080fd5b50565b614cf581614305565b8114614d0057600080fd5b50565b614d0c81614311565b8114614d1757600080fd5b50565b614d238161435d565b8114614d2e57600080fd5b5056fea26469706673582212201b88e5655198a2f6637941fa80e30613a842040ea8834b97558dcdf6230382df64736f6c634300080700336261667962656968357a61727633766b3435716567777967346a3578756e6c346337757078703332766675377970376e6232326769627179727a612f62616679626569676d6765757a6b35373675626c6f766c6f6a367672677a626e6d7379776e66777a716a6b623568376672677a717966676c6372652f6261667962656966676577786c34686f707069656c6d663568677a7733323368336f6d7936326c6e356c62686e3433337172696e7a3468666c68652f6261667962656961686d7334327a716a6f646a34363673677837367233676937726333377969716565796f35786b776d7065667665646e696861692f6261667962656962657177727762356c35726b616b7a33756e613362787568356c35377773717a716b7a76337870747873776e787961683565656d2f
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636aac90c71161012e578063a0ef91df116100ab578063d5abeb011161006f578063d5abeb011461081d578063dc33e68114610848578063e985e9c514610885578063f2fde38b146108c2578063f4a0a528146108eb57610230565b8063a0ef91df1461073a578063a22cb46514610751578063b88d4fde1461077a578063c3e7e0d7146107a3578063c87b56dd146107e057610230565b80638980f11f116100f25780638980f11f146106745780638b3806631461069d5780638da5cb5b146106c857806395d89b41146106f3578063a0712d681461071e57610230565b80636aac90c7146105b757806370a08231146105e0578063715018a61461061d5780637c928fe9146106345780638456cb591461065d57610230565b80633ae4514e116101bc57806354d9eef61161018057806354d9eef6146104bc578063572849c4146104f95780635c975abb146105245780636352211e1461054f5780636817c76c1461058c57610230565b80633ae4514e146103e65780633f4ba83a1461042357806342842e0e1461043a5780634f6ccce71461046357806350ccda0c146104a057610230565b806318160ddd1161020357806318160ddd146103035780631e14d44b1461032e57806323b872dd146103575780632f745c5914610380578063316d86a4146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613600565b610914565b6040516102699190613d78565b60405180910390f35b34801561027e57600080fd5b50610287610926565b6040516102949190613d93565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061365a565b6109b8565b6040516102d19190613ce8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613593565b6109fe565b005b34801561030f57600080fd5b50610318610b16565b6040516103259190614115565b60405180910390f35b34801561033a57600080fd5b506103556004803603810190610350919061365a565b610b23565b005b34801561036357600080fd5b5061037e6004803603810190610379919061347d565b610b35565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613593565b610b95565b6040516103b49190614115565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061365a565b610c3a565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061365a565b610c4c565b60405161041a9190614115565b60405180910390f35b34801561042f57600080fd5b50610438610c70565b005b34801561044657600080fd5b50610461600480360381019061045c919061347d565b610c82565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061365a565b610ca2565b6040516104979190614115565b60405180910390f35b6104ba60048036038101906104b591906136e7565b610d13565b005b3480156104c857600080fd5b506104e360048036038101906104de919061365a565b611043565b6040516104f09190614115565b60405180910390f35b34801561050557600080fd5b5061050e61105b565b60405161051b9190614115565b60405180910390f35b34801561053057600080fd5b50610539611061565b6040516105469190613d78565b60405180910390f35b34801561055b57600080fd5b506105766004803603810190610571919061365a565b611078565b6040516105839190613ce8565b60405180910390f35b34801561059857600080fd5b506105a161112a565b6040516105ae9190614115565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613687565b611130565b005b3480156105ec57600080fd5b5061060760048036038101906106029190613410565b6111ee565b6040516106149190614115565b60405180910390f35b34801561062957600080fd5b506106326112a6565b005b34801561064057600080fd5b5061065b6004803603810190610656919061365a565b6112ba565b005b34801561066957600080fd5b50610672611561565b005b34801561068057600080fd5b5061069b60048036038101906106969190613593565b611573565b005b3480156106a957600080fd5b506106b2611614565b6040516106bf9190614115565b60405180910390f35b3480156106d457600080fd5b506106dd61161a565b6040516106ea9190613ce8565b60405180910390f35b3480156106ff57600080fd5b50610708611644565b6040516107159190613d93565b60405180910390f35b6107386004803603810190610733919061365a565b6116d6565b005b34801561074657600080fd5b5061074f6118f3565b005b34801561075d57600080fd5b5061077860048036038101906107739190613553565b611999565b005b34801561078657600080fd5b506107a1600480360381019061079c91906134d0565b6119af565b005b3480156107af57600080fd5b506107ca60048036038101906107c5919061365a565b611a11565b6040516107d79190614115565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061365a565b611a35565b6040516108149190613d93565b60405180910390f35b34801561082957600080fd5b50610832611a47565b60405161083f9190614115565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a9190613410565b611a4d565b60405161087c9190614115565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a7919061343d565b611a65565b6040516108b99190613d78565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190613410565b611af9565b005b3480156108f757600080fd5b50610912600480360381019061090d919061365a565b611b7d565b005b600061091f82611b8f565b9050919050565b606060008054610935906143d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610961906143d3565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b60006109c382611c09565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0982611078565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190614055565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611c54565b73ffffffffffffffffffffffffffffffffffffffff161480610ac85750610ac781610ac2611c54565b611a65565b5b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613fb5565b60405180910390fd5b610b118383611c5c565b505050565b6000600880549050905090565b610b2b611d15565b8060118190555050565b610b46610b40611c54565b82611d93565b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906140b5565b60405180910390fd5b610b90838383611e28565b505050565b6000610ba0836111ee565b8210610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613dd5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c42611d15565b8060138190555050565b60148181548110610c5c57600080fd5b906000526020600020016000915090505481565b610c78611d15565b610c8061208f565b565b610c9d838383604051806020016040528060008152506119af565b505050565b6000610cac610b16565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490614095565b60405180910390fd5b60088281548110610d0157610d0061456c565b5b90600052602060002001549050919050565b610d1b6120f2565b610d2482611078565b73ffffffffffffffffffffffffffffffffffffffff16610d42611c54565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613f15565b60405180910390fd5b60135481610da69190614265565b341015610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90614015565b60405180910390fd5b6000600f6000848152602001908152602001600020549050600082600f600086815260200190815260200160002054610e2191906141de565b905060058210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613f95565b60405180910390fd5b6005811115610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190614075565b60405180910390fd5b6015600182610eb991906142bf565b81548110610eca57610ec961456c565b5b90600052602060002001546014600183610ee491906142bf565b81548110610ef557610ef461456c565b5b906000526020600020015410610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790613ef5565b60405180910390fd5b6014600183610f4f91906142bf565b81548110610f6057610f5f61456c565b5b906000526020600020016000815480929190610f7b906143a9565b91905055506014600182610f8f91906142bf565b81548110610fa057610f9f61456c565b5b906000526020600020016000815480929190610fbb90614436565b919050555080600f60008681526020019081526020016000208190555060006016600183610fe991906142bf565b81548110610ffa57610ff961456c565b5b9060005260206000200161100d8661213c565b601760405160200161102193929190613cb7565b604051602081830303815290604052905061103c858261229d565b5050505050565b600f6020528060005260406000206000915090505481565b60115481565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614035565b60405180910390fd5b80915050919050565b60105481565b611138611d15565b6001831015801561114a575060058311155b611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613ed5565b60405180910390fd5b818160405160200161119c929190613c6f565b60405160208183030381529060405260166001856111ba91906142bf565b815481106111cb576111ca61456c565b5b9060005260206000200190805190602001906111e8929190613229565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125690613f55565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ae611d15565b6112b86000612311565b565b6112c26120f2565b60115481600e60006112d2611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461131791906141de565b11158061135d575061132761161a565b73ffffffffffffffffffffffffffffffffffffffff16611345611c54565b73ffffffffffffffffffffffffffffffffffffffff16145b61139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613e35565b60405180910390fd5b601254816113a8610b16565b6113b291906141de565b11156113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea906140f5565b60405180910390fd5b60005b8181101561155d57600e600061140a611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061145590614436565b9190505550611464600d6123d7565b6000611470600d6123ed565b90506001600f60008381526020019081526020016000208190555060146000815481106114a05761149f61456c565b5b9060005260206000200160008154809291906114bb90614436565b9190505550600060166001600f6000858152602001908152602001600020546114e491906142bf565b815481106114f5576114f461456c565b5b906000526020600020016115088361213c565b601760405160200161151c93929190613cb7565b604051602081830303815290604052905061153e611538611c54565b836123fb565b611548828261229d565b5050808061155590614436565b9150506113f6565b5050565b611569611d15565b611571612419565b565b61157b611d15565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61159f61161a565b836040518363ffffffff1660e01b81526004016115bd929190613d4f565b602060405180830381600087803b1580156115d757600080fd5b505af11580156115eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160f91906135d3565b505050565b60135481565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611653906143d3565b80601f016020809104026020016040519081016040528092919081815260200182805461167f906143d3565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b5050505050905090565b6116de6120f2565b601054816116ec9190614265565b34101561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614015565b60405180910390fd5b6012548161173a610b16565b61174491906141de565b1115611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906140f5565b60405180910390fd5b60005b818110156118ef57600e600061179c611c54565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117e790614436565b91905055506117f6600d6123d7565b6000611802600d6123ed565b90506001600f60008381526020019081526020016000208190555060146000815481106118325761183161456c565b5b90600052602060002001600081548092919061184d90614436565b9190505550600060166001600f60008581526020019081526020016000205461187691906142bf565b815481106118875761188661456c565b5b9060005260206000200161189a8361213c565b60176040516020016118ae93929190613cb7565b60405160208183030381529060405290506118d06118ca611c54565b836123fb565b6118da828261229d565b505080806118e790614436565b915050611788565b5050565b6002600c541415611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906140d5565b60405180910390fd5b6002600c8190555061194961161a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561198e573d6000803e3d6000fd5b506001600c81905550565b6119ab6119a4611c54565b838361247c565b5050565b6119c06119ba611c54565b83611d93565b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906140b5565b60405180910390fd5b611a0b848484846125e9565b50505050565b60158181548110611a2157600080fd5b906000526020600020016000915090505481565b6060611a4082612645565b9050919050565b60125481565b600e6020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b01611d15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613e15565b60405180910390fd5b611b7a81612311565b50565b611b85611d15565b8060108190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c025750611c0182612758565b5b9050919050565b611c128161283a565b611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614035565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ccf83611078565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611d1d611c54565b73ffffffffffffffffffffffffffffffffffffffff16611d3b61161a565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613ff5565b60405180910390fd5b565b600080611d9f83611078565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de15750611de08185611a65565b5b80611e1f57508373ffffffffffffffffffffffffffffffffffffffff16611e07846109b8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4882611078565b73ffffffffffffffffffffffffffffffffffffffff1614611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9590613e55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613e95565b60405180910390fd5b611f198383836128a6565b611f24600082611c5c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7491906142bf565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fcb91906141de565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208a8383836128be565b505050565b6120976128c3565b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120db611c54565b6040516120e89190613ce8565b60405180910390a1565b6120fa611061565b1561213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613f35565b60405180910390fd5b565b60606000821415612184576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612298565b600082905060005b600082146121b657808061219f90614436565b915050600a826121af9190614234565b915061218c565b60008167ffffffffffffffff8111156121d2576121d161459b565b5b6040519080825280601f01601f1916602001820160405280156122045781602001600182028036833780820191505090505b5090505b600085146122915760018261221d91906142bf565b9150600a8561222c919061447f565b603061223891906141de565b60f81b81838151811061224e5761224d61456c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561228a9190614234565b9450612208565b8093505050505b919050565b6122a68261283a565b6122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc90613f75565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061230c929190613229565b505050565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61241582826040518060200160405280600081525061290c565b5050565b6124216120f2565b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612465611c54565b6040516124729190613ce8565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290613eb5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125dc9190613d78565b60405180910390a3505050565b6125f4848484611e28565b61260084848484612967565b61263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263690613df5565b60405180910390fd5b50505050565b606061265082611c09565b6000600a60008481526020019081526020016000208054612670906143d3565b80601f016020809104026020016040519081016040528092919081815260200182805461269c906143d3565b80156126e95780601f106126be576101008083540402835291602001916126e9565b820191906000526020600020905b8154815290600101906020018083116126cc57829003601f168201915b5050505050905060006126fa612afe565b9050600081511415612710578192505050612753565b60008251111561274557808260405160200161272d929190613c93565b60405160208183030381529060405292505050612753565b61274e84612b3b565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061282357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612833575061283282612ba3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6128ae6120f2565b6128b9838383612c0d565b505050565b505050565b6128cb611061565b61290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190613db5565b60405180910390fd5b565b6129168383612d21565b6129236000848484612967565b612962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295990613df5565b60405180910390fd5b505050565b60006129888473ffffffffffffffffffffffffffffffffffffffff16612efb565b15612af1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129b1611c54565b8786866040518563ffffffff1660e01b81526004016129d39493929190613d03565b602060405180830381600087803b1580156129ed57600080fd5b505af1925050508015612a1e57506040513d601f19601f82011682018060405250810190612a1b919061362d565b60015b612aa1573d8060008114612a4e576040519150601f19603f3d011682016040523d82523d6000602084013e612a53565b606091505b50600081511415612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9090613df5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612af6565b600190505b949350505050565b60606040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250905090565b6060612b4682611c09565b6000612b50612afe565b90506000815111612b705760405180602001604052806000815250612b9b565b80612b7a8461213c565b604051602001612b8b929190613c93565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c18838383612f1e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5b57612c5681612f23565b612c9a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c9957612c988382612f6c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cdd57612cd8816130d9565b612d1c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d1b57612d1a82826131aa565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890613fd5565b60405180910390fd5b612d9a8161283a565b15612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190613e75565b60405180910390fd5b612de6600083836128a6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e3691906141de565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ef7600083836128be565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f79846111ee565b612f8391906142bf565b9050600060076000848152602001908152602001600020549050818114613068576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130ed91906142bf565b905060006009600084815260200190815260200160002054905060006008838154811061311d5761311c61456c565b5b90600052602060002001549050806008838154811061313f5761313e61456c565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061318e5761318d61453d565b5b6001900381819060005260206000200160009055905550505050565b60006131b5836111ee565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613235906143d3565b90600052602060002090601f016020900481019282613257576000855561329e565b82601f1061327057805160ff191683800117855561329e565b8280016001018555821561329e579182015b8281111561329d578251825591602001919060010190613282565b5b5090506132ab91906132af565b5090565b5b808211156132c85760008160009055506001016132b0565b5090565b60006132df6132da84614155565b614130565b9050828152602081018484840111156132fb576132fa6145d9565b5b613306848285614367565b509392505050565b60008135905061331d81614cd5565b92915050565b60008135905061333281614cec565b92915050565b60008151905061334781614cec565b92915050565b60008135905061335c81614d03565b92915050565b60008151905061337181614d03565b92915050565b600082601f83011261338c5761338b6145cf565b5b813561339c8482602086016132cc565b91505092915050565b60008083601f8401126133bb576133ba6145cf565b5b8235905067ffffffffffffffff8111156133d8576133d76145ca565b5b6020830191508360018202830111156133f4576133f36145d4565b5b9250929050565b60008135905061340a81614d1a565b92915050565b600060208284031215613426576134256145e3565b5b60006134348482850161330e565b91505092915050565b60008060408385031215613454576134536145e3565b5b60006134628582860161330e565b92505060206134738582860161330e565b9150509250929050565b600080600060608486031215613496576134956145e3565b5b60006134a48682870161330e565b93505060206134b58682870161330e565b92505060406134c6868287016133fb565b9150509250925092565b600080600080608085870312156134ea576134e96145e3565b5b60006134f88782880161330e565b94505060206135098782880161330e565b935050604061351a878288016133fb565b925050606085013567ffffffffffffffff81111561353b5761353a6145de565b5b61354787828801613377565b91505092959194509250565b6000806040838503121561356a576135696145e3565b5b60006135788582860161330e565b925050602061358985828601613323565b9150509250929050565b600080604083850312156135aa576135a96145e3565b5b60006135b88582860161330e565b92505060206135c9858286016133fb565b9150509250929050565b6000602082840312156135e9576135e86145e3565b5b60006135f784828501613338565b91505092915050565b600060208284031215613616576136156145e3565b5b60006136248482850161334d565b91505092915050565b600060208284031215613643576136426145e3565b5b600061365184828501613362565b91505092915050565b6000602082840312156136705761366f6145e3565b5b600061367e848285016133fb565b91505092915050565b6000806000604084860312156136a05761369f6145e3565b5b60006136ae868287016133fb565b935050602084013567ffffffffffffffff8111156136cf576136ce6145de565b5b6136db868287016133a5565b92509250509250925092565b600080604083850312156136fe576136fd6145e3565b5b600061370c858286016133fb565b925050602061371d858286016133fb565b9150509250929050565b613730816142f3565b82525050565b61373f81614305565b82525050565b60006137508261419b565b61375a81856141b1565b935061376a818560208601614376565b613773816145e8565b840191505092915050565b600061378a83856141d3565b9350613797838584614367565b82840190509392505050565b60006137ae826141a6565b6137b881856141c2565b93506137c8818560208601614376565b6137d1816145e8565b840191505092915050565b60006137e7826141a6565b6137f181856141d3565b9350613801818560208601614376565b80840191505092915050565b6000815461381a816143d3565b61382481866141d3565b9450600182166000811461383f576001811461385057613883565b60ff19831686528186019350613883565b61385985614186565b60005b8381101561387b5781548189015260018201915060208101905061385c565b838801955050505b50505092915050565b60006138996014836141c2565b91506138a4826145f9565b602082019050919050565b60006138bc602b836141c2565b91506138c782614622565b604082019050919050565b60006138df6032836141c2565b91506138ea82614671565b604082019050919050565b60006139026026836141c2565b915061390d826146c0565b604082019050919050565b6000613925602b836141c2565b91506139308261470f565b604082019050919050565b60006139486025836141c2565b91506139538261475e565b604082019050919050565b600061396b601c836141c2565b9150613976826147ad565b602082019050919050565b600061398e6024836141c2565b9150613999826147d6565b604082019050919050565b60006139b16019836141c2565b91506139bc82614825565b602082019050919050565b60006139d46014836141c2565b91506139df8261484e565b602082019050919050565b60006139f76032836141c2565b9150613a0282614877565b604082019050919050565b6000613a1a6023836141c2565b9150613a25826148c6565b604082019050919050565b6000613a3d6010836141c2565b9150613a4882614915565b602082019050919050565b6000613a606029836141c2565b9150613a6b8261493e565b604082019050919050565b6000613a83602e836141c2565b9150613a8e8261498d565b604082019050919050565b6000613aa66020836141c2565b9150613ab1826149dc565b602082019050919050565b6000613ac9603e836141c2565b9150613ad482614a05565b604082019050919050565b6000613aec6020836141c2565b9150613af782614a54565b602082019050919050565b6000613b0f6020836141c2565b9150613b1a82614a7d565b602082019050919050565b6000613b326011836141c2565b9150613b3d82614aa6565b602082019050919050565b6000613b556018836141c2565b9150613b6082614acf565b602082019050919050565b6000613b786021836141c2565b9150613b8382614af8565b604082019050919050565b6000613b9b6026836141c2565b9150613ba682614b47565b604082019050919050565b6000613bbe602c836141c2565b9150613bc982614b96565b604082019050919050565b6000613be1602e836141c2565b9150613bec82614be5565b604082019050919050565b6000613c04601f836141c2565b9150613c0f82614c34565b602082019050919050565b6000613c276001836141d3565b9150613c3282614c5d565b600182019050919050565b6000613c4a6021836141c2565b9150613c5582614c86565b604082019050919050565b613c698161435d565b82525050565b6000613c7c82848661377e565b9150613c8782613c1a565b91508190509392505050565b6000613c9f82856137dc565b9150613cab82846137dc565b91508190509392505050565b6000613cc3828661380d565b9150613ccf82856137dc565b9150613cdb828461380d565b9150819050949350505050565b6000602082019050613cfd6000830184613727565b92915050565b6000608082019050613d186000830187613727565b613d256020830186613727565b613d326040830185613c60565b8181036060830152613d448184613745565b905095945050505050565b6000604082019050613d646000830185613727565b613d716020830184613c60565b9392505050565b6000602082019050613d8d6000830184613736565b92915050565b60006020820190508181036000830152613dad81846137a3565b905092915050565b60006020820190508181036000830152613dce8161388c565b9050919050565b60006020820190508181036000830152613dee816138af565b9050919050565b60006020820190508181036000830152613e0e816138d2565b9050919050565b60006020820190508181036000830152613e2e816138f5565b9050919050565b60006020820190508181036000830152613e4e81613918565b9050919050565b60006020820190508181036000830152613e6e8161393b565b9050919050565b60006020820190508181036000830152613e8e8161395e565b9050919050565b60006020820190508181036000830152613eae81613981565b9050919050565b60006020820190508181036000830152613ece816139a4565b9050919050565b60006020820190508181036000830152613eee816139c7565b9050919050565b60006020820190508181036000830152613f0e816139ea565b9050919050565b60006020820190508181036000830152613f2e81613a0d565b9050919050565b60006020820190508181036000830152613f4e81613a30565b9050919050565b60006020820190508181036000830152613f6e81613a53565b9050919050565b60006020820190508181036000830152613f8e81613a76565b9050919050565b60006020820190508181036000830152613fae81613a99565b9050919050565b60006020820190508181036000830152613fce81613abc565b9050919050565b60006020820190508181036000830152613fee81613adf565b9050919050565b6000602082019050818103600083015261400e81613b02565b9050919050565b6000602082019050818103600083015261402e81613b25565b9050919050565b6000602082019050818103600083015261404e81613b48565b9050919050565b6000602082019050818103600083015261406e81613b6b565b9050919050565b6000602082019050818103600083015261408e81613b8e565b9050919050565b600060208201905081810360008301526140ae81613bb1565b9050919050565b600060208201905081810360008301526140ce81613bd4565b9050919050565b600060208201905081810360008301526140ee81613bf7565b9050919050565b6000602082019050818103600083015261410e81613c3d565b9050919050565b600060208201905061412a6000830184613c60565b92915050565b600061413a61414b565b90506141468282614405565b919050565b6000604051905090565b600067ffffffffffffffff8211156141705761416f61459b565b5b614179826145e8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006141e98261435d565b91506141f48361435d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614229576142286144b0565b5b828201905092915050565b600061423f8261435d565b915061424a8361435d565b92508261425a576142596144df565b5b828204905092915050565b60006142708261435d565b915061427b8361435d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142b4576142b36144b0565b5b828202905092915050565b60006142ca8261435d565b91506142d58361435d565b9250828210156142e8576142e76144b0565b5b828203905092915050565b60006142fe8261433d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614394578082015181840152602081019050614379565b838111156143a3576000848401525b50505050565b60006143b48261435d565b915060008214156143c8576143c76144b0565b5b600182039050919050565b600060028204905060018216806143eb57607f821691505b602082108114156143ff576143fe61450e565b5b50919050565b61440e826145e8565b810181811067ffffffffffffffff8211171561442d5761442c61459b565b5b80604052505050565b60006144418261435d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614474576144736144b0565b5b600182019050919050565b600061448a8261435d565b91506144958361435d565b9250826144a5576144a46144df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d6178206d696e74207060008201527f6572206164647265737321000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5374616765206f7574206f6620626f756e647321000000000000000000000000600082015250565b7f4d617820706f70756c6174696f6e20666f72207461726765742065766f6c757460008201527f696f6e2073746167652072656163686564210000000000000000000000000000602082015250565b7f43616e27742065766f6c766520616e20452e542e20796f7520646f6e2774206f60008201527f776e210000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4d6178206c6576656c207265616368656420666f72207468697320452e542e21600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682066756e647321000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45766f6c7574696f6e20776f756c6420657863656564206d617820452e542e2060008201527f7374616765210000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b614cde816142f3565b8114614ce957600080fd5b50565b614cf581614305565b8114614d0057600080fd5b50565b614d0c81614311565b8114614d1757600080fd5b50565b614d238161435d565b8114614d2e57600080fd5b5056fea26469706673582212201b88e5655198a2f6637941fa80e30613a842040ea8834b97558dcdf6230382df64736f6c63430008070033
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.