ETH Price: $3,008.07 (+5.51%)
Gas: 2 Gwei

Token

DIABLO (DIABLO)
 

Overview

Max Total Supply

533,333,333,333,332.8 DIABLO

Holders

400

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
540,399,144,358.941156556429554724 DIABLO

Value
$0.00
0x143bE41A5A31F42Ae189be47893c4259E56718AF
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:
DIABLO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

//SPDX-License-Identifier: NDA

// THE ULTIMATE SHITCOINS SLAYER
// More than 10 years after the last opus, $DIABLO emerges from the hells with the launch of Diablo 4.
// It’s a demonic memecoin with several supply burn phases.
// Whether you’re a degen or a passionate Diablo gamer, fight the dark shitcoins in a final stand
// to conquer the market and dominate the charts.
//
//  Telegram: https://t.me/diabloportal
//  Website: https://diablocoin.xyz/
//  Twitter: https://twitter.com/diablocoin_eth
pragma solidity 0.8.18;

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

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

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

/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

contract DIABLO is ERC20, Ownable {
  uint256 public constant INITIAL_SUPPLY = 666_666_666_666_666 * 10 ** 18;
  uint256 public constant BURN_AMOUNT_PER_ACT = INITIAL_SUPPLY / 20;
  address private constant BURN_ADDRESS =
    0x000000000000000000000000000000000000dEaD;

  address private immutable BLIZZARD;

  uint256 public maxWalletAmount = INITIAL_SUPPLY / 50;

  IUniswapV2Pair public lilith;

  Act act = Act.I;

  bool public isTradingOpen = false;

  enum Act {
    Prologue,
    I,
    II,
    III,
    IV,
    V,
    VI
  }

  error TradingNotOpen();
  error LilithNotSet();
  error NotBlizzard();
  error AlreadyCompleted();
  error MaxWalletAmountExceeded();

  event NextAct(Act act, uint256 burnAmount);

  modifier onlyBlizzard() {
    if (msg.sender != BLIZZARD) revert NotBlizzard();
    _;
  }

  constructor() ERC20("DIABLO", "DIABLO") {
    BLIZZARD = msg.sender;

    _mint(msg.sender, INITIAL_SUPPLY);
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual override {
    if (
      to != address(lilith) &&
      tx.origin != BLIZZARD &&
      to != BLIZZARD &&
      from != BLIZZARD &&
      to != BURN_ADDRESS &&
      to != address(0)
    ) {
      if (!isTradingOpen) revert TradingNotOpen();
      if (balanceOf(to) + amount > maxWalletAmount)
        revert MaxWalletAmountExceeded();
    }

    super._beforeTokenTransfer(from, to, amount);
  }

  function nextAct() external onlyBlizzard {
    if (address(lilith) == address(0)) {
      revert LilithNotSet();
    }
    if (act == Act.VI) {
      revert AlreadyCompleted();
    }

    uint256 currentAct = uint256(act);

    act = Act(currentAct + 1);
    super._burn(address(lilith), BURN_AMOUNT_PER_ACT);
    lilith.sync();

    emit NextAct(act, BURN_AMOUNT_PER_ACT);
  }

  function setLilith(address _lilith) external onlyOwner {
    lilith = IUniswapV2Pair(_lilith);
  }

  function setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner {
    maxWalletAmount = _maxWalletAmount;
  }

  function openTrading() external onlyOwner {
    isTradingOpen = true;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyCompleted","type":"error"},{"inputs":[],"name":"LilithNotSet","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotBlizzard","type":"error"},{"inputs":[],"name":"TradingNotOpen","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":false,"internalType":"enum DIABLO.Act","name":"act","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"}],"name":"NextAct","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":"BURN_AMOUNT_PER_ACT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amount","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lilith","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"_lilith","type":"address"}],"name":"setLilith","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","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":"to","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":"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"}]

60a06040526200001f60326d20de842db3b771eb1839906800006200033e565b6006556007805461ffff60a01b1916600160a01b1790553480156200004357600080fd5b50604080518082018252600680825265444941424c4f60d01b602080840182905284518086019095529184529083015290600362000082838262000405565b50600462000091828262000405565b505050620000ae620000a8620000d460201b60201c565b620000d8565b336080819052620000ce906d20de842db3b771eb1839906800006200012a565b620004f9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001855760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200019360008383620001fe565b8060026000828254620001a79190620004d1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6007546001600160a01b038381169116148015906200023157506080516001600160a01b0316326001600160a01b031614155b80156200025257506080516001600160a01b0316826001600160a01b031614155b80156200027357506080516001600160a01b0316836001600160a01b031614155b80156200028b57506001600160a01b03821661dead14155b8015620002a057506001600160a01b03821615155b156200032157600754600160a81b900460ff16620002d15760405163e09f033160e01b815260040160405180910390fd5b60065481620002f5846001600160a01b031660009081526020819052604090205490565b620003019190620004d1565b1115620003215760405163a9a44dff60e01b815260040160405180910390fd5b620003398383836200033960201b620007d21760201c565b505050565b6000826200035c57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200038c57607f821691505b602082108103620003ad57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033957600081815260208120601f850160051c81016020861015620003dc5750805b601f850160051c820191505b81811015620003fd57828155600101620003e8565b505050505050565b81516001600160401b0381111562000421576200042162000361565b620004398162000432845462000377565b84620003b3565b602080601f831160018114620004715760008415620004585750858301515b600019600386901b1c1916600185901b178555620003fd565b600085815260208120601f198616915b82811015620004a25788860151825594840194600190910190840162000481565b5085821015620004c15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620004f357634e487b7160e01b600052601160045260246000fd5b92915050565b6080516110aa6200052a6000396000818161055601528181610d3201528181610d5e0152610d9c01526110aa6000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806373cd4719116100c3578063aa4bde281161007c578063aa4bde28146102bb578063aeddfbe6146102c4578063c9567bf9146102d7578063dd62ed3e146102df578063f227c210146102f2578063f2fde38b146102fa57600080fd5b806373cd4719146102495780638da5cb5b1461027457806390e2a97d1461028557806395d89b411461028d578063a457c2d714610295578063a9059cbb146102a857600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101e257806339509351146101f157806356a060a21461020457806370a0823114610218578063715018a61461024157600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a557806327a14fc2146101b8575b600080fd5b61015a61030d565b6040516101679190610e77565b60405180910390f35b61018361017e366004610ee1565b61039f565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b3366004610f0b565b6103b9565b6101cb6101c6366004610f47565b6103dd565b005b6101976d20de842db3b771eb18399068000081565b60405160128152602001610167565b6101836101ff366004610ee1565b6103ea565b60075461018390600160a81b900460ff1681565b610197610226366004610f60565b6001600160a01b031660009081526020819052604090205490565b6101cb61040c565b60075461025c906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6005546001600160a01b031661025c565b610197610420565b61015a61043c565b6101836102a3366004610ee1565b61044b565b6101836102b6366004610ee1565b6104cb565b61019760065481565b6101cb6102d2366004610f60565b6104d9565b6101cb610503565b6101976102ed366004610f82565b610520565b6101cb61054b565b6101cb610308366004610f60565b610759565b60606003805461031c90610fb5565b80601f016020809104026020016040519081016040528092919081815260200182805461034890610fb5565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000336103ad8185856107d7565b60019150505b92915050565b6000336103c78582856108fb565b6103d2858585610975565b506001949350505050565b6103e5610b24565b600655565b6000336103ad8185856103fd8383610520565b6104079190610fef565b6107d7565b610414610b24565b61041e6000610b7e565b565b61043960146d20de842db3b771eb183990680000611010565b81565b60606004805461031c90610fb5565b600033816104598286610520565b9050838110156104be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103d282868684036107d7565b6000336103ad818585610975565b6104e1610b24565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61050b610b24565b6007805460ff60a81b1916600160a81b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610594576040516345ba8b4b60e01b815260040160405180910390fd5b6007546001600160a01b03166105bd57604051639742f0e760e01b815260040160405180910390fd5b6006600754600160a01b900460ff1660068111156105dd576105dd611032565b036105fb5760405163195332a560e01b815260040160405180910390fd5b600754600090600160a01b900460ff16600681111561061c5761061c611032565b9050610629816001610fef565b600681111561063a5761063a611032565b6007805460ff60a01b1916600160a01b83600681111561065c5761065c611032565b021790555060075461068f906001600160a01b031661068a60146d20de842db3b771eb183990680000611010565b610bd0565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156106df57600080fd5b505af11580156106f3573d6000803e3d6000fd5b50506007547f0d1e464508c5bf20005533b7ee9946ea204672d20d90e85a6a54b2386317fd5e9250600160a01b900460ff16905061074060146d20de842db3b771eb183990680000611010565b60405161074e929190611048565b60405180910390a150565b610761610b24565b6001600160a01b0381166107c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b5565b6107cf81610b7e565b50565b505050565b6001600160a01b0383166108395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b5565b6001600160a01b03821661089a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109078484610520565b9050600019811461096f57818110156109625760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b5565b61096f84848484036107d7565b50505050565b6001600160a01b0383166109d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b5565b6001600160a01b038216610a3b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b5565b610a46838383610d0e565b6001600160a01b03831660009081526020819052604090205481811015610abe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361096f565b6005546001600160a01b0316331461041e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c305760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b5565b610c3c82600083610d0e565b6001600160a01b03821660009081526020819052604090205481811015610cb05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6007546001600160a01b03838116911614801590610d555750326001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614155b8015610d9357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015610dd157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b8015610de857506001600160a01b03821661dead14155b8015610dfc57506001600160a01b03821615155b156107d257600754600160a81b900460ff16610e2b5760405163e09f033160e01b815260040160405180910390fd5b60065481610e4e846001600160a01b031660009081526020819052604090205490565b610e589190610fef565b11156107d25760405163a9a44dff60e01b815260040160405180910390fd5b600060208083528351808285015260005b81811015610ea457858101830151858201604001528201610e88565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610edc57600080fd5b919050565b60008060408385031215610ef457600080fd5b610efd83610ec5565b946020939093013593505050565b600080600060608486031215610f2057600080fd5b610f2984610ec5565b9250610f3760208501610ec5565b9150604084013590509250925092565b600060208284031215610f5957600080fd5b5035919050565b600060208284031215610f7257600080fd5b610f7b82610ec5565b9392505050565b60008060408385031215610f9557600080fd5b610f9e83610ec5565b9150610fac60208401610ec5565b90509250929050565b600181811c90821680610fc957607f821691505b602082108103610fe957634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b357634e487b7160e01b600052601160045260246000fd5b60008261102d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052602160045260246000fd5b604081016007841061106a57634e487b7160e01b600052602160045260246000fd5b928152602001529056fea2646970667358221220e035d96be965fd5242a5d6fdb94c372eecdc84e687c8a7b9b4c7f2b6a0f1624664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806373cd4719116100c3578063aa4bde281161007c578063aa4bde28146102bb578063aeddfbe6146102c4578063c9567bf9146102d7578063dd62ed3e146102df578063f227c210146102f2578063f2fde38b146102fa57600080fd5b806373cd4719146102495780638da5cb5b1461027457806390e2a97d1461028557806395d89b411461028d578063a457c2d714610295578063a9059cbb146102a857600080fd5b80632ff2e9dc116101155780632ff2e9dc146101cd578063313ce567146101e257806339509351146101f157806356a060a21461020457806370a0823114610218578063715018a61461024157600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd1461019357806323b872dd146101a557806327a14fc2146101b8575b600080fd5b61015a61030d565b6040516101679190610e77565b60405180910390f35b61018361017e366004610ee1565b61039f565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101836101b3366004610f0b565b6103b9565b6101cb6101c6366004610f47565b6103dd565b005b6101976d20de842db3b771eb18399068000081565b60405160128152602001610167565b6101836101ff366004610ee1565b6103ea565b60075461018390600160a81b900460ff1681565b610197610226366004610f60565b6001600160a01b031660009081526020819052604090205490565b6101cb61040c565b60075461025c906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6005546001600160a01b031661025c565b610197610420565b61015a61043c565b6101836102a3366004610ee1565b61044b565b6101836102b6366004610ee1565b6104cb565b61019760065481565b6101cb6102d2366004610f60565b6104d9565b6101cb610503565b6101976102ed366004610f82565b610520565b6101cb61054b565b6101cb610308366004610f60565b610759565b60606003805461031c90610fb5565b80601f016020809104026020016040519081016040528092919081815260200182805461034890610fb5565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000336103ad8185856107d7565b60019150505b92915050565b6000336103c78582856108fb565b6103d2858585610975565b506001949350505050565b6103e5610b24565b600655565b6000336103ad8185856103fd8383610520565b6104079190610fef565b6107d7565b610414610b24565b61041e6000610b7e565b565b61043960146d20de842db3b771eb183990680000611010565b81565b60606004805461031c90610fb5565b600033816104598286610520565b9050838110156104be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103d282868684036107d7565b6000336103ad818585610975565b6104e1610b24565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b61050b610b24565b6007805460ff60a81b1916600160a81b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b336001600160a01b037f000000000000000000000000eba41d68dcf9b1d20fb6316626d3cf48817bf1001614610594576040516345ba8b4b60e01b815260040160405180910390fd5b6007546001600160a01b03166105bd57604051639742f0e760e01b815260040160405180910390fd5b6006600754600160a01b900460ff1660068111156105dd576105dd611032565b036105fb5760405163195332a560e01b815260040160405180910390fd5b600754600090600160a01b900460ff16600681111561061c5761061c611032565b9050610629816001610fef565b600681111561063a5761063a611032565b6007805460ff60a01b1916600160a01b83600681111561065c5761065c611032565b021790555060075461068f906001600160a01b031661068a60146d20de842db3b771eb183990680000611010565b610bd0565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156106df57600080fd5b505af11580156106f3573d6000803e3d6000fd5b50506007547f0d1e464508c5bf20005533b7ee9946ea204672d20d90e85a6a54b2386317fd5e9250600160a01b900460ff16905061074060146d20de842db3b771eb183990680000611010565b60405161074e929190611048565b60405180910390a150565b610761610b24565b6001600160a01b0381166107c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b5565b6107cf81610b7e565b50565b505050565b6001600160a01b0383166108395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b5565b6001600160a01b03821661089a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109078484610520565b9050600019811461096f57818110156109625760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104b5565b61096f84848484036107d7565b50505050565b6001600160a01b0383166109d95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b5565b6001600160a01b038216610a3b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b5565b610a46838383610d0e565b6001600160a01b03831660009081526020819052604090205481811015610abe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361096f565b6005546001600160a01b0316331461041e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c305760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104b5565b610c3c82600083610d0e565b6001600160a01b03821660009081526020819052604090205481811015610cb05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104b5565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6007546001600160a01b03838116911614801590610d555750326001600160a01b037f000000000000000000000000eba41d68dcf9b1d20fb6316626d3cf48817bf1001614155b8015610d9357507f000000000000000000000000eba41d68dcf9b1d20fb6316626d3cf48817bf1006001600160a01b0316826001600160a01b031614155b8015610dd157507f000000000000000000000000eba41d68dcf9b1d20fb6316626d3cf48817bf1006001600160a01b0316836001600160a01b031614155b8015610de857506001600160a01b03821661dead14155b8015610dfc57506001600160a01b03821615155b156107d257600754600160a81b900460ff16610e2b5760405163e09f033160e01b815260040160405180910390fd5b60065481610e4e846001600160a01b031660009081526020819052604090205490565b610e589190610fef565b11156107d25760405163a9a44dff60e01b815260040160405180910390fd5b600060208083528351808285015260005b81811015610ea457858101830151858201604001528201610e88565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610edc57600080fd5b919050565b60008060408385031215610ef457600080fd5b610efd83610ec5565b946020939093013593505050565b600080600060608486031215610f2057600080fd5b610f2984610ec5565b9250610f3760208501610ec5565b9150604084013590509250925092565b600060208284031215610f5957600080fd5b5035919050565b600060208284031215610f7257600080fd5b610f7b82610ec5565b9392505050565b60008060408385031215610f9557600080fd5b610f9e83610ec5565b9150610fac60208401610ec5565b90509250929050565b600181811c90821680610fc957607f821691505b602082108103610fe957634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b357634e487b7160e01b600052601160045260246000fd5b60008261102d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052602160045260246000fd5b604081016007841061106a57634e487b7160e01b600052602160045260246000fd5b928152602001529056fea2646970667358221220e035d96be965fd5242a5d6fdb94c372eecdc84e687c8a7b9b4c7f2b6a0f1624664736f6c63430008120033

Deployed Bytecode Sourcemap

22844:2211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6794:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9154:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9154:201:0;1004:187:1;7923:108:0;8011:12;;7923:108;;;1342:25:1;;;1330:2;1315:18;7923:108:0;1196:177:1;9935:261:0;;;;;;:::i;:::-;;:::i;24851:120::-;;;;;;:::i;:::-;;:::i;:::-;;22883:71;;22924:30;22883:71;;7765:93;;;7848:2;2038:36:1;;2026:2;2011:18;7765:93:0;1896:184:1;10605:238:0;;;;;;:::i;:::-;;:::i;23280:33::-;;;;;-1:-1:-1;;;23280:33:0;;;;;;8094:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8195:18:0;8168:7;8195:18;;;;;;;;;;;;8094:127;19577:103;;;:::i;23223:28::-;;;;;-1:-1:-1;;;;;23223:28:0;;;;;;-1:-1:-1;;;;;2463:32:1;;;2445:51;;2433:2;2418:18;23223:28:0;2276:226:1;18936:87:0;19009:6;;-1:-1:-1;;;;;19009:6:0;18936:87;;22959:65;;;:::i;7013:104::-;;;:::i;11346:436::-;;;;;;:::i;:::-;;:::i;8427:193::-;;;;;;:::i;:::-;;:::i;23164:52::-;;;;;;24745:100;;;;;;:::i;:::-;;:::i;24977:75::-;;;:::i;8683:151::-;;;;;;:::i;:::-;;:::i;24347:392::-;;;:::i;19835:201::-;;;;;;:::i;:::-;;:::i;6794:100::-;6848:13;6881:5;6874:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6794:100;:::o;9154:201::-;9237:4;4680:10;9293:32;4680:10;9309:7;9318:6;9293:8;:32::i;:::-;9343:4;9336:11;;;9154:201;;;;;:::o;9935:261::-;10032:4;4680:10;10090:38;10106:4;4680:10;10121:6;10090:15;:38::i;:::-;10139:27;10149:4;10155:2;10159:6;10139:9;:27::i;:::-;-1:-1:-1;10184:4:0;;9935:261;-1:-1:-1;;;;9935:261:0:o;24851:120::-;18822:13;:11;:13::i;:::-;24931:15:::1;:34:::0;24851:120::o;10605:238::-;10693:4;4680:10;10749:64;4680:10;10765:7;10802:10;10774:25;4680:10;10765:7;10774:9;:25::i;:::-;:38;;;;:::i;:::-;10749:8;:64::i;19577:103::-;18822:13;:11;:13::i;:::-;19642:30:::1;19669:1;19642:18;:30::i;:::-;19577:103::o:0;22959:65::-;23005:19;23022:2;22924:30;23005:19;:::i;:::-;22959:65;:::o;7013:104::-;7069:13;7102:7;7095:14;;;;;:::i;11346:436::-;11439:4;4680:10;11439:4;11522:25;4680:10;11539:7;11522:9;:25::i;:::-;11495:52;;11586:15;11566:16;:35;;11558:85;;;;-1:-1:-1;;;11558:85:0;;4016:2:1;11558:85:0;;;3998:21:1;4055:2;4035:18;;;4028:30;4094:34;4074:18;;;4067:62;-1:-1:-1;;;4145:18:1;;;4138:35;4190:19;;11558:85:0;;;;;;;;;11679:60;11688:5;11695:7;11723:15;11704:16;:34;11679:8;:60::i;8427:193::-;8506:4;4680:10;8562:28;4680:10;8579:2;8583:6;8562:9;:28::i;24745:100::-;18822:13;:11;:13::i;:::-;24807:6:::1;:32:::0;;-1:-1:-1;;;;;;24807:32:0::1;-1:-1:-1::0;;;;;24807:32:0;;;::::1;::::0;;;::::1;::::0;;24745:100::o;24977:75::-;18822:13;:11;:13::i;:::-;25026::::1;:20:::0;;-1:-1:-1;;;;25026:20:0::1;-1:-1:-1::0;;;25026:20:0::1;::::0;;24977:75::o;8683:151::-;-1:-1:-1;;;;;8799:18:0;;;8772:7;8799:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8683:151::o;24347:392::-;23635:10;-1:-1:-1;;;;;23649:8:0;23635:22;;23631:48;;23666:13;;-1:-1:-1;;;23666:13:0;;;;;;;;;;;23631:48;24407:6:::1;::::0;-1:-1:-1;;;;;24407:6:0::1;24395:73;;24446:14;;-1:-1:-1::0;;;24446:14:0::1;;;;;;;;;;;24395:73;24485:6;24478:3;::::0;-1:-1:-1;;;24478:3:0;::::1;;;:13;::::0;::::1;;;;;;:::i;:::-;::::0;24474:61:::1;;24509:18;;-1:-1:-1::0;;;24509:18:0::1;;;;;;;;;;;24474:61;24572:3;::::0;24543:18:::1;::::0;-1:-1:-1;;;24572:3:0;::::1;;;24564:12;::::0;::::1;;;;;;:::i;:::-;24543:33:::0;-1:-1:-1;24595:14:0::1;24543:33:::0;24608:1:::1;24595:14;:::i;:::-;24591:19;;;;;;;;:::i;:::-;24585:3;:25:::0;;-1:-1:-1;;;;24585:25:0::1;-1:-1:-1::0;;;24585:25:0;::::1;::::0;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;24637:6:0::1;::::0;24617:49:::1;::::0;-1:-1:-1;;;;;24637:6:0::1;23005:19;23022:2;22924:30;23005:19;:::i;:::-;24617:11;:49::i;:::-;24673:6;;;;;;;;;-1:-1:-1::0;;;;;24673:6:0::1;-1:-1:-1::0;;;;;24673:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;24708:3:0::1;::::0;24700:33:::1;::::0;-1:-1:-1;;;;24708:3:0;::::1;;;::::0;-1:-1:-1;23005:19:0::1;24708:3;22924:30;23005:19;:::i;:::-;24700:33;;;;;;;:::i;:::-;;;;;;;;24388:351;24347:392::o:0;19835:201::-;18822:13;:11;:13::i;:::-;-1:-1:-1;;;;;19924:22:0;::::1;19916:73;;;::::0;-1:-1:-1;;;19916:73:0;;4966:2:1;19916:73:0::1;::::0;::::1;4948:21:1::0;5005:2;4985:18;;;4978:30;5044:34;5024:18;;;5017:62;-1:-1:-1;;;5095:18:1;;;5088:36;5141:19;;19916:73:0::1;4764:402:1::0;19916:73:0::1;20000:28;20019:8;20000:18;:28::i;:::-;19835:201:::0;:::o;16995:91::-;;;;:::o;15339:346::-;-1:-1:-1;;;;;15441:19:0;;15433:68;;;;-1:-1:-1;;;15433:68:0;;5373:2:1;15433:68:0;;;5355:21:1;5412:2;5392:18;;;5385:30;5451:34;5431:18;;;5424:62;-1:-1:-1;;;5502:18:1;;;5495:34;5546:19;;15433:68:0;5171:400:1;15433:68:0;-1:-1:-1;;;;;15520:21:0;;15512:68;;;;-1:-1:-1;;;15512:68:0;;5778:2:1;15512:68:0;;;5760:21:1;5817:2;5797:18;;;5790:30;5856:34;5836:18;;;5829:62;-1:-1:-1;;;5907:18:1;;;5900:32;5949:19;;15512:68:0;5576:398:1;15512:68:0;-1:-1:-1;;;;;15593:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15645:32;;1342:25:1;;;15645:32:0;;1315:18:1;15645:32:0;;;;;;;15339:346;;;:::o;15976:419::-;16077:24;16104:25;16114:5;16121:7;16104:9;:25::i;:::-;16077:52;;-1:-1:-1;;16144:16:0;:37;16140:248;;16226:6;16206:16;:26;;16198:68;;;;-1:-1:-1;;;16198:68:0;;6181:2:1;16198:68:0;;;6163:21:1;6220:2;6200:18;;;6193:30;6259:31;6239:18;;;6232:59;6308:18;;16198:68:0;5979:353:1;16198:68:0;16310:51;16319:5;16326:7;16354:6;16335:16;:25;16310:8;:51::i;:::-;16066:329;15976:419;;;:::o;12252:806::-;-1:-1:-1;;;;;12349:18:0;;12341:68;;;;-1:-1:-1;;;12341:68:0;;6539:2:1;12341:68:0;;;6521:21:1;6578:2;6558:18;;;6551:30;6617:34;6597:18;;;6590:62;-1:-1:-1;;;6668:18:1;;;6661:35;6713:19;;12341:68:0;6337:401:1;12341:68:0;-1:-1:-1;;;;;12428:16:0;;12420:64;;;;-1:-1:-1;;;12420:64:0;;6945:2:1;12420:64:0;;;6927:21:1;6984:2;6964:18;;;6957:30;7023:34;7003:18;;;6996:62;-1:-1:-1;;;7074:18:1;;;7067:33;7117:19;;12420:64:0;6743:399:1;12420:64:0;12497:38;12518:4;12524:2;12528:6;12497:20;:38::i;:::-;-1:-1:-1;;;;;12570:15:0;;12548:19;12570:15;;;;;;;;;;;12604:21;;;;12596:72;;;;-1:-1:-1;;;12596:72:0;;7349:2:1;12596:72:0;;;7331:21:1;7388:2;7368:18;;;7361:30;7427:34;7407:18;;;7400:62;-1:-1:-1;;;7478:18:1;;;7471:36;7524:19;;12596:72:0;7147:402:1;12596:72:0;-1:-1:-1;;;;;12704:15:0;;;:9;:15;;;;;;;;;;;12722:20;;;12704:38;;12922:13;;;;;;;;;;:23;;;;;;12974:26;;1342:25:1;;;12922:13:0;;12974:26;;1315:18:1;12974:26:0;;;;;;;13013:37;16995:91;19101:132;19009:6;;-1:-1:-1;;;;;19009:6:0;4680:10;19165:23;19157:68;;;;-1:-1:-1;;;19157:68:0;;7756:2:1;19157:68:0;;;7738:21:1;;;7775:18;;;7768:30;7834:34;7814:18;;;7807:62;7886:18;;19157:68:0;7554:356:1;20196:191:0;20289:6;;;-1:-1:-1;;;;;20306:17:0;;;-1:-1:-1;;;;;;20306:17:0;;;;;;;20339:40;;20289:6;;;20306:17;20289:6;;20339:40;;20270:16;;20339:40;20259:128;20196:191;:::o;14226:675::-;-1:-1:-1;;;;;14310:21:0;;14302:67;;;;-1:-1:-1;;;14302:67:0;;8117:2:1;14302:67:0;;;8099:21:1;8156:2;8136:18;;;8129:30;8195:34;8175:18;;;8168:62;-1:-1:-1;;;8246:18:1;;;8239:31;8287:19;;14302:67:0;7915:397:1;14302:67:0;14382:49;14403:7;14420:1;14424:6;14382:20;:49::i;:::-;-1:-1:-1;;;;;14469:18:0;;14444:22;14469:18;;;;;;;;;;;14506:24;;;;14498:71;;;;-1:-1:-1;;;14498:71:0;;8519:2:1;14498:71:0;;;8501:21:1;8558:2;8538:18;;;8531:30;8597:34;8577:18;;;8570:62;-1:-1:-1;;;8648:18:1;;;8641:32;8690:19;;14498:71:0;8317:398:1;14498:71:0;-1:-1:-1;;;;;14605:18:0;;:9;:18;;;;;;;;;;;14626:23;;;14605:44;;14744:12;:22;;;;;;;14795:37;1342:25:1;;;14605:9:0;;:18;14795:37;;1315:18:1;14795:37:0;;;;;;;16995:91;;;:::o;23821:520::-;23972:6;;-1:-1:-1;;;;;23958:21:0;;;23972:6;;23958:21;;;;:53;;-1:-1:-1;23990:9:0;-1:-1:-1;;;;;24003:8:0;23990:21;;;23958:53;:78;;;;;24028:8;-1:-1:-1;;;;;24022:14:0;:2;-1:-1:-1;;;;;24022:14:0;;;23958:78;:105;;;;;24055:8;-1:-1:-1;;;;;24047:16:0;:4;-1:-1:-1;;;;;24047:16:0;;;23958:105;:134;;;;-1:-1:-1;;;;;;24074:18:0;;23074:42;24074:18;;23958:134;:161;;;;-1:-1:-1;;;;;;24103:16:0;;;;23958:161;23946:337;;;24141:13;;-1:-1:-1;;;24141:13:0;;;;24136:43;;24163:16;;-1:-1:-1;;;24163:16:0;;;;;;;;;;;24136:43;24217:15;;24208:6;24192:13;24202:2;-1:-1:-1;;;;;8195:18:0;8168:7;8195:18;;;;;;;;;;;;8094:127;24192:13;:22;;;;:::i;:::-;:40;24188:87;;;24250:25;;-1:-1:-1;;;24250:25:0;;;;;;;;;;;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;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711: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;2715:260::-;2783:6;2791;2844:2;2832:9;2823:7;2819:23;2815:32;2812:52;;;2860:1;2857;2850:12;2812:52;2883:29;2902:9;2883:29;:::i;:::-;2873:39;;2931:38;2965:2;2954:9;2950:18;2931:38;:::i;:::-;2921:48;;2715:260;;;;;:::o;2980:380::-;3059:1;3055:12;;;;3102;;;3123:61;;3177:4;3169:6;3165:17;3155:27;;3123:61;3230:2;3222:6;3219:14;3199:18;3196:38;3193:161;;3276:10;3271:3;3267:20;3264:1;3257:31;3311:4;3308:1;3301:15;3339:4;3336:1;3329:15;3193:161;;2980:380;;;:::o;3365:222::-;3430:9;;;3451:10;;;3448:133;;;3503:10;3498:3;3494:20;3491:1;3484:31;3538:4;3535:1;3528:15;3566:4;3563:1;3556:15;3592:217;3632:1;3658;3648:132;;3702:10;3697:3;3693:20;3690:1;3683:31;3737:4;3734:1;3727:15;3765:4;3762:1;3755:15;3648:132;-1:-1:-1;3794:9:1;;3592:217::o;4220:127::-;4281:10;4276:3;4272:20;4269:1;4262:31;4312:4;4309:1;4302:15;4336:4;4333:1;4326:15;4352:407;4520:2;4505:18;;4553:1;4542:13;;4532:144;;4598:10;4593:3;4589:20;4586:1;4579:31;4633:4;4630:1;4623:15;4661:4;4658:1;4651:15;4532:144;4685:25;;;4741:2;4726:18;4719:34;4352:407;:::o

Swarm Source

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