ERC-721
Overview
Max Total Supply
2,334 FR
Holders
118
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheFrench
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /* --Information for Mint-- One Free Mint per Wallet 10 Mints per tx After free mint each mint will cost 0.001 eth */ contract TheFrench is ERC721B, Ownable { using Strings for uint256; string public baseURI = ""; bool public isSaleActive = false; mapping(address => bool) public _freeMintClaimed; uint256 public constant MAX_TOKENS = 9999; uint256 public tokenPrice = 1000000000000000; uint256 public constant maxPerTX = 10; using SafeMath for uint256; using Strings for uint256; event NFTMINTED(uint256 tokenId, address owner); constructor() ERC721B("TheFrench", "FR") {} function _baseURI() internal view virtual returns (string memory) { return baseURI; } function _price() internal view virtual returns (uint256) { return tokenPrice; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setPrice(uint256 _newTokenPrice) public onlyOwner { tokenPrice = _newTokenPrice; } function activateSale() external onlyOwner { isSaleActive = !isSaleActive; } function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } function Withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{ value: address(this).balance }(""); require(os); } function reserveTokens(address dev, uint256 reserveAmount) external onlyOwner { totalSupply().add(1); _mint(dev, reserveAmount); } function Mint(address to, uint256 quantity) external payable { require(isSaleActive, "Sale not Active"); require( quantity > 0 && quantity <= maxPerTX, "Can Mint only 10 per tx" ); require( totalSupply().add(quantity) <= MAX_TOKENS, "Mint is going over Max Supply" ); if( _freeMintClaimed[msg.sender] != true){ _freeMintClaimed[msg.sender] = true; require( msg.value >= tokenPrice.mul(quantity-1), "Invalid ETH Sent, Anything over One Free Mint is 0.001 eth" ); _mint(to, quantity); }else{ require( msg.value >= tokenPrice.mul(quantity), "0.001 eth per token" ); _mint(to, quantity); } } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error UnableGetTokenOwnerByIndex(); error URIQueryForNonexistentToken(); /** * Updated, minimalist and gas efficient version of OpenZeppelins ERC721 contract. * Includes the Metadata and Enumerable extension. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * Does not support burning tokens * * @author beskay0x * Credits: chiru-labs, solmate, transmissions11, nftchance, squeebo_nft and others */ abstract contract ERC721B { /*/////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 indexed id); event Approval(address indexed owner, address indexed spender, uint256 indexed id); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /*/////////////////////////////////////////////////////////////// METADATA STORAGE/LOGIC //////////////////////////////////////////////////////////////*/ string public name; string public symbol; function tokenURI(uint256 tokenId) public view virtual returns (string memory); /*/////////////////////////////////////////////////////////////// ERC721 STORAGE //////////////////////////////////////////////////////////////*/ // Array which maps token ID to address (index is tokenID) address[] internal _owners; // 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; /*/////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(string memory _name, string memory _symbol) { name = _name; symbol = _symbol; } /*/////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165 interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721 interfaceId == 0x780e9d63 || // ERC165 Interface ID for ERC721Enumerable interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata } /*/////////////////////////////////////////////////////////////// ERC721ENUMERABLE LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * Dont call this function on chain from another smart contract, since it can become quite expensive */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256 tokenId) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 count; uint256 qty = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (tokenId; tokenId < qty; tokenId++) { if (owner == ownerOf(tokenId)) { if (count == index) return tokenId; else count++; } } } revert UnableGetTokenOwnerByIndex(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /*/////////////////////////////////////////////////////////////// ERC721 LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev Iterates through _owners array, returns balance of address * It is not recommended to call this function from another smart contract * as it can become quite expensive -- call this function off chain instead. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); uint256 count; uint256 qty = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (uint256 i; i < qty; i++) { if (owner == ownerOf(i)) { count++; } } } return count; } /** * @dev See {IERC721-ownerOf}. * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); // Cannot realistically overflow, since we are using uint256 unchecked { for (tokenId; ; tokenId++) { if (_owners[tokenId] != address(0)) { return _owners[tokenId]; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { address owner = ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (msg.sender != owner && !isApprovedForAll(owner, msg.sender)) revert ApprovalCallerNotOwnerNorApproved(); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { if (operator == msg.sender) revert ApproveToCaller(); _operatorApprovals[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); if (ownerOf(tokenId) != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); bool isApprovedOrOwner = (msg.sender == from || msg.sender == getApproved(tokenId) || isApprovedForAll(from, msg.sender)); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // delete token approvals from previous owner delete _tokenApprovals[tokenId]; _owners[tokenId] = to; // if token ID below transferred one isnt set, set it to previous owner // if tokenid is zero, skip this to prevent underflow if (tokenId > 0 && _owners[tokenId - 1] == address(0)) { _owners[tokenId - 1] = from; } emit Transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id ) public virtual { safeTransferFrom(from, to, id, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, bytes memory data ) public virtual { transferFrom(from, to, id); if (!_checkOnERC721Received(from, to, id, data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length; } /** * @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.code.length == 0) return true; try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); assembly { revert(add(32, reason), mload(reason)) } } } /*/////////////////////////////////////////////////////////////// INTERNAL MINT LOGIC //////////////////////////////////////////////////////////////*/ /** * @dev check if contract confirms token transfer, if not - reverts * unlike the standard ERC721 implementation this is only called once per mint, * no matter how many tokens get minted, since it is useless to check this * requirement several times -- if the contract confirms one token, * it will confirm all additional ones too. * This saves us around 5k gas per additional mint */ function _safeMint(address to, uint256 qty) internal virtual { _safeMint(to, qty, ''); } function _safeMint( address to, uint256 qty, bytes memory data ) internal virtual { _mint(to, qty); if (!_checkOnERC721Received(address(0), to, _owners.length - 1, data)) revert TransferToNonERC721ReceiverImplementer(); } function _mint(address to, uint256 qty) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (qty == 0) revert MintZeroQuantity(); uint256 _currentIndex = _owners.length; // Cannot realistically overflow, since we are using uint256 unchecked { for (uint256 i; i < qty - 1; i++) { _owners.push(); emit Transfer(address(0), to, _currentIndex + i); } } // set last index to receiver _owners.push(to); emit Transfer(address(0), to, _currentIndex + (qty - 1)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"inputs":[],"name":"UnableGetTokenOwnerByIndex","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NFTMINTED","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateSale","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"},{"internalType":"uint256","name":"reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenPrice","type":"uint256"}],"name":"setPrice","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600690805190602001906200002b929190620001f4565b506000600760006101000a81548160ff02191690831515021790555066038d7ea4c680006009553480156200005f57600080fd5b506040518060400160405280600981526020017f5468654672656e636800000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f46520000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e4929190620001f4565b508060019080519060200190620000fd929190620001f4565b50505062000120620001146200012660201b60201c565b6200012e60201b60201c565b62000309565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020290620002a4565b90600052602060002090601f01602090048101928262000226576000855562000272565b82601f106200024157805160ff191683800117855562000272565b8280016001018555821562000272579182015b828111156200027157825182559160200191906001019062000254565b5b50905062000281919062000285565b5090565b5b80821115620002a057600081600090555060010162000286565b5090565b60006002820490506001821680620002bd57607f821691505b60208210811415620002d457620002d3620002da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6131a880620003196000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a40d36cd11610095578063c87b56dd11610064578063c87b56dd146106c4578063e985e9c514610701578063f2fde38b1461073e578063f47c84c514610767576101e3565b8063a40d36cd1461061c578063b5caab2f14610647578063b88d4fde14610684578063c721f08d146106ad576101e3565b80638da5cb5b116100d15780638da5cb5b1461057457806391b7f5ed1461059f57806395d89b41146105c8578063a22cb465146105f3576101e3565b806370a08231146104cc578063715018a61461050957806378cf19e9146105205780637ff9b59614610549576101e3565b806342842e0e1161017a578063564566a811610149578063564566a81461042f57806357ea89b61461045a5780636352211e146104645780636c0360eb146104a1576101e3565b806342842e0e146103635780634f558e791461038c5780634f6ccce7146103c957806355f804b314610406576101e3565b80630f6798a5116101b65780630f6798a5146102b657806318160ddd146102d257806323b872dd146102fd5780632f745c5914610326576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906125a2565b610792565b60405161021c919061294b565b60405180910390f35b34801561023157600080fd5b5061023a610854565b6040516102479190612966565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612645565b6108e2565b60405161028491906128e4565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612562565b61095e565b005b6102d060048036038101906102cb9190612562565b610afd565b005b3480156102de57600080fd5b506102e7610d82565b6040516102f49190612a88565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061244c565b610d8f565b005b34801561033257600080fd5b5061034d60048036038101906103489190612562565b611144565b60405161035a9190612a88565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061244c565b611234565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612645565b611254565b6040516103c0919061294b565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612645565b611266565b6040516103fd9190612a88565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906125fc565b6112b0565b005b34801561043b57600080fd5b506104446112d2565b604051610451919061294b565b60405180910390f35b6104626112e5565b005b34801561047057600080fd5b5061048b60048036038101906104869190612645565b61136d565b60405161049891906128e4565b60405180910390f35b3480156104ad57600080fd5b506104b6611479565b6040516104c39190612966565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906123df565b611507565b6040516105009190612a88565b60405180910390f35b34801561051557600080fd5b5061051e6115e2565b005b34801561052c57600080fd5b5061054760048036038101906105429190612562565b6115f6565b005b34801561055557600080fd5b5061055e611628565b60405161056b9190612a88565b60405180910390f35b34801561058057600080fd5b5061058961162e565b60405161059691906128e4565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612645565b611658565b005b3480156105d457600080fd5b506105dd61166a565b6040516105ea9190612966565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612522565b6116f8565b005b34801561062857600080fd5b5061063161185b565b60405161063e9190612a88565b60405180910390f35b34801561065357600080fd5b5061066e600480360381019061066991906123df565b611860565b60405161067b919061294b565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061249f565b611880565b005b3480156106b957600080fd5b506106c26118d3565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612645565b611907565b6040516106f89190612966565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061240c565b6119ae565b604051610735919061294b565b60405180910390f35b34801561074a57600080fd5b50610765600480360381019061076091906123df565b611a42565b005b34801561077357600080fd5b5061077c611ac6565b6040516107899190612a88565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081d575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461086190612d43565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90612d43565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b505050505081565b60006108ed82611acc565b610923576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109698261136d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a145750610a1281336119ae565b155b15610a4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600760009054906101000a900460ff16610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390612a08565b60405180910390fd5b600081118015610b5d5750600a8111155b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390612a68565b60405180910390fd5b61270f610bb982610bab610d82565b611add90919063ffffffff16565b1115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190612a28565b60405180910390fd5b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d1c576001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ccb600182610cba9190612c59565b600954611af390919063ffffffff16565b341015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490612a48565b60405180910390fd5b610d178282611b09565b610d7e565b610d3181600954611af390919063ffffffff16565b341015610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906129e8565b60405180910390fd5b610d7d8282611b09565b5b5050565b6000600280549050905090565b610d9881611acc565b610dce576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610dee8261136d565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f115750610ee2826108e2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610f225750610f2184336119ae565b5b905080610f5b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610fa657610fa5612ead565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000821180156110745750600073ffffffffffffffffffffffffffffffffffffffff1660026001846110209190612c59565b8154811061103157611030612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156110e3578360026001846110899190612c59565b8154811061109a57611099612ead565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b600061114f83611507565b8210611187576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b808310156111fc576111a48361136d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ef57838214156111e657505061122e565b81806001019250505b8280600101935050611193565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b61124f83838360405180602001604052806000815250611880565b505050565b600061125f82611acc565b9050919050565b6000611270610d82565b82106112a8576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6112b8611d32565b80600690805190602001906112ce9291906121f3565b5050565b600760009054906101000a900460ff1681565b6112ed611d32565b60006112f761162e565b73ffffffffffffffffffffffffffffffffffffffff164760405161131a906128cf565b60006040518083038185875af1925050503d8060008114611357576040519150601f19603f3d011682016040523d82523d6000602084013e61135c565b606091505b505090508061136a57600080fd5b50565b600061137882611acc565b6113ae576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113db576113da612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611467576002828154811061143557611434612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611474565b81806001019250506113af565b919050565b6006805461148690612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546114b290612d43565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b818110156115d75761158e8161136d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115ca5782806001019350505b808060010191505061157d565b508192505050919050565b6115ea611d32565b6115f46000611db0565b565b6115fe611d32565b611619600161160b610d82565b611add90919063ffffffff16565b506116248282611b09565b5050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611660611d32565b8060098190555050565b6001805461167790612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546116a390612d43565b80156116f05780601f106116c5576101008083540402835291602001916116f0565b820191906000526020600020905b8154815290600101906020018083116116d357829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f919061294b565b60405180910390a35050565b600a81565b60086020528060005260406000206000915054906101000a900460ff1681565b61188b848484610d8f565b61189784848484611e76565b6118cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6118db611d32565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b606061191282611acc565b611951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611948906129c8565b60405180910390fd5b600061195b611ff8565b9050600081511161197b57604051806020016040528060008152506119a6565b806119858461208a565b6040516020016119969291906128a0565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a4a611d32565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190612988565b60405180910390fd5b611ac381611db0565b50565b61270f81565b600060028054905082109050919050565b60008183611aeb9190612b78565b905092915050565b60008183611b019190612bff565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b70576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611bab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611c56576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611bb8565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611cc79190612c59565b81611cd29190612b78565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611d3a6121eb565b73ffffffffffffffffffffffffffffffffffffffff16611d5861162e565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906129a8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1415611ea05760019050611ff0565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b8152600401611edf94939291906128ff565b602060405180830381600087803b158015611ef957600080fd5b505af1925050508015611f2a57506040513d601f19601f82011682018060405250810190611f2791906125cf565b60015b611fa4573d8060008114611f5a576040519150601f19603f3d011682016040523d82523d6000602084013e611f5f565b606091505b50600081511415611f9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606006805461200790612d43565b80601f016020809104026020016040519081016040528092919081815260200182805461203390612d43565b80156120805780601f1061205557610100808354040283529160200191612080565b820191906000526020600020905b81548152906001019060200180831161206357829003601f168201915b5050505050905090565b606060008214156120d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e6565b600082905060005b600082146121045780806120ed90612da6565b915050600a826120fd9190612bce565b91506120da565b60008167ffffffffffffffff8111156121205761211f612edc565b5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146121df5760018261216b9190612c59565b9150600a8561217a9190612def565b60306121869190612b78565b60f81b81838151811061219c5761219b612ead565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d89190612bce565b9450612156565b8093505050505b919050565b600033905090565b8280546121ff90612d43565b90600052602060002090601f0160209004810192826122215760008555612268565b82601f1061223a57805160ff1916838001178555612268565b82800160010185558215612268579182015b8281111561226757825182559160200191906001019061224c565b5b5090506122759190612279565b5090565b5b8082111561229257600081600090555060010161227a565b5090565b60006122a96122a484612ac8565b612aa3565b9050828152602081018484840111156122c5576122c4612f10565b5b6122d0848285612d01565b509392505050565b60006122eb6122e684612af9565b612aa3565b90508281526020810184848401111561230757612306612f10565b5b612312848285612d01565b509392505050565b60008135905061232981613116565b92915050565b60008135905061233e8161312d565b92915050565b60008135905061235381613144565b92915050565b60008151905061236881613144565b92915050565b600082601f83011261238357612382612f0b565b5b8135612393848260208601612296565b91505092915050565b600082601f8301126123b1576123b0612f0b565b5b81356123c18482602086016122d8565b91505092915050565b6000813590506123d98161315b565b92915050565b6000602082840312156123f5576123f4612f1a565b5b60006124038482850161231a565b91505092915050565b6000806040838503121561242357612422612f1a565b5b60006124318582860161231a565b92505060206124428582860161231a565b9150509250929050565b60008060006060848603121561246557612464612f1a565b5b60006124738682870161231a565b93505060206124848682870161231a565b9250506040612495868287016123ca565b9150509250925092565b600080600080608085870312156124b9576124b8612f1a565b5b60006124c78782880161231a565b94505060206124d88782880161231a565b93505060406124e9878288016123ca565b925050606085013567ffffffffffffffff81111561250a57612509612f15565b5b6125168782880161236e565b91505092959194509250565b6000806040838503121561253957612538612f1a565b5b60006125478582860161231a565b92505060206125588582860161232f565b9150509250929050565b6000806040838503121561257957612578612f1a565b5b60006125878582860161231a565b9250506020612598858286016123ca565b9150509250929050565b6000602082840312156125b8576125b7612f1a565b5b60006125c684828501612344565b91505092915050565b6000602082840312156125e5576125e4612f1a565b5b60006125f384828501612359565b91505092915050565b60006020828403121561261257612611612f1a565b5b600082013567ffffffffffffffff8111156126305761262f612f15565b5b61263c8482850161239c565b91505092915050565b60006020828403121561265b5761265a612f1a565b5b6000612669848285016123ca565b91505092915050565b61267b81612c8d565b82525050565b61268a81612c9f565b82525050565b600061269b82612b2a565b6126a58185612b40565b93506126b5818560208601612d10565b6126be81612f1f565b840191505092915050565b60006126d482612b35565b6126de8185612b5c565b93506126ee818560208601612d10565b6126f781612f1f565b840191505092915050565b600061270d82612b35565b6127178185612b6d565b9350612727818560208601612d10565b80840191505092915050565b6000612740602683612b5c565b915061274b82612f30565b604082019050919050565b6000612763600583612b6d565b915061276e82612f7f565b600582019050919050565b6000612786602083612b5c565b915061279182612fa8565b602082019050919050565b60006127a9602f83612b5c565b91506127b482612fd1565b604082019050919050565b60006127cc601383612b5c565b91506127d782613020565b602082019050919050565b60006127ef600f83612b5c565b91506127fa82613049565b602082019050919050565b6000612812600083612b51565b915061281d82613072565b600082019050919050565b6000612835601d83612b5c565b915061284082613075565b602082019050919050565b6000612858603a83612b5c565b91506128638261309e565b604082019050919050565b600061287b601783612b5c565b9150612886826130ed565b602082019050919050565b61289a81612cf7565b82525050565b60006128ac8285612702565b91506128b88284612702565b91506128c382612756565b91508190509392505050565b60006128da82612805565b9150819050919050565b60006020820190506128f96000830184612672565b92915050565b60006080820190506129146000830187612672565b6129216020830186612672565b61292e6040830185612891565b81810360608301526129408184612690565b905095945050505050565b60006020820190506129606000830184612681565b92915050565b6000602082019050818103600083015261298081846126c9565b905092915050565b600060208201905081810360008301526129a181612733565b9050919050565b600060208201905081810360008301526129c181612779565b9050919050565b600060208201905081810360008301526129e18161279c565b9050919050565b60006020820190508181036000830152612a01816127bf565b9050919050565b60006020820190508181036000830152612a21816127e2565b9050919050565b60006020820190508181036000830152612a4181612828565b9050919050565b60006020820190508181036000830152612a618161284b565b9050919050565b60006020820190508181036000830152612a818161286e565b9050919050565b6000602082019050612a9d6000830184612891565b92915050565b6000612aad612abe565b9050612ab98282612d75565b919050565b6000604051905090565b600067ffffffffffffffff821115612ae357612ae2612edc565b5b612aec82612f1f565b9050602081019050919050565b600067ffffffffffffffff821115612b1457612b13612edc565b5b612b1d82612f1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b8382612cf7565b9150612b8e83612cf7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bc357612bc2612e20565b5b828201905092915050565b6000612bd982612cf7565b9150612be483612cf7565b925082612bf457612bf3612e4f565b5b828204905092915050565b6000612c0a82612cf7565b9150612c1583612cf7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c4e57612c4d612e20565b5b828202905092915050565b6000612c6482612cf7565b9150612c6f83612cf7565b925082821015612c8257612c81612e20565b5b828203905092915050565b6000612c9882612cd7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d2e578082015181840152602081019050612d13565b83811115612d3d576000848401525b50505050565b60006002820490506001821680612d5b57607f821691505b60208210811415612d6f57612d6e612e7e565b5b50919050565b612d7e82612f1f565b810181811067ffffffffffffffff82111715612d9d57612d9c612edc565b5b80604052505050565b6000612db182612cf7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612de457612de3612e20565b5b600182019050919050565b6000612dfa82612cf7565b9150612e0583612cf7565b925082612e1557612e14612e4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f302e303031206574682070657220746f6b656e00000000000000000000000000600082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572204d617820537570706c79000000600082015250565b7f496e76616c6964204554482053656e742c20416e797468696e67206f7665722060008201527f4f6e652046726565204d696e7420697320302e30303120657468000000000000602082015250565b7f43616e204d696e74206f6e6c7920313020706572207478000000000000000000600082015250565b61311f81612c8d565b811461312a57600080fd5b50565b61313681612c9f565b811461314157600080fd5b50565b61314d81612cab565b811461315857600080fd5b50565b61316481612cf7565b811461316f57600080fd5b5056fea2646970667358221220e7cdc1fad4322541b572606355864c6362996bc919af940b995adc203e47455a64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a40d36cd11610095578063c87b56dd11610064578063c87b56dd146106c4578063e985e9c514610701578063f2fde38b1461073e578063f47c84c514610767576101e3565b8063a40d36cd1461061c578063b5caab2f14610647578063b88d4fde14610684578063c721f08d146106ad576101e3565b80638da5cb5b116100d15780638da5cb5b1461057457806391b7f5ed1461059f57806395d89b41146105c8578063a22cb465146105f3576101e3565b806370a08231146104cc578063715018a61461050957806378cf19e9146105205780637ff9b59614610549576101e3565b806342842e0e1161017a578063564566a811610149578063564566a81461042f57806357ea89b61461045a5780636352211e146104645780636c0360eb146104a1576101e3565b806342842e0e146103635780634f558e791461038c5780634f6ccce7146103c957806355f804b314610406576101e3565b80630f6798a5116101b65780630f6798a5146102b657806318160ddd146102d257806323b872dd146102fd5780632f745c5914610326576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906125a2565b610792565b60405161021c919061294b565b60405180910390f35b34801561023157600080fd5b5061023a610854565b6040516102479190612966565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612645565b6108e2565b60405161028491906128e4565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612562565b61095e565b005b6102d060048036038101906102cb9190612562565b610afd565b005b3480156102de57600080fd5b506102e7610d82565b6040516102f49190612a88565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061244c565b610d8f565b005b34801561033257600080fd5b5061034d60048036038101906103489190612562565b611144565b60405161035a9190612a88565b60405180910390f35b34801561036f57600080fd5b5061038a6004803603810190610385919061244c565b611234565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612645565b611254565b6040516103c0919061294b565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612645565b611266565b6040516103fd9190612a88565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906125fc565b6112b0565b005b34801561043b57600080fd5b506104446112d2565b604051610451919061294b565b60405180910390f35b6104626112e5565b005b34801561047057600080fd5b5061048b60048036038101906104869190612645565b61136d565b60405161049891906128e4565b60405180910390f35b3480156104ad57600080fd5b506104b6611479565b6040516104c39190612966565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906123df565b611507565b6040516105009190612a88565b60405180910390f35b34801561051557600080fd5b5061051e6115e2565b005b34801561052c57600080fd5b5061054760048036038101906105429190612562565b6115f6565b005b34801561055557600080fd5b5061055e611628565b60405161056b9190612a88565b60405180910390f35b34801561058057600080fd5b5061058961162e565b60405161059691906128e4565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612645565b611658565b005b3480156105d457600080fd5b506105dd61166a565b6040516105ea9190612966565b60405180910390f35b3480156105ff57600080fd5b5061061a60048036038101906106159190612522565b6116f8565b005b34801561062857600080fd5b5061063161185b565b60405161063e9190612a88565b60405180910390f35b34801561065357600080fd5b5061066e600480360381019061066991906123df565b611860565b60405161067b919061294b565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061249f565b611880565b005b3480156106b957600080fd5b506106c26118d3565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612645565b611907565b6040516106f89190612966565b60405180910390f35b34801561070d57600080fd5b506107286004803603810190610723919061240c565b6119ae565b604051610735919061294b565b60405180910390f35b34801561074a57600080fd5b50610765600480360381019061076091906123df565b611a42565b005b34801561077357600080fd5b5061077c611ac6565b6040516107899190612a88565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ed57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081d575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061084d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461086190612d43565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90612d43565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b505050505081565b60006108ed82611acc565b610923576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109698261136d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610a145750610a1281336119ae565b155b15610a4b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600760009054906101000a900460ff16610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4390612a08565b60405180910390fd5b600081118015610b5d5750600a8111155b610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9390612a68565b60405180910390fd5b61270f610bb982610bab610d82565b611add90919063ffffffff16565b1115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190612a28565b60405180910390fd5b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d1c576001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ccb600182610cba9190612c59565b600954611af390919063ffffffff16565b341015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490612a48565b60405180910390fd5b610d178282611b09565b610d7e565b610d3181600954611af390919063ffffffff16565b341015610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a906129e8565b60405180910390fd5b610d7d8282611b09565b5b5050565b6000600280549050905090565b610d9881611acc565b610dce576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610dee8261136d565b73ffffffffffffffffffffffffffffffffffffffff1614610e3b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f115750610ee2826108e2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610f225750610f2184336119ae565b5b905080610f5b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610fa657610fa5612ead565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000821180156110745750600073ffffffffffffffffffffffffffffffffffffffff1660026001846110209190612c59565b8154811061103157611030612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156110e3578360026001846110899190612c59565b8154811061109a57611099612ead565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b600061114f83611507565b8210611187576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b808310156111fc576111a48361136d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ef57838214156111e657505061122e565b81806001019250505b8280600101935050611193565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b61124f83838360405180602001604052806000815250611880565b505050565b600061125f82611acc565b9050919050565b6000611270610d82565b82106112a8576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6112b8611d32565b80600690805190602001906112ce9291906121f3565b5050565b600760009054906101000a900460ff1681565b6112ed611d32565b60006112f761162e565b73ffffffffffffffffffffffffffffffffffffffff164760405161131a906128cf565b60006040518083038185875af1925050503d8060008114611357576040519150601f19603f3d011682016040523d82523d6000602084013e61135c565b606091505b505090508061136a57600080fd5b50565b600061137882611acc565b6113ae576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113db576113da612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611467576002828154811061143557611434612ead565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611474565b81806001019250506113af565b919050565b6006805461148690612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546114b290612d43565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b818110156115d75761158e8161136d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115ca5782806001019350505b808060010191505061157d565b508192505050919050565b6115ea611d32565b6115f46000611db0565b565b6115fe611d32565b611619600161160b610d82565b611add90919063ffffffff16565b506116248282611b09565b5050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611660611d32565b8060098190555050565b6001805461167790612d43565b80601f01602080910402602001604051908101604052809291908181526020018280546116a390612d43565b80156116f05780601f106116c5576101008083540402835291602001916116f0565b820191906000526020600020905b8154815290600101906020018083116116d357829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f919061294b565b60405180910390a35050565b600a81565b60086020528060005260406000206000915054906101000a900460ff1681565b61188b848484610d8f565b61189784848484611e76565b6118cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6118db611d32565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b606061191282611acc565b611951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611948906129c8565b60405180910390fd5b600061195b611ff8565b9050600081511161197b57604051806020016040528060008152506119a6565b806119858461208a565b6040516020016119969291906128a0565b6040516020818303038152906040525b915050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a4a611d32565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab190612988565b60405180910390fd5b611ac381611db0565b50565b61270f81565b600060028054905082109050919050565b60008183611aeb9190612b78565b905092915050565b60008183611b019190612bff565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b70576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611bab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611c56576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611bb8565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600182611cc79190612c59565b81611cd29190612b78565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611d3a6121eb565b73ffffffffffffffffffffffffffffffffffffffff16611d5861162e565b73ffffffffffffffffffffffffffffffffffffffff1614611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da5906129a8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b1415611ea05760019050611ff0565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b8152600401611edf94939291906128ff565b602060405180830381600087803b158015611ef957600080fd5b505af1925050508015611f2a57506040513d601f19601f82011682018060405250810190611f2791906125cf565b60015b611fa4573d8060008114611f5a576040519150601f19603f3d011682016040523d82523d6000602084013e611f5f565b606091505b50600081511415611f9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606006805461200790612d43565b80601f016020809104026020016040519081016040528092919081815260200182805461203390612d43565b80156120805780601f1061205557610100808354040283529160200191612080565b820191906000526020600020905b81548152906001019060200180831161206357829003601f168201915b5050505050905090565b606060008214156120d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e6565b600082905060005b600082146121045780806120ed90612da6565b915050600a826120fd9190612bce565b91506120da565b60008167ffffffffffffffff8111156121205761211f612edc565b5b6040519080825280601f01601f1916602001820160405280156121525781602001600182028036833780820191505090505b5090505b600085146121df5760018261216b9190612c59565b9150600a8561217a9190612def565b60306121869190612b78565b60f81b81838151811061219c5761219b612ead565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d89190612bce565b9450612156565b8093505050505b919050565b600033905090565b8280546121ff90612d43565b90600052602060002090601f0160209004810192826122215760008555612268565b82601f1061223a57805160ff1916838001178555612268565b82800160010185558215612268579182015b8281111561226757825182559160200191906001019061224c565b5b5090506122759190612279565b5090565b5b8082111561229257600081600090555060010161227a565b5090565b60006122a96122a484612ac8565b612aa3565b9050828152602081018484840111156122c5576122c4612f10565b5b6122d0848285612d01565b509392505050565b60006122eb6122e684612af9565b612aa3565b90508281526020810184848401111561230757612306612f10565b5b612312848285612d01565b509392505050565b60008135905061232981613116565b92915050565b60008135905061233e8161312d565b92915050565b60008135905061235381613144565b92915050565b60008151905061236881613144565b92915050565b600082601f83011261238357612382612f0b565b5b8135612393848260208601612296565b91505092915050565b600082601f8301126123b1576123b0612f0b565b5b81356123c18482602086016122d8565b91505092915050565b6000813590506123d98161315b565b92915050565b6000602082840312156123f5576123f4612f1a565b5b60006124038482850161231a565b91505092915050565b6000806040838503121561242357612422612f1a565b5b60006124318582860161231a565b92505060206124428582860161231a565b9150509250929050565b60008060006060848603121561246557612464612f1a565b5b60006124738682870161231a565b93505060206124848682870161231a565b9250506040612495868287016123ca565b9150509250925092565b600080600080608085870312156124b9576124b8612f1a565b5b60006124c78782880161231a565b94505060206124d88782880161231a565b93505060406124e9878288016123ca565b925050606085013567ffffffffffffffff81111561250a57612509612f15565b5b6125168782880161236e565b91505092959194509250565b6000806040838503121561253957612538612f1a565b5b60006125478582860161231a565b92505060206125588582860161232f565b9150509250929050565b6000806040838503121561257957612578612f1a565b5b60006125878582860161231a565b9250506020612598858286016123ca565b9150509250929050565b6000602082840312156125b8576125b7612f1a565b5b60006125c684828501612344565b91505092915050565b6000602082840312156125e5576125e4612f1a565b5b60006125f384828501612359565b91505092915050565b60006020828403121561261257612611612f1a565b5b600082013567ffffffffffffffff8111156126305761262f612f15565b5b61263c8482850161239c565b91505092915050565b60006020828403121561265b5761265a612f1a565b5b6000612669848285016123ca565b91505092915050565b61267b81612c8d565b82525050565b61268a81612c9f565b82525050565b600061269b82612b2a565b6126a58185612b40565b93506126b5818560208601612d10565b6126be81612f1f565b840191505092915050565b60006126d482612b35565b6126de8185612b5c565b93506126ee818560208601612d10565b6126f781612f1f565b840191505092915050565b600061270d82612b35565b6127178185612b6d565b9350612727818560208601612d10565b80840191505092915050565b6000612740602683612b5c565b915061274b82612f30565b604082019050919050565b6000612763600583612b6d565b915061276e82612f7f565b600582019050919050565b6000612786602083612b5c565b915061279182612fa8565b602082019050919050565b60006127a9602f83612b5c565b91506127b482612fd1565b604082019050919050565b60006127cc601383612b5c565b91506127d782613020565b602082019050919050565b60006127ef600f83612b5c565b91506127fa82613049565b602082019050919050565b6000612812600083612b51565b915061281d82613072565b600082019050919050565b6000612835601d83612b5c565b915061284082613075565b602082019050919050565b6000612858603a83612b5c565b91506128638261309e565b604082019050919050565b600061287b601783612b5c565b9150612886826130ed565b602082019050919050565b61289a81612cf7565b82525050565b60006128ac8285612702565b91506128b88284612702565b91506128c382612756565b91508190509392505050565b60006128da82612805565b9150819050919050565b60006020820190506128f96000830184612672565b92915050565b60006080820190506129146000830187612672565b6129216020830186612672565b61292e6040830185612891565b81810360608301526129408184612690565b905095945050505050565b60006020820190506129606000830184612681565b92915050565b6000602082019050818103600083015261298081846126c9565b905092915050565b600060208201905081810360008301526129a181612733565b9050919050565b600060208201905081810360008301526129c181612779565b9050919050565b600060208201905081810360008301526129e18161279c565b9050919050565b60006020820190508181036000830152612a01816127bf565b9050919050565b60006020820190508181036000830152612a21816127e2565b9050919050565b60006020820190508181036000830152612a4181612828565b9050919050565b60006020820190508181036000830152612a618161284b565b9050919050565b60006020820190508181036000830152612a818161286e565b9050919050565b6000602082019050612a9d6000830184612891565b92915050565b6000612aad612abe565b9050612ab98282612d75565b919050565b6000604051905090565b600067ffffffffffffffff821115612ae357612ae2612edc565b5b612aec82612f1f565b9050602081019050919050565b600067ffffffffffffffff821115612b1457612b13612edc565b5b612b1d82612f1f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b8382612cf7565b9150612b8e83612cf7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bc357612bc2612e20565b5b828201905092915050565b6000612bd982612cf7565b9150612be483612cf7565b925082612bf457612bf3612e4f565b5b828204905092915050565b6000612c0a82612cf7565b9150612c1583612cf7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c4e57612c4d612e20565b5b828202905092915050565b6000612c6482612cf7565b9150612c6f83612cf7565b925082821015612c8257612c81612e20565b5b828203905092915050565b6000612c9882612cd7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d2e578082015181840152602081019050612d13565b83811115612d3d576000848401525b50505050565b60006002820490506001821680612d5b57607f821691505b60208210811415612d6f57612d6e612e7e565b5b50919050565b612d7e82612f1f565b810181811067ffffffffffffffff82111715612d9d57612d9c612edc565b5b80604052505050565b6000612db182612cf7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612de457612de3612e20565b5b600182019050919050565b6000612dfa82612cf7565b9150612e0583612cf7565b925082612e1557612e14612e4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f302e303031206574682070657220746f6b656e00000000000000000000000000600082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4d696e7420697320676f696e67206f766572204d617820537570706c79000000600082015250565b7f496e76616c6964204554482053656e742c20416e797468696e67206f7665722060008201527f4f6e652046726565204d696e7420697320302e30303120657468000000000000602082015250565b7f43616e204d696e74206f6e6c7920313020706572207478000000000000000000600082015250565b61311f81612c8d565b811461312a57600080fd5b50565b61313681612c9f565b811461314157600080fd5b50565b61314d81612cab565b811461315857600080fd5b50565b61316481612cf7565b811461316f57600080fd5b5056fea2646970667358221220e7cdc1fad4322541b572606355864c6362996bc919af940b995adc203e47455a64736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.