ETH Price: $3,430.64 (-5.09%)
 

Overview

Max Total Supply

420,000,000,000 THC

Holders

95,923

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BasedTHC

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-05-18
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: BasedTHC.sol



//                                         )         
//    (                   (      *   )  ( /(    (    
//  ( )\     )        (   )\ ) ` )  /(  )\())   )\   
//  )((_) ( /(  (    ))\ (()/(  ( )(_))((_)\  (((_)  
// ((_)_  )(_)) )\  /((_) ((_))(_(_())  _((_) )\___  
//  | _ )((_)_ ((_)(_))   _| | |_   _| | || |((/ __| 
//  | _ \/ _` |(_-</ -_)/ _` |   | |   | __ | | (__  
//  |___/\__,_|/__/\___|\__,_|   |_|   |_||_|  \___| 
                                                                                                                           
// Official Social Links:                                           
// Website:  https://basedthc.xyz
// A-High dApp: https://ahigh.app
// Twitter:  https://twitter.com/BasedTHC
// Telegram: https://t.me/basedTHC
// LinkTr.ee: https://linktr.ee/BaseTHC

// Compatible with OpenZeppelin Contracts v4.0.0
pragma solidity ^0.8.20;
// Specifies the compiler version for solidity, ensuring compatibility and security features of version 0.8.20 or above are enforced.



// Importing essential contracts from OpenZeppelin:
// ERC20 for standard token implementation.
// Ownable to restrict access for certain functions to the contract's owner.
// ReentrancyGuard to prevent reentrancy attacks.

contract BasedTHC is ERC20, Ownable, ReentrancyGuard {
    // Inherit ERC20, Ownable, and ReentrancyGuard functionalities.

    uint256 public taxRate = 1; // Tax rate representing 1% of each transaction, intended for marketing or operational costs.
    address public taxWallet; 
    // Address where collected taxes will be sent.

    constructor(address initialOwner)
        ERC20("Based THC", "THC")
        // Set token name and symbol in ERC20 constructor.
        Ownable(initialOwner) 
        // Set the initial owner of the contract for Ownable.
    {
        _mint(msg.sender, 420000000000 * 10 ** decimals());
        // Mint an initial supply, adjusting for token decimals.
        taxWallet = msg.sender; 
        // Set the contract deployer as the initial taxWallet address.
    }

    function setTaxWallet(address _taxWallet) external onlyOwner {
        // Allow only the contract owner to change the tax wallet address.
        taxWallet = _taxWallet;
    }

    // Override the `transfer` function to include tax logic for non-owner transactions.@dev This was added so there is no taxes on promotional wallet transfers
    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        if (msg.sender == owner()) {
            // If the sender is the dev, transfer without tax. @dev This was added so there is no taxes on promotional wallet transfers after new owner is set.
            super.transfer(recipient, amount);
        } else {
            // For others, calculate tax and the net amount after tax.
            uint256 tax = amount * taxRate / 100;
            uint256 amountAfterTax = amount - tax;
            super.transfer(recipient, amountAfterTax); // Transfer the net amount to the recipient.
            super.transfer(taxWallet, tax); // Transfer the calculated tax to the tax wallet.
        }
        return true;
    }

    // Override the `transferFrom` function to apply the tax logic for non-owner transactions when tokens are being transferred on behalf of another address.
    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        if (sender == owner()) {
            // Allow the owner to transfer tokens on behalf of others without tax.
            super.transferFrom(sender, recipient, amount);
        } else {
            // Apply tax for others.
            uint256 tax = amount * taxRate / 100;
            uint256 amountAfterTax = amount - tax;
            super.transferFrom(sender, recipient, amountAfterTax); // Transfer the net amount after tax.
            super.transferFrom(sender, taxWallet, tax); // Transfer the tax to the tax wallet.
        }
        return true;
    }

    function changeOwner(address newOwner) public onlyOwner {
        // A convenience function to change the ownership of the contract using Ownable's `transferOwnership` functionality.
        // This encapsulates Ownable's native function with clearer intent.
        transferOwnership(newOwner);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160075534801562000015575f80fd5b50604051620021163803806200211683398181016040528101906200003b9190620005c1565b806040518060400160405280600981526020017f42617365642054484300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f54484300000000000000000000000000000000000000000000000000000000008152508160039081620000b9919062000855565b508060049081620000cb919062000855565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000141575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013891906200094a565b60405180910390fd5b6200015281620001e360201b60201c565b5060016006819055506200019c3362000170620002a660201b60201c565b600a6200017e919062000aee565b6461c9f3680062000190919062000b3e565b620002ae60201b60201c565b3360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000c29565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000321575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200031891906200094a565b60405180910390fd5b620003345f83836200033860201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200038c578060025f8282546200037f919062000b88565b925050819055506200045d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000418578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200040f9392919062000bd3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004a6578060025f8282540392505081905550620004f0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200054f919062000c0e565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200058b8262000560565b9050919050565b6200059d816200057f565b8114620005a8575f80fd5b50565b5f81519050620005bb8162000592565b92915050565b5f60208284031215620005d957620005d86200055c565b5b5f620005e884828501620005ab565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200066d57607f821691505b60208210810362000683576200068262000628565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006aa565b620006f38683620006aa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200073d6200073762000731846200070b565b62000714565b6200070b565b9050919050565b5f819050919050565b62000758836200071d565b62000770620007678262000744565b848454620006b6565b825550505050565b5f90565b6200078662000778565b620007938184846200074d565b505050565b5b81811015620007ba57620007ae5f826200077c565b60018101905062000799565b5050565b601f8211156200080957620007d38162000689565b620007de846200069b565b81016020851015620007ee578190505b62000806620007fd856200069b565b83018262000798565b50505b505050565b5f82821c905092915050565b5f6200082b5f19846008026200080e565b1980831691505092915050565b5f6200084583836200081a565b9150826002028217905092915050565b6200086082620005f1565b67ffffffffffffffff8111156200087c576200087b620005fb565b5b62000888825462000655565b62000895828285620007be565b5f60209050601f831160018114620008cb575f8415620008b6578287015190505b620008c2858262000838565b86555062000931565b601f198416620008db8662000689565b5f5b828110156200090457848901518255600182019150602085019450602081019050620008dd565b8683101562000924578489015162000920601f8916826200081a565b8355505b6001600288020188555050505b505050505050565b62000944816200057f565b82525050565b5f6020820190506200095f5f83018462000939565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620009ef57808604811115620009c757620009c662000965565b5b6001851615620009d75780820291505b8081029050620009e78562000992565b9450620009a7565b94509492505050565b5f8262000a09576001905062000adb565b8162000a18575f905062000adb565b816001811462000a31576002811462000a3c5762000a72565b600191505062000adb565b60ff84111562000a515762000a5062000965565b5b8360020a91508482111562000a6b5762000a6a62000965565b5b5062000adb565b5060208310610133831016604e8410600b841016171562000aac5782820a90508381111562000aa65762000aa562000965565b5b62000adb565b62000abb84848460016200099e565b9250905081840481111562000ad55762000ad462000965565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000afa826200070b565b915062000b078362000ae2565b925062000b367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009f8565b905092915050565b5f62000b4a826200070b565b915062000b57836200070b565b925082820262000b67816200070b565b9150828204841483151762000b815762000b8062000965565b5b5092915050565b5f62000b94826200070b565b915062000ba1836200070b565b925082820190508082111562000bbc5762000bbb62000965565b5b92915050565b62000bcd816200070b565b82525050565b5f60608201905062000be85f83018662000939565b62000bf7602083018562000bc2565b62000c06604083018462000bc2565b949350505050565b5f60208201905062000c235f83018462000bc2565b92915050565b6114df8062000c375f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063771a3a1d11610095578063a9059cbb11610064578063a9059cbb1461028a578063dd62ed3e146102ba578063ea414b28146102ea578063f2fde38b14610306576100fe565b8063771a3a1d146102145780638da5cb5b1461023257806395d89b4114610250578063a6f9dae11461026e576100fe565b80632dc0562d116100d15780632dc0562d1461019e578063313ce567146101bc57806370a08231146101da578063715018a61461020a576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610322565b604051610117919061101f565b60405180910390f35b61013a600480360381019061013591906110d0565b6103b2565b6040516101479190611128565b60405180910390f35b6101586103d4565b6040516101659190611150565b60405180910390f35b61018860048036038101906101839190611169565b6103dd565b6040516101959190611128565b60405180910390f35b6101a66104ac565b6040516101b391906111c8565b60405180910390f35b6101c46104d1565b6040516101d191906111fc565b60405180910390f35b6101f460048036038101906101ef9190611215565b6104d9565b6040516102019190611150565b60405180910390f35b61021261051e565b005b61021c610531565b6040516102299190611150565b60405180910390f35b61023a610537565b60405161024791906111c8565b60405180910390f35b61025861055f565b604051610265919061101f565b60405180910390f35b61028860048036038101906102839190611215565b6105ef565b005b6102a4600480360381019061029f91906110d0565b610603565b6040516102b19190611128565b60405180910390f35b6102d460048036038101906102cf9190611240565b6106ce565b6040516102e19190611150565b60405180910390f35b61030460048036038101906102ff9190611215565b610750565b005b610320600480360381019061031b9190611215565b61079b565b005b606060038054610331906112ab565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112ab565b80156103a85780601f1061037f576101008083540402835291602001916103a8565b820191905f5260205f20905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b5f806103bc61081f565b90506103c9818585610826565b600191505092915050565b5f600254905090565b5f6103e6610838565b6103ee610537565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036104315761042b848484610887565b50610499565b5f6064600754846104429190611308565b61044c9190611376565b90505f818461045b91906113a6565b9050610468868683610887565b506104958660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610887565b5050505b600190506104a56108b5565b9392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105266108bf565b61052f5f610946565b565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056e906112ab565b80601f016020809104026020016040519081016040528092919081815260200182805461059a906112ab565b80156105e55780601f106105bc576101008083540402835291602001916105e5565b820191905f5260205f20905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b6105f76108bf565b6106008161079b565b50565b5f61060c610838565b610614610537565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610656576106508383610a09565b506106bc565b5f6064600754846106679190611308565b6106719190611376565b90505f818461068091906113a6565b905061068c8582610a09565b506106b860085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610a09565b5050505b600190506106c86108b5565b92915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107586108bf565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107a36108bf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610813575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161080a91906111c8565b60405180910390fd5b61081c81610946565b50565b5f33905090565b6108338383836001610a2b565b505050565b60026006540361087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490611423565b60405180910390fd5b6002600681905550565b5f8061089161081f565b905061089e858285610bfa565b6108a9858585610c8c565b60019150509392505050565b6001600681905550565b6108c761081f565b73ffffffffffffffffffffffffffffffffffffffff166108e5610537565b73ffffffffffffffffffffffffffffffffffffffff16146109445761090861081f565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093b91906111c8565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610a1361081f565b9050610a20818585610c8c565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a9b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a9291906111c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b0291906111c8565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bf4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610beb9190611150565b60405180910390a35b50505050565b5f610c0584846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c865781811015610c77578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c6e93929190611441565b60405180910390fd5b610c8584848484035f610a2b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfc575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf391906111c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d6391906111c8565b60405180910390fd5b610d77838383610d7c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc578060025f828254610dc09190611476565b92505081905550610e9a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e55578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610e4c93929190611441565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee1578060025f8282540392505081905550610f2b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f889190611150565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fcc578082015181840152602081019050610fb1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ff182610f95565b610ffb8185610f9f565b935061100b818560208601610faf565b61101481610fd7565b840191505092915050565b5f6020820190508181035f8301526110378184610fe7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106c82611043565b9050919050565b61107c81611062565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f819050919050565b6110af8161109d565b81146110b9575f80fd5b50565b5f813590506110ca816110a6565b92915050565b5f80604083850312156110e6576110e561103f565b5b5f6110f385828601611089565b9250506020611104858286016110bc565b9150509250929050565b5f8115159050919050565b6111228161110e565b82525050565b5f60208201905061113b5f830184611119565b92915050565b61114a8161109d565b82525050565b5f6020820190506111635f830184611141565b92915050565b5f805f606084860312156111805761117f61103f565b5b5f61118d86828701611089565b935050602061119e86828701611089565b92505060406111af868287016110bc565b9150509250925092565b6111c281611062565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f60ff82169050919050565b6111f6816111e1565b82525050565b5f60208201905061120f5f8301846111ed565b92915050565b5f6020828403121561122a5761122961103f565b5b5f61123784828501611089565b91505092915050565b5f80604083850312156112565761125561103f565b5b5f61126385828601611089565b925050602061127485828601611089565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112c257607f821691505b6020821081036112d5576112d461127e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113128261109d565b915061131d8361109d565b925082820261132b8161109d565b91508282048414831517611342576113416112db565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113808261109d565b915061138b8361109d565b92508261139b5761139a611349565b5b828204905092915050565b5f6113b08261109d565b91506113bb8361109d565b92508282039050818111156113d3576113d26112db565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61140d601f83610f9f565b9150611418826113d9565b602082019050919050565b5f6020820190508181035f83015261143a81611401565b9050919050565b5f6060820190506114545f8301866111b9565b6114616020830185611141565b61146e6040830184611141565b949350505050565b5f6114808261109d565b915061148b8361109d565b92508282019050808211156114a3576114a26112db565b5b9291505056fea2646970667358221220e0e4401f677047209df5445542a0427c22f686cf16688ebf03c9731c7c0d7af564736f6c63430008140033000000000000000000000000f5b36e29540c289dbe4ab0dd1bda1cf2cb05805a

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063771a3a1d11610095578063a9059cbb11610064578063a9059cbb1461028a578063dd62ed3e146102ba578063ea414b28146102ea578063f2fde38b14610306576100fe565b8063771a3a1d146102145780638da5cb5b1461023257806395d89b4114610250578063a6f9dae11461026e576100fe565b80632dc0562d116100d15780632dc0562d1461019e578063313ce567146101bc57806370a08231146101da578063715018a61461020a576100fe565b806306fdde0314610102578063095ea7b31461012057806318160ddd1461015057806323b872dd1461016e575b5f80fd5b61010a610322565b604051610117919061101f565b60405180910390f35b61013a600480360381019061013591906110d0565b6103b2565b6040516101479190611128565b60405180910390f35b6101586103d4565b6040516101659190611150565b60405180910390f35b61018860048036038101906101839190611169565b6103dd565b6040516101959190611128565b60405180910390f35b6101a66104ac565b6040516101b391906111c8565b60405180910390f35b6101c46104d1565b6040516101d191906111fc565b60405180910390f35b6101f460048036038101906101ef9190611215565b6104d9565b6040516102019190611150565b60405180910390f35b61021261051e565b005b61021c610531565b6040516102299190611150565b60405180910390f35b61023a610537565b60405161024791906111c8565b60405180910390f35b61025861055f565b604051610265919061101f565b60405180910390f35b61028860048036038101906102839190611215565b6105ef565b005b6102a4600480360381019061029f91906110d0565b610603565b6040516102b19190611128565b60405180910390f35b6102d460048036038101906102cf9190611240565b6106ce565b6040516102e19190611150565b60405180910390f35b61030460048036038101906102ff9190611215565b610750565b005b610320600480360381019061031b9190611215565b61079b565b005b606060038054610331906112ab565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112ab565b80156103a85780601f1061037f576101008083540402835291602001916103a8565b820191905f5260205f20905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b5f806103bc61081f565b90506103c9818585610826565b600191505092915050565b5f600254905090565b5f6103e6610838565b6103ee610537565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036104315761042b848484610887565b50610499565b5f6064600754846104429190611308565b61044c9190611376565b90505f818461045b91906113a6565b9050610468868683610887565b506104958660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610887565b5050505b600190506104a56108b5565b9392505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105266108bf565b61052f5f610946565b565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461056e906112ab565b80601f016020809104026020016040519081016040528092919081815260200182805461059a906112ab565b80156105e55780601f106105bc576101008083540402835291602001916105e5565b820191905f5260205f20905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b6105f76108bf565b6106008161079b565b50565b5f61060c610838565b610614610537565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610656576106508383610a09565b506106bc565b5f6064600754846106679190611308565b6106719190611376565b90505f818461068091906113a6565b905061068c8582610a09565b506106b860085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610a09565b5050505b600190506106c86108b5565b92915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107586108bf565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6107a36108bf565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610813575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161080a91906111c8565b60405180910390fd5b61081c81610946565b50565b5f33905090565b6108338383836001610a2b565b505050565b60026006540361087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490611423565b60405180910390fd5b6002600681905550565b5f8061089161081f565b905061089e858285610bfa565b6108a9858585610c8c565b60019150509392505050565b6001600681905550565b6108c761081f565b73ffffffffffffffffffffffffffffffffffffffff166108e5610537565b73ffffffffffffffffffffffffffffffffffffffff16146109445761090861081f565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161093b91906111c8565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610a1361081f565b9050610a20818585610c8c565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a9b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a9291906111c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b0291906111c8565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610bf4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610beb9190611150565b60405180910390a35b50505050565b5f610c0584846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c865781811015610c77578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c6e93929190611441565b60405180910390fd5b610c8584848484035f610a2b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfc575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf391906111c8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d6391906111c8565b60405180910390fd5b610d77838383610d7c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dcc578060025f828254610dc09190611476565b92505081905550610e9a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e55578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610e4c93929190611441565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee1578060025f8282540392505081905550610f2b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f889190611150565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fcc578082015181840152602081019050610fb1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ff182610f95565b610ffb8185610f9f565b935061100b818560208601610faf565b61101481610fd7565b840191505092915050565b5f6020820190508181035f8301526110378184610fe7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106c82611043565b9050919050565b61107c81611062565b8114611086575f80fd5b50565b5f8135905061109781611073565b92915050565b5f819050919050565b6110af8161109d565b81146110b9575f80fd5b50565b5f813590506110ca816110a6565b92915050565b5f80604083850312156110e6576110e561103f565b5b5f6110f385828601611089565b9250506020611104858286016110bc565b9150509250929050565b5f8115159050919050565b6111228161110e565b82525050565b5f60208201905061113b5f830184611119565b92915050565b61114a8161109d565b82525050565b5f6020820190506111635f830184611141565b92915050565b5f805f606084860312156111805761117f61103f565b5b5f61118d86828701611089565b935050602061119e86828701611089565b92505060406111af868287016110bc565b9150509250925092565b6111c281611062565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f60ff82169050919050565b6111f6816111e1565b82525050565b5f60208201905061120f5f8301846111ed565b92915050565b5f6020828403121561122a5761122961103f565b5b5f61123784828501611089565b91505092915050565b5f80604083850312156112565761125561103f565b5b5f61126385828601611089565b925050602061127485828601611089565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112c257607f821691505b6020821081036112d5576112d461127e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113128261109d565b915061131d8361109d565b925082820261132b8161109d565b91508282048414831517611342576113416112db565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113808261109d565b915061138b8361109d565b92508261139b5761139a611349565b5b828204905092915050565b5f6113b08261109d565b91506113bb8361109d565b92508282039050818111156113d3576113d26112db565b5b92915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61140d601f83610f9f565b9150611418826113d9565b602082019050919050565b5f6020820190508181035f83015261143a81611401565b9050919050565b5f6060820190506114545f8301866111b9565b6114616020830185611141565b61146e6040830184611141565b949350505050565b5f6114808261109d565b915061148b8361109d565b92508282019050808211156114a3576114a26112db565b5b9291505056fea2646970667358221220e0e4401f677047209df5445542a0427c22f686cf16688ebf03c9731c7c0d7af564736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f5b36e29540c289dbe4ab0dd1bda1cf2cb05805a

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xF5B36E29540c289dBE4ab0DD1bda1cF2Cb05805a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f5b36e29540c289dbe4ab0dd1bda1cf2cb05805a


Deployed Bytecode Sourcemap

30350:3124:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22011:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20820:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32461:697;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30608:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20671:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20982:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13331:103;;;:::i;:::-;;30481:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12656:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19928:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33166:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31520:774;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21550:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31172:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13589:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19718:91;19763:13;19796:5;19789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:91;:::o;22011:190::-;22084:4;22101:13;22117:12;:10;:12::i;:::-;22101:28;;22140:31;22149:5;22156:7;22165:5;22140:8;:31::i;:::-;22189:4;22182:11;;;22011:190;;;;:::o;20820:99::-;20872:7;20899:12;;20892:19;;20820:99;:::o;32461:697::-;32572:4;2345:21;:19;:21::i;:::-;32603:7:::1;:5;:7::i;:::-;32593:17;;:6;:17;;::::0;32589:540:::1;;32711:45;32730:6;32738:9;32749:6;32711:18;:45::i;:::-;;32589:540;;;32827:11;32860:3;32850:7;;32841:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;32827:36;;32878:22;32912:3;32903:6;:12;;;;:::i;:::-;32878:37;;32930:53;32949:6;32957:9;32968:14;32930:18;:53::i;:::-;;33036:42;33055:6;33063:9;;;;;;;;;;;33074:3;33036:18;:42::i;:::-;;32774:355;;32589:540;33146:4;33139:11;;2389:20:::0;:18;:20::i;:::-;32461:697;;;;;:::o;30608:24::-;;;;;;;;;;;;;:::o;20671:84::-;20720:5;20745:2;20738:9;;20671:84;:::o;20982:118::-;21047:7;21074:9;:18;21084:7;21074:18;;;;;;;;;;;;;;;;21067:25;;20982:118;;;:::o;13331:103::-;12542:13;:11;:13::i;:::-;13396:30:::1;13423:1;13396:18;:30::i;:::-;13331:103::o:0;30481:26::-;;;;:::o;12656:87::-;12702:7;12729:6;;;;;;;;;;;12722:13;;12656:87;:::o;19928:95::-;19975:13;20008:7;20001:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19928:95;:::o;33166:305::-;12542:13;:11;:13::i;:::-;33436:27:::1;33454:8;33436:17;:27::i;:::-;33166:305:::0;:::o;31520:774::-;31611:4;2345:21;:19;:21::i;:::-;31646:7:::1;:5;:7::i;:::-;31632:21;;:10;:21;;::::0;31628:637:::1;;31831:33;31846:9;31857:6;31831:14;:33::i;:::-;;31628:637;;;31969:11;32002:3;31992:7;;31983:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;31969:36;;32020:22;32054:3;32045:6;:12;;;;:::i;:::-;32020:37;;32072:41;32087:9;32098:14;32072;:41::i;:::-;;32173:30;32188:9;;;;;;;;;;;32199:3;32173:14;:30::i;:::-;;31882:383;;31628:637;32282:4;32275:11;;2389:20:::0;:18;:20::i;:::-;31520:774;;;;:::o;21550:142::-;21630:7;21657:11;:18;21669:5;21657:18;;;;;;;;;;;;;;;:27;21676:7;21657:27;;;;;;;;;;;;;;;;21650:34;;21550:142;;;;:::o;31172:178::-;12542:13;:11;:13::i;:::-;31332:10:::1;31320:9;;:22;;;;;;;;;;;;;;;;;;31172:178:::0;:::o;13589:220::-;12542:13;:11;:13::i;:::-;13694:1:::1;13674:22;;:8;:22;;::::0;13670:93:::1;;13748:1;13720:31;;;;;;;;;;;:::i;:::-;;;;;;;;13670:93;13773:28;13792:8;13773:18;:28::i;:::-;13589:220:::0;:::o;10665:98::-;10718:7;10745:10;10738:17;;10665:98;:::o;26838:130::-;26923:37;26932:5;26939:7;26948:5;26955:4;26923:8;:37::i;:::-;26838:130;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;22779:249::-;22866:4;22883:15;22901:12;:10;:12::i;:::-;22883:30;;22924:37;22940:4;22946:7;22955:5;22924:15;:37::i;:::-;22972:26;22982:4;22988:2;22992:5;22972:9;:26::i;:::-;23016:4;23009:11;;;22779:249;;;;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;12821:166::-;12892:12;:10;:12::i;:::-;12881:23;;:7;:5;:7::i;:::-;:23;;;12877:103;;12955:12;:10;:12::i;:::-;12928:40;;;;;;;;;;;:::i;:::-;;;;;;;;12877:103;12821:166::o;13969:191::-;14043:16;14062:6;;;;;;;;;;;14043:25;;14088:8;14079:6;;:17;;;;;;;;;;;;;;;;;;14143:8;14112:40;;14133:8;14112:40;;;;;;;;;;;;14032:128;13969:191;:::o;21305:182::-;21374:4;21391:13;21407:12;:10;:12::i;:::-;21391:28;;21430:27;21440:5;21447:2;21451:5;21430:9;:27::i;:::-;21475:4;21468:11;;;21305:182;;;;:::o;27819:443::-;27949:1;27932:19;;:5;:19;;;27928:91;;28004:1;27975:32;;;;;;;;;;;:::i;:::-;;;;;;;;27928:91;28052:1;28033:21;;:7;:21;;;28029:92;;28106:1;28078:31;;;;;;;;;;;:::i;:::-;;;;;;;;28029:92;28161:5;28131:11;:18;28143:5;28131:18;;;;;;;;;;;;;;;:27;28150:7;28131:27;;;;;;;;;;;;;;;:35;;;;28181:9;28177:78;;;28228:7;28212:31;;28221:5;28212:31;;;28237:5;28212:31;;;;;;:::i;:::-;;;;;;;;28177:78;27819:443;;;;:::o;28554:487::-;28654:24;28681:25;28691:5;28698:7;28681:9;:25::i;:::-;28654:52;;28741:17;28721:16;:37;28717:317;;28798:5;28779:16;:24;28775:132;;;28858:7;28867:16;28885:5;28831:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;28775:132;28950:57;28959:5;28966:7;28994:5;28975:16;:24;29001:5;28950:8;:57::i;:::-;28717:317;28643:398;28554:487;;;:::o;23413:308::-;23513:1;23497:18;;:4;:18;;;23493:88;;23566:1;23539:30;;;;;;;;;;;:::i;:::-;;;;;;;;23493:88;23609:1;23595:16;;:2;:16;;;23591:88;;23664:1;23635:32;;;;;;;;;;;:::i;:::-;;;;;;;;23591:88;23689:24;23697:4;23703:2;23707:5;23689:7;:24::i;:::-;23413:308;;;:::o;24045:1135::-;24151:1;24135:18;;:4;:18;;;24131:552;;24289:5;24273:12;;:21;;;;;;;:::i;:::-;;;;;;;;24131:552;;;24327:19;24349:9;:15;24359:4;24349:15;;;;;;;;;;;;;;;;24327:37;;24397:5;24383:11;:19;24379:117;;;24455:4;24461:11;24474:5;24430:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;24379:117;24651:5;24637:11;:19;24619:9;:15;24629:4;24619:15;;;;;;;;;;;;;;;:37;;;;24312:371;24131:552;24713:1;24699:16;;:2;:16;;;24695:435;;24881:5;24865:12;;:21;;;;;;;;;;;24695:435;;;25098:5;25081:9;:13;25091:2;25081:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;24695:435;25162:2;25147:25;;25156:4;25147:25;;;25166:5;25147:25;;;;;;:::i;:::-;;;;;;;;24045:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:410;6758:7;6781:20;6799:1;6781:20;:::i;:::-;6776:25;;6815:20;6833:1;6815:20;:::i;:::-;6810:25;;6870:1;6867;6863:9;6892:30;6910:11;6892:30;:::i;:::-;6881:41;;7071:1;7062:7;7058:15;7055:1;7052:22;7032:1;7025:9;7005:83;6982:139;;7101:18;;:::i;:::-;6982:139;6766:362;6718:410;;;;:::o;7134:180::-;7182:77;7179:1;7172:88;7279:4;7276:1;7269:15;7303:4;7300:1;7293:15;7320:185;7360:1;7377:20;7395:1;7377:20;:::i;:::-;7372:25;;7411:20;7429:1;7411:20;:::i;:::-;7406:25;;7450:1;7440:35;;7455:18;;:::i;:::-;7440:35;7497:1;7494;7490:9;7485:14;;7320:185;;;;:::o;7511:194::-;7551:4;7571:20;7589:1;7571:20;:::i;:::-;7566:25;;7605:20;7623:1;7605:20;:::i;:::-;7600:25;;7649:1;7646;7642:9;7634:17;;7673:1;7667:4;7664:11;7661:37;;;7678:18;;:::i;:::-;7661:37;7511:194;;;;:::o;7711:181::-;7851:33;7847:1;7839:6;7835:14;7828:57;7711:181;:::o;7898:366::-;8040:3;8061:67;8125:2;8120:3;8061:67;:::i;:::-;8054:74;;8137:93;8226:3;8137:93;:::i;:::-;8255:2;8250:3;8246:12;8239:19;;7898:366;;;:::o;8270:419::-;8436:4;8474:2;8463:9;8459:18;8451:26;;8523:9;8517:4;8513:20;8509:1;8498:9;8494:17;8487:47;8551:131;8677:4;8551:131;:::i;:::-;8543:139;;8270:419;;;:::o;8695:442::-;8844:4;8882:2;8871:9;8867:18;8859:26;;8895:71;8963:1;8952:9;8948:17;8939:6;8895:71;:::i;:::-;8976:72;9044:2;9033:9;9029:18;9020:6;8976:72;:::i;:::-;9058;9126:2;9115:9;9111:18;9102:6;9058:72;:::i;:::-;8695:442;;;;;;:::o;9143:191::-;9183:3;9202:20;9220:1;9202:20;:::i;:::-;9197:25;;9236:20;9254:1;9236:20;:::i;:::-;9231:25;;9279:1;9276;9272:9;9265:16;;9300:3;9297:1;9294:10;9291:36;;;9307:18;;:::i;:::-;9291:36;9143:191;;;;:::o

Swarm Source

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