ETH Price: $2,823.46 (+15.07%)
 

Overview

Max Total Supply

6 TFB

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TFB
0xeed2ab4896611648bbe3e548b80e5c371be69231
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
thefuckingbanana

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-01
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: The Fucking Banana.sol



pragma solidity ^0.8.4;

/**
███╗   ██╗███████╗████████╗██╗  ██╗██╗███╗   ██╗ ██████╗ ███╗   ███╗ █████╗ ██╗  ██╗███████╗██████╗     ██████╗ ██████╗ ███╗   ███╗
████╗  ██║██╔════╝╚══██╔══╝██║ ██╔╝██║█S███╗  ██║██╔════╝ ████╗ ████║██╔══██╗██║ ██╔╝██╔════╝██╔══██╗   ██╔════╝██╔═══██╗████╗ ████║
██╔██╗ ██║█████╗     ██║   █████╔╝ ██║██╔██╗ ██║██║  ███╗██╔████╔██║███████║█████╔╝ █████╗  ██████╔╝   ██║     ██║   ██║██╔████╔██║
██║╚██╗██║██╔══╝     ██║   ██╔═██╗ ██║██║╚██╗██║██║   ██║██║╚██╔╝██║██╔══██║██╔═██╗ ██╔══╝  ██╔══██╗   ██║     ██║   ██║██║╚██╔╝██║
██║ ╚████║██║        ██║   ██║  ██╗██║██║ ╚████║╚██████╔╝██║ ╚═╝ ██║██║  ██║██║  ██╗███████╗██║  ██║██╗╚██████╗╚██████╔╝██║ ╚═╝ ██║
╚═╝  ╚═══╝╚═╝        ╚═╝   ╚═╝  ╚═╝╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝     ╚═╝
                                                                                                                                   */




contract thefuckingbanana is ERC721A, Ownable{
    using Strings for uint256;
    
    // Set variables
    
    uint256 public TFB_SUPPLY = 6969;
    uint256 public TFB_PRICE = 0.05 ether;
    uint256 public Presale_PRICE = 0.03 ether;
    bool private _saleActive = false;
    bool private _presaleActive = false;
    uint256 public constant presale_supply = 1000;
    address ownerr= 0xa9595b5909d5ce5ca5df771F2BE56677F7e8C1F2;
    address dev= 0xfB935E62FB26b58dE4C9f7FE94a22874d23585eE;
    

    string public _metaBaseUri = "https://thefuckingbanana.com/tokens/";
    
    // Public Functions
    
    constructor() ERC721A("The Fucking Banana", "TFB") {

        

    }

    
    
    function PUBLICSALEMINT(uint16 numberOfTokens) public payable {
        require(_saleActive==true, "TFB sale not active");
        require(totalSupply() + numberOfTokens <= TFB_SUPPLY, "Sold Out");
        require((TFB_PRICE *numberOfTokens) <= msg.value, "Ether amount sent is incorrect");
        _safeMint(msg.sender,numberOfTokens);
    }
    
     function PRESALEMINT(uint16 numberOfTokens) public payable {
        require(_presaleActive==true, "Presale Of TFB is not active");
        require(totalSupply()+numberOfTokens <= presale_supply, "Insufficient supply, Try in public sale");
        require((Presale_PRICE *numberOfTokens) <= msg.value, "Ether amount sent is incorrect");
            _safeMint(msg.sender, numberOfTokens);
    
         
         
     }
    
    
    function mintgiveaway(address notforyou , uint16 numberOfTokens) public onlyOwner {
            _safeMint(notforyou, numberOfTokens);
        }

    
    function isSaleActive() public view returns (bool) {
        return _saleActive;
    }
    
    function ispreSaleActive() public view returns (bool) {
        return _presaleActive;
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), "", uint256(tokenId).toString()));
    }
    
    // Owner Functions

    function Changesalestatus() public onlyOwner {
        _saleActive = !_saleActive;
    }
    
    function changedevaddr(address addr) public onlyOwner {
        dev = addr;
    }
  
  function changeowneraddr(address addr) public onlyOwner {
        ownerr = addr;
    }
    
    function Changepresalestatus() public onlyOwner {
        _presaleActive = !_presaleActive;
    }

    function setMetaBaseURI(string memory baseURI) external onlyOwner {
        _metaBaseUri = baseURI;
    }
    
    function setsupply(uint256 _TFBupply ) external onlyOwner {
        TFB_SUPPLY = _TFBupply;
    }
    
    function withdrawAll() external onlyOwner {
        
                uint256 _85percent = address(this).balance*85/100;
                uint256 _15percent = address(this).balance*15/100;
                require(payable(dev).send(_15percent));    
                require(payable(ownerr).send(_85percent));
               
    }

    // Internal Functions
    
    

    function _baseURI() override internal view returns (string memory) {
        return _metaBaseUri;
    }
    
    

    // The following functions are overrides required by Solidity.

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Changepresalestatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Changesalestatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"PRESALEMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"PUBLICSALEMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Presale_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TFB_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TFB_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metaBaseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"changedevaddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"changeowneraddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ispreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"notforyou","type":"address"},{"internalType":"uint16","name":"numberOfTokens","type":"uint16"}],"name":"mintgiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_supply","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setMetaBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TFBupply","type":"uint256"}],"name":"setsupply","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

611b3960095566b1a2bc2ec50000600a55666a94d74f430000600b55600c805475a9595b5909d5ce5ca5df771f2be56677f7e8c1f200006001600160b01b0319909116179055600d80546001600160a01b03191673fb935e62fb26b58de4c9f7fe94a22874d23585ee17905560e060405260246080818152906200240c60a03980516200009591600e9160209091019062000179565b50348015620000a357600080fd5b506040805180820182526012815271546865204675636b696e672042616e616e6160701b6020808301918252835180850190945260038452622a232160e91b908401528151919291620000f99160029162000179565b5080516200010f90600390602084019062000179565b50506000805550620001213362000127565b6200025c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000187906200021f565b90600052602060002090601f016020900481019282620001ab5760008555620001f6565b82601f10620001c657805160ff1916838001178555620001f6565b82800160010185558215620001f6579182015b82811115620001f6578251825591602001919060010190620001d9565b506200020492915062000208565b5090565b5b8082111562000204576000815560010162000209565b600181811c908216806200023457607f821691505b602082108114156200025657634e487b7160e01b600052602260045260246000fd5b50919050565b6121a0806200026c6000396000f3fe6080604052600436106102195760003560e01c806370a082311161011d578063b88d4fde116100b0578063df93d2a31161007f578063eaeb7dda11610064578063eaeb7dda146105d7578063f2fde38b146105f4578063fe4967c61461061457600080fd5b8063df93d2a314610579578063e985e9c51461058e57600080fd5b8063b88d4fde14610506578063c87b56dd14610526578063ce4a61c614610546578063d878fe101461055957600080fd5b80638da5cb5b116100ec5780638da5cb5b1461049d57806395d89b41146104bb578063a22cb465146104d0578063b4d1072c146104f057600080fd5b806370a0823114610433578063715018a614610453578063853828b61461046857806385e285431461047d57600080fd5b806324eedd4c116101b057806349e7cb501161017f5780635ab760ef116101645780635ab760ef146103de5780635ae77b43146103fe5780636352211e1461041357600080fd5b806349e7cb50146103b3578063564566a8146103c657600080fd5b806324eedd4c146103475780633792ee011461035d5780633d30c2fe1461037d57806342842e0e1461039357600080fd5b8063095ea7b3116101ec578063095ea7b3146102c257806318160ddd146102e457806318d272eb1461030757806323b872dd1461032757600080fd5b806301ffc9a71461021e57806303b268651461025357806306fdde0314610275578063081812fc1461028a575b600080fd5b34801561022a57600080fd5b5061023e610239366004611ea3565b61062a565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506102686106c7565b60405161024a9190611ff1565b34801561028157600080fd5b50610268610755565b34801561029657600080fd5b506102aa6102a5366004611f41565b6107e7565b6040516001600160a01b03909116815260200161024a565b3480156102ce57600080fd5b506102e26102dd366004611e79565b610844565b005b3480156102f057600080fd5b50600154600054035b60405190815260200161024a565b34801561031357600080fd5b506102e2610322366004611edd565b610904565b34801561033357600080fd5b506102e2610342366004611d5b565b61097a565b34801561035357600080fd5b506102f96103e881565b34801561036957600080fd5b506102e2610378366004611e4f565b610985565b34801561038957600080fd5b506102f9600a5481565b34801561039f57600080fd5b506102e26103ae366004611d5b565b6109ed565b6102e26103c1366004611f26565b610a08565b3480156103d257600080fd5b50600c5460ff1661023e565b3480156103ea57600080fd5b506102e26103f9366004611d06565b610b3e565b34801561040a57600080fd5b506102e2610bd8565b34801561041f57600080fd5b506102aa61042e366004611f41565b610c6c565b34801561043f57600080fd5b506102f961044e366004611d06565b610c7e565b34801561045f57600080fd5b506102e2610ce6565b34801561047457600080fd5b506102e2610d4c565b34801561048957600080fd5b506102e2610498366004611d06565b610e44565b3480156104a957600080fd5b506008546001600160a01b03166102aa565b3480156104c757600080fd5b50610268610ecd565b3480156104dc57600080fd5b506102e26104eb366004611e13565b610edc565b3480156104fc57600080fd5b506102f9600b5481565b34801561051257600080fd5b506102e2610521366004611d97565b610f8b565b34801561053257600080fd5b50610268610541366004611f41565b610fdc565b6102e2610554366004611f26565b611016565b34801561056557600080fd5b506102e2610574366004611f41565b611119565b34801561058557600080fd5b506102e2611178565b34801561059a57600080fd5b5061023e6105a9366004611d28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e357600080fd5b50600c54610100900460ff1661023e565b34801561060057600080fd5b506102e261060f366004611d06565b6111e6565b34801561062057600080fd5b506102f960095481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061068d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106c157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b600e80546106d490612092565b80601f016020809104026020016040519081016040528092919081815260200182805461070090612092565b801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b505050505081565b60606002805461076490612092565b80601f016020809104026020016040519081016040528092919081815260200182805461079090612092565b80156107dd5780601f106107b2576101008083540402835291602001916107dd565b820191906000526020600020905b8154815290600101906020018083116107c057829003601f168201915b5050505050905090565b60006107f2826112c5565b610828576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084f82610c6c565b9050806001600160a01b0316836001600160a01b0316141561089d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108bd57506108bb81336105a9565b155b156108f4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ff8383836112f0565b505050565b6008546001600160a01b031633146109635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161097690600e906020840190611bc9565b5050565b6108ff838383611359565b6008546001600160a01b031633146109df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b610976828261ffff16611595565b6108ff83838360405180602001604052806000815250610f8b565b600c5460ff161515600114610a5f5760405162461bcd60e51b815260206004820152601360248201527f5446422073616c65206e6f742061637469766500000000000000000000000000604482015260640161095a565b6009548161ffff16610a746001546000540390565b610a7e9190612004565b1115610acc5760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f7574000000000000000000000000000000000000000000000000604482015260640161095a565b348161ffff16600a54610adf9190612030565b1115610b2d5760405162461bcd60e51b815260206004820152601e60248201527f457468657220616d6f756e742073656e7420697320696e636f72726563740000604482015260640161095a565b610b3b338261ffff16611595565b50565b6008546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c80546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b6008546001600160a01b03163314610c325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6000610c77826115af565b5192915050565b60006001600160a01b038216610cc0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b610d4a60006116e4565b565b6008546001600160a01b03163314610da65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b60006064610db5476055612030565b610dbf919061201c565b905060006064610dd047600f612030565b610dda919061201c565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610e0d57600080fd5b600c54604051620100009091046001600160a01b0316906108fc8415029084906000818181858888f1935050505061097657600080fd5b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60606003805461076490612092565b6001600160a01b038216331415610f1f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f96848484611359565b6001600160a01b0383163b15158015610fb85750610fb684848484611743565b155b15610fd6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe661186d565b610fef8361187c565b604051602001611000929190611f86565b6040516020818303038152906040529050919050565b600c5460ff6101009091041615156001146110735760405162461bcd60e51b815260206004820152601c60248201527f50726573616c65204f6620544642206973206e6f742061637469766500000000604482015260640161095a565b6103e88161ffff166110886001546000540390565b6110929190612004565b11156111065760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e7420737570706c792c2054727920696e207075626c60448201527f69632073616c6500000000000000000000000000000000000000000000000000606482015260840161095a565b348161ffff16600b54610adf9190612030565b6008546001600160a01b031633146111735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600955565b6008546001600160a01b031633146111d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c805460ff19811660ff90911615179055565b6008546001600160a01b031633146112405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b6001600160a01b0381166112bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161095a565b610b3b816116e4565b60008054821080156106c1575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611364826115af565b9050836001600160a01b031681600001516001600160a01b0316146113b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113d357506113d385336105a9565b806113ee5750336113e3846107e7565b6001600160a01b0316145b905080611427576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611467576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611473600084876112f0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611549576000548214611549578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109768282604051806020016040528060008152506119ae565b6040805160608101825260008082526020820181905291810191909152816000548110156116b257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116b05780516001600160a01b031615611646579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ab579392505050565b611646565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611791903390899088908890600401611fb5565b602060405180830381600087803b1580156117ab57600080fd5b505af19250505080156117db575060408051601f3d908101601f191682019092526117d891810190611ec0565b60015b611836573d808015611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b50805161182e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600e805461076490612092565b6060816118bc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156118e657806118d0816120cd565b91506118df9050600a8361201c565b91506118c0565b60008167ffffffffffffffff8111156119015761190161213e565b6040519080825280601f01601f19166020018201604052801561192b576020820181803683370190505b5090505b84156118655761194060018361204f565b915061194d600a866120e8565b611958906030612004565b60f81b81838151811061196d5761196d612128565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119a7600a8661201c565b945061192f565b6108ff83838360016000546001600160a01b0385166119f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611a30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611af157506001600160a01b0387163b15155b15611b7a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b426000888480600101955088611743565b611b5f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611af7578260005414611b7557600080fd5b611bc0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b7b575b5060005561158e565b828054611bd590612092565b90600052602060002090601f016020900481019282611bf75760008555611c3d565b82601f10611c1057805160ff1916838001178555611c3d565b82800160010185558215611c3d579182015b82811115611c3d578251825591602001919060010190611c22565b50611c49929150611c4d565b5090565b5b80821115611c495760008155600101611c4e565b600067ffffffffffffffff80841115611c7d57611c7d61213e565b604051601f8501601f19908116603f01168101908282118183101715611ca557611ca561213e565b81604052809350858152868686011115611cbe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cef57600080fd5b919050565b803561ffff81168114611cef57600080fd5b600060208284031215611d1857600080fd5b611d2182611cd8565b9392505050565b60008060408385031215611d3b57600080fd5b611d4483611cd8565b9150611d5260208401611cd8565b90509250929050565b600080600060608486031215611d7057600080fd5b611d7984611cd8565b9250611d8760208501611cd8565b9150604084013590509250925092565b60008060008060808587031215611dad57600080fd5b611db685611cd8565b9350611dc460208601611cd8565b925060408501359150606085013567ffffffffffffffff811115611de757600080fd5b8501601f81018713611df857600080fd5b611e0787823560208401611c62565b91505092959194509250565b60008060408385031215611e2657600080fd5b611e2f83611cd8565b915060208301358015158114611e4457600080fd5b809150509250929050565b60008060408385031215611e6257600080fd5b611e6b83611cd8565b9150611d5260208401611cf4565b60008060408385031215611e8c57600080fd5b611e9583611cd8565b946020939093013593505050565b600060208284031215611eb557600080fd5b8135611d2181612154565b600060208284031215611ed257600080fd5b8151611d2181612154565b600060208284031215611eef57600080fd5b813567ffffffffffffffff811115611f0657600080fd5b8201601f81018413611f1757600080fd5b61186584823560208401611c62565b600060208284031215611f3857600080fd5b611d2182611cf4565b600060208284031215611f5357600080fd5b5035919050565b60008151808452611f72816020860160208601612066565b601f01601f19169290920160200192915050565b60008351611f98818460208801612066565b835190830190611fac818360208801612066565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611fe76080830184611f5a565b9695505050505050565b602081526000611d216020830184611f5a565b60008219821115612017576120176120fc565b500190565b60008261202b5761202b612112565b500490565b600081600019048311821515161561204a5761204a6120fc565b500290565b600082821015612061576120616120fc565b500390565b60005b83811015612081578181015183820152602001612069565b83811115610fd65750506000910152565b600181811c908216806120a657607f821691505b602082108114156120c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120e1576120e16120fc565b5060010190565b6000826120f7576120f7612112565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3b57600080fdfea264697066735822122072d28e06357028a792a4477f0ecf2f7e92c5597d56f99c24135eb0100ac1aeaa64736f6c6343000807003368747470733a2f2f7468656675636b696e6762616e616e612e636f6d2f746f6b656e732f

Deployed Bytecode

0x6080604052600436106102195760003560e01c806370a082311161011d578063b88d4fde116100b0578063df93d2a31161007f578063eaeb7dda11610064578063eaeb7dda146105d7578063f2fde38b146105f4578063fe4967c61461061457600080fd5b8063df93d2a314610579578063e985e9c51461058e57600080fd5b8063b88d4fde14610506578063c87b56dd14610526578063ce4a61c614610546578063d878fe101461055957600080fd5b80638da5cb5b116100ec5780638da5cb5b1461049d57806395d89b41146104bb578063a22cb465146104d0578063b4d1072c146104f057600080fd5b806370a0823114610433578063715018a614610453578063853828b61461046857806385e285431461047d57600080fd5b806324eedd4c116101b057806349e7cb501161017f5780635ab760ef116101645780635ab760ef146103de5780635ae77b43146103fe5780636352211e1461041357600080fd5b806349e7cb50146103b3578063564566a8146103c657600080fd5b806324eedd4c146103475780633792ee011461035d5780633d30c2fe1461037d57806342842e0e1461039357600080fd5b8063095ea7b3116101ec578063095ea7b3146102c257806318160ddd146102e457806318d272eb1461030757806323b872dd1461032757600080fd5b806301ffc9a71461021e57806303b268651461025357806306fdde0314610275578063081812fc1461028a575b600080fd5b34801561022a57600080fd5b5061023e610239366004611ea3565b61062a565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506102686106c7565b60405161024a9190611ff1565b34801561028157600080fd5b50610268610755565b34801561029657600080fd5b506102aa6102a5366004611f41565b6107e7565b6040516001600160a01b03909116815260200161024a565b3480156102ce57600080fd5b506102e26102dd366004611e79565b610844565b005b3480156102f057600080fd5b50600154600054035b60405190815260200161024a565b34801561031357600080fd5b506102e2610322366004611edd565b610904565b34801561033357600080fd5b506102e2610342366004611d5b565b61097a565b34801561035357600080fd5b506102f96103e881565b34801561036957600080fd5b506102e2610378366004611e4f565b610985565b34801561038957600080fd5b506102f9600a5481565b34801561039f57600080fd5b506102e26103ae366004611d5b565b6109ed565b6102e26103c1366004611f26565b610a08565b3480156103d257600080fd5b50600c5460ff1661023e565b3480156103ea57600080fd5b506102e26103f9366004611d06565b610b3e565b34801561040a57600080fd5b506102e2610bd8565b34801561041f57600080fd5b506102aa61042e366004611f41565b610c6c565b34801561043f57600080fd5b506102f961044e366004611d06565b610c7e565b34801561045f57600080fd5b506102e2610ce6565b34801561047457600080fd5b506102e2610d4c565b34801561048957600080fd5b506102e2610498366004611d06565b610e44565b3480156104a957600080fd5b506008546001600160a01b03166102aa565b3480156104c757600080fd5b50610268610ecd565b3480156104dc57600080fd5b506102e26104eb366004611e13565b610edc565b3480156104fc57600080fd5b506102f9600b5481565b34801561051257600080fd5b506102e2610521366004611d97565b610f8b565b34801561053257600080fd5b50610268610541366004611f41565b610fdc565b6102e2610554366004611f26565b611016565b34801561056557600080fd5b506102e2610574366004611f41565b611119565b34801561058557600080fd5b506102e2611178565b34801561059a57600080fd5b5061023e6105a9366004611d28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e357600080fd5b50600c54610100900460ff1661023e565b34801561060057600080fd5b506102e261060f366004611d06565b6111e6565b34801561062057600080fd5b506102f960095481565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061068d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106c157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b600e80546106d490612092565b80601f016020809104026020016040519081016040528092919081815260200182805461070090612092565b801561074d5780601f106107225761010080835404028352916020019161074d565b820191906000526020600020905b81548152906001019060200180831161073057829003601f168201915b505050505081565b60606002805461076490612092565b80601f016020809104026020016040519081016040528092919081815260200182805461079090612092565b80156107dd5780601f106107b2576101008083540402835291602001916107dd565b820191906000526020600020905b8154815290600101906020018083116107c057829003601f168201915b5050505050905090565b60006107f2826112c5565b610828576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084f82610c6c565b9050806001600160a01b0316836001600160a01b0316141561089d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906108bd57506108bb81336105a9565b155b156108f4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108ff8383836112f0565b505050565b6008546001600160a01b031633146109635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b805161097690600e906020840190611bc9565b5050565b6108ff838383611359565b6008546001600160a01b031633146109df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b610976828261ffff16611595565b6108ff83838360405180602001604052806000815250610f8b565b600c5460ff161515600114610a5f5760405162461bcd60e51b815260206004820152601360248201527f5446422073616c65206e6f742061637469766500000000000000000000000000604482015260640161095a565b6009548161ffff16610a746001546000540390565b610a7e9190612004565b1115610acc5760405162461bcd60e51b815260206004820152600860248201527f536f6c64204f7574000000000000000000000000000000000000000000000000604482015260640161095a565b348161ffff16600a54610adf9190612030565b1115610b2d5760405162461bcd60e51b815260206004820152601e60248201527f457468657220616d6f756e742073656e7420697320696e636f72726563740000604482015260640161095a565b610b3b338261ffff16611595565b50565b6008546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c80546001600160a01b0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b6008546001600160a01b03163314610c325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6000610c77826115af565b5192915050565b60006001600160a01b038216610cc0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b610d4a60006116e4565b565b6008546001600160a01b03163314610da65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b60006064610db5476055612030565b610dbf919061201c565b905060006064610dd047600f612030565b610dda919061201c565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610e0d57600080fd5b600c54604051620100009091046001600160a01b0316906108fc8415029084906000818181858888f1935050505061097657600080fd5b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60606003805461076490612092565b6001600160a01b038216331415610f1f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f96848484611359565b6001600160a01b0383163b15158015610fb85750610fb684848484611743565b155b15610fd6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe661186d565b610fef8361187c565b604051602001611000929190611f86565b6040516020818303038152906040529050919050565b600c5460ff6101009091041615156001146110735760405162461bcd60e51b815260206004820152601c60248201527f50726573616c65204f6620544642206973206e6f742061637469766500000000604482015260640161095a565b6103e88161ffff166110886001546000540390565b6110929190612004565b11156111065760405162461bcd60e51b815260206004820152602760248201527f496e73756666696369656e7420737570706c792c2054727920696e207075626c60448201527f69632073616c6500000000000000000000000000000000000000000000000000606482015260840161095a565b348161ffff16600b54610adf9190612030565b6008546001600160a01b031633146111735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600955565b6008546001600160a01b031633146111d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b600c805460ff19811660ff90911615179055565b6008546001600160a01b031633146112405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b6001600160a01b0381166112bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161095a565b610b3b816116e4565b60008054821080156106c1575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611364826115af565b9050836001600160a01b031681600001516001600160a01b0316146113b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113d357506113d385336105a9565b806113ee5750336113e3846107e7565b6001600160a01b0316145b905080611427576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611467576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611473600084876112f0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611549576000548214611549578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109768282604051806020016040528060008152506119ae565b6040805160608101825260008082526020820181905291810191909152816000548110156116b257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116b05780516001600160a01b031615611646579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ab579392505050565b611646565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611791903390899088908890600401611fb5565b602060405180830381600087803b1580156117ab57600080fd5b505af19250505080156117db575060408051601f3d908101601f191682019092526117d891810190611ec0565b60015b611836573d808015611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b50805161182e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600e805461076490612092565b6060816118bc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156118e657806118d0816120cd565b91506118df9050600a8361201c565b91506118c0565b60008167ffffffffffffffff8111156119015761190161213e565b6040519080825280601f01601f19166020018201604052801561192b576020820181803683370190505b5090505b84156118655761194060018361204f565b915061194d600a866120e8565b611958906030612004565b60f81b81838151811061196d5761196d612128565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506119a7600a8661201c565b945061192f565b6108ff83838360016000546001600160a01b0385166119f9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611a30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611af157506001600160a01b0387163b15155b15611b7a575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b426000888480600101955088611743565b611b5f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611af7578260005414611b7557600080fd5b611bc0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b7b575b5060005561158e565b828054611bd590612092565b90600052602060002090601f016020900481019282611bf75760008555611c3d565b82601f10611c1057805160ff1916838001178555611c3d565b82800160010185558215611c3d579182015b82811115611c3d578251825591602001919060010190611c22565b50611c49929150611c4d565b5090565b5b80821115611c495760008155600101611c4e565b600067ffffffffffffffff80841115611c7d57611c7d61213e565b604051601f8501601f19908116603f01168101908282118183101715611ca557611ca561213e565b81604052809350858152868686011115611cbe57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cef57600080fd5b919050565b803561ffff81168114611cef57600080fd5b600060208284031215611d1857600080fd5b611d2182611cd8565b9392505050565b60008060408385031215611d3b57600080fd5b611d4483611cd8565b9150611d5260208401611cd8565b90509250929050565b600080600060608486031215611d7057600080fd5b611d7984611cd8565b9250611d8760208501611cd8565b9150604084013590509250925092565b60008060008060808587031215611dad57600080fd5b611db685611cd8565b9350611dc460208601611cd8565b925060408501359150606085013567ffffffffffffffff811115611de757600080fd5b8501601f81018713611df857600080fd5b611e0787823560208401611c62565b91505092959194509250565b60008060408385031215611e2657600080fd5b611e2f83611cd8565b915060208301358015158114611e4457600080fd5b809150509250929050565b60008060408385031215611e6257600080fd5b611e6b83611cd8565b9150611d5260208401611cf4565b60008060408385031215611e8c57600080fd5b611e9583611cd8565b946020939093013593505050565b600060208284031215611eb557600080fd5b8135611d2181612154565b600060208284031215611ed257600080fd5b8151611d2181612154565b600060208284031215611eef57600080fd5b813567ffffffffffffffff811115611f0657600080fd5b8201601f81018413611f1757600080fd5b61186584823560208401611c62565b600060208284031215611f3857600080fd5b611d2182611cf4565b600060208284031215611f5357600080fd5b5035919050565b60008151808452611f72816020860160208601612066565b601f01601f19169290920160200192915050565b60008351611f98818460208801612066565b835190830190611fac818360208801612066565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611fe76080830184611f5a565b9695505050505050565b602081526000611d216020830184611f5a565b60008219821115612017576120176120fc565b500190565b60008261202b5761202b612112565b500490565b600081600019048311821515161561204a5761204a6120fc565b500290565b600082821015612061576120616120fc565b500390565b60005b83811015612081578181015183820152602001612069565b83811115610fd65750506000910152565b600181811c908216806120a657607f821691505b602082108114156120c757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120e1576120e16120fc565b5060010190565b6000826120f7576120f7612112565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3b57600080fdfea264697066735822122072d28e06357028a792a4477f0ecf2f7e92c5597d56f99c24135eb0100ac1aeaa64736f6c63430008070033

Deployed Bytecode Sourcemap

47030:3305:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24480:305;;;;;;;;;;-1:-1:-1;24480:305:0;;;;;:::i;:::-;;:::i;:::-;;;6550:14:1;;6543:22;6525:41;;6513:2;6498:18;24480:305:0;;;;;;;;47547:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27593:100::-;;;;;;;;;;;;;:::i;29096:204::-;;;;;;;;;;-1:-1:-1;29096:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5802:55:1;;;5784:74;;5772:2;5757:18;29096:204:0;5638:226:1;28659:371:0;;;;;;;;;;-1:-1:-1;28659:371:0;;;;;:::i;:::-;;:::i;:::-;;23729:303;;;;;;;;;;-1:-1:-1;23983:12:0;;23773:7;23967:13;:28;23729:303;;;9523:25:1;;;9511:2;9496:18;23729:303:0;9377:177:1;49530:107:0;;;;;;;;;;-1:-1:-1;49530:107:0;;;;;:::i;:::-;;:::i;29961:170::-;;;;;;;;;;-1:-1:-1;29961:170:0;;;;;:::i;:::-;;:::i;47360:45::-;;;;;;;;;;;;47401:4;47360:45;;48556:145;;;;;;;;;;-1:-1:-1;48556:145:0;;;;;:::i;:::-;;:::i;47187:37::-;;;;;;;;;;;;;;;;30202:185;;;;;;;;;;-1:-1:-1;30202:185:0;;;;;:::i;:::-;;:::i;47751:347::-;;;;;;:::i;:::-;;:::i;48715:88::-;;;;;;;;;;-1:-1:-1;48784:11:0;;;;48715:88;;49323;;;;;;;;;;-1:-1:-1;49323:88:0;;;;;:::i;:::-;;:::i;49423:99::-;;;;;;;;;;;;;:::i;27401:125::-;;;;;;;;;;-1:-1:-1;27401:125:0;;;;;:::i;:::-;;:::i;24849:206::-;;;;;;;;;;-1:-1:-1;24849:206:0;;;;;:::i;:::-;;:::i;43938:103::-;;;;;;;;;;;;;:::i;49760:334::-;;;;;;;;;;;;;:::i;49232:83::-;;;;;;;;;;-1:-1:-1;49232:83:0;;;;;:::i;:::-;;:::i;43287:87::-;;;;;;;;;;-1:-1:-1;43360:6:0;;-1:-1:-1;;;;;43360:6:0;43287:87;;27762:104;;;;;;;;;;;;;:::i;29372:287::-;;;;;;;;;;-1:-1:-1;29372:287:0;;;;;:::i;:::-;;:::i;47231:41::-;;;;;;;;;;;;;;;;30458:369;;;;;;;;;;-1:-1:-1;30458:369:0;;;;;:::i;:::-;;:::i;48917:175::-;;;;;;;;;;-1:-1:-1;48917:175:0;;;;;:::i;:::-;;:::i;48111:427::-;;;;;;:::i;:::-;;:::i;49649:99::-;;;;;;;;;;-1:-1:-1;49649:99:0;;;;;:::i;:::-;;:::i;49130:90::-;;;;;;;;;;;;;:::i;29730:164::-;;;;;;;;;;-1:-1:-1;29730:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29851:25:0;;;29827:4;29851:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29730:164;48815:94;;;;;;;;;;-1:-1:-1;48887:14:0;;;;;;;48815:94;;44196:201;;;;;;;;;;-1:-1:-1;44196:201:0;;;;;:::i;:::-;;:::i;47148:32::-;;;;;;;;;;;;;;;;24480:305;24582:4;-1:-1:-1;;;;;;24619:40:0;;24634:25;24619:40;;:105;;-1:-1:-1;;;;;;;24676:48:0;;24691:33;24676:48;24619:105;:158;;;-1:-1:-1;13587:25:0;-1:-1:-1;;;;;;13572:40:0;;;24741:36;24599:178;24480:305;-1:-1:-1;;24480:305:0:o;47547:67::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27593:100::-;27647:13;27680:5;27673:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27593:100;:::o;29096:204::-;29164:7;29189:16;29197:7;29189;:16::i;:::-;29184:64;;29214:34;;;;;;;;;;;;;;29184:64;-1:-1:-1;29268:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29268:24:0;;29096:204::o;28659:371::-;28732:13;28748:24;28764:7;28748:15;:24::i;:::-;28732:40;;28793:5;-1:-1:-1;;;;;28787:11:0;:2;-1:-1:-1;;;;;28787:11:0;;28783:48;;;28807:24;;;;;;;;;;;;;;28783:48;20076:10;-1:-1:-1;;;;;28848:21:0;;;;;;:63;;-1:-1:-1;28874:37:0;28891:5;20076:10;29730:164;:::i;28874:37::-;28873:38;28848:63;28844:138;;;28935:35;;;;;;;;;;;;;;28844:138;28994:28;29003:2;29007:7;29016:5;28994:8;:28::i;:::-;28721:309;28659:371;;:::o;49530:107::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;;;;;;;;;49607:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49530:107:::0;:::o;29961:170::-;30095:28;30105:4;30111:2;30115:7;30095:9;:28::i;48556:145::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;48653:36:::1;48663:9;48674:14;48653:36;;:9;:36::i;30202:185::-:0;30340:39;30357:4;30363:2;30367:7;30340:39;;;;;;;;;;;;:16;:39::i;47751:347::-;47832:11;;;;:17;;:11;:17;47824:49;;;;-1:-1:-1;;;47824:49:0;;8154:2:1;47824:49:0;;;8136:21:1;8193:2;8173:18;;;8166:30;8232:21;8212:18;;;8205:49;8271:18;;47824:49:0;7952:343:1;47824:49:0;47926:10;;47908:14;47892:30;;:13;23983:12;;23773:7;23967:13;:28;;23729:303;47892:13;:30;;;;:::i;:::-;:44;;47884:65;;;;-1:-1:-1;;;47884:65:0;;7003:2:1;47884:65:0;;;6985:21:1;7042:1;7022:18;;;7015:29;7080:10;7060:18;;;7053:38;7108:18;;47884:65:0;6801:331:1;47884:65:0;47999:9;47980:14;47969:25;;:9;;:25;;;;:::i;:::-;47968:40;;47960:83;;;;-1:-1:-1;;;47960:83:0;;9220:2:1;47960:83:0;;;9202:21:1;9259:2;9239:18;;;9232:30;9298:32;9278:18;;;9271:60;9348:18;;47960:83:0;9018:354:1;47960:83:0;48054:36;48064:10;48075:14;48054:36;;:9;:36::i;:::-;47751:347;:::o;49323:88::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49390:6:::1;:13:::0;;-1:-1:-1;;;;;49390:13:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;49323:88::o;49423:99::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49500:14:::1;::::0;;49482:32;;::::1;49500:14;::::0;;;::::1;;;49499:15;49482:32:::0;;::::1;;::::0;;49423:99::o;27401:125::-;27465:7;27492:21;27505:7;27492:12;:21::i;:::-;:26;;27401:125;-1:-1:-1;;27401:125:0:o;24849:206::-;24913:7;-1:-1:-1;;;;;24937:19:0;;24933:60;;24965:28;;;;;;;;;;;;;;24933:60;-1:-1:-1;;;;;;25019:19:0;;;;;:12;:19;;;;;:27;;;;24849:206::o;43938:103::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;44003:30:::1;44030:1;44003:18;:30::i;:::-;43938:103::o:0;49760:334::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49831:18:::1;49877:3;49852:24;:21;49874:2;49852:24;:::i;:::-;:28;;;;:::i;:::-;49831:49:::0;-1:-1:-1;49899:18:0::1;49945:3;49920:24;:21;49942:2;49920:24;:::i;:::-;:28;;;;:::i;:::-;49983:3;::::0;49975:29:::1;::::0;49899:49;;-1:-1:-1;;;;;;49983:3:0::1;::::0;49975:29;::::1;;;::::0;49899:49;;49983:3:::1;49975:29:::0;49983:3;49975:29;49899:49;49983:3;49975:29;::::1;;;;;;49967:38;;;::::0;::::1;;50044:6;::::0;50036:32:::1;::::0;50044:6;;;::::1;-1:-1:-1::0;;;;;50044:6:0::1;::::0;50036:32:::1;::::0;::::1;;::::0;;;::::1;::::0;;;;50044:6;50036:32;::::1;;;;;;50028:41;;;::::0;::::1;49232:83:::0;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49297:3:::1;:10:::0;;-1:-1:-1;;49297:10:0::1;-1:-1:-1::0;;;;;49297:10:0;;;::::1;::::0;;;::::1;::::0;;49232:83::o;27762:104::-;27818:13;27851:7;27844:14;;;;;:::i;29372:287::-;-1:-1:-1;;;;;29471:24:0;;20076:10;29471:24;29467:54;;;29504:17;;;;;;;;;;;;;;29467:54;20076:10;29534:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29534:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29534:53:0;;;;;;;;;;29603:48;;6525:41:1;;;29534:42:0;;20076:10;29603:48;;6498:18:1;29603:48:0;;;;;;;29372:287;;:::o;30458:369::-;30625:28;30635:4;30641:2;30645:7;30625:9;:28::i;:::-;-1:-1:-1;;;;;30668:13:0;;3652:19;:23;;30668:76;;;;;30688:56;30719:4;30725:2;30729:7;30738:5;30688:30;:56::i;:::-;30687:57;30668:76;30664:156;;;30768:40;;-1:-1:-1;;;30768:40:0;;;;;;;;;;;30664:156;30458:369;;;;:::o;48917:175::-;48982:13;49039:10;:8;:10::i;:::-;49055:27;49063:7;49055:25;:27::i;:::-;49022:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49008:76;;48917:175;;;:::o;48111:427::-;48189:14;;;;;;;;:20;;:14;:20;48181:61;;;;-1:-1:-1;;;48181:61:0;;8863:2:1;48181:61:0;;;8845:21:1;8902:2;8882:18;;;8875:30;8941;8921:18;;;8914:58;8989:18;;48181:61:0;8661:352:1;48181:61:0;47401:4;48275:14;48261:28;;:13;23983:12;;23773:7;23967:13;:28;;23729:303;48261:13;:28;;;;:::i;:::-;:46;;48253:98;;;;-1:-1:-1;;;48253:98:0;;7746:2:1;48253:98:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824:34;7804:18;;;7797:62;7895:9;7875:18;;;7868:37;7922:19;;48253:98:0;7544:403:1;48253:98:0;48405:9;48386:14;48371:29;;:13;;:29;;;;:::i;49649:99::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49718:10:::1;:22:::0;49649:99::o;49130:90::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;49201:11:::1;::::0;;-1:-1:-1;;49186:26:0;::::1;49201:11;::::0;;::::1;49200:12;49186:26;::::0;;49130:90::o;44196:201::-;43360:6;;-1:-1:-1;;;;;43360:6:0;20076:10;43507:23;43499:68;;;;-1:-1:-1;;;43499:68:0;;8502:2:1;43499:68:0;;;8484:21:1;;;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8632:18;;43499:68:0;8300:356:1;43499:68:0;-1:-1:-1;;;;;44285:22:0;::::1;44277:73;;;::::0;-1:-1:-1;;;44277:73:0;;7339:2:1;44277:73:0::1;::::0;::::1;7321:21:1::0;7378:2;7358:18;;;7351:30;7417:34;7397:18;;;7390:62;7488:8;7468:18;;;7461:36;7514:19;;44277:73:0::1;7137:402:1::0;44277:73:0::1;44361:28;44380:8;44361:18;:28::i;31082:174::-:0;31139:4;31203:13;;31193:7;:23;31163:85;;;;-1:-1:-1;;31221:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31221:27:0;;;;31220:28;;31082:174::o;39239:196::-;39354:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;39354:29:0;-1:-1:-1;;;;;39354:29:0;;;;;;;;;39399:28;;39354:24;;39399:28;;;;;;;39239:196;;;:::o;34182:2130::-;34297:35;34335:21;34348:7;34335:12;:21::i;:::-;34297:59;;34395:4;-1:-1:-1;;;;;34373:26:0;:13;:18;;;-1:-1:-1;;;;;34373:26:0;;34369:67;;34408:28;;;;;;;;;;;;;;34369:67;34449:22;20076:10;-1:-1:-1;;;;;34475:20:0;;;;:73;;-1:-1:-1;34512:36:0;34529:4;20076:10;29730:164;:::i;34512:36::-;34475:126;;;-1:-1:-1;20076:10:0;34565:20;34577:7;34565:11;:20::i;:::-;-1:-1:-1;;;;;34565:36:0;;34475:126;34449:153;;34620:17;34615:66;;34646:35;;;;;;;;;;;;;;34615:66;-1:-1:-1;;;;;34696:16:0;;34692:52;;34721:23;;;;;;;;;;;;;;34692:52;34865:35;34882:1;34886:7;34895:4;34865:8;:35::i;:::-;-1:-1:-1;;;;;35196:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35196:31:0;;;;;;;-1:-1:-1;;35196:31:0;;;;;;;35242:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35242:29:0;;;;;;;;;;;35322:20;;;:11;:20;;;;;;35357:18;;-1:-1:-1;;;;;;35390:49:0;;;;-1:-1:-1;;;35423:15:0;35390:49;;;;;;;;;;35713:11;;35773:24;;;;;35816:13;;35322:20;;35773:24;;35816:13;35812:384;;36026:13;;36011:11;:28;36007:174;;36064:20;;36133:28;;;;36107:54;;-1:-1:-1;;;36107:54:0;-1:-1:-1;;;;;;36107:54:0;;;-1:-1:-1;;;;;36064:20:0;;36107:54;;;;36007:174;35171:1036;;;36243:7;36239:2;-1:-1:-1;;;;;36224:27:0;36233:4;-1:-1:-1;;;;;36224:27:0;;;;;;;;;;;36262:42;34286:2026;;34182:2130;;;:::o;31264:104::-;31333:27;31343:2;31347:8;31333:27;;;;;;;;;;;;:9;:27::i;26230:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26341:7:0;26424:13;;26417:4;:20;26386:886;;;26458:31;26492:17;;;:11;:17;;;;;;;;;26458:51;;;;;;;;;-1:-1:-1;;;;;26458:51:0;;;;-1:-1:-1;;;26458:51:0;;;;;;;;;;;-1:-1:-1;;;26458:51:0;;;;;;;;;;;;;;26528:729;;26578:14;;-1:-1:-1;;;;;26578:28:0;;26574:101;;26642:9;26230:1109;-1:-1:-1;;;26230:1109:0:o;26574:101::-;-1:-1:-1;;;27017:6:0;27062:17;;;;:11;:17;;;;;;;;;27050:29;;;;;;;;;-1:-1:-1;;;;;27050:29:0;;;;;-1:-1:-1;;;27050:29:0;;;;;;;;;;;-1:-1:-1;;;27050:29:0;;;;;;;;;;;;;27110:28;27106:109;;27178:9;26230:1109;-1:-1:-1;;;26230:1109:0:o;27106:109::-;26977:261;;;26439:833;26386:886;27300:31;;;;;;;;;;;;;;44557:191;44650:6;;;-1:-1:-1;;;;;44667:17:0;;;-1:-1:-1;;44667:17:0;;;;;;;44700:40;;44650:6;;;44667:17;44650:6;;44700:40;;44631:16;;44700:40;44620:128;44557:191;:::o;39927:667::-;40111:72;;;;;40090:4;;-1:-1:-1;;;;;40111:36:0;;;;;:72;;20076:10;;40162:4;;40168:7;;40177:5;;40111:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40111:72:0;;;;;;;;-1:-1:-1;;40111:72:0;;;;;;;;;;;;:::i;:::-;;;40107:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40345:13:0;;40341:235;;40391:40;;-1:-1:-1;;;40391:40:0;;;;;;;;;;;40341:235;40534:6;40528:13;40519:6;40515:2;40511:15;40504:38;40107:480;-1:-1:-1;;;;;;40230:55:0;40240:45;40230:55;;-1:-1:-1;40107:480:0;39927:667;;;;;;:::o;50143:105::-;50195:13;50228:12;50221:19;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;;;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;31731:163;31854:32;31860:2;31864:8;31874:5;31881:4;32292:20;32315:13;-1:-1:-1;;;;;32343:16:0;;32339:48;;32368:19;;;;;;;;;;;;;;32339:48;32402:13;32398:44;;32424:18;;;;;;;;;;;;;;32398:44;-1:-1:-1;;;;;32793:16:0;;;;;;:12;:16;;;;;;;;:44;;32852:49;;;32793:44;;;;;;;;32852:49;;;;-1:-1:-1;;32793:44:0;;;;;;32852:49;;;;;;;;;;;;;;;;32918:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32968:66:0;;;;-1:-1:-1;;;33018:15:0;32968:66;;;;;;;;;;32918:25;33115:23;;;33159:4;:23;;;;-1:-1:-1;;;;;;33167:13:0;;3652:19;:23;;33167:15;33155:641;;;33203:314;33234:38;;33259:12;;-1:-1:-1;;;;;33234:38:0;;;33251:1;;33234:38;;33251:1;;33234:38;33300:69;33339:1;33343:2;33347:14;;;;;;33363:5;33300:30;:69::i;:::-;33295:174;;33405:40;;-1:-1:-1;;;33405:40:0;;;;;;;;;;;33295:174;33512:3;33496:12;:19;;33203:314;;33598:12;33581:13;;:29;33577:43;;33612:8;;;33577:43;33155:641;;;33661:120;33692:40;;33717:14;;;;;-1:-1:-1;;;;;33692:40:0;;;33709:1;;33692:40;;33709:1;;33692:40;33776:3;33760:12;:19;;33661:120;;33155:641;-1:-1:-1;33810:13:0;:28;33860:60;30458:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:1;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:159::-;977:20;;1037:6;1026:18;;1016:29;;1006:57;;1059:1;1056;1049:12;1074:186;1133:6;1186:2;1174:9;1165:7;1161:23;1157:32;1154:52;;;1202:1;1199;1192:12;1154:52;1225:29;1244:9;1225:29;:::i;:::-;1215:39;1074:186;-1:-1:-1;;;1074:186:1:o;1265:260::-;1333:6;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1265:260;;;;;:::o;1530:328::-;1607:6;1615;1623;1676:2;1664:9;1655:7;1651:23;1647:32;1644:52;;;1692:1;1689;1682:12;1644:52;1715:29;1734:9;1715:29;:::i;:::-;1705:39;;1763:38;1797:2;1786:9;1782:18;1763:38;:::i;:::-;1753:48;;1848:2;1837:9;1833:18;1820:32;1810:42;;1530:328;;;;;:::o;1863:666::-;1958:6;1966;1974;1982;2035:3;2023:9;2014:7;2010:23;2006:33;2003:53;;;2052:1;2049;2042:12;2003:53;2075:29;2094:9;2075:29;:::i;:::-;2065:39;;2123:38;2157:2;2146:9;2142:18;2123:38;:::i;:::-;2113:48;;2208:2;2197:9;2193:18;2180:32;2170:42;;2263:2;2252:9;2248:18;2235:32;2290:18;2282:6;2279:30;2276:50;;;2322:1;2319;2312:12;2276:50;2345:22;;2398:4;2390:13;;2386:27;-1:-1:-1;2376:55:1;;2427:1;2424;2417:12;2376:55;2450:73;2515:7;2510:2;2497:16;2492:2;2488;2484:11;2450:73;:::i;:::-;2440:83;;;1863:666;;;;;;;:::o;2534:347::-;2599:6;2607;2660:2;2648:9;2639:7;2635:23;2631:32;2628:52;;;2676:1;2673;2666:12;2628:52;2699:29;2718:9;2699:29;:::i;:::-;2689:39;;2778:2;2767:9;2763:18;2750:32;2825:5;2818:13;2811:21;2804:5;2801:32;2791:60;;2847:1;2844;2837:12;2791:60;2870:5;2860:15;;;2534:347;;;;;:::o;2886:258::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3053:29;3072:9;3053:29;:::i;:::-;3043:39;;3101:37;3134:2;3123:9;3119:18;3101:37;:::i;3149:254::-;3217:6;3225;3278:2;3266:9;3257:7;3253:23;3249:32;3246:52;;;3294:1;3291;3284:12;3246:52;3317:29;3336:9;3317:29;:::i;:::-;3307:39;3393:2;3378:18;;;;3365:32;;-1:-1:-1;;;3149:254:1:o;3408:245::-;3466:6;3519:2;3507:9;3498:7;3494:23;3490:32;3487:52;;;3535:1;3532;3525:12;3487:52;3574:9;3561:23;3593:30;3617:5;3593:30;:::i;3658:249::-;3727:6;3780:2;3768:9;3759:7;3755:23;3751:32;3748:52;;;3796:1;3793;3786:12;3748:52;3828:9;3822:16;3847:30;3871:5;3847:30;:::i;3912:450::-;3981:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:52;;;4050:1;4047;4040:12;4002:52;4090:9;4077:23;4123:18;4115:6;4112:30;4109:50;;;4155:1;4152;4145:12;4109:50;4178:22;;4231:4;4223:13;;4219:27;-1:-1:-1;4209:55:1;;4260:1;4257;4250:12;4209:55;4283:73;4348:7;4343:2;4330:16;4325:2;4321;4317:11;4283:73;:::i;4367:184::-;4425:6;4478:2;4466:9;4457:7;4453:23;4449:32;4446:52;;;4494:1;4491;4484:12;4446:52;4517:28;4535:9;4517:28;:::i;4556:180::-;4615:6;4668:2;4656:9;4647:7;4643:23;4639:32;4636:52;;;4684:1;4681;4674:12;4636:52;-1:-1:-1;4707:23:1;;4556:180;-1:-1:-1;4556:180:1:o;4741:316::-;4782:3;4820:5;4814:12;4847:6;4842:3;4835:19;4863:63;4919:6;4912:4;4907:3;4903:14;4896:4;4889:5;4885:16;4863:63;:::i;:::-;4971:2;4959:15;-1:-1:-1;;4955:88:1;4946:98;;;;5046:4;4942:109;;4741:316;-1:-1:-1;;4741:316:1:o;5062:571::-;5342:3;5380:6;5374:13;5396:53;5442:6;5437:3;5430:4;5422:6;5418:17;5396:53;:::i;:::-;5512:13;;5471:16;;;;5534:57;5512:13;5471:16;5568:4;5556:17;;5534:57;:::i;:::-;5607:20;;5062:571;-1:-1:-1;;;;5062:571:1:o;5869:511::-;6063:4;-1:-1:-1;;;;;6173:2:1;6165:6;6161:15;6150:9;6143:34;6225:2;6217:6;6213:15;6208:2;6197:9;6193:18;6186:43;;6265:6;6260:2;6249:9;6245:18;6238:34;6308:3;6303:2;6292:9;6288:18;6281:31;6329:45;6369:3;6358:9;6354:19;6346:6;6329:45;:::i;:::-;6321:53;5869:511;-1:-1:-1;;;;;;5869:511:1:o;6577:219::-;6726:2;6715:9;6708:21;6689:4;6746:44;6786:2;6775:9;6771:18;6763:6;6746:44;:::i;9559:128::-;9599:3;9630:1;9626:6;9623:1;9620:13;9617:39;;;9636:18;;:::i;:::-;-1:-1:-1;9672:9:1;;9559:128::o;9692:120::-;9732:1;9758;9748:35;;9763:18;;:::i;:::-;-1:-1:-1;9797:9:1;;9692:120::o;9817:228::-;9857:7;9983:1;-1:-1:-1;;9911:74:1;9908:1;9905:81;9900:1;9893:9;9886:17;9882:105;9879:131;;;9990:18;;:::i;:::-;-1:-1:-1;10030:9:1;;9817:228::o;10050:125::-;10090:4;10118:1;10115;10112:8;10109:34;;;10123:18;;:::i;:::-;-1:-1:-1;10160:9:1;;10050:125::o;10180:258::-;10252:1;10262:113;10276:6;10273:1;10270:13;10262:113;;;10352:11;;;10346:18;10333:11;;;10326:39;10298:2;10291:10;10262:113;;;10393:6;10390:1;10387:13;10384:48;;;-1:-1:-1;;10428:1:1;10410:16;;10403:27;10180:258::o;10443:437::-;10522:1;10518:12;;;;10565;;;10586:61;;10640:4;10632:6;10628:17;10618:27;;10586:61;10693:2;10685:6;10682:14;10662:18;10659:38;10656:218;;;-1:-1:-1;;;10727:1:1;10720:88;10831:4;10828:1;10821:15;10859:4;10856:1;10849:15;10656:218;;10443:437;;;:::o;10885:195::-;10924:3;-1:-1:-1;;10948:5:1;10945:77;10942:103;;;11025:18;;:::i;:::-;-1:-1:-1;11072:1:1;11061:13;;10885:195::o;11085:112::-;11117:1;11143;11133:35;;11148:18;;:::i;:::-;-1:-1:-1;11182:9:1;;11085:112::o;11202:184::-;-1:-1:-1;;;11251:1:1;11244:88;11351:4;11348:1;11341:15;11375:4;11372:1;11365:15;11391:184;-1:-1:-1;;;11440:1:1;11433:88;11540:4;11537:1;11530:15;11564:4;11561:1;11554:15;11580:184;-1:-1:-1;;;11629:1:1;11622:88;11729:4;11726:1;11719:15;11753:4;11750:1;11743:15;11769:184;-1:-1:-1;;;11818:1:1;11811:88;11918:4;11915:1;11908:15;11942:4;11939:1;11932:15;11958:177;-1:-1:-1;;;;;;12036:5:1;12032:78;12025:5;12022:89;12012:117;;12125:1;12122;12115:12

Swarm Source

ipfs://72d28e06357028a792a4477f0ecf2f7e92c5597d56f99c24135eb0100ac1aeaa
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.