ETH Price: $3,950.60 (+1.04%)

Token

ERC-20: GucciVanGogh (GOGH)
 

Overview

Max Total Supply

1,000,000,000,000,000 GOGH

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,863,897,875,393.772349763139362867 GOGH

Value
$0.00
0x68f806847be842e310f91c66dafee2f186b667ab
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:
GucciVanGogh

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : GucciVanGogh.sol
/*                                                                                                                                                              
                                                                                                                                                               
  .g8"""bgd  `7MMF'   `7MF'  .g8"""bgd   .g8"""bgd `7MMF'    `7MMF'   `7MF'      db      `7MN.   `7MF'      .g8"""bgd    .g8""8q.     .g8"""bgd  `7MMF'  `7MMF'
.dP'     `M    MM       M  .dP'     `M .dP'     `M   MM        `MA     ,V       ;MM:       MMN.    M      .dP'     `M  .dP'    `YM. .dP'     `M    MM      MM  
dM'       `    MM       M  dM'       ` dM'       `   MM         VM:   ,V       ,V^MM.      M YMb   M      dM'       `  dM'      `MM dM'       `    MM      MM  
MM             MM       M  MM          MM            MM          MM.  M'      ,M  `MM      M  `MN. M      MM           MM        MM MM             MMmmmmmmMM  
MM.    `7MMF'  MM       M  MM.         MM.           MM          `MM A'       AbmmmqMA     M   `MM.M      MM.    `7MMF'MM.      ,MP MM.    `7MMF'  MM      MM  
`Mb.     MM    YM.     ,M  `Mb.     ,' `Mb.     ,'   MM           :MM;       A'     VML    M     YMM      `Mb.     MM  `Mb.    ,dP' `Mb.     MM    MM      MM  
  `"bmmmdPY     `bmmmmd"'    `"bmmmd'    `"bmmmd'  .JMML.          VF      .AMA.   .AMMA..JML.    YM        `"bmmmdPY    `"bmmd"'     `"bmmmdPY  .JMML.  .JMML.
                                                                                                                                                                                                                                                                                                                              
*/

/**
 * Telegram: https://t.me/+P1V_t25V4DVjNGYx
 * Website: https://guccivangogh.com
 * Twitter: https://twitter.com/guccivangogh_
 *
 * GucciVanGogh revolutionizes the art world with decentralized NFT galleries and museums enhanced by VR/AR providing
 * global art access. It offers a provenance tracking system for authenticity, connects artists with patrons through NFTs for
 * funding, and streamlines art licensing and royalties via smart contracts. The platform supports interactive art projects,
 * cross-media experiences, digital art preservation, tokenized art investments, collaborative artist platforms,
 * and cultural heritage preservation, creating a multifaceted ecosystem for art engagement and preservation.
 */

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title GucciVanGogh
 * @dev This contract implements a custom ERC20 token with additional features.
 * It includes mechanisms for whitelisting addresses,
 * as well as custom rules for transferring tokens.
 * The contract is Ownable and the owner can set the state of trading,
 * add liquidity, and set the Uniswap pair and router addresses.
 * The owner can also set the whitelist status of an address.
 * These measures are in place to prevent front-running and other attacks.
 * The contract also includes custom transaction limits and holding limits.
 */
contract GucciVanGogh is ERC20, Ownable(0xC3C97156f10CC43917289Aa1BC63b4aa67F9a97B) {
    /**
     * @dev Constants for token supply and transaction limits.
     * TOTAL_SUPPLY is the total supply of tokens.
     * MAX_TX_LIMIT is the maximum amount of tokens that can be transferred in a single transaction.
     * MAX_HOLDING_LIMIT is the maximum amount of tokens that an address can hold.
     * These values are set in the constructor.
     * The values are public and can be accessed using their respective getter functions.
     */
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000_000_000 ether;
    uint256 private constant MAX_TX_LIMIT = TOTAL_SUPPLY / 50;
    uint256 private constant MAX_HOLDING_LIMIT = TOTAL_SUPPLY / 50;

    /**
     * @dev Mapping to keep track of whitelisted addresses.
     * Whitelisted addresses are allowed to send and receive tokens.
     * The owner address is whitelisted by default.
     * The Uniswap pair and router addresses are whitelisted by default.
     */
    mapping(address => bool) private _isWhitelisted;

    /**
     * @dev Boolean representing the state of trading.
     * _tradingStarted is set to true when trading starts.
     * _liquidityAdded is set to true when liquidity is added.
     */
    bool private _tradingStarted = false;
    bool private _liquidityAdded = false;

    // Addresses for Uniswap pair and router.
    address private _uniswapPairAddress;
    address private _uniswapRouterAddress;

    /**
     * @dev Constructor that mints tokens to the deployer and sets them as whitelisted.
     */
    constructor() ERC20("GucciVanGogh", "GOGH") {
        _mint(msg.sender, TOTAL_SUPPLY);
        _isWhitelisted[msg.sender] = true;
    }

    /**
     * @dev Function to add liquidity. Only the owner can call this function.
     */
    function addLiquidity() public onlyOwner {
        _liquidityAdded = true;
    }

    /**
     * @dev Starts trading. Requires liquidity to be already added. Only callable by the owner.
     */
    function startTrading() public onlyOwner {
        require(_liquidityAdded, "Liquidity has not been added yet");
        _tradingStarted = true;
    }

    /**
     * @dev Renounces ownership of the contract.
     * This is an irreversible operation that cannot be undone.
     * Once ownership is renounced, the contract will no longer have an owner,
     * and certain functionalities will be permanently disabled.
     * Only callable by the owner.
     * Overrides the renounceOwnership function in the Ownable contract.
     * The addresses already whitelisted will remain whitelisted.
     */
    function renounceOwnership() public override onlyOwner {
        super.renounceOwnership();
    }

    /**
     * @dev Sets the Uniswap pair address. Only callable by the owner.
     * @param uniswapPair Address of the Uniswap pair.
     */
    function setUniswapPairAddress(address uniswapPair) public onlyOwner {
        _uniswapPairAddress = uniswapPair;
    }

    /**
     * @dev Sets the Uniswap router address. Only callable by the owner.
     * @param uniswapRouter Address of the Uniswap router.
     */
    function setUniswapRouterAddress(address uniswapRouter) public onlyOwner {
        _uniswapRouterAddress = uniswapRouter;
    }

    /**
     * @dev Sets the whitelist status of an address. Only callable by the owner.
     * @param account Address to be updated.
     * @param status Boolean representing the whitelist status.
     */
    function setWhitelistStatus(address account, bool status) public onlyOwner {
        _isWhitelisted[account] = status;
    }

    /**
     * @dev Checks if an address is whitelisted.
     * @param account Address to check.
     * @return bool True if the address is whitelisted, false otherwise.
     */
    function isWhitelisted(address account) public view returns (bool) {
        return _isWhitelisted[account];
    }

    /**
     * @dev Overrides the transfer function with additional checks for whitelist
     * and transaction limits.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     * @return bool True if the transfer is successful, false otherwise.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        // Owner can trade before trading started and bypass the limit if removing liquidity
        if (msg.sender != owner()) {
            require(_tradingStarted, "Trading has not started");
        }

        if (!_isWhitelisted[recipient] && recipient != _uniswapPairAddress) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING_LIMIT, "Recipient holding exceeds limit");
        }

        return super.transfer(recipient, amount);
    }

    /**
     * @dev Overrides the transferFrom function with additional checks for whitelist
     * and transaction limits.
     * @param sender The address to transfer from.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     * @return bool True if the transfer is successful, false otherwise.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        /**
         * Owner can trade before trading started and bypass the limit if removing liquidity
         */
        if (sender != owner()) {
            require(_tradingStarted, "Trading has not started");
        }

        /**
         * Check if the recipient is whitelisted.
         * If not, check if the recipient's balance will exceed the limit.
         */
        if (!_isWhitelisted[recipient] && recipient != _uniswapPairAddress) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING_LIMIT, "Recipient holding exceeds limit");
        }

        return super.transferFrom(sender, recipient, amount);
    }

    /**
     * @dev Public getter for the MAX_TX_LIMIT
     * @return uint256 Maximum transaction limit.
     */
    function getMaxTxLimit() public pure returns (uint256) {
        return MAX_TX_LIMIT;
    }

    /**
     * @dev Public getter for the MAX_HOLDING_LIMIT
     * @return uint256 Maximum holding limit.
     */
    function getMaxHoldingLimit() public pure returns (uint256) {
        return MAX_HOLDING_LIMIT;
    }

    /**
     * @dev Public getter for the Uniswap Pair Address
     * @return address Address of the Uniswap pair.
     */
    function getUniswapPairAddress() public view returns (address) {
        return _uniswapPairAddress;
    }

    /**
     * @dev Public getter for the Uniswap Router Address
     * @return address Address of the Uniswap router.
     */
    function getUniswapRouterAddress() public view returns (address) {
        return _uniswapRouterAddress;
    }

    /**
     * @dev Getter for the trading started status
     * @return bool True if trading has started, false otherwise.
     */
    function hasTradingStarted() public view returns (bool) {
        return _tradingStarted;
    }

    /**
     * @dev Getter for the renounce ownership status
     * @return bool True if ownership has been renounced, false otherwise.
     */
    function hasOwnershipBeenRenounced() public view returns (bool) {
        return owner() == address(0);
    }

    /**
     * @dev Getter for the liquidity added status
     * @return bool True if liquidity has been added, false otherwise.
     */
    function hasLiquidityBeenAdded() public view returns (bool) {
        return _liquidityAdded;
    }

    /**
     * @dev Getter function to check if Uniswap Pair Address is whitelisted
     * @return bool True if the Uniswap Pair Address is whitelisted, false otherwise.
     */
    function isUniswapPairWhitelisted() public view returns (bool) {
        return _isWhitelisted[_uniswapPairAddress];
    }

    /**
     * @dev Getter function to check if Uniswap Router Address is whitelisted
     * @return bool True if the Uniswap Router Address is whitelisted, false otherwise.
     */
    function isUniswapRouterWhitelisted() public view returns (bool) {
        return _isWhitelisted[_uniswapRouterAddress];
    }

    /**
     * @dev Getter function to check if the owner address is whitelisted
     * @return bool True if the owner address is whitelisted, false otherwise.
     */
    function isOwnerWhitelisted() public view returns (bool) {
        return _isWhitelisted[owner()];
    }

    /**
     * @dev Getter for checking whitelist status of any address
     * @param account Address to check the whitelist status.
     * @return bool True if the address is whitelisted, false otherwise.
     */
    function checkWhitelistStatus(address account) public view returns (bool) {
        return _isWhitelisted[account];
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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 Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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 Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        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`, by transferring it to address(0).
     * 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.
     */
    function _approve(address owner, address spender, uint256 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can 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.
     *
     * Might 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 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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) {
        _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 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 5 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @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 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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;
    }
}

File 7 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
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);
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"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":[],"name":"addLiquidity","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":"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":"account","type":"address"}],"name":"checkWhitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxHoldingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getUniswapPairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasLiquidityBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasOwnershipBeenRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasTradingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOwnerWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUniswapPairWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUniswapRouterWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapPair","type":"address"}],"name":"setUniswapPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapRouter","type":"address"}],"name":"setUniswapRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526007805461ffff191690553480156200001c57600080fd5b5073c3c97156f10cc43917289aa1bc63b4aa67f9a97b6040518060400160405280600c81526020016b08eeac6c6d2acc2dc8edeced60a31b8152506040518060400160405280600481526020016308e9e8e960e31b81525081600390816200008591906200034f565b5060046200009482826200034f565b505050620000a881620000e360201b60201c565b50620000c3336d314dc6448d9338c15b0a0000000062000135565b336000908152600660205260409020805460ff1916600117905562000443565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001655760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b620001736000838362000177565b5050565b6001600160a01b038316620001a65780600260008282546200019a91906200041b565b909155506200021a9050565b6001600160a01b03831660009081526020819052604090205481811015620001fb5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200015c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620002385760028054829003905562000257565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029d91815260200190565b60405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002d557607f821691505b602082108103620002f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034a57600081815260208120601f850160051c81016020861015620003255750805b601f850160051c820191505b81811015620003465782815560010162000331565b5050505b505050565b81516001600160401b038111156200036b576200036b620002aa565b62000383816200037c8454620002c0565b84620002fc565b602080601f831160018114620003bb5760008415620003a25750858301515b600019600386901b1c1916600185901b17855562000346565b600085815260208120601f198616915b82811015620003ec57888601518255948401946001909101908401620003cb565b50858210156200040b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200043d57634e487b7160e01b600052601160045260246000fd5b92915050565b610fd880620004536000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806371b4b8fd1161010f578063bd7644b8116100a2578063dd62ed3e11610071578063dd62ed3e146103e9578063e8078d94146103fc578063f0690df214610404578063f2fde38b1461042757600080fd5b8063bd7644b8146103aa578063d336ef26146103bd578063d39ac0cb146103c5578063db15d185146103d657600080fd5b806395d89b41116100de57806395d89b411461037c578063a457c2d714610384578063a9059cbb14610397578063b0d7c7f51461037457600080fd5b806371b4b8fd1461032d5780638bbfb759146103585780638da5cb5b14610363578063959aa7581461037457600080fd5b806323b872dd11610187578063395093511161015657806339509351146102e95780633af32abf1461024057806370a08231146102fc578063715018a61461032557600080fd5b806323b872dd146102b7578063293230b8146102ca5780632b99f207146102d2578063313ce567146102da57600080fd5b8063178d4de5116101c3578063178d4de51461024057806318160ddd1461026c5780631d031e5e1461027e57806321cd3a60146102a757600080fd5b806306fdde03146101ea578063095ea7b3146102085780630c4242841461022b575b600080fd5b6101f261043a565b6040516101ff9190610dcb565b60405180910390f35b61021b610216366004610e35565b6104cc565b60405190151581526020016101ff565b61023e610239366004610e5f565b6104e6565b005b61021b61024e366004610e9b565b6001600160a01b031660009081526006602052604090205460ff1690565b6002545b6040519081526020016101ff565b6007546201000090046001600160a01b031660009081526006602052604090205460ff1661021b565b600754610100900460ff1661021b565b61021b6102c5366004610eb6565b610519565b61023e61067c565b61021b6106ea565b604051601281526020016101ff565b61021b6102f7366004610e35565b61070e565b61027061030a366004610e9b565b6001600160a01b031660009081526020819052604090205490565b61023e610730565b6007546201000090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b60075460ff1661021b565b6005546001600160a01b0316610340565b610270610742565b6101f2610762565b61021b610392366004610e35565b610771565b61021b6103a5366004610e35565b6107d3565b61023e6103b8366004610e9b565b61092f565b61021b610961565b6008546001600160a01b0316610340565b61023e6103e4366004610e9b565b61099b565b6102706103f7366004610ef2565b6109c5565b61023e6109f0565b6008546001600160a01b031660009081526006602052604090205460ff1661021b565b61023e610435366004610e9b565b610a09565b60606003805461044990610f25565b80601f016020809104026020016040519081016040528092919081815260200182805461047590610f25565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b6000336104da818585610a47565b60019150505b92915050565b6104ee610a59565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b600061052d6005546001600160a01b031690565b6001600160a01b0316846001600160a01b0316146105965760075460ff166105965760405162461bcd60e51b8152602060048201526017602482015276151c98591a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064015b60405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161580156105d357506007546001600160a01b03848116620100009092041614155b15610669576105f160326d314dc6448d9338c15b0a00000000610f5f565b82610611856001600160a01b031660009081526020819052604090205490565b61061b9190610f81565b11156106695760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420686f6c64696e672065786365656473206c696d697400604482015260640161058d565b610674848484610a86565b949350505050565b610684610a59565b600754610100900460ff166106db5760405162461bcd60e51b815260206004820181905260248201527f4c697175696469747920686173206e6f74206265656e20616464656420796574604482015260640161058d565b6007805460ff19166001179055565b6000806106ff6005546001600160a01b031690565b6001600160a01b031614905090565b6000336104da81858561072183836109c5565b61072b9190610f81565b610a47565b610738610a59565b610740610a9f565b565b600061075d60326d314dc6448d9338c15b0a00000000610f5f565b905090565b60606004805461044990610f25565b6000338161077f82866109c5565b9050838110156107bb57604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161058d565b6107c88286868403610a47565b506001949350505050565b60006107e76005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461084b5760075460ff1661084b5760405162461bcd60e51b8152602060048201526017602482015276151c98591a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161058d565b6001600160a01b03831660009081526006602052604090205460ff1615801561088857506007546001600160a01b03848116620100009092041614155b1561091e576108a660326d314dc6448d9338c15b0a00000000610f5f565b826108c6856001600160a01b031660009081526020819052604090205490565b6108d09190610f81565b111561091e5760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420686f6c64696e672065786365656473206c696d697400604482015260640161058d565b6109288383610ab1565b9392505050565b610937610a59565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000600660006109796005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205460ff16919050565b6109a3610a59565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109f8610a59565b6007805461ff001916610100179055565b610a11610a59565b6001600160a01b038116610a3b57604051631e4fbdf760e01b81526000600482015260240161058d565b610a4481610abf565b50565b610a548383836001610b11565b505050565b6005546001600160a01b031633146107405760405163118cdaa760e01b815233600482015260240161058d565b600033610a94858285610be7565b6107c8858585610c47565b610aa7610a59565b6107406000610abf565b6000336104da818585610c47565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610b3b5760405163e602df0560e01b81526000600482015260240161058d565b6001600160a01b038316610b6557604051634a1406b160e11b81526000600482015260240161058d565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610be157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bd891815260200190565b60405180910390a35b50505050565b6000610bf384846109c5565b90506000198114610be15781811015610c3857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161058d565b610be184848484036000610b11565b6001600160a01b038316610c7157604051634b637e8f60e11b81526000600482015260240161058d565b6001600160a01b038216610c9b5760405163ec442f0560e01b81526000600482015260240161058d565b610a548383836001600160a01b038316610ccc578060026000828254610cc19190610f81565b90915550610d3e9050565b6001600160a01b03831660009081526020819052604090205481811015610d1f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161058d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610d5a57600280548290039055610d79565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dbe91815260200190565b60405180910390a3505050565b600060208083528351808285015260005b81811015610df857858101830151858201604001528201610ddc565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e3057600080fd5b919050565b60008060408385031215610e4857600080fd5b610e5183610e19565b946020939093013593505050565b60008060408385031215610e7257600080fd5b610e7b83610e19565b915060208301358015158114610e9057600080fd5b809150509250929050565b600060208284031215610ead57600080fd5b61092882610e19565b600080600060608486031215610ecb57600080fd5b610ed484610e19565b9250610ee260208501610e19565b9150604084013590509250925092565b60008060408385031215610f0557600080fd5b610f0e83610e19565b9150610f1c60208401610e19565b90509250929050565b600181811c90821680610f3957607f821691505b602082108103610f5957634e487b7160e01b600052602260045260246000fd5b50919050565b600082610f7c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104e057634e487b7160e01b600052601160045260246000fdfea2646970667358221220235d16aa35f507c17ff974c7c4f9d6cd70a3ee470491f532d57899d1a377c1ad64736f6c63430008150033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806371b4b8fd1161010f578063bd7644b8116100a2578063dd62ed3e11610071578063dd62ed3e146103e9578063e8078d94146103fc578063f0690df214610404578063f2fde38b1461042757600080fd5b8063bd7644b8146103aa578063d336ef26146103bd578063d39ac0cb146103c5578063db15d185146103d657600080fd5b806395d89b41116100de57806395d89b411461037c578063a457c2d714610384578063a9059cbb14610397578063b0d7c7f51461037457600080fd5b806371b4b8fd1461032d5780638bbfb759146103585780638da5cb5b14610363578063959aa7581461037457600080fd5b806323b872dd11610187578063395093511161015657806339509351146102e95780633af32abf1461024057806370a08231146102fc578063715018a61461032557600080fd5b806323b872dd146102b7578063293230b8146102ca5780632b99f207146102d2578063313ce567146102da57600080fd5b8063178d4de5116101c3578063178d4de51461024057806318160ddd1461026c5780631d031e5e1461027e57806321cd3a60146102a757600080fd5b806306fdde03146101ea578063095ea7b3146102085780630c4242841461022b575b600080fd5b6101f261043a565b6040516101ff9190610dcb565b60405180910390f35b61021b610216366004610e35565b6104cc565b60405190151581526020016101ff565b61023e610239366004610e5f565b6104e6565b005b61021b61024e366004610e9b565b6001600160a01b031660009081526006602052604090205460ff1690565b6002545b6040519081526020016101ff565b6007546201000090046001600160a01b031660009081526006602052604090205460ff1661021b565b600754610100900460ff1661021b565b61021b6102c5366004610eb6565b610519565b61023e61067c565b61021b6106ea565b604051601281526020016101ff565b61021b6102f7366004610e35565b61070e565b61027061030a366004610e9b565b6001600160a01b031660009081526020819052604090205490565b61023e610730565b6007546201000090046001600160a01b03165b6040516001600160a01b0390911681526020016101ff565b60075460ff1661021b565b6005546001600160a01b0316610340565b610270610742565b6101f2610762565b61021b610392366004610e35565b610771565b61021b6103a5366004610e35565b6107d3565b61023e6103b8366004610e9b565b61092f565b61021b610961565b6008546001600160a01b0316610340565b61023e6103e4366004610e9b565b61099b565b6102706103f7366004610ef2565b6109c5565b61023e6109f0565b6008546001600160a01b031660009081526006602052604090205460ff1661021b565b61023e610435366004610e9b565b610a09565b60606003805461044990610f25565b80601f016020809104026020016040519081016040528092919081815260200182805461047590610f25565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b6000336104da818585610a47565b60019150505b92915050565b6104ee610a59565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b600061052d6005546001600160a01b031690565b6001600160a01b0316846001600160a01b0316146105965760075460ff166105965760405162461bcd60e51b8152602060048201526017602482015276151c98591a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064015b60405180910390fd5b6001600160a01b03831660009081526006602052604090205460ff161580156105d357506007546001600160a01b03848116620100009092041614155b15610669576105f160326d314dc6448d9338c15b0a00000000610f5f565b82610611856001600160a01b031660009081526020819052604090205490565b61061b9190610f81565b11156106695760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420686f6c64696e672065786365656473206c696d697400604482015260640161058d565b610674848484610a86565b949350505050565b610684610a59565b600754610100900460ff166106db5760405162461bcd60e51b815260206004820181905260248201527f4c697175696469747920686173206e6f74206265656e20616464656420796574604482015260640161058d565b6007805460ff19166001179055565b6000806106ff6005546001600160a01b031690565b6001600160a01b031614905090565b6000336104da81858561072183836109c5565b61072b9190610f81565b610a47565b610738610a59565b610740610a9f565b565b600061075d60326d314dc6448d9338c15b0a00000000610f5f565b905090565b60606004805461044990610f25565b6000338161077f82866109c5565b9050838110156107bb57604051632983c0c360e21b81526001600160a01b0386166004820152602481018290526044810185905260640161058d565b6107c88286868403610a47565b506001949350505050565b60006107e76005546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461084b5760075460ff1661084b5760405162461bcd60e51b8152602060048201526017602482015276151c98591a5b99c81a185cc81b9bdd081cdd185c9d1959604a1b604482015260640161058d565b6001600160a01b03831660009081526006602052604090205460ff1615801561088857506007546001600160a01b03848116620100009092041614155b1561091e576108a660326d314dc6448d9338c15b0a00000000610f5f565b826108c6856001600160a01b031660009081526020819052604090205490565b6108d09190610f81565b111561091e5760405162461bcd60e51b815260206004820152601f60248201527f526563697069656e7420686f6c64696e672065786365656473206c696d697400604482015260640161058d565b6109288383610ab1565b9392505050565b610937610a59565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000600660006109796005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205460ff16919050565b6109a3610a59565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109f8610a59565b6007805461ff001916610100179055565b610a11610a59565b6001600160a01b038116610a3b57604051631e4fbdf760e01b81526000600482015260240161058d565b610a4481610abf565b50565b610a548383836001610b11565b505050565b6005546001600160a01b031633146107405760405163118cdaa760e01b815233600482015260240161058d565b600033610a94858285610be7565b6107c8858585610c47565b610aa7610a59565b6107406000610abf565b6000336104da818585610c47565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416610b3b5760405163e602df0560e01b81526000600482015260240161058d565b6001600160a01b038316610b6557604051634a1406b160e11b81526000600482015260240161058d565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610be157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bd891815260200190565b60405180910390a35b50505050565b6000610bf384846109c5565b90506000198114610be15781811015610c3857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161058d565b610be184848484036000610b11565b6001600160a01b038316610c7157604051634b637e8f60e11b81526000600482015260240161058d565b6001600160a01b038216610c9b5760405163ec442f0560e01b81526000600482015260240161058d565b610a548383836001600160a01b038316610ccc578060026000828254610cc19190610f81565b90915550610d3e9050565b6001600160a01b03831660009081526020819052604090205481811015610d1f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161058d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610d5a57600280548290039055610d79565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dbe91815260200190565b60405180910390a3505050565b600060208083528351808285015260005b81811015610df857858101830151858201604001528201610ddc565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e3057600080fd5b919050565b60008060408385031215610e4857600080fd5b610e5183610e19565b946020939093013593505050565b60008060408385031215610e7257600080fd5b610e7b83610e19565b915060208301358015158114610e9057600080fd5b809150509250929050565b600060208284031215610ead57600080fd5b61092882610e19565b600080600060608486031215610ecb57600080fd5b610ed484610e19565b9250610ee260208501610e19565b9150604084013590509250925092565b60008060408385031215610f0557600080fd5b610f0e83610e19565b9150610f1c60208401610e19565b90509250929050565b600181811c90821680610f3957607f821691505b602082108103610f5957634e487b7160e01b600052602260045260246000fd5b50919050565b600082610f7c57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156104e057634e487b7160e01b600052601160045260246000fdfea2646970667358221220235d16aa35f507c17ff974c7c4f9d6cd70a3ee470491f532d57899d1a377c1ad64736f6c63430008150033

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.