Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,222 GHS
Holders
464
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 GHSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GrumpyHedgehogs
Compiler Version
v0.8.4+commit.c7e474f2
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 "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract GrumpyHedgehogs is ERC721A, Ownable{ using Strings for uint256; uint256 public MAX_SUPPLY = 2222; uint256 public constant MAX_PUBLIC_MINT = 5; string private baseTokenUri; bool public pause=true; bool public teamMinted; mapping(address => uint256) public totalPublicMint; constructor() ERC721A("Grumpy Hedgehog Society", "GHS"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "Cannot be called by a contract"); _; } function mint(uint256 _quantity) external callerIsUser{ require(pause==false,"Minting hasn't started yet."); require((totalSupply() + _quantity) <= MAX_SUPPLY, "We are out of Hedgies :("); require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Limit exceeds max amount."); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function teamMint() external onlyOwner{ require(!teamMinted, "Team already minted"); teamMinted = true; _safeMint(msg.sender, 17); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } //return uri for certain token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId + 1; //string memory baseURI = _baseURI(); return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } /// @dev walletOf() function shouldn't be called on-chain due to gas consumption function walletOf() external view returns(uint256[] memory){ address _owner = msg.sender; uint256 numberOfOwnedNFT = balanceOf(_owner); uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT); for(uint256 index = 0; index < numberOfOwnedNFT; index++){ ownerIds[index] = tokenOfOwnerByIndex(_owner, index); } return ownerIds; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function togglePause() external onlyOwner{ pause = !pause; } function withdraw() external onlyOwner{ //35% to utility/investors wallet uint256 withdrawAmount = address(this).balance; payable(0x0fffFD62CcCB458faE551Be0EF1058EF854d1808).transfer(withdrawAmount); payable(msg.sender).transfer(address(this).balance); } function count() public view returns (uint256) { uint256 numberOfOwnedNFT = balanceOf(msg.sender); return numberOfOwnedNFT; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.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 URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * 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 ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, 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 TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 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 { _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/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (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 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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"},{"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":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","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":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526108ae6008556001600a60006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280601781526020017f4772756d7079204865646765686f6720536f63696574790000000000000000008152506040518060400160405280600381526020017f47485300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001c7565b508060029080519060200190620000d0929190620001c7565b505050620000f3620000e7620000f960201b60201c565b6200010160201b60201c565b620002dc565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d59062000277565b90600052602060002090601f016020900481019282620001f9576000855562000245565b82601f106200021457805160ff191683800117855562000245565b8280016001018555821562000245579182015b828111156200024457825182559160200191906001019062000227565b5b50905062000254919062000258565b5090565b5b808211156200027357600081600090555060010162000259565b5090565b600060028204905060018216806200029057607f821691505b60208210811415620002a757620002a6620002ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61386580620002ec6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806365f130971161010f578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd14610534578063e8b5498d14610564578063e985e9c514610582578063f2fde38b146105b2576101e5565b8063a22cb465146104e8578063b88d4fde14610504578063ba7a86b814610520578063c4ae31681461052a576101e5565b80638456cb59116100de5780638456cb59146104725780638da5cb5b1461049057806395d89b41146104ae578063a0712d68146104cc576101e5565b806365f13097146103fc57806370a082311461041a578063715018a61461044a57806383a974a214610454576101e5565b80631c16521c116101875780633ccfd60b116101565780633ccfd60b1461037657806342842e0e146103805780634f6ccce71461039c5780636352211e146103cc576101e5565b80631c16521c146102dc57806323b872dd1461030c5780632f745c591461032857806332cb6b0c14610358576101e5565b806306fdde03116101c357806306fdde0314610254578063081812fc14610272578063095ea7b3146102a257806318160ddd146102be576101e5565b806301ffc9a7146101ea57806306661abd1461021a5780630675b7c614610238575b600080fd5b61020460048036038101906101ff9190612c08565b6105ce565b604051610211919061308b565b60405180910390f35b610222610718565b60405161022f91906131c8565b60405180910390f35b610252600480360381019061024d9190612c5a565b61072d565b005b61025c6107c3565b60405161026991906130a6565b60405180910390f35b61028c60048036038101906102879190612c9b565b610855565b6040516102999190613002565b60405180910390f35b6102bc60048036038101906102b79190612bcc565b6108d1565b005b6102c66109dc565b6040516102d391906131c8565b60405180910390f35b6102f660048036038101906102f19190612a61565b6109e5565b60405161030391906131c8565b60405180910390f35b61032660048036038101906103219190612ac6565b6109fd565b005b610342600480360381019061033d9190612bcc565b610a0d565b60405161034f91906131c8565b60405180910390f35b610360610bf4565b60405161036d91906131c8565b60405180910390f35b61037e610bfa565b005b61039a60048036038101906103959190612ac6565b610d20565b005b6103b660048036038101906103b19190612c9b565b610d40565b6040516103c391906131c8565b60405180910390f35b6103e660048036038101906103e19190612c9b565b610d8a565b6040516103f39190613002565b60405180910390f35b610404610da0565b60405161041191906131c8565b60405180910390f35b610434600480360381019061042f9190612a61565b610da5565b60405161044191906131c8565b60405180910390f35b610452610e85565b005b61045c610f0d565b6040516104699190613069565b60405180910390f35b61047a61100b565b604051610487919061308b565b60405180910390f35b61049861101e565b6040516104a59190613002565b60405180910390f35b6104b6611048565b6040516104c391906130a6565b60405180910390f35b6104e660048036038101906104e19190612c9b565b6110da565b005b61050260048036038101906104fd9190612b90565b6112e6565b005b61051e60048036038101906105199190612b15565b61145e565b005b6105286114b1565b005b6105326115a5565b005b61054e60048036038101906105499190612c9b565b61164d565b60405161055b91906130a6565b60405180910390f35b61056c611707565b604051610579919061308b565b60405180910390f35b61059c60048036038101906105979190612a8a565b61171a565b6040516105a9919061308b565b60405180910390f35b6105cc60048036038101906105c79190612a61565b6117ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750610710826118a6565b5b9050919050565b60008061072433610da5565b90508091505090565b610735611910565b73ffffffffffffffffffffffffffffffffffffffff1661075361101e565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090613148565b60405180910390fd5b80600990805190602001906107bf92919061284b565b5050565b6060600180546107d29061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe9061346c565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b5050505050905090565b600061086082611918565b610896576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dc82610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610944576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610963611910565b73ffffffffffffffffffffffffffffffffffffffff161415801561099557506109938161098e611910565b61171a565b155b156109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d7838383611925565b505050565b60008054905090565b600b6020528060005260406000206000915090505481565b610a088383836119d7565b505050565b6000610a1883610da5565b8210610a50576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610a5a6109dc565b905060008060005b83811015610bb4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b5457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba65786841415610b9d578195505050505050610bee565b83806001019450505b508080600101915050610a62565b506000610bea577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b5050505b92915050565b60085481565b610c02611910565b73ffffffffffffffffffffffffffffffffffffffff16610c2061101e565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613148565b60405180910390fd5b6000479050730ffffd62cccb458fae551be0ef1058ef854d180873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cd5573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d1c573d6000803e3d6000fd5b5050565b610d3b8383836040518060200160405280600081525061145e565b505050565b6000610d4a6109dc565b8210610d82576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9582611efc565b600001519050919050565b600581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e8d611910565b73ffffffffffffffffffffffffffffffffffffffff16610eab61101e565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613148565b60405180910390fd5b610f0b6000612084565b565b606060003390506000610f1f82610da5565b905060008167ffffffffffffffff811115610f63577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f915781602001602082028036833780820191505090505b50905060005b8281101561100157610fa98482610a0d565b828281518110610fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ff9906134cf565b915050610f97565b5080935050505090565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110579061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546110839061346c565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906131a8565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590613128565b60405180910390fd5b600854816111aa6109dc565b6111b491906132fb565b11156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613188565b60405180910390fd5b600581600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124291906132fb565b1115611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906130c8565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d291906132fb565b925050819055506112e3338261214a565b50565b6112ee611910565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611360611910565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d611910565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611452919061308b565b60405180910390a35050565b6114698484846119d7565b61147584848484612168565b6114ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6114b9611910565b73ffffffffffffffffffffffffffffffffffffffff166114d761101e565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613148565b60405180910390fd5b600a60019054906101000a900460ff161561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613108565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506115a333601161214a565b565b6115ad611910565b73ffffffffffffffffffffffffffffffffffffffff166115cb61101e565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613148565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606061165882611918565b611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613168565b60405180910390fd5b60006001836116a691906132fb565b90506000600980546116b79061346c565b9050116116d357604051806020016040528060008152506116ff565b60096116de826122f6565b6040516020016116ef929190612fd3565b6040516020818303038152906040525b915050919050565b600a60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b6611910565b73ffffffffffffffffffffffffffffffffffffffff166117d461101e565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906130e8565b60405180910390fd5b6118a381612084565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119e282611efc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a09611910565b73ffffffffffffffffffffffffffffffffffffffff161480611a655750611a2e611910565b73ffffffffffffffffffffffffffffffffffffffff16611a4d84610855565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a815750611a808260000151611a7b611910565b61171a565b5b905080611aba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b23576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9785858560016124a3565b611ba76000848460000151611925565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e8c57611deb81611918565b15611e8b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef585858560016124a9565b5050505050565b611f046128d1565b611f0d82611918565b611f43576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000811061204c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203d57809250505061207f565b50808060019003915050611f49565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121648282604051806020016040528060008152506124af565b5050565b60006121898473ffffffffffffffffffffffffffffffffffffffff166124c1565b156122e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121b2611910565b8786866040518563ffffffff1660e01b81526004016121d4949392919061301d565b602060405180830381600087803b1580156121ee57600080fd5b505af192505050801561221f57506040513d601f19601f8201168201806040525081019061221c9190612c31565b60015b612299573d806000811461224f576040519150601f19603f3d011682016040523d82523d6000602084013e612254565b606091505b50600081511415612291576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ee565b600190505b949350505050565b6060600082141561233e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061249e565b600082905060005b60008214612370578080612359906134cf565b915050600a826123699190613351565b9150612346565b60008167ffffffffffffffff8111156123b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e45781602001600182028036833780820191505090505b5090505b60008514612497576001826123fd9190613382565b9150600a8561240c9190613518565b603061241891906132fb565b60f81b818381518110612454577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124909190613351565b94506123e8565b8093505050505b919050565b50505050565b50505050565b6124bc83838360016124e4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612551576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561258c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259960008683876124a3565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561282e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156127e257506127e06000888488612168565b155b15612819576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612767565b50806000819055505061284460008683876124a9565b5050505050565b8280546128579061346c565b90600052602060002090601f01602090048101928261287957600085556128c0565b82601f1061289257805160ff19168380011785556128c0565b828001600101855582156128c0579182015b828111156128bf5782518255916020019190600101906128a4565b5b5090506128cd919061290b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561292457600081600090555060010161290c565b5090565b600061293b61293684613208565b6131e3565b90508281526020810184848401111561295357600080fd5b61295e84828561342a565b509392505050565b600061297961297484613239565b6131e3565b90508281526020810184848401111561299157600080fd5b61299c84828561342a565b509392505050565b6000813590506129b3816137d3565b92915050565b6000813590506129c8816137ea565b92915050565b6000813590506129dd81613801565b92915050565b6000815190506129f281613801565b92915050565b600082601f830112612a0957600080fd5b8135612a19848260208601612928565b91505092915050565b600082601f830112612a3357600080fd5b8135612a43848260208601612966565b91505092915050565b600081359050612a5b81613818565b92915050565b600060208284031215612a7357600080fd5b6000612a81848285016129a4565b91505092915050565b60008060408385031215612a9d57600080fd5b6000612aab858286016129a4565b9250506020612abc858286016129a4565b9150509250929050565b600080600060608486031215612adb57600080fd5b6000612ae9868287016129a4565b9350506020612afa868287016129a4565b9250506040612b0b86828701612a4c565b9150509250925092565b60008060008060808587031215612b2b57600080fd5b6000612b39878288016129a4565b9450506020612b4a878288016129a4565b9350506040612b5b87828801612a4c565b925050606085013567ffffffffffffffff811115612b7857600080fd5b612b84878288016129f8565b91505092959194509250565b60008060408385031215612ba357600080fd5b6000612bb1858286016129a4565b9250506020612bc2858286016129b9565b9150509250929050565b60008060408385031215612bdf57600080fd5b6000612bed858286016129a4565b9250506020612bfe85828601612a4c565b9150509250929050565b600060208284031215612c1a57600080fd5b6000612c28848285016129ce565b91505092915050565b600060208284031215612c4357600080fd5b6000612c51848285016129e3565b91505092915050565b600060208284031215612c6c57600080fd5b600082013567ffffffffffffffff811115612c8657600080fd5b612c9284828501612a22565b91505092915050565b600060208284031215612cad57600080fd5b6000612cbb84828501612a4c565b91505092915050565b6000612cd08383612fb5565b60208301905092915050565b612ce5816133b6565b82525050565b6000612cf68261328f565b612d0081856132bd565b9350612d0b8361326a565b8060005b83811015612d3c578151612d238882612cc4565b9750612d2e836132b0565b925050600181019050612d0f565b5085935050505092915050565b612d52816133c8565b82525050565b6000612d638261329a565b612d6d81856132ce565b9350612d7d818560208601613439565b612d8681613605565b840191505092915050565b6000612d9c826132a5565b612da681856132df565b9350612db6818560208601613439565b612dbf81613605565b840191505092915050565b6000612dd5826132a5565b612ddf81856132f0565b9350612def818560208601613439565b80840191505092915050565b60008154612e088161346c565b612e1281866132f0565b94506001821660008114612e2d5760018114612e3e57612e71565b60ff19831686528186019350612e71565b612e478561327a565b60005b83811015612e6957815481890152600182019150602081019050612e4a565b838801955050505b50505092915050565b6000612e876019836132df565b9150612e9282613616565b602082019050919050565b6000612eaa6026836132df565b9150612eb58261363f565b604082019050919050565b6000612ecd6013836132df565b9150612ed88261368e565b602082019050919050565b6000612ef0601b836132df565b9150612efb826136b7565b602082019050919050565b6000612f136005836132f0565b9150612f1e826136e0565b600582019050919050565b6000612f366020836132df565b9150612f4182613709565b602082019050919050565b6000612f59602f836132df565b9150612f6482613732565b604082019050919050565b6000612f7c6018836132df565b9150612f8782613781565b602082019050919050565b6000612f9f601e836132df565b9150612faa826137aa565b602082019050919050565b612fbe81613420565b82525050565b612fcd81613420565b82525050565b6000612fdf8285612dfb565b9150612feb8284612dca565b9150612ff682612f06565b91508190509392505050565b60006020820190506130176000830184612cdc565b92915050565b60006080820190506130326000830187612cdc565b61303f6020830186612cdc565b61304c6040830185612fc4565b818103606083015261305e8184612d58565b905095945050505050565b600060208201905081810360008301526130838184612ceb565b905092915050565b60006020820190506130a06000830184612d49565b92915050565b600060208201905081810360008301526130c08184612d91565b905092915050565b600060208201905081810360008301526130e181612e7a565b9050919050565b6000602082019050818103600083015261310181612e9d565b9050919050565b6000602082019050818103600083015261312181612ec0565b9050919050565b6000602082019050818103600083015261314181612ee3565b9050919050565b6000602082019050818103600083015261316181612f29565b9050919050565b6000602082019050818103600083015261318181612f4c565b9050919050565b600060208201905081810360008301526131a181612f6f565b9050919050565b600060208201905081810360008301526131c181612f92565b9050919050565b60006020820190506131dd6000830184612fc4565b92915050565b60006131ed6131fe565b90506131f9828261349e565b919050565b6000604051905090565b600067ffffffffffffffff821115613223576132226135d6565b5b61322c82613605565b9050602081019050919050565b600067ffffffffffffffff821115613254576132536135d6565b5b61325d82613605565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330682613420565b915061331183613420565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334657613345613549565b5b828201905092915050565b600061335c82613420565b915061336783613420565b92508261337757613376613578565b5b828204905092915050565b600061338d82613420565b915061339883613420565b9250828210156133ab576133aa613549565b5b828203905092915050565b60006133c182613400565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345757808201518184015260208101905061343c565b83811115613466576000848401525b50505050565b6000600282049050600182168061348457607f821691505b60208210811415613498576134976135a7565b5b50919050565b6134a782613605565b810181811067ffffffffffffffff821117156134c6576134c56135d6565b5b80604052505050565b60006134da82613420565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350d5761350c613549565b5b600182019050919050565b600061352382613420565b915061352e83613420565b92508261353e5761353d613578565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4c696d69742065786365656473206d617820616d6f756e742e00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4d696e74696e67206861736e27742073746172746564207965742e0000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f576520617265206f7574206f662048656467696573203a280000000000000000600082015250565b7f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b6137dc816133b6565b81146137e757600080fd5b50565b6137f3816133c8565b81146137fe57600080fd5b50565b61380a816133d4565b811461381557600080fd5b50565b61382181613420565b811461382c57600080fd5b5056fea2646970667358221220a51ed0e9ac91996a082a7c0ec19b2a83ac9f0fbbfa97a52c3eda52537b214a4e64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806365f130971161010f578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd14610534578063e8b5498d14610564578063e985e9c514610582578063f2fde38b146105b2576101e5565b8063a22cb465146104e8578063b88d4fde14610504578063ba7a86b814610520578063c4ae31681461052a576101e5565b80638456cb59116100de5780638456cb59146104725780638da5cb5b1461049057806395d89b41146104ae578063a0712d68146104cc576101e5565b806365f13097146103fc57806370a082311461041a578063715018a61461044a57806383a974a214610454576101e5565b80631c16521c116101875780633ccfd60b116101565780633ccfd60b1461037657806342842e0e146103805780634f6ccce71461039c5780636352211e146103cc576101e5565b80631c16521c146102dc57806323b872dd1461030c5780632f745c591461032857806332cb6b0c14610358576101e5565b806306fdde03116101c357806306fdde0314610254578063081812fc14610272578063095ea7b3146102a257806318160ddd146102be576101e5565b806301ffc9a7146101ea57806306661abd1461021a5780630675b7c614610238575b600080fd5b61020460048036038101906101ff9190612c08565b6105ce565b604051610211919061308b565b60405180910390f35b610222610718565b60405161022f91906131c8565b60405180910390f35b610252600480360381019061024d9190612c5a565b61072d565b005b61025c6107c3565b60405161026991906130a6565b60405180910390f35b61028c60048036038101906102879190612c9b565b610855565b6040516102999190613002565b60405180910390f35b6102bc60048036038101906102b79190612bcc565b6108d1565b005b6102c66109dc565b6040516102d391906131c8565b60405180910390f35b6102f660048036038101906102f19190612a61565b6109e5565b60405161030391906131c8565b60405180910390f35b61032660048036038101906103219190612ac6565b6109fd565b005b610342600480360381019061033d9190612bcc565b610a0d565b60405161034f91906131c8565b60405180910390f35b610360610bf4565b60405161036d91906131c8565b60405180910390f35b61037e610bfa565b005b61039a60048036038101906103959190612ac6565b610d20565b005b6103b660048036038101906103b19190612c9b565b610d40565b6040516103c391906131c8565b60405180910390f35b6103e660048036038101906103e19190612c9b565b610d8a565b6040516103f39190613002565b60405180910390f35b610404610da0565b60405161041191906131c8565b60405180910390f35b610434600480360381019061042f9190612a61565b610da5565b60405161044191906131c8565b60405180910390f35b610452610e85565b005b61045c610f0d565b6040516104699190613069565b60405180910390f35b61047a61100b565b604051610487919061308b565b60405180910390f35b61049861101e565b6040516104a59190613002565b60405180910390f35b6104b6611048565b6040516104c391906130a6565b60405180910390f35b6104e660048036038101906104e19190612c9b565b6110da565b005b61050260048036038101906104fd9190612b90565b6112e6565b005b61051e60048036038101906105199190612b15565b61145e565b005b6105286114b1565b005b6105326115a5565b005b61054e60048036038101906105499190612c9b565b61164d565b60405161055b91906130a6565b60405180910390f35b61056c611707565b604051610579919061308b565b60405180910390f35b61059c60048036038101906105979190612a8a565b61171a565b6040516105a9919061308b565b60405180910390f35b6105cc60048036038101906105c79190612a61565b6117ae565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750610710826118a6565b5b9050919050565b60008061072433610da5565b90508091505090565b610735611910565b73ffffffffffffffffffffffffffffffffffffffff1661075361101e565b73ffffffffffffffffffffffffffffffffffffffff16146107a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a090613148565b60405180910390fd5b80600990805190602001906107bf92919061284b565b5050565b6060600180546107d29061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546107fe9061346c565b801561084b5780601f106108205761010080835404028352916020019161084b565b820191906000526020600020905b81548152906001019060200180831161082e57829003601f168201915b5050505050905090565b600061086082611918565b610896576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dc82610d8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610944576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610963611910565b73ffffffffffffffffffffffffffffffffffffffff161415801561099557506109938161098e611910565b61171a565b155b156109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d7838383611925565b505050565b60008054905090565b600b6020528060005260406000206000915090505481565b610a088383836119d7565b505050565b6000610a1883610da5565b8210610a50576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610a5a6109dc565b905060008060005b83811015610bb4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610b5457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba65786841415610b9d578195505050505050610bee565b83806001019450505b508080600101915050610a62565b506000610bea577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b5050505b92915050565b60085481565b610c02611910565b73ffffffffffffffffffffffffffffffffffffffff16610c2061101e565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613148565b60405180910390fd5b6000479050730ffffd62cccb458fae551be0ef1058ef854d180873ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cd5573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d1c573d6000803e3d6000fd5b5050565b610d3b8383836040518060200160405280600081525061145e565b505050565b6000610d4a6109dc565b8210610d82576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6000610d9582611efc565b600001519050919050565b600581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610e8d611910565b73ffffffffffffffffffffffffffffffffffffffff16610eab61101e565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613148565b60405180910390fd5b610f0b6000612084565b565b606060003390506000610f1f82610da5565b905060008167ffffffffffffffff811115610f63577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f915781602001602082028036833780820191505090505b50905060005b8281101561100157610fa98482610a0d565b828281518110610fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610ff9906134cf565b915050610f97565b5080935050505090565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110579061346c565b80601f01602080910402602001604051908101604052809291908181526020018280546110839061346c565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906131a8565b60405180910390fd5b60001515600a60009054906101000a900460ff1615151461119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590613128565b60405180910390fd5b600854816111aa6109dc565b6111b491906132fb565b11156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613188565b60405180910390fd5b600581600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124291906132fb565b1115611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906130c8565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d291906132fb565b925050819055506112e3338261214a565b50565b6112ee611910565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611360611910565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d611910565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611452919061308b565b60405180910390a35050565b6114698484846119d7565b61147584848484612168565b6114ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6114b9611910565b73ffffffffffffffffffffffffffffffffffffffff166114d761101e565b73ffffffffffffffffffffffffffffffffffffffff161461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613148565b60405180910390fd5b600a60019054906101000a900460ff161561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613108565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506115a333601161214a565b565b6115ad611910565b73ffffffffffffffffffffffffffffffffffffffff166115cb61101e565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890613148565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606061165882611918565b611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613168565b60405180910390fd5b60006001836116a691906132fb565b90506000600980546116b79061346c565b9050116116d357604051806020016040528060008152506116ff565b60096116de826122f6565b6040516020016116ef929190612fd3565b6040516020818303038152906040525b915050919050565b600a60019054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117b6611910565b73ffffffffffffffffffffffffffffffffffffffff166117d461101e565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906130e8565b60405180910390fd5b6118a381612084565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006119e282611efc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a09611910565b73ffffffffffffffffffffffffffffffffffffffff161480611a655750611a2e611910565b73ffffffffffffffffffffffffffffffffffffffff16611a4d84610855565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a815750611a808260000151611a7b611910565b61171a565b5b905080611aba576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b23576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9785858560016124a3565b611ba76000848460000151611925565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e8c57611deb81611918565b15611e8b5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef585858560016124a9565b5050505050565b611f046128d1565b611f0d82611918565b611f43576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000811061204c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203d57809250505061207f565b50808060019003915050611f49565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121648282604051806020016040528060008152506124af565b5050565b60006121898473ffffffffffffffffffffffffffffffffffffffff166124c1565b156122e9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121b2611910565b8786866040518563ffffffff1660e01b81526004016121d4949392919061301d565b602060405180830381600087803b1580156121ee57600080fd5b505af192505050801561221f57506040513d601f19601f8201168201806040525081019061221c9190612c31565b60015b612299573d806000811461224f576040519150601f19603f3d011682016040523d82523d6000602084013e612254565b606091505b50600081511415612291576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ee565b600190505b949350505050565b6060600082141561233e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061249e565b600082905060005b60008214612370578080612359906134cf565b915050600a826123699190613351565b9150612346565b60008167ffffffffffffffff8111156123b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123e45781602001600182028036833780820191505090505b5090505b60008514612497576001826123fd9190613382565b9150600a8561240c9190613518565b603061241891906132fb565b60f81b818381518110612454577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124909190613351565b94506123e8565b8093505050505b919050565b50505050565b50505050565b6124bc83838360016124e4565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612551576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561258c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259960008683876124a3565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561282e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156127e257506127e06000888488612168565b155b15612819576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612767565b50806000819055505061284460008683876124a9565b5050505050565b8280546128579061346c565b90600052602060002090601f01602090048101928261287957600085556128c0565b82601f1061289257805160ff19168380011785556128c0565b828001600101855582156128c0579182015b828111156128bf5782518255916020019190600101906128a4565b5b5090506128cd919061290b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561292457600081600090555060010161290c565b5090565b600061293b61293684613208565b6131e3565b90508281526020810184848401111561295357600080fd5b61295e84828561342a565b509392505050565b600061297961297484613239565b6131e3565b90508281526020810184848401111561299157600080fd5b61299c84828561342a565b509392505050565b6000813590506129b3816137d3565b92915050565b6000813590506129c8816137ea565b92915050565b6000813590506129dd81613801565b92915050565b6000815190506129f281613801565b92915050565b600082601f830112612a0957600080fd5b8135612a19848260208601612928565b91505092915050565b600082601f830112612a3357600080fd5b8135612a43848260208601612966565b91505092915050565b600081359050612a5b81613818565b92915050565b600060208284031215612a7357600080fd5b6000612a81848285016129a4565b91505092915050565b60008060408385031215612a9d57600080fd5b6000612aab858286016129a4565b9250506020612abc858286016129a4565b9150509250929050565b600080600060608486031215612adb57600080fd5b6000612ae9868287016129a4565b9350506020612afa868287016129a4565b9250506040612b0b86828701612a4c565b9150509250925092565b60008060008060808587031215612b2b57600080fd5b6000612b39878288016129a4565b9450506020612b4a878288016129a4565b9350506040612b5b87828801612a4c565b925050606085013567ffffffffffffffff811115612b7857600080fd5b612b84878288016129f8565b91505092959194509250565b60008060408385031215612ba357600080fd5b6000612bb1858286016129a4565b9250506020612bc2858286016129b9565b9150509250929050565b60008060408385031215612bdf57600080fd5b6000612bed858286016129a4565b9250506020612bfe85828601612a4c565b9150509250929050565b600060208284031215612c1a57600080fd5b6000612c28848285016129ce565b91505092915050565b600060208284031215612c4357600080fd5b6000612c51848285016129e3565b91505092915050565b600060208284031215612c6c57600080fd5b600082013567ffffffffffffffff811115612c8657600080fd5b612c9284828501612a22565b91505092915050565b600060208284031215612cad57600080fd5b6000612cbb84828501612a4c565b91505092915050565b6000612cd08383612fb5565b60208301905092915050565b612ce5816133b6565b82525050565b6000612cf68261328f565b612d0081856132bd565b9350612d0b8361326a565b8060005b83811015612d3c578151612d238882612cc4565b9750612d2e836132b0565b925050600181019050612d0f565b5085935050505092915050565b612d52816133c8565b82525050565b6000612d638261329a565b612d6d81856132ce565b9350612d7d818560208601613439565b612d8681613605565b840191505092915050565b6000612d9c826132a5565b612da681856132df565b9350612db6818560208601613439565b612dbf81613605565b840191505092915050565b6000612dd5826132a5565b612ddf81856132f0565b9350612def818560208601613439565b80840191505092915050565b60008154612e088161346c565b612e1281866132f0565b94506001821660008114612e2d5760018114612e3e57612e71565b60ff19831686528186019350612e71565b612e478561327a565b60005b83811015612e6957815481890152600182019150602081019050612e4a565b838801955050505b50505092915050565b6000612e876019836132df565b9150612e9282613616565b602082019050919050565b6000612eaa6026836132df565b9150612eb58261363f565b604082019050919050565b6000612ecd6013836132df565b9150612ed88261368e565b602082019050919050565b6000612ef0601b836132df565b9150612efb826136b7565b602082019050919050565b6000612f136005836132f0565b9150612f1e826136e0565b600582019050919050565b6000612f366020836132df565b9150612f4182613709565b602082019050919050565b6000612f59602f836132df565b9150612f6482613732565b604082019050919050565b6000612f7c6018836132df565b9150612f8782613781565b602082019050919050565b6000612f9f601e836132df565b9150612faa826137aa565b602082019050919050565b612fbe81613420565b82525050565b612fcd81613420565b82525050565b6000612fdf8285612dfb565b9150612feb8284612dca565b9150612ff682612f06565b91508190509392505050565b60006020820190506130176000830184612cdc565b92915050565b60006080820190506130326000830187612cdc565b61303f6020830186612cdc565b61304c6040830185612fc4565b818103606083015261305e8184612d58565b905095945050505050565b600060208201905081810360008301526130838184612ceb565b905092915050565b60006020820190506130a06000830184612d49565b92915050565b600060208201905081810360008301526130c08184612d91565b905092915050565b600060208201905081810360008301526130e181612e7a565b9050919050565b6000602082019050818103600083015261310181612e9d565b9050919050565b6000602082019050818103600083015261312181612ec0565b9050919050565b6000602082019050818103600083015261314181612ee3565b9050919050565b6000602082019050818103600083015261316181612f29565b9050919050565b6000602082019050818103600083015261318181612f4c565b9050919050565b600060208201905081810360008301526131a181612f6f565b9050919050565b600060208201905081810360008301526131c181612f92565b9050919050565b60006020820190506131dd6000830184612fc4565b92915050565b60006131ed6131fe565b90506131f9828261349e565b919050565b6000604051905090565b600067ffffffffffffffff821115613223576132226135d6565b5b61322c82613605565b9050602081019050919050565b600067ffffffffffffffff821115613254576132536135d6565b5b61325d82613605565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330682613420565b915061331183613420565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334657613345613549565b5b828201905092915050565b600061335c82613420565b915061336783613420565b92508261337757613376613578565b5b828204905092915050565b600061338d82613420565b915061339883613420565b9250828210156133ab576133aa613549565b5b828203905092915050565b60006133c182613400565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345757808201518184015260208101905061343c565b83811115613466576000848401525b50505050565b6000600282049050600182168061348457607f821691505b60208210811415613498576134976135a7565b5b50919050565b6134a782613605565b810181811067ffffffffffffffff821117156134c6576134c56135d6565b5b80604052505050565b60006134da82613420565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350d5761350c613549565b5b600182019050919050565b600061352382613420565b915061352e83613420565b92508261353e5761353d613578565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4c696d69742065786365656473206d617820616d6f756e742e00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4d696e74696e67206861736e27742073746172746564207965742e0000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f576520617265206f7574206f662048656467696573203a280000000000000000600082015250565b7f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000600082015250565b6137dc816133b6565b81146137e757600080fd5b50565b6137f3816133c8565b81146137fe57600080fd5b50565b61380a816133d4565b811461381557600080fd5b50565b61382181613420565b811461382c57600080fd5b5056fea2646970667358221220a51ed0e9ac91996a082a7c0ec19b2a83ac9f0fbbfa97a52c3eda52537b214a4e64736f6c63430008040033
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.