NFT
Overview
TokenID
2706
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ImpermanentDigital
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; /* @* @@@@@ /@@@@@@@@ @@ @@@@@@@ .@@@@@@@@@@@ @@@@@@@@@@ @@@@@@@@@ @@@@@@@@@ @@@@ @@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@& @@@ @@@@ @@@@@@* @@@, @@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ .@@@@ @@@@@ ,@@@@@@@@@@@@@@@ @@@@@@@@@,@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@ @@@@ @@@@@ (@@@@@( @@@@@@ @@@@@@@@ @@@% @@@@@ @@@ @@ @@@@@@@@@@@@@@ @@@@@@ @@@@@@ @@@@@@@ @@@@@@@ @# @@@@@@@ @@@@@@@@@@@@@@@ @@@@@@ %@@@@@@ @@@@@@@@@@ @@@& @@@@@@@@ @@ .@@@@ @@@@@ @ @@@@@@ @@@@@ @@@@@ @@@@ @@@ @@@ @@@@ @@@@@@@@@@@@ @@@@@* @@@@@ /@@@@ @@@@( @@ @@@@ @ @@@@ ,@@@@ ,@ @@ @@@@@@@ @@@@@@@@@@@@@@@ @@@@ &@@@@@@@ #@@@. @@@, @@@ @@ @@@( @@@@ @@@@@@@@@@@@@@@@@@. @@@@@@@ @@@@@@@ @. @@@@ @ @@@@@@ @@@@@@@@ @@ @@@@@@ @@@@@@ @@@@ @@@@@@@@@@@@@@@@@@ &@@@ @@@@ @@@@@@ @@@@ @@@@ @@@@@@@@@@@@@@@@@@@@ @@@@@@ @@@@ @@ @@@@* @@@@@@ @@ .@@@@@, @@@@@ @@@@@@@@@@@ @@@& @@@@ @@@@@ @@@@@@@@@ @@@@ @@@@ @@@@@@ @@@@@ @@@@ /@@@@ @@@@@@@ ,@@ @@@@@ @@@@@@@ @@@@@@@ @@@@@@@ @@@@@ #@@@@ @@@@@@@@ @@@@ @@@ @@@@@ .#@@@@@@@@@ @@@@ @@@@@ %@@@@@ @@@ @@@@@@@@@@@@@@@ @@@@@@ @@@@@@ @@@@@@@@@@ @@@@@@@@@@ @@@@@@ @@@@@@@@@@@@@@@@@@@@ @@@@@@@@% @@@@, &@@@ @@@@@ @@@& @@@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@ @@@@@( &@ @@@@@@@@@@@ @@@@@@@ @@@@@ @@@@@ @@@@ #@@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@ @@@@@ ,@@@@ @@@@@@@@@ @@@@@ @@@@@@@@@@@@@@@@@@@@@ @@@@@@ @@@@@@ @@@@@@@ @@@@@@ %@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@ (@@@@@ .@@@@@@@@ @@@@@@ @@@@@@ .@@@@ @@@@@@ @@@@@ @@@@@ */ contract ImpermanentDigital is ERC721, ERC721Enumerable, ERC721Burnable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public maxTokenSupply; uint256 public constant MAX_MINTS_PER_TXN = 8; uint256 public mintPrice = 0.1 ether; uint256 public maxPresaleMintsPerWallet = 4; bool public preSaleIsActive = false; bool public saleIsActive = false; bool public evolutionIsActive = false; string public baseURI; string public provenance; uint256 public startingIndexBlock; uint256 public startingIndex; address public afterlifeContractAddress; address public auraContractAddress; mapping (address => uint256) private _presaleMints; address[6] private _shareholders; uint[6] private _shares; event PaymentReleased(address to, uint256 amount); event IterationEvolved(uint256 tokenId, uint256 startingIterationNumber, uint256 endingIterationNumber); constructor(string memory name, string memory symbol, uint256 maxImpermanentSupply) ERC721(name, symbol) { maxTokenSupply = maxImpermanentSupply; _shareholders[0] = 0xFb728a85e05b74EA63243E8108080aA9bbc595E8; // Glassface _shareholders[1] = 0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3; // Treasure-Seeker _shareholders[2] = 0x7f73422854dD9727858bE39E86C1AD8B6bCA89d4; // Wolfbear _shareholders[3] = 0x93a0AA2CEd962A4BBBC8FA37b0b8d8885c595417; // Gowens _shareholders[4] = 0x1d14d9e297DfbcE003f5A8EbcF8cBa7fAEe70B91; // Yuri _shareholders[5] = 0xaf6c9fA6a10DCcBCC636F15E365c8A0aD7fcaB99; // Dedz _shares[0] = 5350; _shares[1] = 2500; _shares[2] = 2000; _shares[3] = 50; _shares[4] = 50; _shares[5] = 50; } function setMaxTokenSupply(uint256 maxImpermanentSupply) public onlyOwner { maxTokenSupply = maxImpermanentSupply; } function setMintPrice(uint256 newPrice) public onlyOwner { mintPrice = newPrice; } function setMaxPresaleMintsPerWallet(uint256 newLimit) public onlyOwner { maxPresaleMintsPerWallet = newLimit; } function setAfterlifeContractAddress(address newAfterlifeContractAddress) public onlyOwner { afterlifeContractAddress = newAfterlifeContractAddress; } function setAuraContractAddress(address newAuraContractAddress) public onlyOwner { auraContractAddress = newAuraContractAddress; } function withdrawForGiveaway(uint256 amount, address payable to) public onlyOwner { Address.sendValue(to, amount); emit PaymentReleased(to, amount); } function withdraw(uint256 amount) public onlyOwner { require(address(this).balance >= amount, "Insufficient balance"); uint256 totalShares = 10000; for (uint256 i = 0; i < 6; i++) { uint256 payment = amount * _shares[i] / totalShares; Address.sendValue(payable(_shareholders[i]), payment); emit PaymentReleased(_shareholders[i], payment); } } /* * Mint reserved NFTs for giveaways, devs, etc. */ function reserveMint(uint256 reservedAmount, address mintAddress) public onlyOwner { uint256 supply = _tokenIdCounter.current(); for (uint256 i = 1; i <= reservedAmount; i++) { _safeMint(mintAddress, supply + i); _tokenIdCounter.increment(); } } /* * Pause sale if active, make active if paused. */ function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } /* * Pause pre-sale if active, make active if paused. */ function flipPreSaleState() public onlyOwner { preSaleIsActive = !preSaleIsActive; } /* * Pause evolution if active, make active if paused. */ function flipEvolutionState() public onlyOwner { evolutionIsActive = !evolutionIsActive; } /* * Mint Impermanent Digital NFTs, woot! */ function mintImpermanentDigitals(uint256 numberOfTokens) public payable { require(saleIsActive, "Sale is not live yet"); require(numberOfTokens <= MAX_MINTS_PER_TXN, "You can mint a max of 8 NFTs at a time"); require(totalSupply() + numberOfTokens <= maxTokenSupply, "Purchase would exceed max available NFTs"); require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct"); for(uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = _tokenIdCounter.current() + 1; if (mintIndex <= maxTokenSupply) { _tokenIdCounter.increment(); _safeMint(msg.sender, mintIndex); } } } /* * Mint Impermanent Digital NFTs during pre-sale */ function presaleMint(uint256 numberOfTokens) public payable { require(preSaleIsActive, "Pre-sale is not live yet"); require(_presaleMints[msg.sender] + numberOfTokens <= maxPresaleMintsPerWallet, "Max mints per wallet limit exceeded"); require(totalSupply() + numberOfTokens <= maxTokenSupply, "Purchase would exceed max available NFTs"); require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct"); _presaleMints[msg.sender] += numberOfTokens; for(uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = _tokenIdCounter.current() + 1; if (mintIndex <= maxTokenSupply) { _tokenIdCounter.increment(); _safeMint(msg.sender, mintIndex); } } // If we haven't set the starting index, set the starting index block. if (startingIndexBlock == 0) { startingIndexBlock = block.number; } } function burnForAfterlife(uint256 tokenId) external { require(evolutionIsActive, "Burning is not live yet"); require(_isApprovedOrOwner(tx.origin, tokenId) && (msg.sender == afterlifeContractAddress || msg.sender == auraContractAddress), "Caller is not owner nor approved"); _burn(tokenId); } function evolve(uint256 tokenId, uint256 startingIterationNumber, uint256 endingIterationNumber) external { require(evolutionIsActive, "Evolution is not live yet"); require(_isApprovedOrOwner(_msgSender(), tokenId), "Caller is not owner nor approved"); emit IterationEvolved(tokenId, startingIterationNumber, endingIterationNumber); } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } /** * Set the starting index for the collection. */ function setStartingIndex() public onlyOwner { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint(blockhash(startingIndexBlock)) % maxTokenSupply; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes). if (block.number - startingIndexBlock > 255) { startingIndex = uint(blockhash(block.number - 1)) % maxTokenSupply; } // Prevent default sequence. if (startingIndex == 0) { startingIndex = 1; } } /** * Set the starting index block for the collection. Usually, this will be set after the first sale mint. */ function emergencySetStartingIndexBlock() public onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } /* * Set provenance once it's calculated. */ function setProvenanceHash(string memory provenanceHash) public onlyOwner { provenance = provenanceHash; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-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` 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev 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); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxImpermanentSupply","type":"uint256"}],"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startingIterationNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endingIterationNumber","type":"uint256"}],"name":"IterationEvolved","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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterlifeContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auraContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnForAfterlife","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"evolutionIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startingIterationNumber","type":"uint256"},{"internalType":"uint256","name":"endingIterationNumber","type":"uint256"}],"name":"evolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipEvolutionState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"maxPresaleMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintImpermanentDigitals","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":[],"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":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"reserveMint","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAfterlifeContractAddress","type":"address"}],"name":"setAfterlifeContractAddress","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":"address","name":"newAuraContractAddress","type":"address"}],"name":"setAuraContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxPresaleMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxImpermanentSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267016345785d8a0000600d556004600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055503480156200007357600080fd5b50604051620067f7380380620067f783398181016040528101906200009991906200062b565b82828160009080519060200190620000b3929190620004e6565b508060019080519060200190620000cc929190620004e6565b5050506000620000ea620004de640100000000026401000000009004565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c8190555073fb728a85e05b74ea63243e8108080aa9bbc595e86017600060068110620001bd57620001bc620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc8eb8d2d1babd956136b57b0b9f49b433c019e36017600160068110620002295762000228620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737f73422854dd9727858be39e86c1ad8b6bca89d46017600260068110620002955762000294620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507393a0aa2ced962a4bbbc8fa37b0b8d8885c5954176017600360068110620003015762000300620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731d14d9e297dfbce003f5a8ebcf8cba7faee70b9160176004600681106200036d576200036c620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073af6c9fa6a10dccbcc636f15e365c8a0ad7fcab996017600560068110620003d957620003d8620007ff565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506114e6601d600060068110620004335762000432620007ff565b5b01819055506109c4601d600160068110620004535762000452620007ff565b5b01819055506107d0601d600260068110620004735762000472620007ff565b5b01819055506032601d600360068110620004925762000491620007ff565b5b01819055506032601d600460068110620004b157620004b0620007ff565b5b01819055506032601d600560068110620004d057620004cf620007ff565b5b01819055505050506200089c565b600033905090565b828054620004f49062000764565b90600052602060002090601f01602090048101928262000518576000855562000564565b82601f106200053357805160ff191683800117855562000564565b8280016001018555821562000564579182015b828111156200056357825182559160200191906001019062000546565b5b50905062000573919062000577565b5090565b5b808211156200059257600081600090555060010162000578565b5090565b6000620005ad620005a784620006ee565b620006c5565b905082815260208101848484011115620005cc57620005cb62000862565b5b620005d98482856200072e565b509392505050565b600082601f830112620005f957620005f86200085d565b5b81516200060b84826020860162000596565b91505092915050565b600081519050620006258162000882565b92915050565b6000806000606084860312156200064757620006466200086c565b5b600084015167ffffffffffffffff81111562000668576200066762000867565b5b6200067686828701620005e1565b935050602084015167ffffffffffffffff8111156200069a576200069962000867565b5b620006a886828701620005e1565b9250506040620006bb8682870162000614565b9150509250925092565b6000620006d1620006e4565b9050620006df82826200079a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200070c576200070b6200082e565b5b620007178262000871565b9050602081019050919050565b6000819050919050565b60005b838110156200074e57808201518184015260208101905062000731565b838111156200075e576000848401525b50505050565b600060028204905060018216806200077d57607f821691505b60208210811415620007945762000793620007d0565b5b50919050565b620007a58262000871565b810181811067ffffffffffffffff82111715620007c757620007c66200082e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200088d8162000724565b81146200089957600080fd5b50565b615f4b80620008ac6000396000f3fe608060405260043610610337576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116101c8578063c87b56dd11610114578063e985e9c5116100b2578063ebad3b921161008c578063ebad3b9214610b84578063f032554914610ba0578063f2fde38b14610bb7578063f4a0a52814610be057610337565b8063e985e9c514610b05578063e986655014610b42578063eb8d244414610b5957610337565b8063cd97651c116100ee578063cd97651c14610a5b578063dfe93fa314610a84578063e36d649814610aaf578063e90d9e0c14610ada57610337565b8063c87b56dd146109d7578063c9b298f114610a14578063cb774d4714610a3057610337565b80639524a00e11610181578063a22cb4651161015b578063a22cb46514610945578063b07ed9821461096e578063b88d4fde14610997578063c4a9202c146109c057610337565b80639524a00e146108c657806395d89b41146108f157806398f65fc41461091c57610337565b806370a08231146107de578063715018a61461081b5780637d17fcbe146108325780638881396c146108495780638da5cb5b146108725780638ea909231461089d57610337565b806334918dfd116102875780634f6ccce71161024057806360b02f701161021a57806360b02f70146107225780636352211e1461074b5780636817c76c146107885780636c0360eb146107b357610337565b80634f6ccce71461069157806350f7c204146106ce57806355f804b3146106f957610337565b806334918dfd14610597578063407db1f4146105ae57806342842e0e146105d957806342966c6814610602578063438b63001461062b5780634d7313a41461066857610337565b806310969523116102f457806323b872dd116102ce57806323b872dd146104dd5780632e1a7d4d146105065780632f35e11f1461052f5780632f745c591461055a57610337565b8063109695231461045e57806318160ddd146104875780631f0234d8146104b257610337565b806301ffc9a71461033c578063068124f11461037957806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a5780630f7309e814610433575b600080fd5b34801561034857600080fd5b50610363600480360381019061035e91906143d7565b610c09565b6040516103709190614c98565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190614214565b610c1b565b005b3480156103ae57600080fd5b506103b7610cdb565b6040516103c49190614cb3565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061447a565b610d6d565b6040516104019190614bbd565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614397565b610df2565b005b34801561043f57600080fd5b50610448610f0a565b6040516104559190614cb3565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190614431565b610f98565b005b34801561049357600080fd5b5061049c61102e565b6040516104a991906150f5565b60405180910390f35b3480156104be57600080fd5b506104c761103b565b6040516104d49190614c98565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190614281565b61104e565b005b34801561051257600080fd5b5061052d6004803603810190610528919061447a565b6110ae565b005b34801561053b57600080fd5b5061054461128d565b60405161055191906150f5565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190614397565b611293565b60405161058e91906150f5565b60405180910390f35b3480156105a357600080fd5b506105ac611338565b005b3480156105ba57600080fd5b506105c36113e0565b6040516105d09190614c98565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190614281565b6113f3565b005b34801561060e57600080fd5b506106296004803603810190610624919061447a565b611413565b005b34801561063757600080fd5b50610652600480360381019061064d9190614214565b61146f565b60405161065f9190614c76565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906144e7565b61151d565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061447a565b6115e0565b6040516106c591906150f5565b60405180910390f35b3480156106da57600080fd5b506106e3611651565b6040516106f091906150f5565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190614431565b611657565b005b34801561072e57600080fd5b50610749600480360381019061074491906144a7565b6116ed565b005b34801561075757600080fd5b50610772600480360381019061076d919061447a565b6117bd565b60405161077f9190614bbd565b60405180910390f35b34801561079457600080fd5b5061079d61186f565b6040516107aa91906150f5565b60405180910390f35b3480156107bf57600080fd5b506107c8611875565b6040516107d59190614cb3565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190614214565b611903565b60405161081291906150f5565b60405180910390f35b34801561082757600080fd5b506108306119bb565b005b34801561083e57600080fd5b50610847611af8565b005b34801561085557600080fd5b50610870600480360381019061086b919061447a565b611bc2565b005b34801561087e57600080fd5b50610887611c48565b6040516108949190614bbd565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614527565b611c72565b005b3480156108d257600080fd5b506108db611d51565b6040516108e89190614bbd565b60405180910390f35b3480156108fd57600080fd5b50610906611d77565b6040516109139190614cb3565b60405180910390f35b34801561092857600080fd5b50610943600480360381019061093e919061447a565b611e09565b005b34801561095157600080fd5b5061096c60048036038101906109679190614357565b611f5e565b005b34801561097a57600080fd5b506109956004803603810190610990919061447a565b6120df565b005b3480156109a357600080fd5b506109be60048036038101906109b991906142d4565b612165565b005b3480156109cc57600080fd5b506109d56121c7565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061447a565b61226f565b604051610a0b9190614cb3565b60405180910390f35b610a2e6004803603810190610a29919061447a565b612316565b005b348015610a3c57600080fd5b50610a4561255f565b604051610a5291906150f5565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614214565b612565565b005b348015610a9057600080fd5b50610a99612625565b604051610aa691906150f5565b60405180910390f35b348015610abb57600080fd5b50610ac461262a565b604051610ad191906150f5565b60405180910390f35b348015610ae657600080fd5b50610aef612630565b604051610afc9190614bbd565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190614241565b612656565b604051610b399190614c98565b60405180910390f35b348015610b4e57600080fd5b50610b576126ea565b005b348015610b6557600080fd5b50610b6e61285e565b604051610b7b9190614c98565b60405180910390f35b610b9e6004803603810190610b99919061447a565b612871565b005b348015610bac57600080fd5b50610bb5612a06565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190614214565b612aae565b005b348015610bec57600080fd5b50610c076004803603810190610c02919061447a565b612c5a565b005b6000610c1482612ce0565b9050919050565b610c23612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610c41611c48565b73ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90614f75565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610cea90615468565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1690615468565b8015610d635780601f10610d3857610100808354040283529160200191610d63565b820191906000526020600020905b815481529060010190602001808311610d4657829003601f168201915b5050505050905090565b6000610d7882612d62565b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614f55565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dfd826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614fd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8d612d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610ebc5750610ebb81610eb6612d5a565b612656565b5b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614eb5565b60405180910390fd5b610f058383612dce565b505050565b60118054610f1790615468565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4390615468565b8015610f905780601f10610f6557610100808354040283529160200191610f90565b820191906000526020600020905b815481529060010190602001808311610f7357829003601f168201915b505050505081565b610fa0612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90614f75565b60405180910390fd5b806011908051906020019061102a929190614013565b5050565b6000600880549050905090565b600f60009054906101000a900460ff1681565b61105f611059612d5a565b82612e87565b61109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590615035565b60405180910390fd5b6110a9838383612f65565b505050565b6110b6612d5a565b73ffffffffffffffffffffffffffffffffffffffff166110d4611c48565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614f75565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff16311015611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90614dd5565b60405180910390fd5b6000612710905060005b600681101561128857600082601d83600681106111ae576111ad615601565b5b0154856111bb91906152dc565b6111c591906152ab565b9050611206601783600681106111de576111dd615601565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826131c1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566017836006811061123b5761123a615601565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161126c929190614c4d565b60405180910390a1508080611280906154cb565b91505061118e565b505050565b600e5481565b600061129e83611903565b82106112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690614cf5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611340612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661135e611c48565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614f75565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600f60029054906101000a900460ff1681565b61140e83838360405180602001604052806000815250612165565b505050565b61142461141e612d5a565b82612e87565b611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906150b5565b60405180910390fd5b61146c816132cc565b50565b6060600061147c83611903565b905060008167ffffffffffffffff81111561149a57611499615630565b5b6040519080825280602002602001820160405280156114c85781602001602082028036833780820191505090505b50905060005b82811015611512576114e08582611293565b8282815181106114f3576114f2615601565b5b602002602001018181525050808061150a906154cb565b9150506114ce565b508092505050919050565b611525612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611543611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090614f75565b60405180910390fd5b6115a381836131c1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516115d4929190614bd8565b60405180910390a15050565b60006115ea61102e565b821061162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290615095565b60405180910390fd5b6008828154811061163f5761163e615601565b5b90600052602060002001549050919050565b600c5481565b61165f612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661167d611c48565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614f75565b60405180910390fd5b80601090805190602001906116e9929190614013565b5050565b6116f5612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611713611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614f75565b60405180910390fd5b6000611775600b6133dd565b90506000600190505b8381116117b75761179a8382846117959190615255565b6133eb565b6117a4600b613409565b80806117af906154cb565b91505061177e565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90614ef5565b60405180910390fd5b80915050919050565b600d5481565b6010805461188290615468565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90615468565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614ed5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c3612d5a565b73ffffffffffffffffffffffffffffffffffffffff166119e1611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b00612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614f75565b60405180910390fd5b600060135414611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090614e95565b60405180910390fd5b43601281905550565b611bca612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611be8611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614f75565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60029054906101000a900460ff16611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890615075565b60405180910390fd5b611cd2611ccc612d5a565b84612e87565b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614ff5565b60405180910390fd5b7f050f6d1e48ff59c6fe33940ebe9ef21fca269e539ae47f86944d751c2287c5de838383604051611d4493929190615110565b60405180910390a1505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611d8690615468565b80601f0160208091040260200160405190810160405280929190818152602001828054611db290615468565b8015611dff5780601f10611dd457610100808354040283529160200191611dff565b820191906000526020600020905b815481529060010190602001808311611de257829003601f168201915b5050505050905090565b600f60029054906101000a900460ff16611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90614cd5565b60405180910390fd5b611e623282612e87565b8015611f135750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611f125750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b5b611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990614ff5565b60405180910390fd5b611f5b816132cc565b50565b611f66612d5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614db5565b60405180910390fd5b8060056000611fe1612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208e612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d39190614c98565b60405180910390a35050565b6120e7612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612105611c48565b73ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614f75565b60405180910390fd5b80600c8190555050565b612176612170612d5a565b83612e87565b6121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90615035565b60405180910390fd5b6121c18484848461341f565b50505050565b6121cf612d5a565b73ffffffffffffffffffffffffffffffffffffffff166121ed611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f75565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b606061227a82612d62565b6122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090614fb5565b60405180910390fd5b60006122c361347b565b905060008151116122e3576040518060200160405280600081525061230e565b806122ed8461350d565b6040516020016122fe929190614b84565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff16612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614df5565b60405180910390fd5b600e5481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b39190615255565b11156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906150d5565b60405180910390fd5b600c548161240061102e565b61240a9190615255565b111561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614f35565b60405180910390fd5b3481600d5461245a91906152dc565b111561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290614e15565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ea9190615255565b9250508190555060005b81811015612548576000600161250a600b6133dd565b6125149190615255565b9050600c54811161253457612529600b613409565b61253333826133eb565b5b508080612540906154cb565b9150506124f4565b506000601254141561255c57436012819055505b50565b60135481565b61256d612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661258b611c48565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890614f75565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600881565b60125481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126f2612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612710611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614f75565b60405180910390fd5b6000601354146127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290614e95565b60405180910390fd5b600060125414156127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890615015565b60405180910390fd5b600c5460125440600190046128069190615514565b60138190555060ff6012544361281c9190615336565b111561284857600c546001436128329190615336565b40600190046128419190615514565b6013819055505b6000601354141561285c5760016013819055505b565b600f60019054906101000a900460ff1681565b600f60019054906101000a900460ff166128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b790615055565b60405180910390fd5b6008811115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614d75565b60405180910390fd5b600c548161291061102e565b61291a9190615255565b111561295b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295290614f35565b60405180910390fd5b3481600d5461296a91906152dc565b11156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290614e15565b60405180910390fd5b60005b81811015612a0257600060016129c4600b6133dd565b6129ce9190615255565b9050600c5481116129ee576129e3600b613409565b6129ed33826133eb565b5b5080806129fa906154cb565b9150506129ae565b5050565b612a0e612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612a2c611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990614f75565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612ab6612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612ad4611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190614f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190614d35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c62612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612c80611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614f75565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d535750612d528261368d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e41836117bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e9282612d62565b612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec890614e75565b60405180910390fd5b6000612edc836117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f4b57508373ffffffffffffffffffffffffffffffffffffffff16612f3384610d6d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f5c5750612f5b8185612656565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f85826117bd565b73ffffffffffffffffffffffffffffffffffffffff1614612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd290614f95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614d95565b60405180910390fd5b61305683838361376f565b613061600082612dce565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b19190615336565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131089190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b803073ffffffffffffffffffffffffffffffffffffffff1631101561321b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321290614e55565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161324190614ba8565b60006040518083038185875af1925050503d806000811461327e576040519150601f19603f3d011682016040523d82523d6000602084013e613283565b606091505b50509050806132c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132be90614e35565b60405180910390fd5b505050565b60006132d7826117bd565b90506132e58160008461376f565b6132f0600083612dce565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133409190615336565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b61340582826040518060200160405280600081525061377f565b5050565b6001816000016000828254019250508190555050565b61342a848484612f65565b613436848484846137da565b613475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346c90614d15565b60405180910390fd5b50505050565b60606010805461348a90615468565b80601f01602080910402602001604051908101604052809291908181526020018280546134b690615468565b80156135035780601f106134d857610100808354040283529160200191613503565b820191906000526020600020905b8154815290600101906020018083116134e657829003601f168201915b5050505050905090565b60606000821415613555576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613688565b600082905060005b60008214613587578080613570906154cb565b915050600a8261358091906152ab565b915061355d565b60008167ffffffffffffffff8111156135a3576135a2615630565b5b6040519080825280601f01601f1916602001820160405280156135d55781602001600182028036833780820191505090505b5090505b60008514613681576001826135ee9190615336565b9150600a856135fd9190615514565b60306136099190615255565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061363e5761363d615601565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561367a91906152ab565b94506135d9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061375857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137685750613767826139a9565b5b9050919050565b61377a838383613a13565b505050565b6137898383613b27565b61379660008484846137da565b6137d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cc90614d15565b60405180910390fd5b505050565b60006137fb8473ffffffffffffffffffffffffffffffffffffffff16613cf5565b1561399c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613824612d5a565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016138629493929190614c01565b602060405180830381600087803b15801561387c57600080fd5b505af19250505080156138ad57506040513d601f19601f820116820180604052508101906138aa9190614404565b60015b613930573d80600081146138dd576040519150601f19603f3d011682016040523d82523d6000602084013e6138e2565b606091505b50600081511415613928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391f90614d15565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139a1565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a1e838383613d08565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a6157613a5c81613d0d565b613aa0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a9f57613a9e8382613d56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ae357613ade81613ec3565b613b22565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b2157613b208282613f94565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8e90614f15565b60405180910390fd5b613ba081612d62565b15613be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd790614d55565b60405180910390fd5b613bec6000838361376f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c3c9190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6384611903565b613d6d9190615336565b9050600060076000848152602001908152602001600020549050818114613e52576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ed79190615336565b9050600060096000848152602001908152602001600020549050600060088381548110613f0757613f06615601565b5b906000526020600020015490508060088381548110613f2957613f28615601565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f7857613f776155d2565b5b6001900381819060005260206000200160009055905550505050565b6000613f9f83611903565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461401f90615468565b90600052602060002090601f0160209004810192826140415760008555614088565b82601f1061405a57805160ff1916838001178555614088565b82800160010185558215614088579182015b8281111561408757825182559160200191906001019061406c565b5b5090506140959190614099565b5090565b5b808211156140b257600081600090555060010161409a565b5090565b60006140c96140c48461516c565b615147565b9050828152602081018484840111156140e5576140e4615664565b5b6140f0848285615426565b509392505050565b600061410b6141068461519d565b615147565b90508281526020810184848401111561412757614126615664565b5b614132848285615426565b509392505050565b60008135905061414981615ea2565b92915050565b60008135905061415e81615eb9565b92915050565b60008135905061417381615ed0565b92915050565b60008135905061418881615ee7565b92915050565b60008151905061419d81615ee7565b92915050565b600082601f8301126141b8576141b761565f565b5b81356141c88482602086016140b6565b91505092915050565b600082601f8301126141e6576141e561565f565b5b81356141f68482602086016140f8565b91505092915050565b60008135905061420e81615efe565b92915050565b60006020828403121561422a5761422961566e565b5b60006142388482850161413a565b91505092915050565b600080604083850312156142585761425761566e565b5b60006142668582860161413a565b92505060206142778582860161413a565b9150509250929050565b60008060006060848603121561429a5761429961566e565b5b60006142a88682870161413a565b93505060206142b98682870161413a565b92505060406142ca868287016141ff565b9150509250925092565b600080600080608085870312156142ee576142ed61566e565b5b60006142fc8782880161413a565b945050602061430d8782880161413a565b935050604061431e878288016141ff565b925050606085013567ffffffffffffffff81111561433f5761433e615669565b5b61434b878288016141a3565b91505092959194509250565b6000806040838503121561436e5761436d61566e565b5b600061437c8582860161413a565b925050602061438d85828601614164565b9150509250929050565b600080604083850312156143ae576143ad61566e565b5b60006143bc8582860161413a565b92505060206143cd858286016141ff565b9150509250929050565b6000602082840312156143ed576143ec61566e565b5b60006143fb84828501614179565b91505092915050565b60006020828403121561441a5761441961566e565b5b60006144288482850161418e565b91505092915050565b6000602082840312156144475761444661566e565b5b600082013567ffffffffffffffff81111561446557614464615669565b5b614471848285016141d1565b91505092915050565b6000602082840312156144905761448f61566e565b5b600061449e848285016141ff565b91505092915050565b600080604083850312156144be576144bd61566e565b5b60006144cc858286016141ff565b92505060206144dd8582860161413a565b9150509250929050565b600080604083850312156144fe576144fd61566e565b5b600061450c858286016141ff565b925050602061451d8582860161414f565b9150509250929050565b6000806000606084860312156145405761453f61566e565b5b600061454e868287016141ff565b935050602061455f868287016141ff565b9250506040614570868287016141ff565b9150509250925092565b60006145868383614b66565b60208301905092915050565b61459b816153f0565b82525050565b6145aa8161536a565b82525050565b60006145bb826151de565b6145c5818561520c565b93506145d0836151ce565b8060005b838110156146015781516145e8888261457a565b97506145f3836151ff565b9250506001810190506145d4565b5085935050505092915050565b6146178161538e565b82525050565b6000614628826151e9565b614632818561521d565b9350614642818560208601615435565b61464b81615673565b840191505092915050565b6000614661826151f4565b61466b8185615239565b935061467b818560208601615435565b61468481615673565b840191505092915050565b600061469a826151f4565b6146a4818561524a565b93506146b4818560208601615435565b80840191505092915050565b60006146cd601783615239565b91506146d882615684565b602082019050919050565b60006146f0602b83615239565b91506146fb826156ad565b604082019050919050565b6000614713603283615239565b915061471e826156fc565b604082019050919050565b6000614736602683615239565b91506147418261574b565b604082019050919050565b6000614759601c83615239565b91506147648261579a565b602082019050919050565b600061477c602683615239565b9150614787826157c3565b604082019050919050565b600061479f602483615239565b91506147aa82615812565b604082019050919050565b60006147c2601983615239565b91506147cd82615861565b602082019050919050565b60006147e5601483615239565b91506147f08261588a565b602082019050919050565b6000614808601883615239565b9150614813826158b3565b602082019050919050565b600061482b601f83615239565b9150614836826158dc565b602082019050919050565b600061484e603a83615239565b915061485982615905565b604082019050919050565b6000614871601d83615239565b915061487c82615954565b602082019050919050565b6000614894602c83615239565b915061489f8261597d565b604082019050919050565b60006148b7601d83615239565b91506148c2826159cc565b602082019050919050565b60006148da603883615239565b91506148e5826159f5565b604082019050919050565b60006148fd602a83615239565b915061490882615a44565b604082019050919050565b6000614920602983615239565b915061492b82615a93565b604082019050919050565b6000614943602083615239565b915061494e82615ae2565b602082019050919050565b6000614966602883615239565b915061497182615b0b565b604082019050919050565b6000614989602c83615239565b915061499482615b5a565b604082019050919050565b60006149ac602083615239565b91506149b782615ba9565b602082019050919050565b60006149cf602983615239565b91506149da82615bd2565b604082019050919050565b60006149f2602f83615239565b91506149fd82615c21565b604082019050919050565b6000614a15602183615239565b9150614a2082615c70565b604082019050919050565b6000614a38602083615239565b9150614a4382615cbf565b602082019050919050565b6000614a5b602083615239565b9150614a6682615ce8565b602082019050919050565b6000614a7e60008361522e565b9150614a8982615d11565b600082019050919050565b6000614aa1603183615239565b9150614aac82615d14565b604082019050919050565b6000614ac4601483615239565b9150614acf82615d63565b602082019050919050565b6000614ae7601983615239565b9150614af282615d8c565b602082019050919050565b6000614b0a602c83615239565b9150614b1582615db5565b604082019050919050565b6000614b2d603083615239565b9150614b3882615e04565b604082019050919050565b6000614b50602383615239565b9150614b5b82615e53565b604082019050919050565b614b6f816153e6565b82525050565b614b7e816153e6565b82525050565b6000614b90828561468f565b9150614b9c828461468f565b91508190509392505050565b6000614bb382614a71565b9150819050919050565b6000602082019050614bd260008301846145a1565b92915050565b6000604082019050614bed6000830185614592565b614bfa6020830184614b75565b9392505050565b6000608082019050614c1660008301876145a1565b614c2360208301866145a1565b614c306040830185614b75565b8181036060830152614c42818461461d565b905095945050505050565b6000604082019050614c6260008301856145a1565b614c6f6020830184614b75565b9392505050565b60006020820190508181036000830152614c9081846145b0565b905092915050565b6000602082019050614cad600083018461460e565b92915050565b60006020820190508181036000830152614ccd8184614656565b905092915050565b60006020820190508181036000830152614cee816146c0565b9050919050565b60006020820190508181036000830152614d0e816146e3565b9050919050565b60006020820190508181036000830152614d2e81614706565b9050919050565b60006020820190508181036000830152614d4e81614729565b9050919050565b60006020820190508181036000830152614d6e8161474c565b9050919050565b60006020820190508181036000830152614d8e8161476f565b9050919050565b60006020820190508181036000830152614dae81614792565b9050919050565b60006020820190508181036000830152614dce816147b5565b9050919050565b60006020820190508181036000830152614dee816147d8565b9050919050565b60006020820190508181036000830152614e0e816147fb565b9050919050565b60006020820190508181036000830152614e2e8161481e565b9050919050565b60006020820190508181036000830152614e4e81614841565b9050919050565b60006020820190508181036000830152614e6e81614864565b9050919050565b60006020820190508181036000830152614e8e81614887565b9050919050565b60006020820190508181036000830152614eae816148aa565b9050919050565b60006020820190508181036000830152614ece816148cd565b9050919050565b60006020820190508181036000830152614eee816148f0565b9050919050565b60006020820190508181036000830152614f0e81614913565b9050919050565b60006020820190508181036000830152614f2e81614936565b9050919050565b60006020820190508181036000830152614f4e81614959565b9050919050565b60006020820190508181036000830152614f6e8161497c565b9050919050565b60006020820190508181036000830152614f8e8161499f565b9050919050565b60006020820190508181036000830152614fae816149c2565b9050919050565b60006020820190508181036000830152614fce816149e5565b9050919050565b60006020820190508181036000830152614fee81614a08565b9050919050565b6000602082019050818103600083015261500e81614a2b565b9050919050565b6000602082019050818103600083015261502e81614a4e565b9050919050565b6000602082019050818103600083015261504e81614a94565b9050919050565b6000602082019050818103600083015261506e81614ab7565b9050919050565b6000602082019050818103600083015261508e81614ada565b9050919050565b600060208201905081810360008301526150ae81614afd565b9050919050565b600060208201905081810360008301526150ce81614b20565b9050919050565b600060208201905081810360008301526150ee81614b43565b9050919050565b600060208201905061510a6000830184614b75565b92915050565b60006060820190506151256000830186614b75565b6151326020830185614b75565b61513f6040830184614b75565b949350505050565b6000615151615162565b905061515d828261549a565b919050565b6000604051905090565b600067ffffffffffffffff82111561518757615186615630565b5b61519082615673565b9050602081019050919050565b600067ffffffffffffffff8211156151b8576151b7615630565b5b6151c182615673565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615260826153e6565b915061526b836153e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a05761529f615545565b5b828201905092915050565b60006152b6826153e6565b91506152c1836153e6565b9250826152d1576152d0615574565b5b828204905092915050565b60006152e7826153e6565b91506152f2836153e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561532b5761532a615545565b5b828202905092915050565b6000615341826153e6565b915061534c836153e6565b92508282101561535f5761535e615545565b5b828203905092915050565b6000615375826153c6565b9050919050565b6000615387826153c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006153fb82615402565b9050919050565b600061540d82615414565b9050919050565b600061541f826153c6565b9050919050565b82818337600083830152505050565b60005b83811015615453578082015181840152602081019050615438565b83811115615462576000848401525b50505050565b6000600282049050600182168061548057607f821691505b60208210811415615494576154936155a3565b5b50919050565b6154a382615673565b810181811067ffffffffffffffff821117156154c2576154c1615630565b5b80604052505050565b60006154d6826153e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550957615508615545565b5b600182019050919050565b600061551f826153e6565b915061552a836153e6565b92508261553a57615539615574565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4275726e696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206d696e742061206d6178206f662038204e4654732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f5072652d73616c65206973206e6f74206c697665207965740000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f45766f6c7574696f6e206973206e6f74206c6976652079657400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206c696d697420657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b615eab8161536a565b8114615eb657600080fd5b50565b615ec28161537c565b8114615ecd57600080fd5b50565b615ed98161538e565b8114615ee457600080fd5b50565b615ef08161539a565b8114615efb57600080fd5b50565b615f07816153e6565b8114615f1257600080fd5b5056fea2646970667358221220dc999ab225afdb0d0723c4d6e7af3f4af425ad6b7be08eded0289d42592e8cfe64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000012496d7065726d616e656e744469676974616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024944000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610337576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116101c8578063c87b56dd11610114578063e985e9c5116100b2578063ebad3b921161008c578063ebad3b9214610b84578063f032554914610ba0578063f2fde38b14610bb7578063f4a0a52814610be057610337565b8063e985e9c514610b05578063e986655014610b42578063eb8d244414610b5957610337565b8063cd97651c116100ee578063cd97651c14610a5b578063dfe93fa314610a84578063e36d649814610aaf578063e90d9e0c14610ada57610337565b8063c87b56dd146109d7578063c9b298f114610a14578063cb774d4714610a3057610337565b80639524a00e11610181578063a22cb4651161015b578063a22cb46514610945578063b07ed9821461096e578063b88d4fde14610997578063c4a9202c146109c057610337565b80639524a00e146108c657806395d89b41146108f157806398f65fc41461091c57610337565b806370a08231146107de578063715018a61461081b5780637d17fcbe146108325780638881396c146108495780638da5cb5b146108725780638ea909231461089d57610337565b806334918dfd116102875780634f6ccce71161024057806360b02f701161021a57806360b02f70146107225780636352211e1461074b5780636817c76c146107885780636c0360eb146107b357610337565b80634f6ccce71461069157806350f7c204146106ce57806355f804b3146106f957610337565b806334918dfd14610597578063407db1f4146105ae57806342842e0e146105d957806342966c6814610602578063438b63001461062b5780634d7313a41461066857610337565b806310969523116102f457806323b872dd116102ce57806323b872dd146104dd5780632e1a7d4d146105065780632f35e11f1461052f5780632f745c591461055a57610337565b8063109695231461045e57806318160ddd146104875780631f0234d8146104b257610337565b806301ffc9a71461033c578063068124f11461037957806306fdde03146103a2578063081812fc146103cd578063095ea7b31461040a5780630f7309e814610433575b600080fd5b34801561034857600080fd5b50610363600480360381019061035e91906143d7565b610c09565b6040516103709190614c98565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190614214565b610c1b565b005b3480156103ae57600080fd5b506103b7610cdb565b6040516103c49190614cb3565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061447a565b610d6d565b6040516104019190614bbd565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190614397565b610df2565b005b34801561043f57600080fd5b50610448610f0a565b6040516104559190614cb3565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190614431565b610f98565b005b34801561049357600080fd5b5061049c61102e565b6040516104a991906150f5565b60405180910390f35b3480156104be57600080fd5b506104c761103b565b6040516104d49190614c98565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190614281565b61104e565b005b34801561051257600080fd5b5061052d6004803603810190610528919061447a565b6110ae565b005b34801561053b57600080fd5b5061054461128d565b60405161055191906150f5565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190614397565b611293565b60405161058e91906150f5565b60405180910390f35b3480156105a357600080fd5b506105ac611338565b005b3480156105ba57600080fd5b506105c36113e0565b6040516105d09190614c98565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190614281565b6113f3565b005b34801561060e57600080fd5b506106296004803603810190610624919061447a565b611413565b005b34801561063757600080fd5b50610652600480360381019061064d9190614214565b61146f565b60405161065f9190614c76565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906144e7565b61151d565b005b34801561069d57600080fd5b506106b860048036038101906106b3919061447a565b6115e0565b6040516106c591906150f5565b60405180910390f35b3480156106da57600080fd5b506106e3611651565b6040516106f091906150f5565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190614431565b611657565b005b34801561072e57600080fd5b50610749600480360381019061074491906144a7565b6116ed565b005b34801561075757600080fd5b50610772600480360381019061076d919061447a565b6117bd565b60405161077f9190614bbd565b60405180910390f35b34801561079457600080fd5b5061079d61186f565b6040516107aa91906150f5565b60405180910390f35b3480156107bf57600080fd5b506107c8611875565b6040516107d59190614cb3565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190614214565b611903565b60405161081291906150f5565b60405180910390f35b34801561082757600080fd5b506108306119bb565b005b34801561083e57600080fd5b50610847611af8565b005b34801561085557600080fd5b50610870600480360381019061086b919061447a565b611bc2565b005b34801561087e57600080fd5b50610887611c48565b6040516108949190614bbd565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614527565b611c72565b005b3480156108d257600080fd5b506108db611d51565b6040516108e89190614bbd565b60405180910390f35b3480156108fd57600080fd5b50610906611d77565b6040516109139190614cb3565b60405180910390f35b34801561092857600080fd5b50610943600480360381019061093e919061447a565b611e09565b005b34801561095157600080fd5b5061096c60048036038101906109679190614357565b611f5e565b005b34801561097a57600080fd5b506109956004803603810190610990919061447a565b6120df565b005b3480156109a357600080fd5b506109be60048036038101906109b991906142d4565b612165565b005b3480156109cc57600080fd5b506109d56121c7565b005b3480156109e357600080fd5b506109fe60048036038101906109f9919061447a565b61226f565b604051610a0b9190614cb3565b60405180910390f35b610a2e6004803603810190610a29919061447a565b612316565b005b348015610a3c57600080fd5b50610a4561255f565b604051610a5291906150f5565b60405180910390f35b348015610a6757600080fd5b50610a826004803603810190610a7d9190614214565b612565565b005b348015610a9057600080fd5b50610a99612625565b604051610aa691906150f5565b60405180910390f35b348015610abb57600080fd5b50610ac461262a565b604051610ad191906150f5565b60405180910390f35b348015610ae657600080fd5b50610aef612630565b604051610afc9190614bbd565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190614241565b612656565b604051610b399190614c98565b60405180910390f35b348015610b4e57600080fd5b50610b576126ea565b005b348015610b6557600080fd5b50610b6e61285e565b604051610b7b9190614c98565b60405180910390f35b610b9e6004803603810190610b99919061447a565b612871565b005b348015610bac57600080fd5b50610bb5612a06565b005b348015610bc357600080fd5b50610bde6004803603810190610bd99190614214565b612aae565b005b348015610bec57600080fd5b50610c076004803603810190610c02919061447a565b612c5a565b005b6000610c1482612ce0565b9050919050565b610c23612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610c41611c48565b73ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90614f75565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610cea90615468565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1690615468565b8015610d635780601f10610d3857610100808354040283529160200191610d63565b820191906000526020600020905b815481529060010190602001808311610d4657829003601f168201915b5050505050905090565b6000610d7882612d62565b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614f55565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dfd826117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590614fd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e8d612d5a565b73ffffffffffffffffffffffffffffffffffffffff161480610ebc5750610ebb81610eb6612d5a565b612656565b5b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614eb5565b60405180910390fd5b610f058383612dce565b505050565b60118054610f1790615468565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4390615468565b8015610f905780601f10610f6557610100808354040283529160200191610f90565b820191906000526020600020905b815481529060010190602001808311610f7357829003601f168201915b505050505081565b610fa0612d5a565b73ffffffffffffffffffffffffffffffffffffffff16610fbe611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90614f75565b60405180910390fd5b806011908051906020019061102a929190614013565b5050565b6000600880549050905090565b600f60009054906101000a900460ff1681565b61105f611059612d5a565b82612e87565b61109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590615035565b60405180910390fd5b6110a9838383612f65565b505050565b6110b6612d5a565b73ffffffffffffffffffffffffffffffffffffffff166110d4611c48565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614f75565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff16311015611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90614dd5565b60405180910390fd5b6000612710905060005b600681101561128857600082601d83600681106111ae576111ad615601565b5b0154856111bb91906152dc565b6111c591906152ab565b9050611206601783600681106111de576111dd615601565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826131c1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566017836006811061123b5761123a615601565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161126c929190614c4d565b60405180910390a1508080611280906154cb565b91505061118e565b505050565b600e5481565b600061129e83611903565b82106112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690614cf5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611340612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661135e611c48565b73ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614f75565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600f60029054906101000a900460ff1681565b61140e83838360405180602001604052806000815250612165565b505050565b61142461141e612d5a565b82612e87565b611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906150b5565b60405180910390fd5b61146c816132cc565b50565b6060600061147c83611903565b905060008167ffffffffffffffff81111561149a57611499615630565b5b6040519080825280602002602001820160405280156114c85781602001602082028036833780820191505090505b50905060005b82811015611512576114e08582611293565b8282815181106114f3576114f2615601565b5b602002602001018181525050808061150a906154cb565b9150506114ce565b508092505050919050565b611525612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611543611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090614f75565b60405180910390fd5b6115a381836131c1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516115d4929190614bd8565b60405180910390a15050565b60006115ea61102e565b821061162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290615095565b60405180910390fd5b6008828154811061163f5761163e615601565b5b90600052602060002001549050919050565b600c5481565b61165f612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661167d611c48565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614f75565b60405180910390fd5b80601090805190602001906116e9929190614013565b5050565b6116f5612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611713611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614f75565b60405180910390fd5b6000611775600b6133dd565b90506000600190505b8381116117b75761179a8382846117959190615255565b6133eb565b6117a4600b613409565b80806117af906154cb565b91505061177e565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90614ef5565b60405180910390fd5b80915050919050565b600d5481565b6010805461188290615468565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90615468565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614ed5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c3612d5a565b73ffffffffffffffffffffffffffffffffffffffff166119e1611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b00612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611b1e611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614f75565b60405180910390fd5b600060135414611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090614e95565b60405180910390fd5b43601281905550565b611bca612d5a565b73ffffffffffffffffffffffffffffffffffffffff16611be8611c48565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614f75565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60029054906101000a900460ff16611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890615075565b60405180910390fd5b611cd2611ccc612d5a565b84612e87565b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890614ff5565b60405180910390fd5b7f050f6d1e48ff59c6fe33940ebe9ef21fca269e539ae47f86944d751c2287c5de838383604051611d4493929190615110565b60405180910390a1505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611d8690615468565b80601f0160208091040260200160405190810160405280929190818152602001828054611db290615468565b8015611dff5780601f10611dd457610100808354040283529160200191611dff565b820191906000526020600020905b815481529060010190602001808311611de257829003601f168201915b5050505050905090565b600f60029054906101000a900460ff16611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90614cd5565b60405180910390fd5b611e623282612e87565b8015611f135750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611f125750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b5b611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990614ff5565b60405180910390fd5b611f5b816132cc565b50565b611f66612d5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614db5565b60405180910390fd5b8060056000611fe1612d5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208e612d5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d39190614c98565b60405180910390a35050565b6120e7612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612105611c48565b73ffffffffffffffffffffffffffffffffffffffff161461215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614f75565b60405180910390fd5b80600c8190555050565b612176612170612d5a565b83612e87565b6121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90615035565b60405180910390fd5b6121c18484848461341f565b50505050565b6121cf612d5a565b73ffffffffffffffffffffffffffffffffffffffff166121ed611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f75565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b606061227a82612d62565b6122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090614fb5565b60405180910390fd5b60006122c361347b565b905060008151116122e3576040518060200160405280600081525061230e565b806122ed8461350d565b6040516020016122fe929190614b84565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff16612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614df5565b60405180910390fd5b600e5481601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b39190615255565b11156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb906150d5565b60405180910390fd5b600c548161240061102e565b61240a9190615255565b111561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614f35565b60405180910390fd5b3481600d5461245a91906152dc565b111561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290614e15565b60405180910390fd5b80601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ea9190615255565b9250508190555060005b81811015612548576000600161250a600b6133dd565b6125149190615255565b9050600c54811161253457612529600b613409565b61253333826133eb565b5b508080612540906154cb565b9150506124f4565b506000601254141561255c57436012819055505b50565b60135481565b61256d612d5a565b73ffffffffffffffffffffffffffffffffffffffff1661258b611c48565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890614f75565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600881565b60125481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126f2612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612710611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614f75565b60405180910390fd5b6000601354146127ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a290614e95565b60405180910390fd5b600060125414156127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890615015565b60405180910390fd5b600c5460125440600190046128069190615514565b60138190555060ff6012544361281c9190615336565b111561284857600c546001436128329190615336565b40600190046128419190615514565b6013819055505b6000601354141561285c5760016013819055505b565b600f60019054906101000a900460ff1681565b600f60019054906101000a900460ff166128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b790615055565b60405180910390fd5b6008811115612904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fb90614d75565b60405180910390fd5b600c548161291061102e565b61291a9190615255565b111561295b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295290614f35565b60405180910390fd5b3481600d5461296a91906152dc565b11156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a290614e15565b60405180910390fd5b60005b81811015612a0257600060016129c4600b6133dd565b6129ce9190615255565b9050600c5481116129ee576129e3600b613409565b6129ed33826133eb565b5b5080806129fa906154cb565b9150506129ae565b5050565b612a0e612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612a2c611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7990614f75565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612ab6612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612ad4611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2190614f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190614d35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c62612d5a565b73ffffffffffffffffffffffffffffffffffffffff16612c80611c48565b73ffffffffffffffffffffffffffffffffffffffff1614612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614f75565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d535750612d528261368d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e41836117bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e9282612d62565b612ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec890614e75565b60405180910390fd5b6000612edc836117bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f4b57508373ffffffffffffffffffffffffffffffffffffffff16612f3384610d6d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f5c5750612f5b8185612656565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f85826117bd565b73ffffffffffffffffffffffffffffffffffffffff1614612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd290614f95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304290614d95565b60405180910390fd5b61305683838361376f565b613061600082612dce565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130b19190615336565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131089190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b803073ffffffffffffffffffffffffffffffffffffffff1631101561321b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321290614e55565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161324190614ba8565b60006040518083038185875af1925050503d806000811461327e576040519150601f19603f3d011682016040523d82523d6000602084013e613283565b606091505b50509050806132c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132be90614e35565b60405180910390fd5b505050565b60006132d7826117bd565b90506132e58160008461376f565b6132f0600083612dce565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133409190615336565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b61340582826040518060200160405280600081525061377f565b5050565b6001816000016000828254019250508190555050565b61342a848484612f65565b613436848484846137da565b613475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346c90614d15565b60405180910390fd5b50505050565b60606010805461348a90615468565b80601f01602080910402602001604051908101604052809291908181526020018280546134b690615468565b80156135035780601f106134d857610100808354040283529160200191613503565b820191906000526020600020905b8154815290600101906020018083116134e657829003601f168201915b5050505050905090565b60606000821415613555576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613688565b600082905060005b60008214613587578080613570906154cb565b915050600a8261358091906152ab565b915061355d565b60008167ffffffffffffffff8111156135a3576135a2615630565b5b6040519080825280601f01601f1916602001820160405280156135d55781602001600182028036833780820191505090505b5090505b60008514613681576001826135ee9190615336565b9150600a856135fd9190615514565b60306136099190615255565b7f01000000000000000000000000000000000000000000000000000000000000000281838151811061363e5761363d615601565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561367a91906152ab565b94506135d9565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061375857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137685750613767826139a9565b5b9050919050565b61377a838383613a13565b505050565b6137898383613b27565b61379660008484846137da565b6137d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cc90614d15565b60405180910390fd5b505050565b60006137fb8473ffffffffffffffffffffffffffffffffffffffff16613cf5565b1561399c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613824612d5a565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016138629493929190614c01565b602060405180830381600087803b15801561387c57600080fd5b505af19250505080156138ad57506040513d601f19601f820116820180604052508101906138aa9190614404565b60015b613930573d80600081146138dd576040519150601f19603f3d011682016040523d82523d6000602084013e6138e2565b606091505b50600081511415613928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391f90614d15565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139a1565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a1e838383613d08565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a6157613a5c81613d0d565b613aa0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a9f57613a9e8382613d56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ae357613ade81613ec3565b613b22565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b2157613b208282613f94565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8e90614f15565b60405180910390fd5b613ba081612d62565b15613be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd790614d55565b60405180910390fd5b613bec6000838361376f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c3c9190615255565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6384611903565b613d6d9190615336565b9050600060076000848152602001908152602001600020549050818114613e52576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ed79190615336565b9050600060096000848152602001908152602001600020549050600060088381548110613f0757613f06615601565b5b906000526020600020015490508060088381548110613f2957613f28615601565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f7857613f776155d2565b5b6001900381819060005260206000200160009055905550505050565b6000613f9f83611903565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461401f90615468565b90600052602060002090601f0160209004810192826140415760008555614088565b82601f1061405a57805160ff1916838001178555614088565b82800160010185558215614088579182015b8281111561408757825182559160200191906001019061406c565b5b5090506140959190614099565b5090565b5b808211156140b257600081600090555060010161409a565b5090565b60006140c96140c48461516c565b615147565b9050828152602081018484840111156140e5576140e4615664565b5b6140f0848285615426565b509392505050565b600061410b6141068461519d565b615147565b90508281526020810184848401111561412757614126615664565b5b614132848285615426565b509392505050565b60008135905061414981615ea2565b92915050565b60008135905061415e81615eb9565b92915050565b60008135905061417381615ed0565b92915050565b60008135905061418881615ee7565b92915050565b60008151905061419d81615ee7565b92915050565b600082601f8301126141b8576141b761565f565b5b81356141c88482602086016140b6565b91505092915050565b600082601f8301126141e6576141e561565f565b5b81356141f68482602086016140f8565b91505092915050565b60008135905061420e81615efe565b92915050565b60006020828403121561422a5761422961566e565b5b60006142388482850161413a565b91505092915050565b600080604083850312156142585761425761566e565b5b60006142668582860161413a565b92505060206142778582860161413a565b9150509250929050565b60008060006060848603121561429a5761429961566e565b5b60006142a88682870161413a565b93505060206142b98682870161413a565b92505060406142ca868287016141ff565b9150509250925092565b600080600080608085870312156142ee576142ed61566e565b5b60006142fc8782880161413a565b945050602061430d8782880161413a565b935050604061431e878288016141ff565b925050606085013567ffffffffffffffff81111561433f5761433e615669565b5b61434b878288016141a3565b91505092959194509250565b6000806040838503121561436e5761436d61566e565b5b600061437c8582860161413a565b925050602061438d85828601614164565b9150509250929050565b600080604083850312156143ae576143ad61566e565b5b60006143bc8582860161413a565b92505060206143cd858286016141ff565b9150509250929050565b6000602082840312156143ed576143ec61566e565b5b60006143fb84828501614179565b91505092915050565b60006020828403121561441a5761441961566e565b5b60006144288482850161418e565b91505092915050565b6000602082840312156144475761444661566e565b5b600082013567ffffffffffffffff81111561446557614464615669565b5b614471848285016141d1565b91505092915050565b6000602082840312156144905761448f61566e565b5b600061449e848285016141ff565b91505092915050565b600080604083850312156144be576144bd61566e565b5b60006144cc858286016141ff565b92505060206144dd8582860161413a565b9150509250929050565b600080604083850312156144fe576144fd61566e565b5b600061450c858286016141ff565b925050602061451d8582860161414f565b9150509250929050565b6000806000606084860312156145405761453f61566e565b5b600061454e868287016141ff565b935050602061455f868287016141ff565b9250506040614570868287016141ff565b9150509250925092565b60006145868383614b66565b60208301905092915050565b61459b816153f0565b82525050565b6145aa8161536a565b82525050565b60006145bb826151de565b6145c5818561520c565b93506145d0836151ce565b8060005b838110156146015781516145e8888261457a565b97506145f3836151ff565b9250506001810190506145d4565b5085935050505092915050565b6146178161538e565b82525050565b6000614628826151e9565b614632818561521d565b9350614642818560208601615435565b61464b81615673565b840191505092915050565b6000614661826151f4565b61466b8185615239565b935061467b818560208601615435565b61468481615673565b840191505092915050565b600061469a826151f4565b6146a4818561524a565b93506146b4818560208601615435565b80840191505092915050565b60006146cd601783615239565b91506146d882615684565b602082019050919050565b60006146f0602b83615239565b91506146fb826156ad565b604082019050919050565b6000614713603283615239565b915061471e826156fc565b604082019050919050565b6000614736602683615239565b91506147418261574b565b604082019050919050565b6000614759601c83615239565b91506147648261579a565b602082019050919050565b600061477c602683615239565b9150614787826157c3565b604082019050919050565b600061479f602483615239565b91506147aa82615812565b604082019050919050565b60006147c2601983615239565b91506147cd82615861565b602082019050919050565b60006147e5601483615239565b91506147f08261588a565b602082019050919050565b6000614808601883615239565b9150614813826158b3565b602082019050919050565b600061482b601f83615239565b9150614836826158dc565b602082019050919050565b600061484e603a83615239565b915061485982615905565b604082019050919050565b6000614871601d83615239565b915061487c82615954565b602082019050919050565b6000614894602c83615239565b915061489f8261597d565b604082019050919050565b60006148b7601d83615239565b91506148c2826159cc565b602082019050919050565b60006148da603883615239565b91506148e5826159f5565b604082019050919050565b60006148fd602a83615239565b915061490882615a44565b604082019050919050565b6000614920602983615239565b915061492b82615a93565b604082019050919050565b6000614943602083615239565b915061494e82615ae2565b602082019050919050565b6000614966602883615239565b915061497182615b0b565b604082019050919050565b6000614989602c83615239565b915061499482615b5a565b604082019050919050565b60006149ac602083615239565b91506149b782615ba9565b602082019050919050565b60006149cf602983615239565b91506149da82615bd2565b604082019050919050565b60006149f2602f83615239565b91506149fd82615c21565b604082019050919050565b6000614a15602183615239565b9150614a2082615c70565b604082019050919050565b6000614a38602083615239565b9150614a4382615cbf565b602082019050919050565b6000614a5b602083615239565b9150614a6682615ce8565b602082019050919050565b6000614a7e60008361522e565b9150614a8982615d11565b600082019050919050565b6000614aa1603183615239565b9150614aac82615d14565b604082019050919050565b6000614ac4601483615239565b9150614acf82615d63565b602082019050919050565b6000614ae7601983615239565b9150614af282615d8c565b602082019050919050565b6000614b0a602c83615239565b9150614b1582615db5565b604082019050919050565b6000614b2d603083615239565b9150614b3882615e04565b604082019050919050565b6000614b50602383615239565b9150614b5b82615e53565b604082019050919050565b614b6f816153e6565b82525050565b614b7e816153e6565b82525050565b6000614b90828561468f565b9150614b9c828461468f565b91508190509392505050565b6000614bb382614a71565b9150819050919050565b6000602082019050614bd260008301846145a1565b92915050565b6000604082019050614bed6000830185614592565b614bfa6020830184614b75565b9392505050565b6000608082019050614c1660008301876145a1565b614c2360208301866145a1565b614c306040830185614b75565b8181036060830152614c42818461461d565b905095945050505050565b6000604082019050614c6260008301856145a1565b614c6f6020830184614b75565b9392505050565b60006020820190508181036000830152614c9081846145b0565b905092915050565b6000602082019050614cad600083018461460e565b92915050565b60006020820190508181036000830152614ccd8184614656565b905092915050565b60006020820190508181036000830152614cee816146c0565b9050919050565b60006020820190508181036000830152614d0e816146e3565b9050919050565b60006020820190508181036000830152614d2e81614706565b9050919050565b60006020820190508181036000830152614d4e81614729565b9050919050565b60006020820190508181036000830152614d6e8161474c565b9050919050565b60006020820190508181036000830152614d8e8161476f565b9050919050565b60006020820190508181036000830152614dae81614792565b9050919050565b60006020820190508181036000830152614dce816147b5565b9050919050565b60006020820190508181036000830152614dee816147d8565b9050919050565b60006020820190508181036000830152614e0e816147fb565b9050919050565b60006020820190508181036000830152614e2e8161481e565b9050919050565b60006020820190508181036000830152614e4e81614841565b9050919050565b60006020820190508181036000830152614e6e81614864565b9050919050565b60006020820190508181036000830152614e8e81614887565b9050919050565b60006020820190508181036000830152614eae816148aa565b9050919050565b60006020820190508181036000830152614ece816148cd565b9050919050565b60006020820190508181036000830152614eee816148f0565b9050919050565b60006020820190508181036000830152614f0e81614913565b9050919050565b60006020820190508181036000830152614f2e81614936565b9050919050565b60006020820190508181036000830152614f4e81614959565b9050919050565b60006020820190508181036000830152614f6e8161497c565b9050919050565b60006020820190508181036000830152614f8e8161499f565b9050919050565b60006020820190508181036000830152614fae816149c2565b9050919050565b60006020820190508181036000830152614fce816149e5565b9050919050565b60006020820190508181036000830152614fee81614a08565b9050919050565b6000602082019050818103600083015261500e81614a2b565b9050919050565b6000602082019050818103600083015261502e81614a4e565b9050919050565b6000602082019050818103600083015261504e81614a94565b9050919050565b6000602082019050818103600083015261506e81614ab7565b9050919050565b6000602082019050818103600083015261508e81614ada565b9050919050565b600060208201905081810360008301526150ae81614afd565b9050919050565b600060208201905081810360008301526150ce81614b20565b9050919050565b600060208201905081810360008301526150ee81614b43565b9050919050565b600060208201905061510a6000830184614b75565b92915050565b60006060820190506151256000830186614b75565b6151326020830185614b75565b61513f6040830184614b75565b949350505050565b6000615151615162565b905061515d828261549a565b919050565b6000604051905090565b600067ffffffffffffffff82111561518757615186615630565b5b61519082615673565b9050602081019050919050565b600067ffffffffffffffff8211156151b8576151b7615630565b5b6151c182615673565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615260826153e6565b915061526b836153e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152a05761529f615545565b5b828201905092915050565b60006152b6826153e6565b91506152c1836153e6565b9250826152d1576152d0615574565b5b828204905092915050565b60006152e7826153e6565b91506152f2836153e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561532b5761532a615545565b5b828202905092915050565b6000615341826153e6565b915061534c836153e6565b92508282101561535f5761535e615545565b5b828203905092915050565b6000615375826153c6565b9050919050565b6000615387826153c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006153fb82615402565b9050919050565b600061540d82615414565b9050919050565b600061541f826153c6565b9050919050565b82818337600083830152505050565b60005b83811015615453578082015181840152602081019050615438565b83811115615462576000848401525b50505050565b6000600282049050600182168061548057607f821691505b60208210811415615494576154936155a3565b5b50919050565b6154a382615673565b810181811067ffffffffffffffff821117156154c2576154c1615630565b5b80604052505050565b60006154d6826153e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561550957615508615545565b5b600182019050919050565b600061551f826153e6565b915061552a836153e6565b92508261553a57615539615574565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4275726e696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f596f752063616e206d696e742061206d6178206f662038204e4654732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f5072652d73616c65206973206e6f74206c697665207965740000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f45766f6c7574696f6e206973206e6f74206c6976652079657400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206c696d697420657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b615eab8161536a565b8114615eb657600080fd5b50565b615ec28161537c565b8114615ecd57600080fd5b50565b615ed98161538e565b8114615ee457600080fd5b50565b615ef08161539a565b8114615efb57600080fd5b50565b615f07816153e6565b8114615f1257600080fd5b5056fea2646970667358221220dc999ab225afdb0d0723c4d6e7af3f4af425ad6b7be08eded0289d42592e8cfe64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000012496d7065726d616e656e744469676974616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024944000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): ImpermanentDigital
Arg [1] : symbol (string): ID
Arg [2] : maxImpermanentSupply (uint256): 4444
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 496d7065726d616e656e744469676974616c0000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4944000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.