ERC-721
Overview
Max Total Supply
222 FFFB
Holders
113
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FFFBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FancyFruitFanclubBananas
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //Written by Blockchainguy.net //Email: [email protected] /** * @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; } } 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); } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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); } } } } 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); } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @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; } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @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); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }pragma solidity ^0.8.0; contract FancyFruitFanclubBananas is Ownable, ERC721 { uint constant tokenPrice = 0.06 ether; uint constant presale_Price = 0.05 ether; uint constant maxSupply = 4000; uint public totalSupply = 0; uint public presale_limit = 1000; uint public sale_startTime = block.timestamp; uint public presale_startTime = block.timestamp; bool public pause_sale = false; string public baseURI = "https://fancyfruitfanclub.com/api/nft/"; mapping(address => bool) private presaleList; constructor() ERC721("Fancy Fruit Fanclub Bananas", "FFFB"){} function buy(uint _count) public payable{ require(_count > 0, "mint at least one token"); require(_count <= 20, "Max 20 Allowed."); require(totalSupply + _count <= maxSupply, "Not enough tokens left"); require(msg.value == tokenPrice * _count, "incorrect ether amount"); require(block.timestamp >= sale_startTime,"Sale not Started Yet."); require(pause_sale == false, "Sale is Paused."); for(uint i = 0; i < _count; i++) _safeMint(msg.sender, totalSupply + 1 + i); totalSupply += _count; } function buy_Presale(uint _count) public payable{ require(_count > 0, "mint at least one token"); require(_count <= 15, "Max 15 Allowed."); require(totalSupply + _count <= maxSupply, "Not enough tokens left"); require(msg.value == presale_Price * _count, "incorrect ether amount"); require(block.timestamp >= presale_startTime,"Presale have not started yet."); require(block.timestamp < sale_startTime,"Presale Ended."); require(pause_sale == false, "Sale is Paused."); require(checkPresale(msg.sender), "You are not whitelisted."); require(totalSupply <= presale_limit, "Presale Limit Reached."); for(uint i = 0; i < _count; i++) _safeMint(msg.sender, totalSupply + 1 + i); totalSupply += _count; } function sendGifts(address[] memory _wallets) public onlyOwner{ require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left"); for(uint i = 0; i < _wallets.length; i++) _safeMint(_wallets[i], totalSupply + 1 + i); totalSupply += _wallets.length; } function addPresaleList(address[] memory _wallets) public onlyOwner{ for(uint i; i < _wallets.length; i++) presaleList[_wallets[i]] = true; } function checkPresale(address _to) public view returns(bool){ return presaleList[_to]; } function setBaseUri(string memory _uri) external onlyOwner { baseURI = _uri; } function setPauseSale(bool temp) external onlyOwner { pause_sale = temp; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function set_start_time(uint256 time) external onlyOwner{ sale_startTime = time; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_Presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"checkPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"sale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60006007556103e8600855426009819055600a55600b805460ff1916905560e060405260266080818152906200252c60a03980516200004791600c916020909101906200014b565b503480156200005557600080fd5b506040518060400160405280601b81526020017f46616e63792046727569742046616e636c75622042616e616e61730000000000815250604051806040016040528060048152602001632323232160e11b815250620000c3620000bd620000f760201b60201c565b620000fb565b8151620000d89060019060208501906200014b565b508051620000ee9060029060208401906200014b565b5050506200022e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b602082108114156200022857634e487b7160e01b600052602260045260246000fd5b50919050565b6122ee806200023e6000396000f3fe6080604052600436106101d85760003560e01c80637c8255db11610102578063b88d4fde11610095578063d96a094a11610064578063d96a094a1461052c578063e985e9c51461053f578063ebb3151014610588578063f2fde38b146105a857600080fd5b8063b88d4fde14610499578063c1580cb3146104b9578063c7253b50146104d3578063c87b56dd1461050c57600080fd5b8063a0bcfc7f116100d1578063a0bcfc7f14610419578063a22cb46514610439578063aa29e23f14610459578063b27b1a6d1461047957600080fd5b80637c8255db146103b35780638aa328a2146103d35780638da5cb5b146103e657806395d89b411461040457600080fd5b806338d7a8bf1161017a5780636352211e116101495780636352211e146103495780636c0360eb1461036957806370a082311461037e578063715018a61461039e57600080fd5b806338d7a8bf146102e85780633ccfd60b146102fe57806342842e0e14610313578063533d80e71461033357600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b31461029057806318160ddd146102b257806323b872dd146102c857600080fd5b806301ffc9a7146101dd57806303158dde1461021257806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611f02565b6105c8565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022860095481565b604051908152602001610209565b34801561024257600080fd5b5061024b61061a565b6040516102099190612036565b34801561026457600080fd5b50610278610273366004611f85565b6106ac565b6040516001600160a01b039091168152602001610209565b34801561029c57600080fd5b506102b06102ab366004611e09565b610746565b005b3480156102be57600080fd5b5061022860075481565b3480156102d457600080fd5b506102b06102e3366004611d27565b61085c565b3480156102f457600080fd5b5061022860085481565b34801561030a57600080fd5b506102b061088d565b34801561031f57600080fd5b506102b061032e366004611d27565b6108f4565b34801561033f57600080fd5b50610228600a5481565b34801561035557600080fd5b50610278610364366004611f85565b61090f565b34801561037557600080fd5b5061024b610986565b34801561038a57600080fd5b50610228610399366004611cd9565b610a14565b3480156103aa57600080fd5b506102b0610a9b565b3480156103bf57600080fd5b506102b06103ce366004611e33565b610ad1565b6102b06103e1366004611f85565b610bca565b3480156103f257600080fd5b506000546001600160a01b0316610278565b34801561041057600080fd5b5061024b610ed0565b34801561042557600080fd5b506102b0610434366004611f3c565b610edf565b34801561044557600080fd5b506102b0610454366004611ddf565b610f20565b34801561046557600080fd5b506102b0610474366004611ee7565b610fe5565b34801561048557600080fd5b506102b0610494366004611f85565b611022565b3480156104a557600080fd5b506102b06104b4366004611d63565b611051565b3480156104c557600080fd5b50600b546101fd9060ff1681565b3480156104df57600080fd5b506101fd6104ee366004611cd9565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561051857600080fd5b5061024b610527366004611f85565b611089565b6102b061053a366004611f85565b611164565b34801561054b57600080fd5b506101fd61055a366004611cf4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102b06105a3366004611e33565b611361565b3480156105b457600080fd5b506102b06105c3366004611cd9565b6113f3565b60006001600160e01b031982166380ac58cd60e01b14806105f957506001600160e01b03198216635b5e139f60e01b145b8061061457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610629906121e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906121e0565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661072a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107518261090f565b9050806001600160a01b0316836001600160a01b031614156107bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610721565b336001600160a01b03821614806107db57506107db813361055a565b61084d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610721565b610857838361148b565b505050565b61086633826114f9565b6108825760405162461bcd60e51b8152600401610721906120d0565b6108578383836115f0565b6000546001600160a01b031633146108b75760405162461bcd60e51b81526004016107219061209b565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156108f1573d6000803e3d6000fd5b50565b61085783838360405180602001604052806000815250611051565b6000818152600360205260408120546001600160a01b0316806106145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610721565b600c8054610993906121e0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906121e0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b505050505081565b60006001600160a01b038216610a7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610721565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ac55760405162461bcd60e51b81526004016107219061209b565b610acf6000611790565b565b6000546001600160a01b03163314610afb5760405162461bcd60e51b81526004016107219061209b565b610fa08151600754610b0d9190612152565b1115610b545760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b60005b8151811015610bae57610b9c828281518110610b7557610b75612276565b6020026020010151826007546001610b8d9190612152565b610b979190612152565b6117e0565b80610ba68161221b565b915050610b57565b50805160076000828254610bc29190612152565b909155505050565b60008111610c145760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610721565b600f811115610c575760405162461bcd60e51b815260206004820152600f60248201526e26b0bc10189a9020b63637bbb2b21760891b6044820152606401610721565b610fa081600754610c689190612152565b1115610caf5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b610cc08166b1a2bc2ec5000061217e565b3414610d075760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610721565b600a54421015610d595760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610721565b6009544210610d9b5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610721565b600b5460ff1615610de05760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610721565b336000908152600d602052604090205460ff16610e3f5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610721565b6008546007541115610e8c5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b632902634b6b4ba102932b0b1b432b21760511b6044820152606401610721565b60005b81811015610ebd57610eab33826007546001610b8d9190612152565b80610eb58161221b565b915050610e8f565b508060076000828254610bc29190612152565b606060028054610629906121e0565b6000546001600160a01b03163314610f095760405162461bcd60e51b81526004016107219061209b565b8051610f1c90600c906020840190611bbc565b5050565b6001600160a01b038216331415610f795760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461100f5760405162461bcd60e51b81526004016107219061209b565b600b805460ff1916911515919091179055565b6000546001600160a01b0316331461104c5760405162461bcd60e51b81526004016107219061209b565b600955565b61105b33836114f9565b6110775760405162461bcd60e51b8152600401610721906120d0565b611083848484846117fa565b50505050565b6000818152600360205260409020546060906001600160a01b03166111085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610721565b600061111261182d565b90506000815111611132576040518060200160405280600081525061115d565b8061113c8461183c565b60405160200161114d929190611fca565b6040516020818303038152906040525b9392505050565b600081116111ae5760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610721565b60148111156111f15760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610721565b610fa0816007546112029190612152565b11156112495760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b61125a8166d529ae9e86000061217e565b34146112a15760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610721565b6009544210156112eb5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610721565b600b5460ff16156113305760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610721565b60005b81811015610ebd5761134f33826007546001610b8d9190612152565b806113598161221b565b915050611333565b6000546001600160a01b0316331461138b5760405162461bcd60e51b81526004016107219061209b565b60005b8151811015610f1c576001600d60008484815181106113af576113af612276565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113eb8161221b565b91505061138e565b6000546001600160a01b0316331461141d5760405162461bcd60e51b81526004016107219061209b565b6001600160a01b0381166114825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610721565b6108f181611790565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c08261090f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610721565b600061157d8361090f565b9050806001600160a01b0316846001600160a01b031614806115b85750836001600160a01b03166115ad846106ac565b6001600160a01b0316145b806115e857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116038261090f565b6001600160a01b03161461166b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610721565b6001600160a01b0382166116cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610721565b6116d860008261148b565b6001600160a01b038316600090815260046020526040812080546001929061170190849061219d565b90915550506001600160a01b038216600090815260046020526040812080546001929061172f908490612152565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f1c82826040518060200160405280600081525061193a565b6118058484846115f0565b6118118484848461196d565b6110835760405162461bcd60e51b815260040161072190612049565b6060600c8054610629906121e0565b6060816118605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561188a57806118748161221b565b91506118839050600a8361216a565b9150611864565b60008167ffffffffffffffff8111156118a5576118a561228c565b6040519080825280601f01601f1916602001820160405280156118cf576020820181803683370190505b5090505b84156115e8576118e460018361219d565b91506118f1600a86612236565b6118fc906030612152565b60f81b81838151811061191157611911612276565b60200101906001600160f81b031916908160001a905350611933600a8661216a565b94506118d3565b6119448383611a7a565b611951600084848461196d565b6108575760405162461bcd60e51b815260040161072190612049565b60006001600160a01b0384163b15611a6f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b1903390899088908890600401611ff9565b602060405180830381600087803b1580156119cb57600080fd5b505af19250505080156119fb575060408051601f3d908101601f191682019092526119f891810190611f1f565b60015b611a55573d808015611a29576040519150601f19603f3d011682016040523d82523d6000602084013e611a2e565b606091505b508051611a4d5760405162461bcd60e51b815260040161072190612049565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115e8565b506001949350505050565b6001600160a01b038216611ad05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600360205260409020546001600160a01b031615611b355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b6001600160a01b0382166000908152600460205260408120805460019290611b5e908490612152565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bc8906121e0565b90600052602060002090601f016020900481019282611bea5760008555611c30565b82601f10611c0357805160ff1916838001178555611c30565b82800160010185558215611c30579182015b82811115611c30578251825591602001919060010190611c15565b50611c3c929150611c40565b5090565b5b80821115611c3c5760008155600101611c41565b600067ffffffffffffffff831115611c6f57611c6f61228c565b611c82601f8401601f1916602001612121565b9050828152838383011115611c9657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cc457600080fd5b919050565b80358015158114611cc457600080fd5b600060208284031215611ceb57600080fd5b61115d82611cad565b60008060408385031215611d0757600080fd5b611d1083611cad565b9150611d1e60208401611cad565b90509250929050565b600080600060608486031215611d3c57600080fd5b611d4584611cad565b9250611d5360208501611cad565b9150604084013590509250925092565b60008060008060808587031215611d7957600080fd5b611d8285611cad565b9350611d9060208601611cad565b925060408501359150606085013567ffffffffffffffff811115611db357600080fd5b8501601f81018713611dc457600080fd5b611dd387823560208401611c55565b91505092959194509250565b60008060408385031215611df257600080fd5b611dfb83611cad565b9150611d1e60208401611cc9565b60008060408385031215611e1c57600080fd5b611e2583611cad565b946020939093013593505050565b60006020808385031215611e4657600080fd5b823567ffffffffffffffff80821115611e5e57600080fd5b818501915085601f830112611e7257600080fd5b813581811115611e8457611e8461228c565b8060051b9150611e95848301612121565b8181528481019084860184860187018a1015611eb057600080fd5b600095505b83861015611eda57611ec681611cad565b835260019590950194918601918601611eb5565b5098975050505050505050565b600060208284031215611ef957600080fd5b61115d82611cc9565b600060208284031215611f1457600080fd5b813561115d816122a2565b600060208284031215611f3157600080fd5b815161115d816122a2565b600060208284031215611f4e57600080fd5b813567ffffffffffffffff811115611f6557600080fd5b8201601f81018413611f7657600080fd5b6115e884823560208401611c55565b600060208284031215611f9757600080fd5b5035919050565b60008151808452611fb68160208601602086016121b4565b601f01601f19169290920160200192915050565b60008351611fdc8184602088016121b4565b835190830190611ff08183602088016121b4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202c90830184611f9e565b9695505050505050565b60208152600061115d6020830184611f9e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561214a5761214a61228c565b604052919050565b600082198211156121655761216561224a565b500190565b60008261217957612179612260565b500490565b60008160001904831182151516156121985761219861224a565b500290565b6000828210156121af576121af61224a565b500390565b60005b838110156121cf5781810151838201526020016121b7565b838111156110835750506000910152565b600181811c908216806121f457607f821691505b6020821081141561221557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222f5761222f61224a565b5060010190565b60008261224557612245612260565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f157600080fdfea2646970667358221220ecb5dac0d90a490cba4df5fa8f00299be4be0a26f2deb98c69818202b4764b6b64736f6c6343000807003368747470733a2f2f66616e6379667275697466616e636c75622e636f6d2f6170692f6e66742f
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80637c8255db11610102578063b88d4fde11610095578063d96a094a11610064578063d96a094a1461052c578063e985e9c51461053f578063ebb3151014610588578063f2fde38b146105a857600080fd5b8063b88d4fde14610499578063c1580cb3146104b9578063c7253b50146104d3578063c87b56dd1461050c57600080fd5b8063a0bcfc7f116100d1578063a0bcfc7f14610419578063a22cb46514610439578063aa29e23f14610459578063b27b1a6d1461047957600080fd5b80637c8255db146103b35780638aa328a2146103d35780638da5cb5b146103e657806395d89b411461040457600080fd5b806338d7a8bf1161017a5780636352211e116101495780636352211e146103495780636c0360eb1461036957806370a082311461037e578063715018a61461039e57600080fd5b806338d7a8bf146102e85780633ccfd60b146102fe57806342842e0e14610313578063533d80e71461033357600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b31461029057806318160ddd146102b257806323b872dd146102c857600080fd5b806301ffc9a7146101dd57806303158dde1461021257806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611f02565b6105c8565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022860095481565b604051908152602001610209565b34801561024257600080fd5b5061024b61061a565b6040516102099190612036565b34801561026457600080fd5b50610278610273366004611f85565b6106ac565b6040516001600160a01b039091168152602001610209565b34801561029c57600080fd5b506102b06102ab366004611e09565b610746565b005b3480156102be57600080fd5b5061022860075481565b3480156102d457600080fd5b506102b06102e3366004611d27565b61085c565b3480156102f457600080fd5b5061022860085481565b34801561030a57600080fd5b506102b061088d565b34801561031f57600080fd5b506102b061032e366004611d27565b6108f4565b34801561033f57600080fd5b50610228600a5481565b34801561035557600080fd5b50610278610364366004611f85565b61090f565b34801561037557600080fd5b5061024b610986565b34801561038a57600080fd5b50610228610399366004611cd9565b610a14565b3480156103aa57600080fd5b506102b0610a9b565b3480156103bf57600080fd5b506102b06103ce366004611e33565b610ad1565b6102b06103e1366004611f85565b610bca565b3480156103f257600080fd5b506000546001600160a01b0316610278565b34801561041057600080fd5b5061024b610ed0565b34801561042557600080fd5b506102b0610434366004611f3c565b610edf565b34801561044557600080fd5b506102b0610454366004611ddf565b610f20565b34801561046557600080fd5b506102b0610474366004611ee7565b610fe5565b34801561048557600080fd5b506102b0610494366004611f85565b611022565b3480156104a557600080fd5b506102b06104b4366004611d63565b611051565b3480156104c557600080fd5b50600b546101fd9060ff1681565b3480156104df57600080fd5b506101fd6104ee366004611cd9565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561051857600080fd5b5061024b610527366004611f85565b611089565b6102b061053a366004611f85565b611164565b34801561054b57600080fd5b506101fd61055a366004611cf4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102b06105a3366004611e33565b611361565b3480156105b457600080fd5b506102b06105c3366004611cd9565b6113f3565b60006001600160e01b031982166380ac58cd60e01b14806105f957506001600160e01b03198216635b5e139f60e01b145b8061061457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610629906121e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906121e0565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661072a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107518261090f565b9050806001600160a01b0316836001600160a01b031614156107bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610721565b336001600160a01b03821614806107db57506107db813361055a565b61084d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610721565b610857838361148b565b505050565b61086633826114f9565b6108825760405162461bcd60e51b8152600401610721906120d0565b6108578383836115f0565b6000546001600160a01b031633146108b75760405162461bcd60e51b81526004016107219061209b565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f193505050501580156108f1573d6000803e3d6000fd5b50565b61085783838360405180602001604052806000815250611051565b6000818152600360205260408120546001600160a01b0316806106145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610721565b600c8054610993906121e0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906121e0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b505050505081565b60006001600160a01b038216610a7f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610721565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ac55760405162461bcd60e51b81526004016107219061209b565b610acf6000611790565b565b6000546001600160a01b03163314610afb5760405162461bcd60e51b81526004016107219061209b565b610fa08151600754610b0d9190612152565b1115610b545760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b60005b8151811015610bae57610b9c828281518110610b7557610b75612276565b6020026020010151826007546001610b8d9190612152565b610b979190612152565b6117e0565b80610ba68161221b565b915050610b57565b50805160076000828254610bc29190612152565b909155505050565b60008111610c145760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610721565b600f811115610c575760405162461bcd60e51b815260206004820152600f60248201526e26b0bc10189a9020b63637bbb2b21760891b6044820152606401610721565b610fa081600754610c689190612152565b1115610caf5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b610cc08166b1a2bc2ec5000061217e565b3414610d075760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610721565b600a54421015610d595760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e0000006044820152606401610721565b6009544210610d9b5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b6044820152606401610721565b600b5460ff1615610de05760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610721565b336000908152600d602052604090205460ff16610e3f5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610721565b6008546007541115610e8c5760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b632902634b6b4ba102932b0b1b432b21760511b6044820152606401610721565b60005b81811015610ebd57610eab33826007546001610b8d9190612152565b80610eb58161221b565b915050610e8f565b508060076000828254610bc29190612152565b606060028054610629906121e0565b6000546001600160a01b03163314610f095760405162461bcd60e51b81526004016107219061209b565b8051610f1c90600c906020840190611bbc565b5050565b6001600160a01b038216331415610f795760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461100f5760405162461bcd60e51b81526004016107219061209b565b600b805460ff1916911515919091179055565b6000546001600160a01b0316331461104c5760405162461bcd60e51b81526004016107219061209b565b600955565b61105b33836114f9565b6110775760405162461bcd60e51b8152600401610721906120d0565b611083848484846117fa565b50505050565b6000818152600360205260409020546060906001600160a01b03166111085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610721565b600061111261182d565b90506000815111611132576040518060200160405280600081525061115d565b8061113c8461183c565b60405160200161114d929190611fca565b6040516020818303038152906040525b9392505050565b600081116111ae5760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b6044820152606401610721565b60148111156111f15760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610721565b610fa0816007546112029190612152565b11156112495760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610721565b61125a8166d529ae9e86000061217e565b34146112a15760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610721565b6009544210156112eb5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610721565b600b5460ff16156113305760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610721565b60005b81811015610ebd5761134f33826007546001610b8d9190612152565b806113598161221b565b915050611333565b6000546001600160a01b0316331461138b5760405162461bcd60e51b81526004016107219061209b565b60005b8151811015610f1c576001600d60008484815181106113af576113af612276565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806113eb8161221b565b91505061138e565b6000546001600160a01b0316331461141d5760405162461bcd60e51b81526004016107219061209b565b6001600160a01b0381166114825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610721565b6108f181611790565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c08261090f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166115725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610721565b600061157d8361090f565b9050806001600160a01b0316846001600160a01b031614806115b85750836001600160a01b03166115ad846106ac565b6001600160a01b0316145b806115e857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116038261090f565b6001600160a01b03161461166b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610721565b6001600160a01b0382166116cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610721565b6116d860008261148b565b6001600160a01b038316600090815260046020526040812080546001929061170190849061219d565b90915550506001600160a01b038216600090815260046020526040812080546001929061172f908490612152565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f1c82826040518060200160405280600081525061193a565b6118058484846115f0565b6118118484848461196d565b6110835760405162461bcd60e51b815260040161072190612049565b6060600c8054610629906121e0565b6060816118605750506040805180820190915260018152600360fc1b602082015290565b8160005b811561188a57806118748161221b565b91506118839050600a8361216a565b9150611864565b60008167ffffffffffffffff8111156118a5576118a561228c565b6040519080825280601f01601f1916602001820160405280156118cf576020820181803683370190505b5090505b84156115e8576118e460018361219d565b91506118f1600a86612236565b6118fc906030612152565b60f81b81838151811061191157611911612276565b60200101906001600160f81b031916908160001a905350611933600a8661216a565b94506118d3565b6119448383611a7a565b611951600084848461196d565b6108575760405162461bcd60e51b815260040161072190612049565b60006001600160a01b0384163b15611a6f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b1903390899088908890600401611ff9565b602060405180830381600087803b1580156119cb57600080fd5b505af19250505080156119fb575060408051601f3d908101601f191682019092526119f891810190611f1f565b60015b611a55573d808015611a29576040519150601f19603f3d011682016040523d82523d6000602084013e611a2e565b606091505b508051611a4d5760405162461bcd60e51b815260040161072190612049565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115e8565b506001949350505050565b6001600160a01b038216611ad05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600360205260409020546001600160a01b031615611b355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b6001600160a01b0382166000908152600460205260408120805460019290611b5e908490612152565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611bc8906121e0565b90600052602060002090601f016020900481019282611bea5760008555611c30565b82601f10611c0357805160ff1916838001178555611c30565b82800160010185558215611c30579182015b82811115611c30578251825591602001919060010190611c15565b50611c3c929150611c40565b5090565b5b80821115611c3c5760008155600101611c41565b600067ffffffffffffffff831115611c6f57611c6f61228c565b611c82601f8401601f1916602001612121565b9050828152838383011115611c9657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cc457600080fd5b919050565b80358015158114611cc457600080fd5b600060208284031215611ceb57600080fd5b61115d82611cad565b60008060408385031215611d0757600080fd5b611d1083611cad565b9150611d1e60208401611cad565b90509250929050565b600080600060608486031215611d3c57600080fd5b611d4584611cad565b9250611d5360208501611cad565b9150604084013590509250925092565b60008060008060808587031215611d7957600080fd5b611d8285611cad565b9350611d9060208601611cad565b925060408501359150606085013567ffffffffffffffff811115611db357600080fd5b8501601f81018713611dc457600080fd5b611dd387823560208401611c55565b91505092959194509250565b60008060408385031215611df257600080fd5b611dfb83611cad565b9150611d1e60208401611cc9565b60008060408385031215611e1c57600080fd5b611e2583611cad565b946020939093013593505050565b60006020808385031215611e4657600080fd5b823567ffffffffffffffff80821115611e5e57600080fd5b818501915085601f830112611e7257600080fd5b813581811115611e8457611e8461228c565b8060051b9150611e95848301612121565b8181528481019084860184860187018a1015611eb057600080fd5b600095505b83861015611eda57611ec681611cad565b835260019590950194918601918601611eb5565b5098975050505050505050565b600060208284031215611ef957600080fd5b61115d82611cc9565b600060208284031215611f1457600080fd5b813561115d816122a2565b600060208284031215611f3157600080fd5b815161115d816122a2565b600060208284031215611f4e57600080fd5b813567ffffffffffffffff811115611f6557600080fd5b8201601f81018413611f7657600080fd5b6115e884823560208401611c55565b600060208284031215611f9757600080fd5b5035919050565b60008151808452611fb68160208601602086016121b4565b601f01601f19169290920160200192915050565b60008351611fdc8184602088016121b4565b835190830190611ff08183602088016121b4565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061202c90830184611f9e565b9695505050505050565b60208152600061115d6020830184611f9e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561214a5761214a61228c565b604052919050565b600082198211156121655761216561224a565b500190565b60008261217957612179612260565b500490565b60008160001904831182151516156121985761219861224a565b500290565b6000828210156121af576121af61224a565b500390565b60005b838110156121cf5781810151838201526020016121b7565b838111156110835750506000910152565b600181811c908216806121f457607f821691505b6020821081141561221557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222f5761222f61224a565b5060010190565b60008261224557612245612260565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f157600080fdfea2646970667358221220ecb5dac0d90a490cba4df5fa8f00299be4be0a26f2deb98c69818202b4764b6b64736f6c63430008070033
Deployed Bytecode Sourcemap
34479:3219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22331:305;;;;;;;;;;-1:-1:-1;22331:305:0;;;;;:::i;:::-;;:::i;:::-;;;6646:14:1;;6639:22;6621:41;;6609:2;6594:18;22331:305:0;;;;;;;;34753:44;;;;;;;;;;;;;;;;;;;17617:25:1;;;17605:2;17590:18;34753:44:0;17471:177:1;23276:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24835:221::-;;;;;;;;;;-1:-1:-1;24835:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5944:32:1;;;5926:51;;5914:2;5899:18;24835:221:0;5780:203:1;24358:411:0;;;;;;;;;;-1:-1:-1;24358:411:0;;;;;:::i;:::-;;:::i;:::-;;34674:27;;;;;;;;;;;;;;;;25725:339;;;;;;;;;;-1:-1:-1;25725:339:0;;;;;:::i;:::-;;:::i;34708:32::-;;;;;;;;;;;;;;;;37589:106;;;;;;;;;;;;;:::i;26135:185::-;;;;;;;;;;-1:-1:-1;26135:185:0;;;;;:::i;:::-;;:::i;34804:47::-;;;;;;;;;;;;;;;;22970:239;;;;;;;;;;-1:-1:-1;22970:239:0;;;;;:::i;:::-;;:::i;34897:64::-;;;;;;;;;;;;;:::i;22700:208::-;;;;;;;;;;-1:-1:-1;22700:208:0;;;;;:::i;:::-;;:::i;14178:94::-;;;;;;;;;;;;;:::i;36559:308::-;;;;;;;;;;-1:-1:-1;36559:308:0;;;;;:::i;:::-;;:::i;35699:854::-;;;;;;:::i;:::-;;:::i;13527:87::-;;;;;;;;;;-1:-1:-1;13573:7:0;13600:6;-1:-1:-1;;;;;13600:6:0;13527:87;;23445:104;;;;;;;;;;;;;:::i;37169:92::-;;;;;;;;;;-1:-1:-1;37169:92:0;;;;;:::i;:::-;;:::i;25128:295::-;;;;;;;;;;-1:-1:-1;25128:295:0;;;;;:::i;:::-;;:::i;37267:88::-;;;;;;;;;;-1:-1:-1;37267:88:0;;;;;:::i;:::-;;:::i;37481:96::-;;;;;;;;;;-1:-1:-1;37481:96:0;;;;;:::i;:::-;;:::i;26391:328::-;;;;;;;;;;-1:-1:-1;26391:328:0;;;;;:::i;:::-;;:::i;34858:30::-;;;;;;;;;;-1:-1:-1;34858:30:0;;;;;;;;37055:102;;;;;;;;;;-1:-1:-1;37055:102:0;;;;;:::i;:::-;-1:-1:-1;;;;;37133:16:0;37110:4;37133:16;;;:11;:16;;;;;;;;;37055:102;23620:334;;;;;;;;;;-1:-1:-1;23620:334:0;;;;;:::i;:::-;;:::i;35087:607::-;;;;;;:::i;:::-;;:::i;25494:164::-;;;;;;;;;;-1:-1:-1;25494:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25615:25:0;;;25591:4;25615:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25494:164;36875:168;;;;;;;;;;-1:-1:-1;36875:168:0;;;;;:::i;:::-;;:::i;14427:192::-;;;;;;;;;;-1:-1:-1;14427:192:0;;;;;:::i;:::-;;:::i;22331:305::-;22433:4;-1:-1:-1;;;;;;22470:40:0;;-1:-1:-1;;;22470:40:0;;:105;;-1:-1:-1;;;;;;;22527:48:0;;-1:-1:-1;;;22527:48:0;22470:105;:158;;;-1:-1:-1;;;;;;;;;;15641:40:0;;;22592:36;22450:178;22331:305;-1:-1:-1;;22331:305:0:o;23276:100::-;23330:13;23363:5;23356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23276:100;:::o;24835:221::-;24911:7;28318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28318:16:0;24931:73;;;;-1:-1:-1;;;24931:73:0;;12802:2:1;24931:73:0;;;12784:21:1;12841:2;12821:18;;;12814:30;12880:34;12860:18;;;12853:62;-1:-1:-1;;;12931:18:1;;;12924:42;12983:19;;24931:73:0;;;;;;;;;-1:-1:-1;25024:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25024:24:0;;24835:221::o;24358:411::-;24439:13;24455:23;24470:7;24455:14;:23::i;:::-;24439:39;;24503:5;-1:-1:-1;;;;;24497:11:0;:2;-1:-1:-1;;;;;24497:11:0;;;24489:57;;;;-1:-1:-1;;;24489:57:0;;15110:2:1;24489:57:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:34;15168:18;;;15161:62;-1:-1:-1;;;15239:18:1;;;15232:31;15280:19;;24489:57:0;14908:397:1;24489:57:0;747:10;-1:-1:-1;;;;;24581:21:0;;;;:62;;-1:-1:-1;24606:37:0;24623:5;747:10;25494:164;:::i;24606:37::-;24559:168;;;;-1:-1:-1;;;24559:168:0;;10500:2:1;24559:168:0;;;10482:21:1;10539:2;10519:18;;;10512:30;10578:34;10558:18;;;10551:62;10649:26;10629:18;;;10622:54;10693:19;;24559:168:0;10298:420:1;24559:168:0;24740:21;24749:2;24753:7;24740:8;:21::i;:::-;24428:341;24358:411;;:::o;25725:339::-;25920:41;747:10;25953:7;25920:18;:41::i;:::-;25912:103;;;;-1:-1:-1;;;25912:103:0;;;;;;;:::i;:::-;26028:28;26038:4;26044:2;26048:7;26028:9;:28::i;37589:106::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;13573:7;13600:6;;37639:48:::1;::::0;-1:-1:-1;;;;;13600:6:0;;;;37665:21:::1;37639:48:::0;::::1;;;::::0;37665:21;;37639:48;13573:7;37639:48;37665:21;13600:6;37639:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37589:106::o:0;26135:185::-;26273:39;26290:4;26296:2;26300:7;26273:39;;;;;;;;;;;;:16;:39::i;22970:239::-;23042:7;23078:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23078:16:0;23113:19;23105:73;;;;-1:-1:-1;;;23105:73:0;;11680:2:1;23105:73:0;;;11662:21:1;11719:2;11699:18;;;11692:30;11758:34;11738:18;;;11731:62;-1:-1:-1;;;11809:18:1;;;11802:39;11858:19;;23105:73:0;11478:405:1;34897:64:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22700:208::-;22772:7;-1:-1:-1;;;;;22800:19:0;;22792:74;;;;-1:-1:-1;;;22792:74:0;;11269:2:1;22792:74:0;;;11251:21:1;11308:2;11288:18;;;11281:30;11347:34;11327:18;;;11320:62;-1:-1:-1;;;11398:18:1;;;11391:40;11448:19;;22792:74:0;11067:406:1;22792:74:0;-1:-1:-1;;;;;;22884:16:0;;;;;:9;:16;;;;;;;22700:208::o;14178:94::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;14243:21:::1;14261:1;14243:9;:21::i;:::-;14178:94::o:0;36559:308::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;34657:4:::1;36654:8;:15;36640:11;;:29;;;;:::i;:::-;:42;;36632:77;;;::::0;-1:-1:-1;;;36632:77:0;;16978:2:1;36632:77:0::1;::::0;::::1;16960:21:1::0;17017:2;16997:18;;;16990:30;-1:-1:-1;;;17036:18:1;;;17029:52;17098:18;;36632:77:0::1;16776:346:1::0;36632:77:0::1;36724:6;36720:98;36740:8;:15;36736:1;:19;36720:98;;;36775:43;36785:8;36794:1;36785:11;;;;;;;;:::i;:::-;;;;;;;36816:1;36798:11;;36812:1;36798:15;;;;:::i;:::-;:19;;;;:::i;:::-;36775:9;:43::i;:::-;36757:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36720:98;;;;36844:8;:15;36829:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;36559:308:0:o;35699:854::-;35775:1;35766:6;:10;35758:46;;;;-1:-1:-1;;;35758:46:0;;16626:2:1;35758:46:0;;;16608:21:1;16665:2;16645:18;;;16638:30;-1:-1:-1;;;16684:18:1;;;16677:53;16747:18;;35758:46:0;16424:347:1;35758:46:0;35833:2;35823:6;:12;;35815:40;;;;-1:-1:-1;;;35815:40:0;;10925:2:1;35815:40:0;;;10907:21:1;10964:2;10944:18;;;10937:30;-1:-1:-1;;;10983:18:1;;;10976:45;11038:18;;35815:40:0;10723:339:1;35815:40:0;34657:4;35888:6;35874:11;;:20;;;;:::i;:::-;:33;;35866:68;;;;-1:-1:-1;;;35866:68:0;;12090:2:1;35866:68:0;;;12072:21:1;12129:2;12109:18;;;12102:30;-1:-1:-1;;;12148:18:1;;;12141:52;12210:18;;35866:68:0;11888:346:1;35866:68:0;35966:22;35982:6;34614:10;35966:22;:::i;:::-;35953:9;:35;35945:70;;;;-1:-1:-1;;;35945:70:0;;10149:2:1;35945:70:0;;;10131:21:1;10188:2;10168:18;;;10161:30;-1:-1:-1;;;10207:18:1;;;10200:52;10269:18;;35945:70:0;9947:346:1;35945:70:0;36053:17;;36034:15;:36;;36026:77;;;;-1:-1:-1;;;36026:77:0;;13576:2:1;36026:77:0;;;13558:21:1;13615:2;13595:18;;;13588:30;13654:31;13634:18;;;13627:59;13703:18;;36026:77:0;13374:353:1;36026:77:0;36140:14;;36122:15;:32;36114:58;;;;-1:-1:-1;;;36114:58:0;;15865:2:1;36114:58:0;;;15847:21:1;15904:2;15884:18;;;15877:30;-1:-1:-1;;;15923:18:1;;;15916:44;15977:18;;36114:58:0;15663:338:1;36114:58:0;36191:10;;;;:19;36183:47;;;;-1:-1:-1;;;36183:47:0;;17329:2:1;36183:47:0;;;17311:21:1;17368:2;17348:18;;;17341:30;-1:-1:-1;;;17387:18:1;;;17380:45;17442:18;;36183:47:0;17127:339:1;36183:47:0;36262:10;37110:4;37133:16;;;:11;:16;;;;;;;;36241:61;;;;-1:-1:-1;;;36241:61:0;;15512:2:1;36241:61:0;;;15494:21:1;15551:2;15531:18;;;15524:30;15590:26;15570:18;;;15563:54;15634:18;;36241:61:0;15310:348:1;36241:61:0;36336:13;;36321:11;;:28;;36313:63;;;;-1:-1:-1;;;36313:63:0;;7099:2:1;36313:63:0;;;7081:21:1;7138:2;7118:18;;;7111:30;-1:-1:-1;;;7157:18:1;;;7150:52;7219:18;;36313:63:0;6897:346:1;36313:63:0;36411:6;36407:88;36427:6;36423:1;:10;36407:88;;;36453:42;36463:10;36493:1;36475:11;;36489:1;36475:15;;;;:::i;36453:42::-;36435:3;;;;:::i;:::-;;;;36407:88;;;;36539:6;36524:11;;:21;;;;;;;:::i;23445:104::-;23501:13;23534:7;23527:14;;;;;:::i;37169:92::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;37239:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37169:92:::0;:::o;25128:295::-;-1:-1:-1;;;;;25231:24:0;;747:10;25231:24;;25223:62;;;;-1:-1:-1;;;25223:62:0;;9038:2:1;25223:62:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:27;9096:18;;;9089:55;9161:18;;25223:62:0;8836:349:1;25223:62:0;747:10;25298:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25298:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25298:53:0;;;;;;;;;;25367:48;;6621:41:1;;;25298:42:0;;747:10;25367:48;;6594:18:1;25367:48:0;;;;;;;25128:295;;:::o;37267:88::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;37330:10:::1;:17:::0;;-1:-1:-1;;37330:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37267:88::o;37481:96::-;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;37548:14:::1;:21:::0;37481:96::o;26391:328::-;26566:41;747:10;26599:7;26566:18;:41::i;:::-;26558:103;;;;-1:-1:-1;;;26558:103:0;;;;;;;:::i;:::-;26672:39;26686:4;26692:2;26696:7;26705:5;26672:13;:39::i;:::-;26391:328;;;;:::o;23620:334::-;28294:4;28318:16;;;:7;:16;;;;;;23693:13;;-1:-1:-1;;;;;28318:16:0;23719:76;;;;-1:-1:-1;;;23719:76:0;;14694:2:1;23719:76:0;;;14676:21:1;14733:2;14713:18;;;14706:30;14772:34;14752:18;;;14745:62;-1:-1:-1;;;14823:18:1;;;14816:45;14878:19;;23719:76:0;14492:411:1;23719:76:0;23808:21;23832:10;:8;:10::i;:::-;23808:34;;23884:1;23866:7;23860:21;:25;:86;;;;;;;;;;;;;;;;;23912:7;23921:18;:7;:16;:18::i;:::-;23895:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23860:86;23853:93;23620:334;-1:-1:-1;;;23620:334:0:o;35087:607::-;35155:1;35146:6;:10;35138:46;;;;-1:-1:-1;;;35138:46:0;;16626:2:1;35138:46:0;;;16608:21:1;16665:2;16645:18;;;16638:30;-1:-1:-1;;;16684:18:1;;;16677:53;16747:18;;35138:46:0;16424:347:1;35138:46:0;35213:2;35203:6;:12;;35195:40;;;;-1:-1:-1;;;35195:40:0;;9392:2:1;35195:40:0;;;9374:21:1;9431:2;9411:18;;;9404:30;-1:-1:-1;;;9450:18:1;;;9443:45;9505:18;;35195:40:0;9190:339:1;35195:40:0;34657:4;35268:6;35254:11;;:20;;;;:::i;:::-;:33;;35246:68;;;;-1:-1:-1;;;35246:68:0;;12090:2:1;35246:68:0;;;12072:21:1;12129:2;12109:18;;;12102:30;-1:-1:-1;;;12148:18:1;;;12141:52;12210:18;;35246:68:0;11888:346:1;35246:68:0;35346:19;35359:6;34567:10;35346:19;:::i;:::-;35333:9;:32;35325:67;;;;-1:-1:-1;;;35325:67:0;;10149:2:1;35325:67:0;;;10131:21:1;10188:2;10168:18;;;10161:30;-1:-1:-1;;;10207:18:1;;;10200:52;10269:18;;35325:67:0;9947:346:1;35325:67:0;35430:14;;35411:15;:33;;35403:66;;;;-1:-1:-1;;;35403:66:0;;13934:2:1;35403:66:0;;;13916:21:1;13973:2;13953:18;;;13946:30;-1:-1:-1;;;13992:18:1;;;13985:51;14053:18;;35403:66:0;13732:345:1;35403:66:0;35488:10;;;;:19;35480:47;;;;-1:-1:-1;;;35480:47:0;;17329:2:1;35480:47:0;;;17311:21:1;17368:2;17348:18;;;17341:30;-1:-1:-1;;;17387:18:1;;;17380:45;17442:18;;35480:47:0;17127:339:1;35480:47:0;35552:6;35548:88;35568:6;35564:1;:10;35548:88;;;35594:42;35604:10;35634:1;35616:11;;35630:1;35616:15;;;;:::i;35594:42::-;35576:3;;;;:::i;:::-;;;;35548:88;;36875:168;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;36957:6:::1;36953:82;36969:8;:15;36965:1;:19;36953:82;;;37031:4;37004:11;:24;37016:8;37025:1;37016:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;37004:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;37004:24:0;:31;;-1:-1:-1;;37004:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36986:3;::::1;::::0;::::1;:::i;:::-;;;;36953:82;;14427:192:::0;13573:7;13600:6;-1:-1:-1;;;;;13600:6:0;747:10;13747:23;13739:68;;;;-1:-1:-1;;;13739:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14516:22:0;::::1;14508:73;;;::::0;-1:-1:-1;;;14508:73:0;;7869:2:1;14508:73:0::1;::::0;::::1;7851:21:1::0;7908:2;7888:18;;;7881:30;7947:34;7927:18;;;7920:62;-1:-1:-1;;;7998:18:1;;;7991:36;8044:19;;14508:73:0::1;7667:402:1::0;14508:73:0::1;14592:19;14602:8;14592:9;:19::i;32211:174::-:0;32286:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32286:29:0;-1:-1:-1;;;;;32286:29:0;;;;;;;;:24;;32340:23;32286:24;32340:14;:23::i;:::-;-1:-1:-1;;;;;32331:46:0;;;;;;;;;;;32211:174;;:::o;28523:348::-;28616:4;28318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28318:16:0;28633:73;;;;-1:-1:-1;;;28633:73:0;;9736:2:1;28633:73:0;;;9718:21:1;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:1;;;9858:42;9917:19;;28633:73:0;9534:408:1;28633:73:0;28717:13;28733:23;28748:7;28733:14;:23::i;:::-;28717:39;;28786:5;-1:-1:-1;;;;;28775:16:0;:7;-1:-1:-1;;;;;28775:16:0;;:51;;;;28819:7;-1:-1:-1;;;;;28795:31:0;:20;28807:7;28795:11;:20::i;:::-;-1:-1:-1;;;;;28795:31:0;;28775:51;:87;;;-1:-1:-1;;;;;;25615:25:0;;;25591:4;25615:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28830:32;28767:96;28523:348;-1:-1:-1;;;;28523:348:0:o;31515:578::-;31674:4;-1:-1:-1;;;;;31647:31:0;:23;31662:7;31647:14;:23::i;:::-;-1:-1:-1;;;;;31647:31:0;;31639:85;;;;-1:-1:-1;;;31639:85:0;;14284:2:1;31639:85:0;;;14266:21:1;14323:2;14303:18;;;14296:30;14362:34;14342:18;;;14335:62;-1:-1:-1;;;14413:18:1;;;14406:39;14462:19;;31639:85:0;14082:405:1;31639:85:0;-1:-1:-1;;;;;31743:16:0;;31735:65;;;;-1:-1:-1;;;31735:65:0;;8633:2:1;31735:65:0;;;8615:21:1;8672:2;8652:18;;;8645:30;8711:34;8691:18;;;8684:62;-1:-1:-1;;;8762:18:1;;;8755:34;8806:19;;31735:65:0;8431:400:1;31735:65:0;31917:29;31934:1;31938:7;31917:8;:29::i;:::-;-1:-1:-1;;;;;31959:15:0;;;;;;:9;:15;;;;;:20;;31978:1;;31959:15;:20;;31978:1;;31959:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31990:13:0;;;;;;:9;:13;;;;;:18;;32007:1;;31990:13;:18;;32007:1;;31990:18;:::i;:::-;;;;-1:-1:-1;;32019:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32019:21:0;-1:-1:-1;;;;;32019:21:0;;;;;;;;;32058:27;;32019:16;;32058:27;;;;;;;31515:578;;;:::o;14627:173::-;14683:16;14702:6;;-1:-1:-1;;;;;14719:17:0;;;-1:-1:-1;;;;;;14719:17:0;;;;;;14752:40;;14702:6;;;;;;;14752:40;;14683:16;14752:40;14672:128;14627:173;:::o;29213:110::-;29289:26;29299:2;29303:7;29289:26;;;;;;;;;;;;:9;:26::i;27601:315::-;27758:28;27768:4;27774:2;27778:7;27758:9;:28::i;:::-;27805:48;27828:4;27834:2;27838:7;27847:5;27805:22;:48::i;:::-;27797:111;;;;-1:-1:-1;;;27797:111:0;;;;;;;:::i;37367:108::-;37427:13;37460:7;37453:14;;;;;:::i;1132:723::-;1188:13;1409:10;1405:53;;-1:-1:-1;;1436:10:0;;;;;;;;;;;;-1:-1:-1;;;1436:10:0;;;;;1132:723::o;1405:53::-;1483:5;1468:12;1524:78;1531:9;;1524:78;;1557:8;;;;:::i;:::-;;-1:-1:-1;1580:10:0;;-1:-1:-1;1588:2:0;1580:10;;:::i;:::-;;;1524:78;;;1612:19;1644:6;1634:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1634:17:0;;1612:39;;1662:154;1669:10;;1662:154;;1696:11;1706:1;1696:11;;:::i;:::-;;-1:-1:-1;1765:10:0;1773:2;1765:5;:10;:::i;:::-;1752:24;;:2;:24;:::i;:::-;1739:39;;1722:6;1729;1722:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1722:56:0;;;;;;;;-1:-1:-1;1793:11:0;1802:2;1793:11;;:::i;:::-;;;1662:154;;29550:321;29680:18;29686:2;29690:7;29680:5;:18::i;:::-;29731:54;29762:1;29766:2;29770:7;29779:5;29731:22;:54::i;:::-;29709:154;;;;-1:-1:-1;;;29709:154:0;;;;;;;:::i;32950:799::-;33105:4;-1:-1:-1;;;;;33126:13:0;;3920:20;3968:8;33122:620;;33162:72;;-1:-1:-1;;;33162:72:0;;-1:-1:-1;;;;;33162:36:0;;;;;:72;;747:10;;33213:4;;33219:7;;33228:5;;33162:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33162:72:0;;;;;;;;-1:-1:-1;;33162:72:0;;;;;;;;;;;;:::i;:::-;;;33158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33404:13:0;;33400:272;;33447:60;;-1:-1:-1;;;33447:60:0;;;;;;;:::i;33400:272::-;33622:6;33616:13;33607:6;33603:2;33599:15;33592:38;33158:529;-1:-1:-1;;;;;;33285:51:0;-1:-1:-1;;;33285:51:0;;-1:-1:-1;33278:58:0;;33122:620;-1:-1:-1;33726:4:0;32950:799;;;;;;:::o;30207:382::-;-1:-1:-1;;;;;30287:16:0;;30279:61;;;;-1:-1:-1;;;30279:61:0;;12441:2:1;30279:61:0;;;12423:21:1;;;12460:18;;;12453:30;12519:34;12499:18;;;12492:62;12571:18;;30279:61:0;12239:356:1;30279:61:0;28294:4;28318:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28318:16:0;:30;30351:58;;;;-1:-1:-1;;;30351:58:0;;8276:2:1;30351:58:0;;;8258:21:1;8315:2;8295:18;;;8288:30;8354;8334:18;;;8327:58;8402:18;;30351:58:0;8074:352:1;30351:58:0;-1:-1:-1;;;;;30480:13:0;;;;;;:9;:13;;;;;:18;;30497:1;;30480:13;:18;;30497:1;;30480:18;:::i;:::-;;;;-1:-1:-1;;30509:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30509:21:0;-1:-1:-1;;;;;30509:21:0;;;;;;;;30548:33;;30509:16;;;30548:33;;30509:16;;30548:33;30207:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:470::-;5484:3;5522:6;5516:13;5538:53;5584:6;5579:3;5572:4;5564:6;5560:17;5538:53;:::i;:::-;5654:13;;5613:16;;;;5676:57;5654:13;5613:16;5710:4;5698:17;;5676:57;:::i;:::-;5749:20;;5305:470;-1:-1:-1;;;;5305:470:1:o;5988:488::-;-1:-1:-1;;;;;6257:15:1;;;6239:34;;6309:15;;6304:2;6289:18;;6282:43;6356:2;6341:18;;6334:34;;;6404:3;6399:2;6384:18;;6377:31;;;6182:4;;6425:45;;6450:19;;6442:6;6425:45;:::i;:::-;6417:53;5988:488;-1:-1:-1;;;;;;5988:488:1:o;6673:219::-;6822:2;6811:9;6804:21;6785:4;6842:44;6882:2;6871:9;6867:18;6859:6;6842:44;:::i;7248:414::-;7450:2;7432:21;;;7489:2;7469:18;;;7462:30;7528:34;7523:2;7508:18;;7501:62;-1:-1:-1;;;7594:2:1;7579:18;;7572:48;7652:3;7637:19;;7248:414::o;13013:356::-;13215:2;13197:21;;;13234:18;;;13227:30;13293:34;13288:2;13273:18;;13266:62;13360:2;13345:18;;13013:356::o;16006:413::-;16208:2;16190:21;;;16247:2;16227:18;;;16220:30;16286:34;16281:2;16266:18;;16259:62;-1:-1:-1;;;16352:2:1;16337:18;;16330:47;16409:3;16394:19;;16006:413::o;17653:275::-;17724:2;17718:9;17789:2;17770:13;;-1:-1:-1;;17766:27:1;17754:40;;17824:18;17809:34;;17845:22;;;17806:62;17803:88;;;17871:18;;:::i;:::-;17907:2;17900:22;17653:275;;-1:-1:-1;17653:275:1:o;17933:128::-;17973:3;18004:1;18000:6;17997:1;17994:13;17991:39;;;18010:18;;:::i;:::-;-1:-1:-1;18046:9:1;;17933:128::o;18066:120::-;18106:1;18132;18122:35;;18137:18;;:::i;:::-;-1:-1:-1;18171:9:1;;18066:120::o;18191:168::-;18231:7;18297:1;18293;18289:6;18285:14;18282:1;18279:21;18274:1;18267:9;18260:17;18256:45;18253:71;;;18304:18;;:::i;:::-;-1:-1:-1;18344:9:1;;18191:168::o;18364:125::-;18404:4;18432:1;18429;18426:8;18423:34;;;18437:18;;:::i;:::-;-1:-1:-1;18474:9:1;;18364:125::o;18494:258::-;18566:1;18576:113;18590:6;18587:1;18584:13;18576:113;;;18666:11;;;18660:18;18647:11;;;18640:39;18612:2;18605:10;18576:113;;;18707:6;18704:1;18701:13;18698:48;;;-1:-1:-1;;18742:1:1;18724:16;;18717:27;18494:258::o;18757:380::-;18836:1;18832:12;;;;18879;;;18900:61;;18954:4;18946:6;18942:17;18932:27;;18900:61;19007:2;18999:6;18996:14;18976:18;18973:38;18970:161;;;19053:10;19048:3;19044:20;19041:1;19034:31;19088:4;19085:1;19078:15;19116:4;19113:1;19106:15;18970:161;;18757:380;;;:::o;19142:135::-;19181:3;-1:-1:-1;;19202:17:1;;19199:43;;;19222:18;;:::i;:::-;-1:-1:-1;19269:1:1;19258:13;;19142:135::o;19282:112::-;19314:1;19340;19330:35;;19345:18;;:::i;:::-;-1:-1:-1;19379:9:1;;19282:112::o;19399:127::-;19460:10;19455:3;19451:20;19448:1;19441:31;19491:4;19488:1;19481:15;19515:4;19512:1;19505:15;19531:127;19592:10;19587:3;19583:20;19580:1;19573:31;19623:4;19620:1;19613:15;19647:4;19644:1;19637:15;19663:127;19724:10;19719:3;19715:20;19712:1;19705:31;19755:4;19752:1;19745:15;19779:4;19776:1;19769:15;19795:127;19856:10;19851:3;19847:20;19844:1;19837:31;19887:4;19884:1;19877:15;19911:4;19908:1;19901:15;19927:131;-1:-1:-1;;;;;;20001:32:1;;19991:43;;19981:71;;20048:1;20045;20038:12
Swarm Source
ipfs://ecb5dac0d90a490cba4df5fa8f00299be4be0a26f2deb98c69818202b4764b6b
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.