Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
389
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:
SpaceInmates
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/ISpaceInmates.sol"; import "./interfaces/ISpaceInmatesMetadata.sol"; contract SpaceInmates is ERC721Enumerable, Ownable, ISpaceInmates, ISpaceInmatesMetaData { using Strings for uint256; uint256 public constant INMATES_RESERVED = 300; uint256 public constant INMATES_PUBLIC = 9699; uint256 public constant INMATES_MAX = INMATES_RESERVED + INMATES_PUBLIC; uint256 public constant PURCHASE_LIMIT = 10; uint256 public constant PRICE = 0.07 ether; bool public isActive = false; bool public isPreSaleActive = false; string public proof; uint256 public preSaleMaxMint = 3; uint256 public totalReservedSupply; uint256 public totalPublicSupply; mapping(address => bool) private _preSaleWhitelist; mapping(address => uint256) private _preSaleClaimed; string private _contractURI = ""; string private _tokenBaseURI = ""; string private _tokenRevealedBaseURI = ""; constructor(string memory name, string memory symbol) ERC721(name, symbol) {} function addToWhiteList(address[] calldata addresses) external override onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); _preSaleWhitelist[addresses[i]] = true; _preSaleClaimed[addresses[i]] > 0 ? _preSaleClaimed[addresses[i]] : 0; } } function isOnWhitelist(address addr) external view override returns (bool) { return _preSaleWhitelist[addr]; } function removeFromWhitelist(address[] calldata addresses) external override onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "Can't add the null address"); _preSaleWhitelist[addresses[i]] = false; } } function preSaleClaimedBy(address owner) external view override returns (uint256) { require(owner != address(0), "Zero address not on White List"); return _preSaleClaimed[owner]; } function purchase(uint256 numberOfTokens) external payable override { require(isActive, "Contract is not active"); require(!isPreSaleActive, "Only presale is active at this time"); require(totalSupply() < INMATES_MAX, "All tokens have been minted"); require( numberOfTokens <= PURCHASE_LIMIT, "Would exceed PURCHASE_LIMIT" ); require( totalPublicSupply < INMATES_PUBLIC, "Purchase would exceed INMATES_PUBLIC" ); require( PRICE * numberOfTokens <= msg.value, "ETH amount is not sufficient" ); require( msg.sender == tx.origin, "No transaction from smart contracts!" ); for (uint256 i = 0; i < numberOfTokens; i++) { if (totalPublicSupply < INMATES_PUBLIC) { uint256 tokenId = INMATES_RESERVED + totalPublicSupply + 1; totalPublicSupply += 1; _safeMint(msg.sender, tokenId); } } } function purchasePreSale(uint256 numberOfTokens) external payable override { require(isActive, "Contract is not active"); require(isPreSaleActive, "Pre Sale is not active"); require( _preSaleWhitelist[msg.sender], "You are not on the presale whitelist" ); require(totalSupply() < INMATES_MAX, "All tokens have been minted"); require( numberOfTokens <= preSaleMaxMint, "Cannot purchase this many tokens" ); require( totalPublicSupply + numberOfTokens <= INMATES_PUBLIC, "Purchase would exceed INMATE_PUBLIC" ); require( _preSaleClaimed[msg.sender] + numberOfTokens <= preSaleMaxMint, "Purchase exceeds max number of mints allowed in presale" ); require( PRICE * numberOfTokens <= msg.value, "ETH amount is not sufficient" ); require( msg.sender == tx.origin, "No transaction from smart contracts!" ); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 tokenId = INMATES_RESERVED + totalPublicSupply + 1; totalPublicSupply += 1; _preSaleClaimed[msg.sender] += 1; _safeMint(msg.sender, tokenId); } } function reserve(address to, uint256 amount) external override onlyOwner { require(totalSupply() < INMATES_MAX, "All tokens have been minted"); require(totalReservedSupply <= INMATES_RESERVED,"Not enough tokens left to reserve"); for (uint256 i = 0; i < amount; i++) { uint256 tokenId = totalReservedSupply + 1; totalReservedSupply += 1; _safeMint(to, tokenId); } } function setIsActive(bool _isActive) external override onlyOwner { isActive = _isActive; } function setIsPreSaleActive(bool _isPreSaleActive) external override onlyOwner { isPreSaleActive = _isPreSaleActive; } function setPreSaleMaxMint(uint256 maxMint) external override onlyOwner { preSaleMaxMint = maxMint; } function setProof(string calldata proofString) external override onlyOwner { proof = proofString; } function withdraw() external override onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setContractURI(string calldata URI) external override onlyOwner { _contractURI = URI; } function setBaseURI(string calldata URI) external override onlyOwner { _tokenBaseURI = URI; } function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner { _tokenRevealedBaseURI = revealedBaseURI; } function contractURI() public view override returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Token does not exist"); string memory revealedBaseURI = _tokenRevealedBaseURI; string memory fileName = string(abi.encodePacked(tokenId.toString(), ".json")); return bytes(revealedBaseURI).length > 0 ? string(abi.encodePacked(revealedBaseURI, fileName)): string(abi.encodePacked(_tokenBaseURI, fileName)); } }
// 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 "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ISpaceInmates { function addToWhiteList(address[] calldata addresses) external; function isOnWhitelist(address addr) external returns (bool); function removeFromWhitelist(address[] calldata addresses) external; function preSaleClaimedBy(address owner) external returns (uint256); function purchase(uint256 numberOfTokens) external payable; function purchasePreSale(uint256 numberOfTokens) external payable; function reserve(address to, uint256 amount) external; function setIsActive(bool isActive) external; function setIsPreSaleActive(bool isAllowListActive) external; function setPreSaleMaxMint(uint256 maxMint) external; function setProof(string memory proofString) external; function withdraw() external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ISpaceInmatesMetaData { function setContractURI(string calldata URI) external; function setBaseURI(string calldata URI) external; function setRevealedBaseURI(string calldata revealedBaseURI) external; function contractURI() external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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 "../../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 "../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; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INMATES_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INMATES_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INMATES_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOnWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"preSaleClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proof","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchasePreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleActive","type":"bool"}],"name":"setIsPreSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPreSaleMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"proofString","type":"string"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506003600c5560405180602001604052806000815250601190805190602001906200006692919062000216565b5060405180602001604052806000815250601290805190602001906200008e92919062000216565b506040518060200160405280600081525060139080519060200190620000b692919062000216565b50348015620000c457600080fd5b5060405162005cd038038062005cd08339818101604052810190620000ea919062000338565b818181600090805190602001906200010492919062000216565b5080600190805190602001906200011d92919062000216565b50505062000140620001346200014860201b60201c565b6200015060201b60201c565b5050620004dc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002249062000448565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b6000620002dd620002d784620003df565b620003ab565b905082815260208101848484011115620002f657600080fd5b6200030384828562000412565b509392505050565b600082601f8301126200031d57600080fd5b81516200032f848260208601620002c6565b91505092915050565b600080604083850312156200034c57600080fd5b600083015167ffffffffffffffff8111156200036757600080fd5b62000375858286016200030b565b925050602083015167ffffffffffffffff8111156200039357600080fd5b620003a1858286016200030b565b9150509250929050565b6000604051905081810181811067ffffffffffffffff82111715620003d557620003d4620004ad565b5b8060405250919050565b600067ffffffffffffffff821115620003fd57620003fc620004ad565b5b601f19601f8301169050602081019050919050565b60005b838110156200043257808201518184015260208101905062000415565b8381111562000442576000848401525b50505050565b600060028204905060018216806200046157607f821691505b602082108114156200047857620004776200047e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6157e480620004ec6000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063bba50555116100c1578063e6a5931e1161007a578063e6a5931e14610987578063e8a3d485146109b2578063e985e9c5146109dd578063efef39a114610a1a578063f2fde38b14610a36578063faf924cf14610a5f5761027d565b8063bba5055514610872578063c5f9d931146108af578063c87b56dd146108cb578063cc47a40b14610908578063d75e611014610931578063e49961fc1461095c5761027d565b80638da5cb5b116101135780638da5cb5b14610776578063938e3d7b146107a157806395d89b41146107ca5780639d044ed3146107f5578063a22cb46514610820578063b88d4fde146108495761027d565b806370a08231146106a3578063715018a6146106e0578063740d73f3146106f757806383e89f19146107205780638d859f3e1461074b5761027d565b80633a3ab672116101f3578063548db174116101ac578063548db1741461059557806355f804b3146105be5780635e7d3768146105e75780636352211e14610612578063674d13c81461064f5780636e83843a1461067a5761027d565b80633a3ab672146104875780633ccfd60b146104c457806342842e0e146104db578063445f5756146105045780634bcb715c1461052d5780634f6ccce7146105585761027d565b806318160ddd1161024557806318160ddd146103795780631944fb40146103a457806322f3e2d4146103cd57806323b872dd146103f85780632750fc78146104215780632f745c591461044a5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806315336f8014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190614085565b610a8a565b6040516102b69190614edd565b60405180910390f35b3480156102cb57600080fd5b506102d4610b04565b6040516102e19190614ef8565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061411c565b610b96565b60405161031e9190614e76565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613fdb565b610c1b565b005b34801561035c57600080fd5b50610377600480360381019061037291906140d7565b610d33565b005b34801561038557600080fd5b5061038e610dc5565b60405161039b919061533a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061411c565b610dd2565b005b3480156103d957600080fd5b506103e2610e58565b6040516103ef9190614edd565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613ed5565b610e6b565b005b34801561042d57600080fd5b506104486004803603810190610443919061405c565b610ecb565b005b34801561045657600080fd5b50610471600480360381019061046c9190613fdb565b610f64565b60405161047e919061533a565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613e70565b611009565b6040516104bb9190614edd565b60405180910390f35b3480156104d057600080fd5b506104d961105f565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613ed5565b61112a565b005b34801561051057600080fd5b5061052b6004803603810190610526919061405c565b61114a565b005b34801561053957600080fd5b506105426111e3565b60405161054f919061533a565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a919061411c565b6111e9565b60405161058c919061533a565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190614017565b611280565b005b3480156105ca57600080fd5b506105e560048036038101906105e091906140d7565b611484565b005b3480156105f357600080fd5b506105fc611516565b604051610609919061533a565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061411c565b61151c565b6040516106469190614e76565b60405180910390f35b34801561065b57600080fd5b506106646115ce565b604051610671919061533a565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c91906140d7565b6115d4565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613e70565b611666565b6040516106d7919061533a565b60405180910390f35b3480156106ec57600080fd5b506106f561171e565b005b34801561070357600080fd5b5061071e60048036038101906107199190614017565b6117a6565b005b34801561072c57600080fd5b50610735611ad4565b604051610742919061533a565b60405180910390f35b34801561075757600080fd5b50610760611ada565b60405161076d919061533a565b60405180910390f35b34801561078257600080fd5b5061078b611ae5565b6040516107989190614e76565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c391906140d7565b611b0f565b005b3480156107d657600080fd5b506107df611ba1565b6040516107ec9190614ef8565b60405180910390f35b34801561080157600080fd5b5061080a611c33565b6040516108179190614edd565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613f9f565b611c46565b005b34801561085557600080fd5b50610870600480360381019061086b9190613f24565b611dc7565b005b34801561087e57600080fd5b5061089960048036038101906108949190613e70565b611e29565b6040516108a6919061533a565b60405180910390f35b6108c960048036038101906108c4919061411c565b611ee1565b005b3480156108d757600080fd5b506108f260048036038101906108ed919061411c565b61230a565b6040516108ff9190614ef8565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613fdb565b61246c565b005b34801561093d57600080fd5b506109466125e2565b604051610953919061533a565b60405180910390f35b34801561096857600080fd5b506109716125e7565b60405161097e919061533a565b60405180910390f35b34801561099357600080fd5b5061099c6125fa565b6040516109a9919061533a565b60405180910390f35b3480156109be57600080fd5b506109c7612600565b6040516109d49190614ef8565b60405180910390f35b3480156109e957600080fd5b50610a0460048036038101906109ff9190613e99565b612692565b604051610a119190614edd565b60405180910390f35b610a346004803603810190610a2f919061411c565b612726565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190613e70565b6129de565b005b348015610a6b57600080fd5b50610a74612ad6565b604051610a819190614ef8565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afd5750610afc82612b64565b5b9050919050565b606060008054610b13906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f906155d9565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba182612c46565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061515a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c268261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906151fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb6612cb2565b73ffffffffffffffffffffffffffffffffffffffff161480610ce55750610ce481610cdf612cb2565b612692565b5b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061507a565b60405180910390fd5b610d2e8383612cba565b505050565b610d3b612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610d59611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061517a565b60405180910390fd5b8181600b9190610dc0929190613c68565b505050565b6000600880549050905090565b610dda612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610df8611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061517a565b60405180910390fd5b80600c8190555050565b600a60149054906101000a900460ff1681565b610e7c610e76612cb2565b82612d73565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061525a565b60405180910390fd5b610ec6838383612e51565b505050565b610ed3612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610ef1611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e9061517a565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6000610f6f83611666565b8210610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790614f1a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611067612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611085611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d29061517a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611126573d6000803e3d6000fd5b5050565b61114583838360405180602001604052806000815250611dc7565b505050565b611152612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611170611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061517a565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b61012c81565b60006111f3610dc5565b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061527a565b60405180910390fd5b6008828154811061126e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611288612cb2565b73ffffffffffffffffffffffffffffffffffffffff166112a6611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f39061517a565b60405180910390fd5b60005b8282905081101561147f57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061135b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906113709190613e70565b73ffffffffffffffffffffffffffffffffffffffff1614156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be9061519a565b60405180910390fd5b6000600f6000858585818110611406577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061141b9190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114779061560b565b9150506112ff565b505050565b61148c612cb2565b73ffffffffffffffffffffffffffffffffffffffff166114aa611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061517a565b60405180910390fd5b818160129190611511929190613c68565b505050565b6125e381565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906150ba565b60405180910390fd5b80915050919050565b600d5481565b6115dc612cb2565b73ffffffffffffffffffffffffffffffffffffffff166115fa611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116479061517a565b60405180910390fd5b818160139190611661929190613c68565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce9061509a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611726612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611744611ae5565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061517a565b60405180910390fd5b6117a460006130ad565b565b6117ae612cb2565b73ffffffffffffffffffffffffffffffffffffffff166117cc611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061517a565b60405180910390fd5b60005b82829050811015611acf57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118969190613e70565b73ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061519a565b60405180910390fd5b6001600f600085858581811061192c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119419190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601060008585858181106119d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119e69190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a2d576000611abb565b60106000848484818110611a6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a7f9190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611ac79061560b565b915050611825565b505050565b600c5481565b66f8b0a10e47000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b17612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611b35611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061517a565b60405180910390fd5b818160119190611b9c929190613c68565b505050565b606060018054611bb0906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdc906155d9565b8015611c295780601f10611bfe57610100808354040283529160200191611c29565b820191906000526020600020905b815481529060010190602001808311611c0c57829003601f168201915b5050505050905090565b600a60159054906101000a900460ff1681565b611c4e612cb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390614fda565b60405180910390fd5b8060056000611cc9612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d76612cb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dbb9190614edd565b60405180910390a35050565b611dd8611dd2612cb2565b83612d73565b611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e9061525a565b60405180910390fd5b611e2384848484613173565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906152da565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60149054906101000a900460ff16611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f279061513a565b60405180910390fd5b600a60159054906101000a900460ff16611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906152ba565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061529a565b60405180910390fd5b6125e361012c61201b919061540e565b612023610dc5565b10612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a906152fa565b60405180910390fd5b600c548111156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f9061531a565b60405180910390fd5b6125e381600e546120b9919061540e565b11156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906150fa565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612148919061540e565b1115612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061521a565b60405180910390fd5b348166f8b0a10e47000061219d9190615495565b11156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d59061501a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906151da565b60405180910390fd5b60005b818110156123065760006001600e5461012c61226b919061540e565b612275919061540e565b90506001600e600082825461228a919061540e565b925050819055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e1919061540e565b925050819055506122f233826131cf565b5080806122fe9061560b565b91505061224f565b5050565b606061231582612c46565b612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90614ffa565b60405180910390fd5b600060138054612363906155d9565b80601f016020809104026020016040519081016040528092919081815260200182805461238f906155d9565b80156123dc5780601f106123b1576101008083540402835291602001916123dc565b820191906000526020600020905b8154815290600101906020018083116123bf57829003601f168201915b5050505050905060006123ee846131ed565b6040516020016123fe9190614e30565b604051602081830303815290604052905060008251116124405760128160405160200161242c929190614e52565b604051602081830303815290604052612463565b8181604051602001612453929190614e0c565b6040516020818303038152906040525b92505050919050565b612474612cb2565b73ffffffffffffffffffffffffffffffffffffffff16612492611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061517a565b60405180910390fd5b6125e361012c6124f8919061540e565b612500610dc5565b10612540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612537906152fa565b60405180910390fd5b61012c600d541115612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e9061505a565b60405180910390fd5b60005b818110156125dd5760006001600d546125a3919061540e565b90506001600d60008282546125b8919061540e565b925050819055506125c984826131cf565b5080806125d59061560b565b91505061258a565b505050565b600a81565b6125e361012c6125f7919061540e565b81565b600e5481565b60606011805461260f906155d9565b80601f016020809104026020016040519081016040528092919081815260200182805461263b906155d9565b80156126885780601f1061265d57610100808354040283529160200191612688565b820191906000526020600020905b81548152906001019060200180831161266b57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff16612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c9061513a565b60405180910390fd5b600a60159054906101000a900460ff16156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc906150da565b60405180910390fd5b6125e361012c6127d5919061540e565b6127dd610dc5565b1061281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906152fa565b60405180910390fd5b600a811115612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614f9a565b60405180910390fd5b6125e3600e54106128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e9061523a565b60405180910390fd5b348166f8b0a10e4700006128bb9190615495565b11156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f39061501a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906151da565b60405180910390fd5b60005b818110156129da576125e3600e5410156129c75760006001600e5461012c612995919061540e565b61299f919061540e565b90506001600e60008282546129b4919061540e565b925050819055506129c533826131cf565b505b80806129d29061560b565b91505061296d565b5050565b6129e6612cb2565b73ffffffffffffffffffffffffffffffffffffffff16612a04611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a519061517a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190614f5a565b60405180910390fd5b612ad3816130ad565b50565b600b8054612ae3906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0f906155d9565b8015612b5c5780601f10612b3157610100808354040283529160200191612b5c565b820191906000526020600020905b815481529060010190602001808311612b3f57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c2f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c3f5750612c3e8261339a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d2d8361151c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d7e82612c46565b612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db49061503a565b60405180910390fd5b6000612dc88361151c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e3757508373ffffffffffffffffffffffffffffffffffffffff16612e1f84610b96565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e485750612e478185612692565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e718261151c565b73ffffffffffffffffffffffffffffffffffffffff1614612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906151ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2e90614fba565b60405180910390fd5b612f42838383613404565b612f4d600082612cba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9d91906154ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ff4919061540e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61317e848484612e51565b61318a84848484613518565b6131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c090614f3a565b60405180910390fd5b50505050565b6131e98282604051806020016040528060008152506136af565b5050565b60606000821415613235576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613395565b600082905060005b600082146132675780806132509061560b565b915050600a826132609190615464565b915061323d565b60008167ffffffffffffffff8111156132a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132db5781602001600182028036833780820191505090505b5090505b6000851461338e576001826132f491906154ef565b9150600a856133039190615654565b603061330f919061540e565b60f81b81838151811061334b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133879190615464565b94506132df565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61340f83838361370a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134525761344d8161370f565b613491565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134905761348f8382613758565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134d4576134cf816138c5565b613513565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613512576135118282613a08565b5b5b505050565b60006135398473ffffffffffffffffffffffffffffffffffffffff16613a87565b156136a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613562612cb2565b8786866040518563ffffffff1660e01b81526004016135849493929190614e91565b602060405180830381600087803b15801561359e57600080fd5b505af19250505080156135cf57506040513d601f19601f820116820180604052508101906135cc91906140ae565b60015b613652573d80600081146135ff576040519150601f19603f3d011682016040523d82523d6000602084013e613604565b606091505b5060008151141561364a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364190614f3a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136a7565b600190505b949350505050565b6136b98383613a9a565b6136c66000848484613518565b613705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fc90614f3a565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161376584611666565b61376f91906154ef565b9050600060076000848152602001908152602001600020549050818114613854576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138d991906154ef565b905060006009600084815260200190815260200160002054905060006008838154811061392f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613977577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806139ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a1383611666565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b019061511a565b60405180910390fd5b613b1381612c46565b15613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90614f7a565b60405180910390fd5b613b5f60008383613404565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613baf919061540e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613c74906155d9565b90600052602060002090601f016020900481019282613c965760008555613cdd565b82601f10613caf57803560ff1916838001178555613cdd565b82800160010185558215613cdd579182015b82811115613cdc578235825591602001919060010190613cc1565b5b509050613cea9190613cee565b5090565b5b80821115613d07576000816000905550600101613cef565b5090565b6000613d1e613d1984615386565b615355565b905082815260208101848484011115613d3657600080fd5b613d41848285615597565b509392505050565b600081359050613d5881615752565b92915050565b60008083601f840112613d7057600080fd5b8235905067ffffffffffffffff811115613d8957600080fd5b602083019150836020820283011115613da157600080fd5b9250929050565b600081359050613db781615769565b92915050565b600081359050613dcc81615780565b92915050565b600081519050613de181615780565b92915050565b600082601f830112613df857600080fd5b8135613e08848260208601613d0b565b91505092915050565b60008083601f840112613e2357600080fd5b8235905067ffffffffffffffff811115613e3c57600080fd5b602083019150836001820283011115613e5457600080fd5b9250929050565b600081359050613e6a81615797565b92915050565b600060208284031215613e8257600080fd5b6000613e9084828501613d49565b91505092915050565b60008060408385031215613eac57600080fd5b6000613eba85828601613d49565b9250506020613ecb85828601613d49565b9150509250929050565b600080600060608486031215613eea57600080fd5b6000613ef886828701613d49565b9350506020613f0986828701613d49565b9250506040613f1a86828701613e5b565b9150509250925092565b60008060008060808587031215613f3a57600080fd5b6000613f4887828801613d49565b9450506020613f5987828801613d49565b9350506040613f6a87828801613e5b565b925050606085013567ffffffffffffffff811115613f8757600080fd5b613f9387828801613de7565b91505092959194509250565b60008060408385031215613fb257600080fd5b6000613fc085828601613d49565b9250506020613fd185828601613da8565b9150509250929050565b60008060408385031215613fee57600080fd5b6000613ffc85828601613d49565b925050602061400d85828601613e5b565b9150509250929050565b6000806020838503121561402a57600080fd5b600083013567ffffffffffffffff81111561404457600080fd5b61405085828601613d5e565b92509250509250929050565b60006020828403121561406e57600080fd5b600061407c84828501613da8565b91505092915050565b60006020828403121561409757600080fd5b60006140a584828501613dbd565b91505092915050565b6000602082840312156140c057600080fd5b60006140ce84828501613dd2565b91505092915050565b600080602083850312156140ea57600080fd5b600083013567ffffffffffffffff81111561410457600080fd5b61411085828601613e11565b92509250509250929050565b60006020828403121561412e57600080fd5b600061413c84828501613e5b565b91505092915050565b61414e81615523565b82525050565b61415d81615535565b82525050565b600061416e826153cb565b61417881856153e1565b93506141888185602086016155a6565b61419181615741565b840191505092915050565b60006141a7826153d6565b6141b181856153f2565b93506141c18185602086016155a6565b6141ca81615741565b840191505092915050565b60006141e0826153d6565b6141ea8185615403565b93506141fa8185602086016155a6565b80840191505092915050565b60008154614213816155d9565b61421d8186615403565b9450600182166000811461423857600181146142495761427c565b60ff1983168652818601935061427c565b614252856153b6565b60005b8381101561427457815481890152600182019150602081019050614255565b838801955050505b50505092915050565b6000614292602b836153f2565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006142f86032836153f2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061435e6026836153f2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143c4601c836153f2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614404601b836153f2565b91507f576f756c64206578636565642050555243484153455f4c494d495400000000006000830152602082019050919050565b60006144446024836153f2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144aa6019836153f2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144ea6014836153f2565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b600061452a601c836153f2565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b600061456a602c836153f2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145d06021836153f2565b91507f4e6f7420656e6f75676820746f6b656e73206c65667420746f2072657365727660008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146366038836153f2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061469c602a836153f2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147026029836153f2565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147686023836153f2565b91507f4f6e6c792070726573616c65206973206163746976652061742074686973207460008301527f696d6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147ce6023836153f2565b91507f507572636861736520776f756c642065786365656420494e4d4154455f50554260008301527f4c494300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148346020836153f2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148746016836153f2565b91507f436f6e7472616374206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b60006148b4602c836153f2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061491a600583615403565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061495a6020836153f2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061499a601a836153f2565b91507f43616e27742061646420746865206e756c6c20616464726573730000000000006000830152602082019050919050565b60006149da6029836153f2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a406024836153f2565b91507f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008301527f63747321000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa66021836153f2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0c6037836153f2565b91507f50757263686173652065786365656473206d6178206e756d626572206f66206d60008301527f696e747320616c6c6f77656420696e2070726573616c650000000000000000006020830152604082019050919050565b6000614b726024836153f2565b91507f507572636861736520776f756c642065786365656420494e4d415445535f505560008301527f424c4943000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bd86031836153f2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614c3e602c836153f2565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ca46024836153f2565b91507f596f7520617265206e6f74206f6e207468652070726573616c6520776869746560008301527f6c697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d0a6016836153f2565b91507f5072652053616c65206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b6000614d4a601e836153f2565b91507f5a65726f2061646472657373206e6f74206f6e205768697465204c69737400006000830152602082019050919050565b6000614d8a601b836153f2565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614dca6020836153f2565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614e068161558d565b82525050565b6000614e1882856141d5565b9150614e2482846141d5565b91508190509392505050565b6000614e3c82846141d5565b9150614e478261490d565b915081905092915050565b6000614e5e8285614206565b9150614e6a82846141d5565b91508190509392505050565b6000602082019050614e8b6000830184614145565b92915050565b6000608082019050614ea66000830187614145565b614eb36020830186614145565b614ec06040830185614dfd565b8181036060830152614ed28184614163565b905095945050505050565b6000602082019050614ef26000830184614154565b92915050565b60006020820190508181036000830152614f12818461419c565b905092915050565b60006020820190508181036000830152614f3381614285565b9050919050565b60006020820190508181036000830152614f53816142eb565b9050919050565b60006020820190508181036000830152614f7381614351565b9050919050565b60006020820190508181036000830152614f93816143b7565b9050919050565b60006020820190508181036000830152614fb3816143f7565b9050919050565b60006020820190508181036000830152614fd381614437565b9050919050565b60006020820190508181036000830152614ff38161449d565b9050919050565b60006020820190508181036000830152615013816144dd565b9050919050565b600060208201905081810360008301526150338161451d565b9050919050565b600060208201905081810360008301526150538161455d565b9050919050565b60006020820190508181036000830152615073816145c3565b9050919050565b6000602082019050818103600083015261509381614629565b9050919050565b600060208201905081810360008301526150b38161468f565b9050919050565b600060208201905081810360008301526150d3816146f5565b9050919050565b600060208201905081810360008301526150f38161475b565b9050919050565b60006020820190508181036000830152615113816147c1565b9050919050565b6000602082019050818103600083015261513381614827565b9050919050565b6000602082019050818103600083015261515381614867565b9050919050565b60006020820190508181036000830152615173816148a7565b9050919050565b600060208201905081810360008301526151938161494d565b9050919050565b600060208201905081810360008301526151b38161498d565b9050919050565b600060208201905081810360008301526151d3816149cd565b9050919050565b600060208201905081810360008301526151f381614a33565b9050919050565b6000602082019050818103600083015261521381614a99565b9050919050565b6000602082019050818103600083015261523381614aff565b9050919050565b6000602082019050818103600083015261525381614b65565b9050919050565b6000602082019050818103600083015261527381614bcb565b9050919050565b6000602082019050818103600083015261529381614c31565b9050919050565b600060208201905081810360008301526152b381614c97565b9050919050565b600060208201905081810360008301526152d381614cfd565b9050919050565b600060208201905081810360008301526152f381614d3d565b9050919050565b6000602082019050818103600083015261531381614d7d565b9050919050565b6000602082019050818103600083015261533381614dbd565b9050919050565b600060208201905061534f6000830184614dfd565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561537c5761537b615712565b5b8060405250919050565b600067ffffffffffffffff8211156153a1576153a0615712565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154198261558d565b91506154248361558d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561545957615458615685565b5b828201905092915050565b600061546f8261558d565b915061547a8361558d565b92508261548a576154896156b4565b5b828204905092915050565b60006154a08261558d565b91506154ab8361558d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154e4576154e3615685565b5b828202905092915050565b60006154fa8261558d565b91506155058361558d565b92508282101561551857615517615685565b5b828203905092915050565b600061552e8261556d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155c45780820151818401526020810190506155a9565b838111156155d3576000848401525b50505050565b600060028204905060018216806155f157607f821691505b60208210811415615605576156046156e3565b5b50919050565b60006156168261558d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561564957615648615685565b5b600182019050919050565b600061565f8261558d565b915061566a8361558d565b92508261567a576156796156b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61575b81615523565b811461576657600080fd5b50565b61577281615535565b811461577d57600080fd5b50565b61578981615541565b811461579457600080fd5b50565b6157a08161558d565b81146157ab57600080fd5b5056fea2646970667358221220f8721045b442fb539622f284560872dd1e93ef3f422d4bfa26b4493db75eefc664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d537061636520496e6d6174657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5350414345494e4d415445530000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063bba50555116100c1578063e6a5931e1161007a578063e6a5931e14610987578063e8a3d485146109b2578063e985e9c5146109dd578063efef39a114610a1a578063f2fde38b14610a36578063faf924cf14610a5f5761027d565b8063bba5055514610872578063c5f9d931146108af578063c87b56dd146108cb578063cc47a40b14610908578063d75e611014610931578063e49961fc1461095c5761027d565b80638da5cb5b116101135780638da5cb5b14610776578063938e3d7b146107a157806395d89b41146107ca5780639d044ed3146107f5578063a22cb46514610820578063b88d4fde146108495761027d565b806370a08231146106a3578063715018a6146106e0578063740d73f3146106f757806383e89f19146107205780638d859f3e1461074b5761027d565b80633a3ab672116101f3578063548db174116101ac578063548db1741461059557806355f804b3146105be5780635e7d3768146105e75780636352211e14610612578063674d13c81461064f5780636e83843a1461067a5761027d565b80633a3ab672146104875780633ccfd60b146104c457806342842e0e146104db578063445f5756146105045780634bcb715c1461052d5780634f6ccce7146105585761027d565b806318160ddd1161024557806318160ddd146103795780631944fb40146103a457806322f3e2d4146103cd57806323b872dd146103f85780632750fc78146104215780632f745c591461044a5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806315336f8014610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190614085565b610a8a565b6040516102b69190614edd565b60405180910390f35b3480156102cb57600080fd5b506102d4610b04565b6040516102e19190614ef8565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061411c565b610b96565b60405161031e9190614e76565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613fdb565b610c1b565b005b34801561035c57600080fd5b50610377600480360381019061037291906140d7565b610d33565b005b34801561038557600080fd5b5061038e610dc5565b60405161039b919061533a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061411c565b610dd2565b005b3480156103d957600080fd5b506103e2610e58565b6040516103ef9190614edd565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613ed5565b610e6b565b005b34801561042d57600080fd5b506104486004803603810190610443919061405c565b610ecb565b005b34801561045657600080fd5b50610471600480360381019061046c9190613fdb565b610f64565b60405161047e919061533a565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613e70565b611009565b6040516104bb9190614edd565b60405180910390f35b3480156104d057600080fd5b506104d961105f565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613ed5565b61112a565b005b34801561051057600080fd5b5061052b6004803603810190610526919061405c565b61114a565b005b34801561053957600080fd5b506105426111e3565b60405161054f919061533a565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a919061411c565b6111e9565b60405161058c919061533a565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190614017565b611280565b005b3480156105ca57600080fd5b506105e560048036038101906105e091906140d7565b611484565b005b3480156105f357600080fd5b506105fc611516565b604051610609919061533a565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061411c565b61151c565b6040516106469190614e76565b60405180910390f35b34801561065b57600080fd5b506106646115ce565b604051610671919061533a565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c91906140d7565b6115d4565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613e70565b611666565b6040516106d7919061533a565b60405180910390f35b3480156106ec57600080fd5b506106f561171e565b005b34801561070357600080fd5b5061071e60048036038101906107199190614017565b6117a6565b005b34801561072c57600080fd5b50610735611ad4565b604051610742919061533a565b60405180910390f35b34801561075757600080fd5b50610760611ada565b60405161076d919061533a565b60405180910390f35b34801561078257600080fd5b5061078b611ae5565b6040516107989190614e76565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c391906140d7565b611b0f565b005b3480156107d657600080fd5b506107df611ba1565b6040516107ec9190614ef8565b60405180910390f35b34801561080157600080fd5b5061080a611c33565b6040516108179190614edd565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613f9f565b611c46565b005b34801561085557600080fd5b50610870600480360381019061086b9190613f24565b611dc7565b005b34801561087e57600080fd5b5061089960048036038101906108949190613e70565b611e29565b6040516108a6919061533a565b60405180910390f35b6108c960048036038101906108c4919061411c565b611ee1565b005b3480156108d757600080fd5b506108f260048036038101906108ed919061411c565b61230a565b6040516108ff9190614ef8565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613fdb565b61246c565b005b34801561093d57600080fd5b506109466125e2565b604051610953919061533a565b60405180910390f35b34801561096857600080fd5b506109716125e7565b60405161097e919061533a565b60405180910390f35b34801561099357600080fd5b5061099c6125fa565b6040516109a9919061533a565b60405180910390f35b3480156109be57600080fd5b506109c7612600565b6040516109d49190614ef8565b60405180910390f35b3480156109e957600080fd5b50610a0460048036038101906109ff9190613e99565b612692565b604051610a119190614edd565b60405180910390f35b610a346004803603810190610a2f919061411c565b612726565b005b348015610a4257600080fd5b50610a5d6004803603810190610a589190613e70565b6129de565b005b348015610a6b57600080fd5b50610a74612ad6565b604051610a819190614ef8565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afd5750610afc82612b64565b5b9050919050565b606060008054610b13906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f906155d9565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b5050505050905090565b6000610ba182612c46565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd79061515a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c268261151c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906151fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb6612cb2565b73ffffffffffffffffffffffffffffffffffffffff161480610ce55750610ce481610cdf612cb2565b612692565b5b610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b9061507a565b60405180910390fd5b610d2e8383612cba565b505050565b610d3b612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610d59611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061517a565b60405180910390fd5b8181600b9190610dc0929190613c68565b505050565b6000600880549050905090565b610dda612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610df8611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e459061517a565b60405180910390fd5b80600c8190555050565b600a60149054906101000a900460ff1681565b610e7c610e76612cb2565b82612d73565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb29061525a565b60405180910390fd5b610ec6838383612e51565b505050565b610ed3612cb2565b73ffffffffffffffffffffffffffffffffffffffff16610ef1611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e9061517a565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6000610f6f83611666565b8210610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790614f1a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611067612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611085611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d29061517a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611126573d6000803e3d6000fd5b5050565b61114583838360405180602001604052806000815250611dc7565b505050565b611152612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611170611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061517a565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b61012c81565b60006111f3610dc5565b8210611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b9061527a565b60405180910390fd5b6008828154811061126e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611288612cb2565b73ffffffffffffffffffffffffffffffffffffffff166112a6611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f39061517a565b60405180910390fd5b60005b8282905081101561147f57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061135b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906113709190613e70565b73ffffffffffffffffffffffffffffffffffffffff1614156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be9061519a565b60405180910390fd5b6000600f6000858585818110611406577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061141b9190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114779061560b565b9150506112ff565b505050565b61148c612cb2565b73ffffffffffffffffffffffffffffffffffffffff166114aa611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f79061517a565b60405180910390fd5b818160129190611511929190613c68565b505050565b6125e381565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc906150ba565b60405180910390fd5b80915050919050565b600d5481565b6115dc612cb2565b73ffffffffffffffffffffffffffffffffffffffff166115fa611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116479061517a565b60405180910390fd5b818160139190611661929190613c68565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce9061509a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611726612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611744611ae5565b73ffffffffffffffffffffffffffffffffffffffff161461179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061517a565b60405180910390fd5b6117a460006130ad565b565b6117ae612cb2565b73ffffffffffffffffffffffffffffffffffffffff166117cc611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061517a565b60405180910390fd5b60005b82829050811015611acf57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906118969190613e70565b73ffffffffffffffffffffffffffffffffffffffff1614156118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061519a565b60405180910390fd5b6001600f600085858581811061192c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119419190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601060008585858181106119d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119e69190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a2d576000611abb565b60106000848484818110611a6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a7f9190613e70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611ac79061560b565b915050611825565b505050565b600c5481565b66f8b0a10e47000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b17612cb2565b73ffffffffffffffffffffffffffffffffffffffff16611b35611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061517a565b60405180910390fd5b818160119190611b9c929190613c68565b505050565b606060018054611bb0906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611bdc906155d9565b8015611c295780601f10611bfe57610100808354040283529160200191611c29565b820191906000526020600020905b815481529060010190602001808311611c0c57829003601f168201915b5050505050905090565b600a60159054906101000a900460ff1681565b611c4e612cb2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390614fda565b60405180910390fd5b8060056000611cc9612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d76612cb2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dbb9190614edd565b60405180910390a35050565b611dd8611dd2612cb2565b83612d73565b611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e9061525a565b60405180910390fd5b611e2384848484613173565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906152da565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60149054906101000a900460ff16611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f279061513a565b60405180910390fd5b600a60159054906101000a900460ff16611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906152ba565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120029061529a565b60405180910390fd5b6125e361012c61201b919061540e565b612023610dc5565b10612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a906152fa565b60405180910390fd5b600c548111156120a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209f9061531a565b60405180910390fd5b6125e381600e546120b9919061540e565b11156120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906150fa565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612148919061540e565b1115612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061521a565b60405180910390fd5b348166f8b0a10e47000061219d9190615495565b11156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d59061501a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906151da565b60405180910390fd5b60005b818110156123065760006001600e5461012c61226b919061540e565b612275919061540e565b90506001600e600082825461228a919061540e565b925050819055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122e1919061540e565b925050819055506122f233826131cf565b5080806122fe9061560b565b91505061224f565b5050565b606061231582612c46565b612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90614ffa565b60405180910390fd5b600060138054612363906155d9565b80601f016020809104026020016040519081016040528092919081815260200182805461238f906155d9565b80156123dc5780601f106123b1576101008083540402835291602001916123dc565b820191906000526020600020905b8154815290600101906020018083116123bf57829003601f168201915b5050505050905060006123ee846131ed565b6040516020016123fe9190614e30565b604051602081830303815290604052905060008251116124405760128160405160200161242c929190614e52565b604051602081830303815290604052612463565b8181604051602001612453929190614e0c565b6040516020818303038152906040525b92505050919050565b612474612cb2565b73ffffffffffffffffffffffffffffffffffffffff16612492611ae5565b73ffffffffffffffffffffffffffffffffffffffff16146124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061517a565b60405180910390fd5b6125e361012c6124f8919061540e565b612500610dc5565b10612540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612537906152fa565b60405180910390fd5b61012c600d541115612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e9061505a565b60405180910390fd5b60005b818110156125dd5760006001600d546125a3919061540e565b90506001600d60008282546125b8919061540e565b925050819055506125c984826131cf565b5080806125d59061560b565b91505061258a565b505050565b600a81565b6125e361012c6125f7919061540e565b81565b600e5481565b60606011805461260f906155d9565b80601f016020809104026020016040519081016040528092919081815260200182805461263b906155d9565b80156126885780601f1061265d57610100808354040283529160200191612688565b820191906000526020600020905b81548152906001019060200180831161266b57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60149054906101000a900460ff16612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c9061513a565b60405180910390fd5b600a60159054906101000a900460ff16156127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc906150da565b60405180910390fd5b6125e361012c6127d5919061540e565b6127dd610dc5565b1061281d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612814906152fa565b60405180910390fd5b600a811115612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614f9a565b60405180910390fd5b6125e3600e54106128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e9061523a565b60405180910390fd5b348166f8b0a10e4700006128bb9190615495565b11156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f39061501a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906151da565b60405180910390fd5b60005b818110156129da576125e3600e5410156129c75760006001600e5461012c612995919061540e565b61299f919061540e565b90506001600e60008282546129b4919061540e565b925050819055506129c533826131cf565b505b80806129d29061560b565b91505061296d565b5050565b6129e6612cb2565b73ffffffffffffffffffffffffffffffffffffffff16612a04611ae5565b73ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a519061517a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190614f5a565b60405180910390fd5b612ad3816130ad565b50565b600b8054612ae3906155d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612b0f906155d9565b8015612b5c5780601f10612b3157610100808354040283529160200191612b5c565b820191906000526020600020905b815481529060010190602001808311612b3f57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c2f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c3f5750612c3e8261339a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d2d8361151c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d7e82612c46565b612dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db49061503a565b60405180910390fd5b6000612dc88361151c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e3757508373ffffffffffffffffffffffffffffffffffffffff16612e1f84610b96565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e485750612e478185612692565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e718261151c565b73ffffffffffffffffffffffffffffffffffffffff1614612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe906151ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2e90614fba565b60405180910390fd5b612f42838383613404565b612f4d600082612cba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9d91906154ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ff4919061540e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61317e848484612e51565b61318a84848484613518565b6131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c090614f3a565b60405180910390fd5b50505050565b6131e98282604051806020016040528060008152506136af565b5050565b60606000821415613235576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613395565b600082905060005b600082146132675780806132509061560b565b915050600a826132609190615464565b915061323d565b60008167ffffffffffffffff8111156132a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132db5781602001600182028036833780820191505090505b5090505b6000851461338e576001826132f491906154ef565b9150600a856133039190615654565b603061330f919061540e565b60f81b81838151811061334b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133879190615464565b94506132df565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61340f83838361370a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134525761344d8161370f565b613491565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134905761348f8382613758565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134d4576134cf816138c5565b613513565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613512576135118282613a08565b5b5b505050565b60006135398473ffffffffffffffffffffffffffffffffffffffff16613a87565b156136a2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613562612cb2565b8786866040518563ffffffff1660e01b81526004016135849493929190614e91565b602060405180830381600087803b15801561359e57600080fd5b505af19250505080156135cf57506040513d601f19601f820116820180604052508101906135cc91906140ae565b60015b613652573d80600081146135ff576040519150601f19603f3d011682016040523d82523d6000602084013e613604565b606091505b5060008151141561364a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364190614f3a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136a7565b600190505b949350505050565b6136b98383613a9a565b6136c66000848484613518565b613705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fc90614f3a565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161376584611666565b61376f91906154ef565b9050600060076000848152602001908152602001600020549050818114613854576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138d991906154ef565b905060006009600084815260200190815260200160002054905060006008838154811061392f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613977577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806139ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a1383611666565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b019061511a565b60405180910390fd5b613b1381612c46565b15613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a90614f7a565b60405180910390fd5b613b5f60008383613404565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613baf919061540e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613c74906155d9565b90600052602060002090601f016020900481019282613c965760008555613cdd565b82601f10613caf57803560ff1916838001178555613cdd565b82800160010185558215613cdd579182015b82811115613cdc578235825591602001919060010190613cc1565b5b509050613cea9190613cee565b5090565b5b80821115613d07576000816000905550600101613cef565b5090565b6000613d1e613d1984615386565b615355565b905082815260208101848484011115613d3657600080fd5b613d41848285615597565b509392505050565b600081359050613d5881615752565b92915050565b60008083601f840112613d7057600080fd5b8235905067ffffffffffffffff811115613d8957600080fd5b602083019150836020820283011115613da157600080fd5b9250929050565b600081359050613db781615769565b92915050565b600081359050613dcc81615780565b92915050565b600081519050613de181615780565b92915050565b600082601f830112613df857600080fd5b8135613e08848260208601613d0b565b91505092915050565b60008083601f840112613e2357600080fd5b8235905067ffffffffffffffff811115613e3c57600080fd5b602083019150836001820283011115613e5457600080fd5b9250929050565b600081359050613e6a81615797565b92915050565b600060208284031215613e8257600080fd5b6000613e9084828501613d49565b91505092915050565b60008060408385031215613eac57600080fd5b6000613eba85828601613d49565b9250506020613ecb85828601613d49565b9150509250929050565b600080600060608486031215613eea57600080fd5b6000613ef886828701613d49565b9350506020613f0986828701613d49565b9250506040613f1a86828701613e5b565b9150509250925092565b60008060008060808587031215613f3a57600080fd5b6000613f4887828801613d49565b9450506020613f5987828801613d49565b9350506040613f6a87828801613e5b565b925050606085013567ffffffffffffffff811115613f8757600080fd5b613f9387828801613de7565b91505092959194509250565b60008060408385031215613fb257600080fd5b6000613fc085828601613d49565b9250506020613fd185828601613da8565b9150509250929050565b60008060408385031215613fee57600080fd5b6000613ffc85828601613d49565b925050602061400d85828601613e5b565b9150509250929050565b6000806020838503121561402a57600080fd5b600083013567ffffffffffffffff81111561404457600080fd5b61405085828601613d5e565b92509250509250929050565b60006020828403121561406e57600080fd5b600061407c84828501613da8565b91505092915050565b60006020828403121561409757600080fd5b60006140a584828501613dbd565b91505092915050565b6000602082840312156140c057600080fd5b60006140ce84828501613dd2565b91505092915050565b600080602083850312156140ea57600080fd5b600083013567ffffffffffffffff81111561410457600080fd5b61411085828601613e11565b92509250509250929050565b60006020828403121561412e57600080fd5b600061413c84828501613e5b565b91505092915050565b61414e81615523565b82525050565b61415d81615535565b82525050565b600061416e826153cb565b61417881856153e1565b93506141888185602086016155a6565b61419181615741565b840191505092915050565b60006141a7826153d6565b6141b181856153f2565b93506141c18185602086016155a6565b6141ca81615741565b840191505092915050565b60006141e0826153d6565b6141ea8185615403565b93506141fa8185602086016155a6565b80840191505092915050565b60008154614213816155d9565b61421d8186615403565b9450600182166000811461423857600181146142495761427c565b60ff1983168652818601935061427c565b614252856153b6565b60005b8381101561427457815481890152600182019150602081019050614255565b838801955050505b50505092915050565b6000614292602b836153f2565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006142f86032836153f2565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061435e6026836153f2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143c4601c836153f2565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000614404601b836153f2565b91507f576f756c64206578636565642050555243484153455f4c494d495400000000006000830152602082019050919050565b60006144446024836153f2565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144aa6019836153f2565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144ea6014836153f2565b91507f546f6b656e20646f6573206e6f742065786973740000000000000000000000006000830152602082019050919050565b600061452a601c836153f2565b91507f45544820616d6f756e74206973206e6f742073756666696369656e74000000006000830152602082019050919050565b600061456a602c836153f2565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145d06021836153f2565b91507f4e6f7420656e6f75676820746f6b656e73206c65667420746f2072657365727660008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146366038836153f2565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061469c602a836153f2565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006147026029836153f2565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006147686023836153f2565b91507f4f6e6c792070726573616c65206973206163746976652061742074686973207460008301527f696d6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147ce6023836153f2565b91507f507572636861736520776f756c642065786365656420494e4d4154455f50554260008301527f4c494300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148346020836153f2565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006148746016836153f2565b91507f436f6e7472616374206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b60006148b4602c836153f2565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061491a600583615403565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061495a6020836153f2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061499a601a836153f2565b91507f43616e27742061646420746865206e756c6c20616464726573730000000000006000830152602082019050919050565b60006149da6029836153f2565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a406024836153f2565b91507f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008301527f63747321000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614aa66021836153f2565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b0c6037836153f2565b91507f50757263686173652065786365656473206d6178206e756d626572206f66206d60008301527f696e747320616c6c6f77656420696e2070726573616c650000000000000000006020830152604082019050919050565b6000614b726024836153f2565b91507f507572636861736520776f756c642065786365656420494e4d415445535f505560008301527f424c4943000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614bd86031836153f2565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614c3e602c836153f2565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ca46024836153f2565b91507f596f7520617265206e6f74206f6e207468652070726573616c6520776869746560008301527f6c697374000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d0a6016836153f2565b91507f5072652053616c65206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b6000614d4a601e836153f2565b91507f5a65726f2061646472657373206e6f74206f6e205768697465204c69737400006000830152602082019050919050565b6000614d8a601b836153f2565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614dca6020836153f2565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b614e068161558d565b82525050565b6000614e1882856141d5565b9150614e2482846141d5565b91508190509392505050565b6000614e3c82846141d5565b9150614e478261490d565b915081905092915050565b6000614e5e8285614206565b9150614e6a82846141d5565b91508190509392505050565b6000602082019050614e8b6000830184614145565b92915050565b6000608082019050614ea66000830187614145565b614eb36020830186614145565b614ec06040830185614dfd565b8181036060830152614ed28184614163565b905095945050505050565b6000602082019050614ef26000830184614154565b92915050565b60006020820190508181036000830152614f12818461419c565b905092915050565b60006020820190508181036000830152614f3381614285565b9050919050565b60006020820190508181036000830152614f53816142eb565b9050919050565b60006020820190508181036000830152614f7381614351565b9050919050565b60006020820190508181036000830152614f93816143b7565b9050919050565b60006020820190508181036000830152614fb3816143f7565b9050919050565b60006020820190508181036000830152614fd381614437565b9050919050565b60006020820190508181036000830152614ff38161449d565b9050919050565b60006020820190508181036000830152615013816144dd565b9050919050565b600060208201905081810360008301526150338161451d565b9050919050565b600060208201905081810360008301526150538161455d565b9050919050565b60006020820190508181036000830152615073816145c3565b9050919050565b6000602082019050818103600083015261509381614629565b9050919050565b600060208201905081810360008301526150b38161468f565b9050919050565b600060208201905081810360008301526150d3816146f5565b9050919050565b600060208201905081810360008301526150f38161475b565b9050919050565b60006020820190508181036000830152615113816147c1565b9050919050565b6000602082019050818103600083015261513381614827565b9050919050565b6000602082019050818103600083015261515381614867565b9050919050565b60006020820190508181036000830152615173816148a7565b9050919050565b600060208201905081810360008301526151938161494d565b9050919050565b600060208201905081810360008301526151b38161498d565b9050919050565b600060208201905081810360008301526151d3816149cd565b9050919050565b600060208201905081810360008301526151f381614a33565b9050919050565b6000602082019050818103600083015261521381614a99565b9050919050565b6000602082019050818103600083015261523381614aff565b9050919050565b6000602082019050818103600083015261525381614b65565b9050919050565b6000602082019050818103600083015261527381614bcb565b9050919050565b6000602082019050818103600083015261529381614c31565b9050919050565b600060208201905081810360008301526152b381614c97565b9050919050565b600060208201905081810360008301526152d381614cfd565b9050919050565b600060208201905081810360008301526152f381614d3d565b9050919050565b6000602082019050818103600083015261531381614d7d565b9050919050565b6000602082019050818103600083015261533381614dbd565b9050919050565b600060208201905061534f6000830184614dfd565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561537c5761537b615712565b5b8060405250919050565b600067ffffffffffffffff8211156153a1576153a0615712565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154198261558d565b91506154248361558d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561545957615458615685565b5b828201905092915050565b600061546f8261558d565b915061547a8361558d565b92508261548a576154896156b4565b5b828204905092915050565b60006154a08261558d565b91506154ab8361558d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154e4576154e3615685565b5b828202905092915050565b60006154fa8261558d565b91506155058361558d565b92508282101561551857615517615685565b5b828203905092915050565b600061552e8261556d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155c45780820151818401526020810190506155a9565b838111156155d3576000848401525b50505050565b600060028204905060018216806155f157607f821691505b60208210811415615605576156046156e3565b5b50919050565b60006156168261558d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561564957615648615685565b5b600182019050919050565b600061565f8261558d565b915061566a8361558d565b92508261567a576156796156b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61575b81615523565b811461576657600080fd5b50565b61577281615535565b811461577d57600080fd5b50565b61578981615541565b811461579457600080fd5b50565b6157a08161558d565b81146157ab57600080fd5b5056fea2646970667358221220f8721045b442fb539622f284560872dd1e93ef3f422d4bfa26b4493db75eefc664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d537061636520496e6d6174657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5350414345494e4d415445530000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Space Inmates
Arg [1] : symbol (string): SPACEINMATES
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 537061636520496e6d6174657300000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 5350414345494e4d415445530000000000000000000000000000000000000000
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.