ETH Price: $3,586.20 (+3.61%)
 

Overview

Max Total Supply

177,642,069 MONERO

Holders

179

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,776,000.000000000008299482 MONERO

Value
$0.00
0xC3094df7f6618C7C512bf31122A38882ce9Da773
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:
CustomToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-24
*/

// 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.0) (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;
    }
}

// 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: monero.sol

pragma solidity ^0.8.20;



/**

CharlesMansonAlexJonesBeetlejuice1776Pitbull(karen)
telegram: t.me/schrotzo
website: tickermonero.gay
twitter: https://twitter.com/monerogay
NFT: https://opensea.io/collection/schrotzo-gremlins

:~7?7??7!77?7!7??7!7???7??????7777?777!!77!77~77!!777!!!?JJ!7??JYYYJ????JJJJJJJJJ?????????????777!7?7777777!777????????77~
:!5Y?~7?YJ?YJ?7!YJ?Y5JYJY!7J55?J?Y??~7?7JYYY?!^J7?YY5?J7!?JY5PPPGPPPG555PP5555PPP55PPGPPPPPPPPPPPPPP5555YJ5PP5Y55PPPPGGGPJ
:!5Y^..~YYJY??:.:??Y5JY?^..!55?JJ5~..:7?YYYY~. .^?Y557J^..7Y55GPPPGGP5P55555Y555PPPPPPPPPPP5PPPPPGPPPPPPPPGGGGP55555PPPGG?
:!557J?!JJ^?!??Y?7?J!!JJJYJ?55!:?57??7J??~JJ!^J7!7J~?!J7Y?YJ5?~~!!77!!!77???77777!!!77?????77??777?????7??J77777777????J?~
:!55JYJ?7...^JY5P?7^..!J555JY!..:YJ5YYJ!..:??7YY!7:..^Y555Y?5?.                                                          .
:!YY!!???!Y?7?J!J?J?Y7??Y~7?5?!J7Y??!?J??J?Y?!~7!7~J?7YY!7J75J~~~~~~~^^~~~~~~~~~~~~~^^^^::::.....:::::::^^::::::.::~~~~~^^
:!Y~ .:7J55YJ!:..^YY5JY7:  !55?YYY!..:JJ5Y5Y~...~?!5Y7J:..^75PGGGP5PGGGP5PPPGGGGPPPPGPPGPPPPPPPPPPPPP55PPPP555Y5PPPPPPGGG?
:!J!!Y!7JJ~JJ!!J7~JY!7J?!J7?55!?JY?7??YJ?~JJ!7J7!?!!7!Y!????55PP55YY5PPPPP55GPP55PPPPGGPPGPPPPPPPPPPP55555PP55PPPGPP5PGPP7
:!JY?5J7~. ^?755Y7?^.:7J5YYYY! .:J55Y5Y!...7YJJ5?7.  ^Y?YY5?5555P5Y5PPPPGPGGPPPPGGGPPGGGPGP55555PPGGPP5JJYPPPPGGGGGGPPPPP?
:!JY7!??!?77Y7J~?!J??!JJ5!?J5?777YY7~JYY7Y!?J7^JJY~?!!Y!~~Y?5?^^^^:^~^~~^^^^^^^^^~~~~~~~~~~~~~~~~~^^~~^^^^^^^^^~~^^^^^:::^
:!J7..^?7575Y^. :!J5YJ5J~ .~55YYYY7. :Y555JY!...J57557J...!J5!.                                                          .
:!YJ7J7J77:JJ~7J?7JJ~7Y57?775Y!?JJY7?7Y5?~!J?7!7J5!!Y?5!7?JJ57^:^!7!~~^~~~^^~!77!!~^~~~~~~~~~!~~~^^^^^~^::::^~~~^^^~~~~~~^
:!55J5JJ~  :J7YJ5J7. .?5Y55YY^ .^J55YYY7. .?5J7Y5J: :?5??J5?YYPPPGGGGGGPPP55PPGGGGPPPP555P55PGGGGPPPPPPGGPPPPGPPPGGGGGG5P5
:!55!7JY77!?Y!?^JJ?!J?JYJ7?JY!7?!J5J!JYY!7~YY?^J5Y~?!J5?^757YYPGPPP55YYYYY555PGGGGPPPP5P5555PGGPPPPP5PPGGGPPPP5555PPPPPPP5
:!Y!..~JY57YY~. :7?JY5YJ^ .~YYYYJ?7. :J5JYJ5J: :YY?JY5J^ .^!YJ?JJJJYJJJJYYJJJ?JJJ777777??JJJJJJYYY555YJYYYJJJJJJJYYYY5555J
:~5Y~?75YY~JJ~~!?J7?^?J5!?77YJ?~J??7?!YY7!?YY!7?YY7~7Y5~!!!7YJ:                                  .....           .    ....
:~55?5Y5?: :?J?!YY~...7YJYYJJ^. ^?5PJ5Y7..^YYJ?P5J^..75J?JY?5J:...............::......            ....  ..::..           .
:~557!Y5?~~!JY7^?J~~Y??Y?~7JY~J!~?5J~JYJ!J7YY?~Y5Y!!JJ5J!7JJ5555555555YJJYY5555YY5P5P5YYYJJ???77??YYYYJJ5555YJ?JJYJJ?JYY5J
:~5!..^YJY75Y!. :7!?YYYJ:  ^Y?5JJ?7. :?5JYY57: :?Y??YJ?~ .~J55GGGPP5PGGGGGPGGGPPGGGPPPGGGGGPPPPPPGGPPPPPGGPPPPPGGGGGPPGGPY
:~P7!?75?Y?55J!!??7?YYYJ^7!~Y?5?JJ77?7J5JYJ5?~?7JJ?JY?Y?7??J55PP5P555PP55P5555PPPPP5PPGP5PPPGGPPGGPGGGGGGPPPPPGGPGGGGGG5YJ
:~?77???!!!777!!7!~77!7!~!777?7777??????7?7?7!???7~7?77!777!77JJJJ?JYYYJYYJJ??JJJYJJYYYYYYY5YYYYYYJYYYJJ???JJYYYYYYYJJJJJ7
::.                                                           ..........                                                 :
::        .       .....:::.....                                                                .....              .......:
:!?JJJJJJJJJJJJJJY5YJJYJ??JYY5YY55YYYYYYJJJJ???J?77???JJJJJJ??????JJJJJJJJJJ???JJJJYJJ?????JJJYYYJJJJJ?JJJJYJJJJJYYY555Y?7
:!5PGGGPP5YYY5PGGGGGGGPPPPPPPPPGGGPPPPPPPGGGGGGGPPPPGGGGGGPPPPPPPGGGGGGPPPPPP5PPPPP55PPGGGGGGPPPPPPPPPPPPPPPPPPPPPPPGGPP57
:^YP5PPGGPP5YY5GGGGGP55P5555PPP555555PPP5PPPPPPGPPP5555PPPPPPPPGGGP5PPPPPPPGGPPGGGGP5PPPPPPPPP55555PP55PPPGGGPPPPPPPPPPP5!
:^^!!!!7?77??77!!!7?????777777!!~~^^^~~~~!!~~~~~~~~~~~~~^^^^^^^^^^^^^^~~~~~~~!!!!!!!!!^:::^^^^^^^^^^~~~~~!!!!77?7777!!!!~~
::                                                                                                                       .
::.............. .::::::::::::.............                         ......       .......  ..........       .......::::::..
:!JY555YYYYYYY5555P5YYYYY55PPPPPPPPP55555YYYJ?JYYJJJJJJJJYYJJ?????????7777???77???JYYYYJJJYYY5555YYJJJJJYY555YYYY555PPPYJ7
:!5PGGGGGGPPPPGPPPPPPPPPPPP5Y5555555Y5PPPPPPGP55PGGGGGGGGPPPP55PPPPGGGGGPP555555555555555PPP55YJYPPPPGGGGGGGGPPPPPPPPPP557
^~Y5555PPPPPPPPPPGGP555PP55YY5P5YJ??JYYY555555555PPGGGPPPPPGGPPPPPP5P5PPPPPPGPGPGGPPP5555555PP555PPPPPPPGGGGGPPPPPPP555P5!
^^^^~^^~!!!!!!~~^^^~~~~~^^^^^^^~~^::!!!!777!!!~~~~~~~~~~~~~~!~^^~~~~~!!!~~~~~~~~!!!!!!~~~~~~!!!!!~~~!!!!!~~~~!!!!!!!^^~~^^
::.                                                                                                                      :
:::::..:::^^::::.:^^^^^^~~^^^^^^^^:::::::.....::::........  .........................:::::::::::::::.. ....::::::^^^^^^^.:
^J5PPPP555YYYY5PPPGP555555PPPPPPPPPPPPP55555YY555555P5YYYY5555YYYYYYYYYYY555555555PPPPPPPPPPPPPPP555YYY555PPP55PPPPPPPPPJ7
:~5PPGPPP55555PGPPPPPGPPPGGPPPGGGPP55Y5555555555PPPPGGGGGGGGGP5555PPPPPPPPPGGGGPPP5555555555PPPPGPPPPPPPPPPPPPPP555PPPPPP7
^:J555555YYY5555PPP5YYPP5555P555555555PPPPPPPPPPP5555555Y55YYYYYYY55555PPPPPP555555555555555PPPPP55P5555PPPPP5555555P55P57
::~!~~~~~~~~~~~^^^^^^^!!!!!!!!~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^~~~~~~~~~~~~~~~~~~~~~~~~~^^^~~~~~~~~~~~~!!~^

*/
contract CustomToken is ERC20 {
    address public owner;
    address public taxAddress; // Address where taxes will be sent
    mapping(address => bool) public blacklist;
    mapping(address => bool) public antiWhaleWhitelist;
    uint256 public taxPercentage;
    uint256 public whaleLimit; // Will be set to 1% of total supply in the constructor
    address public uniswapPair; // Address of the Uniswap pair for this token
    bool public whaleLimitActive = true; // Flag to check if whale limit is active

constructor() ERC20("CharlesMansonAlexJonesBeetlejuice1776Pitbull(karen)", "MONERO") {
    owner = msg.sender;
    // Mint the specified total supply
    _mint(msg.sender, 177642069 * 10**18); // 177,642,069 tokens with 18 decimals
    whaleLimit = totalSupply() / 100; // Set whaleLimit to 1% of total supply
    // Set initial values for taxPercentage
}

    modifier onlyOwner() {
        require(msg.sender == owner, "Not the contract owner");
        _;
    }

    function renounceOwnership() external onlyOwner {
        owner = address(0);
    }

    function setTaxAddress(address _taxAddress) external onlyOwner {
        taxAddress = _taxAddress;
    }

    function setUniswapPair(address _pair) external onlyOwner {
        uniswapPair = _pair;
    }

    function addToBlacklist(address _address) external onlyOwner {
        blacklist[_address] = true;
    }

    function removeFromBlacklist(address _address) external onlyOwner {
        blacklist[_address] = false;
    }

    function addToWhitelist(address _address) external onlyOwner {
        antiWhaleWhitelist[_address] = true;
    }

    function removeFromWhitelist(address _address) external onlyOwner {
        antiWhaleWhitelist[_address] = false;
    }

    function setWhaleLimit(uint256 _limit) external onlyOwner {
        whaleLimit = _limit;
    }

    function setTaxPercentage(uint256 _percentage) external onlyOwner {
        taxPercentage = _percentage;
    }

    function turnOffWhaleLimit() external onlyOwner {
        whaleLimit = totalSupply();
        whaleLimitActive = false;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(!blacklist[msg.sender], "You are blacklisted");
        if (whaleLimitActive) {
            require(balanceOf(recipient) + amount <= whaleLimit || antiWhaleWhitelist[recipient], "Recipient would exceed the whale limit");
        }

        uint256 tax = 0;
        if ((msg.sender == uniswapPair || recipient == uniswapPair) && !antiWhaleWhitelist[msg.sender] && !antiWhaleWhitelist[recipient]) {
            // Apply tax only if the transfer involves the Uniswap pair and neither the sender nor recipient is whitelisted
            tax = (amount * taxPercentage) / 100;
            super.transfer(taxAddress, tax); // Send tax to the specified tax address
        }

        super.transfer(recipient, amount - tax);
        return true;
    }

    // YOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"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":"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":"_address","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"","type":"address"}],"name":"antiWhaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"}],"name":"setTaxAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWhaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"turnOffWhaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whaleLimitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600b805460ff60a01b1916600160a01b17905534801562000023575f80fd5b5060405180606001604052806033815260200162001262603391396040805180820190915260068152654d4f4e45524f60d01b60208201526003620000698382620002d7565b506004620000788282620002d7565b5050600580546001600160a01b03191633908117909155620000a791506a92f12bdb52b8f0bc340000620000c8565b6064620000b360025490565b620000bf91906200039f565b600a55620003e5565b6001600160a01b038216620000f75760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620001045f838362000108565b5050565b6001600160a01b03831662000136578060025f8282546200012a9190620003bf565b90915550620001a89050565b6001600160a01b0383165f90815260208190526040902054818110156200018a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ee565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620001c657600280548290039055620001e4565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022a91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200026057607f821691505b6020821081036200027f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002d2575f81815260208120601f850160051c81016020861015620002ad5750805b601f850160051c820191505b81811015620002ce57828155600101620002b9565b5050505b505050565b81516001600160401b03811115620002f357620002f362000237565b6200030b816200030484546200024b565b8462000285565b602080601f83116001811462000341575f8415620003295750858301515b5f19600386901b1c1916600185901b178555620002ce565b5f85815260208120601f198616915b82811015620003715788860151825594840194600190910190840162000350565b50858210156200038f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620003ba57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620003df57634e487b7160e01b5f52601160045260245ffd5b92915050565b610e6f80620003f35f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c8063715018a6116100f3578063b30a392211610093578063d5aed6bf1161006e578063d5aed6bf1461037a578063dd62ed3e1461038d578063e43252d7146103c5578063f9f92be4146103d8575f80fd5b8063b30a39221461034b578063b7bda68f14610354578063c816841b14610367575f80fd5b806395d89b41116100ce57806395d89b4114610314578063a1883d261461031c578063a9059cbb1461032f578063ae7b6d1614610342575f80fd5b8063715018a6146102ce5780638ab1d681146102d65780638da5cb5b146102e9575f80fd5b8063350b93791161015e578063537df3b611610139578063537df3b61461025e5780636332a99b14610271578063699abb3c1461029357806370a08231146102a6575f80fd5b8063350b93791461022457806344337ea11461023757806346da5db01461024a575f80fd5b806306fdde03146101a5578063095ea7b3146101c357806318160ddd146101e65780632052def4146101f857806323b872dd14610202578063313ce56714610215575b5f80fd5b6101ad6103fa565b6040516101ba9190610c32565b60405180910390f35b6101d66101d1366004610c98565b61048a565b60405190151581526020016101ba565b6002545b6040519081526020016101ba565b6102006104a3565b005b6101d6610210366004610cc0565b6104eb565b604051601281526020016101ba565b610200610232366004610cf9565b61050e565b610200610245366004610d10565b61053d565b600b546101d690600160a01b900460ff1681565b61020061026c366004610d10565b61058a565b6101d661027f366004610d10565b60086020525f908152604090205460ff1681565b6102006102a1366004610cf9565b6105d4565b6101ea6102b4366004610d10565b6001600160a01b03165f9081526020819052604090205490565b610200610603565b6102006102e4366004610d10565b61063f565b6005546102fc906001600160a01b031681565b6040516001600160a01b0390911681526020016101ba565b6101ad610689565b61020061032a366004610d10565b610698565b6101d661033d366004610c98565b6106e4565b6101ea60095481565b6101ea600a5481565b6006546102fc906001600160a01b031681565b600b546102fc906001600160a01b031681565b610200610388366004610d10565b6108aa565b6101ea61039b366004610d30565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102006103d3366004610d10565b6108f6565b6101d66103e6366004610d10565b60076020525f908152604090205460ff1681565b60606003805461040990610d61565b80601f016020809104026020016040519081016040528092919081815260200182805461043590610d61565b80156104805780601f1061045757610100808354040283529160200191610480565b820191905f5260205f20905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b5f33610497818585610943565b60019150505b92915050565b6005546001600160a01b031633146104d65760405162461bcd60e51b81526004016104cd90610d99565b60405180910390fd5b600254600a55600b805460ff60a01b19169055565b5f336104f8858285610955565b6105038585856109d0565b506001949350505050565b6005546001600160a01b031633146105385760405162461bcd60e51b81526004016104cd90610d99565b600a55565b6005546001600160a01b031633146105675760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b6005546001600160a01b031633146105b45760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600760205260409020805460ff19169055565b6005546001600160a01b031633146105fe5760405162461bcd60e51b81526004016104cd90610d99565b600955565b6005546001600160a01b0316331461062d5760405162461bcd60e51b81526004016104cd90610d99565b600580546001600160a01b0319169055565b6005546001600160a01b031633146106695760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600860205260409020805460ff19169055565b60606004805461040990610d61565b6005546001600160a01b031633146106c25760405162461bcd60e51b81526004016104cd90610d99565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526007602052604081205460ff16156107395760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b60448201526064016104cd565b600b54600160a01b900460ff16156107f657600a548261076d856001600160a01b03165f9081526020819052604090205490565b6107779190610ddd565b11158061079b57506001600160a01b0383165f9081526008602052604090205460ff165b6107f65760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b60648201526084016104cd565b600b545f906001600160a01b031633148061081e5750600b546001600160a01b038581169116145b80156108395750335f9081526008602052604090205460ff16155b801561085d57506001600160a01b0384165f9081526008602052604090205460ff16155b15610897576064600954846108729190610df0565b61087c9190610e07565b600654909150610895906001600160a01b031682610a2d565b505b610503846108a58386610e26565b610a2d565b6005546001600160a01b031633146108d45760405162461bcd60e51b81526004016104cd90610d99565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109205760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6109508383836001610a3a565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109ca57818110156109bc57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104cd565b6109ca84848484035f610a3a565b50505050565b6001600160a01b0383166109f957604051634b637e8f60e11b81525f60048201526024016104cd565b6001600160a01b038216610a225760405163ec442f0560e01b81525f60048201526024016104cd565b610950838383610b0c565b5f336104978185856109d0565b6001600160a01b038416610a635760405163e602df0560e01b81525f60048201526024016104cd565b6001600160a01b038316610a8c57604051634a1406b160e11b81525f60048201526024016104cd565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109ca57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610afe91815260200190565b60405180910390a350505050565b6001600160a01b038316610b36578060025f828254610b2b9190610ddd565b90915550610ba69050565b6001600160a01b0383165f9081526020819052604090205481811015610b885760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104cd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610bc257600280548290039055610be0565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c2591815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610c5d57858101830151858201604001528201610c41565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c93575f80fd5b919050565b5f8060408385031215610ca9575f80fd5b610cb283610c7d565b946020939093013593505050565b5f805f60608486031215610cd2575f80fd5b610cdb84610c7d565b9250610ce960208501610c7d565b9150604084013590509250925092565b5f60208284031215610d09575f80fd5b5035919050565b5f60208284031215610d20575f80fd5b610d2982610c7d565b9392505050565b5f8060408385031215610d41575f80fd5b610d4a83610c7d565b9150610d5860208401610c7d565b90509250929050565b600181811c90821680610d7557607f821691505b602082108103610d9357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561049d5761049d610dc9565b808202811582820484141761049d5761049d610dc9565b5f82610e2157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561049d5761049d610dc956fea2646970667358221220414b2bf066f92915d7e598fe1c7329706a6848d7a940d2644161f82ce3ac054b64736f6c63430008140033436861726c65734d616e736f6e416c65784a6f6e6573426565746c656a756963653137373650697462756c6c286b6172656e29

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c8063715018a6116100f3578063b30a392211610093578063d5aed6bf1161006e578063d5aed6bf1461037a578063dd62ed3e1461038d578063e43252d7146103c5578063f9f92be4146103d8575f80fd5b8063b30a39221461034b578063b7bda68f14610354578063c816841b14610367575f80fd5b806395d89b41116100ce57806395d89b4114610314578063a1883d261461031c578063a9059cbb1461032f578063ae7b6d1614610342575f80fd5b8063715018a6146102ce5780638ab1d681146102d65780638da5cb5b146102e9575f80fd5b8063350b93791161015e578063537df3b611610139578063537df3b61461025e5780636332a99b14610271578063699abb3c1461029357806370a08231146102a6575f80fd5b8063350b93791461022457806344337ea11461023757806346da5db01461024a575f80fd5b806306fdde03146101a5578063095ea7b3146101c357806318160ddd146101e65780632052def4146101f857806323b872dd14610202578063313ce56714610215575b5f80fd5b6101ad6103fa565b6040516101ba9190610c32565b60405180910390f35b6101d66101d1366004610c98565b61048a565b60405190151581526020016101ba565b6002545b6040519081526020016101ba565b6102006104a3565b005b6101d6610210366004610cc0565b6104eb565b604051601281526020016101ba565b610200610232366004610cf9565b61050e565b610200610245366004610d10565b61053d565b600b546101d690600160a01b900460ff1681565b61020061026c366004610d10565b61058a565b6101d661027f366004610d10565b60086020525f908152604090205460ff1681565b6102006102a1366004610cf9565b6105d4565b6101ea6102b4366004610d10565b6001600160a01b03165f9081526020819052604090205490565b610200610603565b6102006102e4366004610d10565b61063f565b6005546102fc906001600160a01b031681565b6040516001600160a01b0390911681526020016101ba565b6101ad610689565b61020061032a366004610d10565b610698565b6101d661033d366004610c98565b6106e4565b6101ea60095481565b6101ea600a5481565b6006546102fc906001600160a01b031681565b600b546102fc906001600160a01b031681565b610200610388366004610d10565b6108aa565b6101ea61039b366004610d30565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102006103d3366004610d10565b6108f6565b6101d66103e6366004610d10565b60076020525f908152604090205460ff1681565b60606003805461040990610d61565b80601f016020809104026020016040519081016040528092919081815260200182805461043590610d61565b80156104805780601f1061045757610100808354040283529160200191610480565b820191905f5260205f20905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b5f33610497818585610943565b60019150505b92915050565b6005546001600160a01b031633146104d65760405162461bcd60e51b81526004016104cd90610d99565b60405180910390fd5b600254600a55600b805460ff60a01b19169055565b5f336104f8858285610955565b6105038585856109d0565b506001949350505050565b6005546001600160a01b031633146105385760405162461bcd60e51b81526004016104cd90610d99565b600a55565b6005546001600160a01b031633146105675760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600760205260409020805460ff19166001179055565b6005546001600160a01b031633146105b45760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600760205260409020805460ff19169055565b6005546001600160a01b031633146105fe5760405162461bcd60e51b81526004016104cd90610d99565b600955565b6005546001600160a01b0316331461062d5760405162461bcd60e51b81526004016104cd90610d99565b600580546001600160a01b0319169055565b6005546001600160a01b031633146106695760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600860205260409020805460ff19169055565b60606004805461040990610d61565b6005546001600160a01b031633146106c25760405162461bcd60e51b81526004016104cd90610d99565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526007602052604081205460ff16156107395760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b60448201526064016104cd565b600b54600160a01b900460ff16156107f657600a548261076d856001600160a01b03165f9081526020819052604090205490565b6107779190610ddd565b11158061079b57506001600160a01b0383165f9081526008602052604090205460ff165b6107f65760405162461bcd60e51b815260206004820152602660248201527f526563697069656e7420776f756c642065786365656420746865207768616c65604482015265081b1a5b5a5d60d21b60648201526084016104cd565b600b545f906001600160a01b031633148061081e5750600b546001600160a01b038581169116145b80156108395750335f9081526008602052604090205460ff16155b801561085d57506001600160a01b0384165f9081526008602052604090205460ff16155b15610897576064600954846108729190610df0565b61087c9190610e07565b600654909150610895906001600160a01b031682610a2d565b505b610503846108a58386610e26565b610a2d565b6005546001600160a01b031633146108d45760405162461bcd60e51b81526004016104cd90610d99565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109205760405162461bcd60e51b81526004016104cd90610d99565b6001600160a01b03165f908152600860205260409020805460ff19166001179055565b6109508383836001610a3a565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146109ca57818110156109bc57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104cd565b6109ca84848484035f610a3a565b50505050565b6001600160a01b0383166109f957604051634b637e8f60e11b81525f60048201526024016104cd565b6001600160a01b038216610a225760405163ec442f0560e01b81525f60048201526024016104cd565b610950838383610b0c565b5f336104978185856109d0565b6001600160a01b038416610a635760405163e602df0560e01b81525f60048201526024016104cd565b6001600160a01b038316610a8c57604051634a1406b160e11b81525f60048201526024016104cd565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109ca57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610afe91815260200190565b60405180910390a350505050565b6001600160a01b038316610b36578060025f828254610b2b9190610ddd565b90915550610ba69050565b6001600160a01b0383165f9081526020819052604090205481811015610b885760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104cd565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610bc257600280548290039055610be0565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c2591815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610c5d57858101830151858201604001528201610c41565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c93575f80fd5b919050565b5f8060408385031215610ca9575f80fd5b610cb283610c7d565b946020939093013593505050565b5f805f60608486031215610cd2575f80fd5b610cdb84610c7d565b9250610ce960208501610c7d565b9150604084013590509250925092565b5f60208284031215610d09575f80fd5b5035919050565b5f60208284031215610d20575f80fd5b610d2982610c7d565b9392505050565b5f8060408385031215610d41575f80fd5b610d4a83610c7d565b9150610d5860208401610c7d565b90509250929050565b600181811c90821680610d7557607f821691505b602082108103610d9357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252601690820152752737ba103a34329031b7b73a3930b1ba1037bbb732b960511b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561049d5761049d610dc9565b808202811582820484141761049d5761049d610dc9565b5f82610e2157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561049d5761049d610dc956fea2646970667358221220414b2bf066f92915d7e598fe1c7329706a6848d7a940d2644161f82ce3ac054b64736f6c63430008140033

Deployed Bytecode Sourcemap

27625:3103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15483:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15483:190:0;1004:187:1;14292:99:0;14371:12;;14292:99;;;1342:25:1;;;1330:2;1315:18;14292:99:0;1196:177:1;29650:128:0;;;:::i;:::-;;16251:249;;;;;;:::i;:::-;;:::i;14143:84::-;;;14217:2;1853:36:1;;1841:2;1826:18;14143:84:0;1711:184:1;29426:96:0;;;;;;:::i;:::-;;:::i;28940:106::-;;;;;;:::i;:::-;;:::i;28064:35::-;;;;;-1:-1:-1;;;28064:35:0;;;;;;29054:112;;;;;;:::i;:::-;;:::i;27805:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29530:112;;;;;;:::i;:::-;;:::i;14454:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14546:18:0;14519:7;14546:18;;;;;;;;;;;;14454:118;28629:85;;;:::i;29297:121::-;;;;;;:::i;:::-;;:::i;27662:20::-;;;;;-1:-1:-1;;;;;27662:20:0;;;;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;27662:20:0;2276:203:1;13400:95:0;;;:::i;28722:106::-;;;;;;:::i;:::-;;:::i;29786:860::-;;;;;;:::i;:::-;;:::i;27862:28::-;;;;;;27897:25;;;;;;27689;;;;;-1:-1:-1;;;;;27689:25:0;;;27985:26;;;;;-1:-1:-1;;;;;27985:26:0;;;28836:96;;;;;;:::i;:::-;;:::i;15022:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15129:18:0;;;15102:7;15129:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15022:142;29174:115;;;;;;:::i;:::-;;:::i;27757:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13190:91;13235:13;13268:5;13261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;:::o;15483:190::-;15556:4;7505:10;15612:31;7505:10;15628:7;15637:5;15612:8;:31::i;:::-;15661:4;15654:11;;;15483:190;;;;;:::o;29650:128::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;;;;;;;;;14371:12;;29709:10:::1;:26:::0;29746:16:::1;:24:::0;;-1:-1:-1;;;;29746:24:0::1;::::0;;29650:128::o;16251:249::-;16338:4;7505:10;16396:37;16412:4;7505:10;16427:5;16396:15;:37::i;:::-;16444:26;16454:4;16460:2;16464:5;16444:9;:26::i;:::-;-1:-1:-1;16488:4:0;;16251:249;-1:-1:-1;;;;16251:249:0:o;29426:96::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;29495:10:::1;:19:::0;29426:96::o;28940:106::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29012:19:0::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;29012:26:0::1;29034:4;29012:26;::::0;;28940:106::o;29054:112::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29131:19:0::1;29153:5;29131:19:::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;29131:27:0::1;::::0;;29054:112::o;29530:::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;29607:13:::1;:27:::0;29530:112::o;28629:85::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;28688:5:::1;:18:::0;;-1:-1:-1;;;;;;28688:18:0::1;::::0;;28629:85::o;29297:121::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29374:28:0::1;29405:5;29374:28:::0;;;:18:::1;:28;::::0;;;;:36;;-1:-1:-1;;29374:36:0::1;::::0;;29297:121::o;13400:95::-;13447:13;13480:7;13473:14;;;;;:::i;28722:106::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;28796:10:::1;:24:::0;;-1:-1:-1;;;;;;28796:24:0::1;-1:-1:-1::0;;;;;28796:24:0;;;::::1;::::0;;;::::1;::::0;;28722:106::o;29786:860::-;29900:10;29864:4;29890:21;;;:9;:21;;;;;;;;29889:22;29881:54;;;;-1:-1:-1;;;29881:54:0;;3687:2:1;29881:54:0;;;3669:21:1;3726:2;3706:18;;;3699:30;-1:-1:-1;;;3745:18:1;;;3738:49;3804:18;;29881:54:0;3485:343:1;29881:54:0;29950:16;;-1:-1:-1;;;29950:16:0;;;;29946:176;;;30024:10;;30014:6;29991:20;30001:9;-1:-1:-1;;;;;14546:18:0;14519:7;14546:18;;;;;;;;;;;;14454:118;29991:20;:29;;;;:::i;:::-;:43;;:76;;;-1:-1:-1;;;;;;30038:29:0;;;;;;:18;:29;;;;;;;;29991:76;29983:127;;;;-1:-1:-1;;;29983:127:0;;4297:2:1;29983:127:0;;;4279:21:1;4336:2;4316:18;;;4309:30;4375:34;4355:18;;;4348:62;-1:-1:-1;;;4426:18:1;;;4419:36;4472:19;;29983:127:0;4095:402:1;29983:127:0;30179:11;;30134;;-1:-1:-1;;;;;30179:11:0;30165:10;:25;;:53;;-1:-1:-1;30207:11:0;;-1:-1:-1;;;;;30194:24:0;;;30207:11;;30194:24;30165:53;30164:90;;;;-1:-1:-1;30243:10:0;30224:30;;;;:18;:30;;;;;;;;30223:31;30164:90;:124;;;;-1:-1:-1;;;;;;30259:29:0;;;;;;:18;:29;;;;;;;;30258:30;30164:124;30160:405;;;30463:3;30446:13;;30437:6;:22;;;;:::i;:::-;30436:30;;;;:::i;:::-;30496:10;;30430:36;;-1:-1:-1;30481:31:0;;-1:-1:-1;;;;;30496:10:0;30430:36;30481:14;:31::i;:::-;;30160:405;30577:39;30592:9;30603:12;30612:3;30603:6;:12;:::i;:::-;30577:14;:39::i;28836:96::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;28905:11:::1;:19:::0;;-1:-1:-1;;;;;;28905:19:0::1;-1:-1:-1::0;;;;;28905:19:0;;;::::1;::::0;;;::::1;::::0;;28836:96::o;29174:115::-;28569:5;;-1:-1:-1;;;;;28569:5:0;28555:10;:19;28547:54;;;;-1:-1:-1;;;28547:54:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29246:28:0::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;29246:35:0::1;29277:4;29246:35;::::0;;29174:115::o;20310:130::-;20395:37;20404:5;20411:7;20420:5;20427:4;20395:8;:37::i;:::-;20310:130;;;:::o;22026:487::-;-1:-1:-1;;;;;15129:18:0;;;22126:24;15129:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22193:37:0;;22189:317;;22270:5;22251:16;:24;22247:132;;;22303:60;;-1:-1:-1;;;22303:60:0;;-1:-1:-1;;;;;5250:32:1;;22303:60:0;;;5232:51:1;5299:18;;;5292:34;;;5342:18;;;5335:34;;;5205:18;;22303:60:0;5030:345:1;22247:132:0;22422:57;22431:5;22438:7;22466:5;22447:16;:24;22473:5;22422:8;:57::i;:::-;22115:398;22026:487;;;:::o;16885:308::-;-1:-1:-1;;;;;16969:18:0;;16965:88;;17011:30;;-1:-1:-1;;;17011:30:0;;17038:1;17011:30;;;2422:51:1;2395:18;;17011:30:0;2276:203:1;16965:88:0;-1:-1:-1;;;;;17067:16:0;;17063:88;;17107:32;;-1:-1:-1;;;17107:32:0;;17136:1;17107:32;;;2422:51:1;2395:18;;17107:32:0;2276:203:1;17063:88:0;17161:24;17169:4;17175:2;17179:5;17161:7;:24::i;14777:182::-;14846:4;7505:10;14902:27;7505:10;14919:2;14923:5;14902:9;:27::i;21291:443::-;-1:-1:-1;;;;;21404:19:0;;21400:91;;21447:32;;-1:-1:-1;;;21447:32:0;;21476:1;21447:32;;;2422:51:1;2395:18;;21447:32:0;2276:203:1;21400:91:0;-1:-1:-1;;;;;21505:21:0;;21501:92;;21550:31;;-1:-1:-1;;;21550:31:0;;21578:1;21550:31;;;2422:51:1;2395:18;;21550:31:0;2276:203:1;21501:92:0;-1:-1:-1;;;;;21603:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21649:78;;;;21700:7;-1:-1:-1;;;;;21684:31:0;21693:5;-1:-1:-1;;;;;21684:31:0;;21709:5;21684:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;21684:31:0;;;;;;;;21291:443;;;;:::o;17517:1135::-;-1:-1:-1;;;;;17607:18:0;;17603:552;;17761:5;17745:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17603:552:0;;-1:-1:-1;17603:552:0;;-1:-1:-1;;;;;17821:15:0;;17799:19;17821:15;;;;;;;;;;;17855:19;;;17851:117;;;17902:50;;-1:-1:-1;;;17902:50:0;;-1:-1:-1;;;;;5250:32:1;;17902:50:0;;;5232:51:1;5299:18;;;5292:34;;;5342:18;;;5335:34;;;5205:18;;17902:50:0;5030:345:1;17851:117:0;-1:-1:-1;;;;;18091:15:0;;:9;:15;;;;;;;;;;18109:19;;;;18091:37;;17603:552;-1:-1:-1;;;;;18171:16:0;;18167:435;;18337:12;:21;;;;;;;18167:435;;;-1:-1:-1;;;;;18553:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18167:435;18634:2;-1:-1:-1;;;;;18619:25:0;18628:4;-1:-1:-1;;;;;18619:25:0;;18638:5;18619:25;;;;1342::1;;1330:2;1315:18;;1196:177;18619:25:0;;;;;;;;17517:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:346::-;3336:2;3318:21;;;3375:2;3355:18;;;3348:30;-1:-1:-1;;;3409:2:1;3394:18;;3387:52;3471:2;3456:18;;3134:346::o;3833:127::-;3894:10;3889:3;3885:20;3882:1;3875:31;3925:4;3922:1;3915:15;3949:4;3946:1;3939:15;3965:125;4030:9;;;4051:10;;;4048:36;;;4064:18;;:::i;4502:168::-;4575:9;;;4606;;4623:15;;;4617:22;;4603:37;4593:71;;4644:18;;:::i;4675:217::-;4715:1;4741;4731:132;;4785:10;4780:3;4776:20;4773:1;4766:31;4820:4;4817:1;4810:15;4848:4;4845:1;4838:15;4731:132;-1:-1:-1;4877:9:1;;4675:217::o;4897:128::-;4964:9;;;4985:11;;;4982:37;;;4999:18;;:::i

Swarm Source

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