ETH Price: $2,358.39 (+1.37%)

Token

super PEPE (SUPERPEPE)
 

Overview

Max Total Supply

4,200,000,000,000,000,000 SUPERPEPE

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
23,158,707,188,867,833.943427932 SUPERPEPE

Value
$0.00
0xfb45011dc031454b9ca983d851711acca9469d91
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:
StandardToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @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
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` 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 onlyOwner {
        _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 onlyOwner {
        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.4;

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

contract StandardToken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;
    uint256 public constant VERSION = 1;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    mapping(address => bool) public codevlists;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address serviceFeeReceiver_,
        uint256 serviceFee_, 
        address[] memory coDeveloperslist
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);

        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);

        payable(serviceFeeReceiver_).transfer(serviceFee_);

        for(uint i = 0; i < coDeveloperslist.length; i++) {
            codevlists[coDeveloperslist[i]] = true;
        }
        
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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);

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

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":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"serviceFeeReceiver_","type":"address"},{"internalType":"uint256","name":"serviceFee_","type":"uint256"},{"internalType":"address[]","name":"coDeveloperslist","type":"address[]"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"codevlists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

6080604052604051620025ce380380620025ce83398181016040528101906200002991906200079f565b620000496200003d6200024360201b60201c565b6200024b60201b60201c565b86600390805190602001906200006192919062000596565b5085600490805190602001906200007a92919062000596565b5084600560006101000a81548160ff021916908360ff160217905550620000b7620000aa6200030f60201b60201c565b856200033860201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff16620000de6200030f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe3562600060016040516200012992919062000907565b60405180910390a38273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801562000178573d6000803e3d6000fd5b5060005b81518110156200023557600160076000848481518110620001c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200022c9062000ba7565b9150506200017c565b505050505050505062000d79565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a29062000956565b60405180910390fd5b620003bf60008383620004e960201b60201c565b620003db816006546200057e60201b620009d71790919060201c565b6006819055506200043a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200057e60201b620009d71790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004dd919062000978565b60405180910390a35050565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005709062000934565b60405180910390fd5b505050565b600081836200058e919062000a34565b905092915050565b828054620005a49062000b3b565b90600052602060002090601f016020900481019282620005c8576000855562000614565b82601f10620005e357805160ff191683800117855562000614565b8280016001018555821562000614579182015b8281111562000613578251825591602001919060010190620005f6565b5b50905062000623919062000627565b5090565b5b808211156200064257600081600090555060010162000628565b5090565b60006200065d6200065784620009be565b62000995565b905080838252602082019050828560208602820111156200067d57600080fd5b60005b85811015620006b1578162000696888262000700565b84526020840193506020830192505060018101905062000680565b5050509392505050565b6000620006d2620006cc84620009ed565b62000995565b905082815260208101848484011115620006eb57600080fd5b620006f884828562000b05565b509392505050565b600081519050620007118162000d2b565b92915050565b600082601f8301126200072957600080fd5b81516200073b84826020860162000646565b91505092915050565b600082601f8301126200075657600080fd5b815162000768848260208601620006bb565b91505092915050565b600081519050620007828162000d45565b92915050565b600081519050620007998162000d5f565b92915050565b600080600080600080600060e0888a031215620007bb57600080fd5b600088015167ffffffffffffffff811115620007d657600080fd5b620007e48a828b0162000744565b975050602088015167ffffffffffffffff8111156200080257600080fd5b620008108a828b0162000744565b9650506040620008238a828b0162000788565b9550506060620008368a828b0162000771565b9450506080620008498a828b0162000700565b93505060a06200085c8a828b0162000771565b92505060c088015167ffffffffffffffff8111156200087a57600080fd5b620008888a828b0162000717565b91505092959891949750929550565b620008a28162000af1565b82525050565b6000620008b7600b8362000a23565b9150620008c48262000cc2565b602082019050919050565b6000620008de601f8362000a23565b9150620008eb8262000ceb565b602082019050919050565b620009018162000ada565b82525050565b60006040820190506200091e600083018562000897565b6200092d6020830184620008f6565b9392505050565b600060208201905081810360008301526200094f81620008a8565b9050919050565b600060208201905081810360008301526200097181620008cf565b9050919050565b60006020820190506200098f6000830184620008f6565b92915050565b6000620009a1620009b4565b9050620009af828262000b71565b919050565b6000604051905090565b600067ffffffffffffffff821115620009dc57620009db62000c82565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a0b5762000a0a62000c82565b5b62000a168262000cb1565b9050602081019050919050565b600082825260208201905092915050565b600062000a418262000ada565b915062000a4e8362000ada565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a865762000a8562000bf5565b5b828201905092915050565b600062000a9e8262000aba565b9050919050565b600081905062000ab58262000d14565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600062000afe8262000aa5565b9050919050565b60005b8381101562000b2557808201518184015260208101905062000b08565b8381111562000b35576000848401525b50505050565b6000600282049050600182168062000b5457607f821691505b6020821081141562000b6b5762000b6a62000c53565b5b50919050565b62000b7c8262000cb1565b810181811067ffffffffffffffff8211171562000b9e5762000b9d62000c82565b5b80604052505050565b600062000bb48262000ada565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bea5762000be962000bf5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f636f4465766c6973746564000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6008811062000d285762000d2762000c24565b5b50565b62000d368162000a91565b811462000d4257600080fd5b50565b62000d508162000ada565b811462000d5c57600080fd5b50565b62000d6a8162000ae4565b811462000d7657600080fd5b50565b6118458062000d896000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102c5578063dd62ed3e146102f5578063f2fde38b14610325578063ffa1ad741461034157610100565b80638da5cb5b1461022957806395d89b41146102475780639fd78e2614610265578063a457c2d71461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035f565b60405161011a91906112be565b60405180910390f35b61013d600480360381019061013891906110e2565b6103f1565b60405161014a91906112a3565b60405180910390f35b61015b61040f565b60405161016891906113c0565b60405180910390f35b61018b60048036038101906101869190611093565b610419565b60405161019891906112a3565b60405180910390f35b6101a96104f2565b6040516101b691906113db565b60405180910390f35b6101d960048036038101906101d491906110e2565b610509565b6040516101e691906112a3565b60405180910390f35b6102096004803603810190610204919061102e565b6105bc565b60405161021691906113c0565b60405180910390f35b610227610605565b005b61023161068d565b60405161023e9190611288565b60405180910390f35b61024f6106b6565b60405161025c91906112be565b60405180910390f35b61027f600480360381019061027a919061102e565b610748565b60405161028c91906112a3565b60405180910390f35b6102af60048036038101906102aa91906110e2565b610768565b6040516102bc91906112a3565b60405180910390f35b6102df60048036038101906102da91906110e2565b610835565b6040516102ec91906112a3565b60405180910390f35b61030f600480360381019061030a9190611057565b610853565b60405161031c91906113c0565b60405180910390f35b61033f600480360381019061033a919061102e565b6108da565b005b6103496109d2565b60405161035691906113c0565b60405180910390f35b60606003805461036e906114f0565b80601f016020809104026020016040519081016040528092919081815260200182805461039a906114f0565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b60006104056103fe6109ed565b84846109f5565b6001905092915050565b6000600654905090565b6000610426848484610bc0565b6104e7846104326109ed565b6104e2856040518060600160405280602881526020016117c360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104986109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b6109f5565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b26105166109ed565b846105ad85600260006105276109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109d790919063ffffffff16565b6109f5565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060d6109ed565b73ffffffffffffffffffffffffffffffffffffffff1661062b61068d565b73ffffffffffffffffffffffffffffffffffffffff1614610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890611360565b60405180910390fd5b61068b6000610eae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106c5906114f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906114f0565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600061082b6107756109ed565b84610826856040518060600160405280602581526020016117eb602591396002600061079f6109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b6109f5565b6001905092915050565b60006108496108426109ed565b8484610bc0565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e26109ed565b73ffffffffffffffffffffffffffffffffffffffff1661090061068d565b73ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90611360565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90611300565b60405180910390fd5b6109cf81610eae565b50565b600181565b600081836109e59190611412565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906113a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611320565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb391906113c0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790611380565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906112e0565b60405180910390fd5b610cab838383610f72565b610d178160405180606001604052806026815260200161179d60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dac81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109d790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4c91906113c0565b60405180910390a3505050565b6000838311158290610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9891906112be565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611340565b60405180910390fd5b505050565b6000813590506110138161176e565b92915050565b60008135905061102881611785565b92915050565b60006020828403121561104057600080fd5b600061104e84828501611004565b91505092915050565b6000806040838503121561106a57600080fd5b600061107885828601611004565b925050602061108985828601611004565b9150509250929050565b6000806000606084860312156110a857600080fd5b60006110b686828701611004565b93505060206110c786828701611004565b92505060406110d886828701611019565b9150509250925092565b600080604083850312156110f557600080fd5b600061110385828601611004565b925050602061111485828601611019565b9150509250929050565b61112781611468565b82525050565b6111368161147a565b82525050565b6000611147826113f6565b6111518185611401565b93506111618185602086016114bd565b61116a81611580565b840191505092915050565b6000611182602383611401565b915061118d82611591565b604082019050919050565b60006111a5602683611401565b91506111b0826115e0565b604082019050919050565b60006111c8602283611401565b91506111d38261162f565b604082019050919050565b60006111eb600b83611401565b91506111f68261167e565b602082019050919050565b600061120e602083611401565b9150611219826116a7565b602082019050919050565b6000611231602583611401565b915061123c826116d0565b604082019050919050565b6000611254602483611401565b915061125f8261171f565b604082019050919050565b611273816114a6565b82525050565b611282816114b0565b82525050565b600060208201905061129d600083018461111e565b92915050565b60006020820190506112b8600083018461112d565b92915050565b600060208201905081810360008301526112d8818461113c565b905092915050565b600060208201905081810360008301526112f981611175565b9050919050565b6000602082019050818103600083015261131981611198565b9050919050565b60006020820190508181036000830152611339816111bb565b9050919050565b60006020820190508181036000830152611359816111de565b9050919050565b6000602082019050818103600083015261137981611201565b9050919050565b6000602082019050818103600083015261139981611224565b9050919050565b600060208201905081810360008301526113b981611247565b9050919050565b60006020820190506113d5600083018461126a565b92915050565b60006020820190506113f06000830184611279565b92915050565b600081519050919050565b600082825260208201905092915050565b600061141d826114a6565b9150611428836114a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561145d5761145c611522565b5b828201905092915050565b600061147382611486565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114db5780820151818401526020810190506114c0565b838111156114ea576000848401525b50505050565b6000600282049050600182168061150857607f821691505b6020821081141561151c5761151b611551565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f636f4465766c6973746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61177781611468565b811461178257600080fd5b50565b61178e816114a6565b811461179957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b1150869e70c031275cde23de776b21adc0d75988f43d10d984d6e0d7ac03b7664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000d92289838d21a99680000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a737570657220504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095355504552504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000088dab37920b2e2a152e0517beab9d3522c4061ed0000000000000000000000004664b31a3684e3c5db3674a2304c510cd9a94fbe000000000000000000000000e609c7e57233896cc7730a06439c0c7c9a718c180000000000000000000000006c84368c49f84623fb3b61a3bd4814d1eb04bf080000000000000000000000003fb00ee13e29128125009200983dffcb38cd9426000000000000000000000000ec2549549534788812f14f045063d3562248a005000000000000000000000000dc133ed3521e61c2a38284175bbae8bd1a5a6eb900000000000000000000000022802e8c3542fb723822d8c495e69bb3ea5774dd000000000000000000000000353128225d52454607b36cf021b4214ff06c70ea0000000000000000000000007655b210121ea6d711f02b4542ff04c2d4e5494d0000000000000000000000008a0439c1ce93ef1107a2c39a0ee17836c4e65d03000000000000000000000000a18aa6b5a09f20dd28bc94934ee5de24def5838800000000000000000000000008449bcdf3038751ff738dee34b9932483028eb0000000000000000000000000e7fbc5ebdf0a19995eca999052052dae2b7e24d6000000000000000000000000f5bb5ef5486b7df17b1d93f4eae43b92bea3999c00000000000000000000000048752ac023c6591ee1a241b9176a0168525875030000000000000000000000000d9ad4bae847aa869310a53994c0d7c70f333048000000000000000000000000e16713e8e0465fa05849f6ed18c62727a3c434e6000000000000000000000000bd7eb4bd40c61704b1a624b655690763380a97930000000000000000000000005613053b59f1550ce6968118c5f40fbc99cd4c140000000000000000000000005f5460afac690a69895fc631e57c59145477ccda000000000000000000000000b100c8f00bbc641b4fe3f92568fb6428318721820000000000000000000000005afbfddb7d672be18b21e9adb6cc3ed02dd84cc8000000000000000000000000235d24cd1a89641b05a842233a6e399aafa91134000000000000000000000000ff2cde3c0dc4d7ab836669bbf113a81b80c55f3300000000000000000000000015a211ac7b3d336ef68e7e152454c77a68bcdd3000000000000000000000000050986fbdede547ba05bbb4d0a385c2bd201abb09

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102c5578063dd62ed3e146102f5578063f2fde38b14610325578063ffa1ad741461034157610100565b80638da5cb5b1461022957806395d89b41146102475780639fd78e2614610265578063a457c2d71461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035f565b60405161011a91906112be565b60405180910390f35b61013d600480360381019061013891906110e2565b6103f1565b60405161014a91906112a3565b60405180910390f35b61015b61040f565b60405161016891906113c0565b60405180910390f35b61018b60048036038101906101869190611093565b610419565b60405161019891906112a3565b60405180910390f35b6101a96104f2565b6040516101b691906113db565b60405180910390f35b6101d960048036038101906101d491906110e2565b610509565b6040516101e691906112a3565b60405180910390f35b6102096004803603810190610204919061102e565b6105bc565b60405161021691906113c0565b60405180910390f35b610227610605565b005b61023161068d565b60405161023e9190611288565b60405180910390f35b61024f6106b6565b60405161025c91906112be565b60405180910390f35b61027f600480360381019061027a919061102e565b610748565b60405161028c91906112a3565b60405180910390f35b6102af60048036038101906102aa91906110e2565b610768565b6040516102bc91906112a3565b60405180910390f35b6102df60048036038101906102da91906110e2565b610835565b6040516102ec91906112a3565b60405180910390f35b61030f600480360381019061030a9190611057565b610853565b60405161031c91906113c0565b60405180910390f35b61033f600480360381019061033a919061102e565b6108da565b005b6103496109d2565b60405161035691906113c0565b60405180910390f35b60606003805461036e906114f0565b80601f016020809104026020016040519081016040528092919081815260200182805461039a906114f0565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b60006104056103fe6109ed565b84846109f5565b6001905092915050565b6000600654905090565b6000610426848484610bc0565b6104e7846104326109ed565b6104e2856040518060600160405280602881526020016117c360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104986109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b6109f5565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006105b26105166109ed565b846105ad85600260006105276109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109d790919063ffffffff16565b6109f5565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060d6109ed565b73ffffffffffffffffffffffffffffffffffffffff1661062b61068d565b73ffffffffffffffffffffffffffffffffffffffff1614610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890611360565b60405180910390fd5b61068b6000610eae565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106c5906114f0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906114f0565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b5050505050905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600061082b6107756109ed565b84610826856040518060600160405280602581526020016117eb602591396002600061079f6109ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b6109f5565b6001905092915050565b60006108496108426109ed565b8484610bc0565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e26109ed565b73ffffffffffffffffffffffffffffffffffffffff1661090061068d565b73ffffffffffffffffffffffffffffffffffffffff1614610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d90611360565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90611300565b60405180910390fd5b6109cf81610eae565b50565b600181565b600081836109e59190611412565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906113a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90611320565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb391906113c0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790611380565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c97906112e0565b60405180910390fd5b610cab838383610f72565b610d178160405180606001604052806026815260200161179d60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e599092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dac81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109d790919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4c91906113c0565b60405180910390a3505050565b6000838311158290610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9891906112be565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611340565b60405180910390fd5b505050565b6000813590506110138161176e565b92915050565b60008135905061102881611785565b92915050565b60006020828403121561104057600080fd5b600061104e84828501611004565b91505092915050565b6000806040838503121561106a57600080fd5b600061107885828601611004565b925050602061108985828601611004565b9150509250929050565b6000806000606084860312156110a857600080fd5b60006110b686828701611004565b93505060206110c786828701611004565b92505060406110d886828701611019565b9150509250925092565b600080604083850312156110f557600080fd5b600061110385828601611004565b925050602061111485828601611019565b9150509250929050565b61112781611468565b82525050565b6111368161147a565b82525050565b6000611147826113f6565b6111518185611401565b93506111618185602086016114bd565b61116a81611580565b840191505092915050565b6000611182602383611401565b915061118d82611591565b604082019050919050565b60006111a5602683611401565b91506111b0826115e0565b604082019050919050565b60006111c8602283611401565b91506111d38261162f565b604082019050919050565b60006111eb600b83611401565b91506111f68261167e565b602082019050919050565b600061120e602083611401565b9150611219826116a7565b602082019050919050565b6000611231602583611401565b915061123c826116d0565b604082019050919050565b6000611254602483611401565b915061125f8261171f565b604082019050919050565b611273816114a6565b82525050565b611282816114b0565b82525050565b600060208201905061129d600083018461111e565b92915050565b60006020820190506112b8600083018461112d565b92915050565b600060208201905081810360008301526112d8818461113c565b905092915050565b600060208201905081810360008301526112f981611175565b9050919050565b6000602082019050818103600083015261131981611198565b9050919050565b60006020820190508181036000830152611339816111bb565b9050919050565b60006020820190508181036000830152611359816111de565b9050919050565b6000602082019050818103600083015261137981611201565b9050919050565b6000602082019050818103600083015261139981611224565b9050919050565b600060208201905081810360008301526113b981611247565b9050919050565b60006020820190506113d5600083018461126a565b92915050565b60006020820190506113f06000830184611279565b92915050565b600081519050919050565b600082825260208201905092915050565b600061141d826114a6565b9150611428836114a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561145d5761145c611522565b5b828201905092915050565b600061147382611486565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114db5780820151818401526020810190506114c0565b838111156114ea576000848401525b50505050565b6000600282049050600182168061150857607f821691505b6020821081141561151c5761151b611551565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f636f4465766c6973746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b61177781611468565b811461178257600080fd5b50565b61178e816114a6565b811461179957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b1150869e70c031275cde23de776b21adc0d75988f43d10d984d6e0d7ac03b7664736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000d92289838d21a99680000000000000000000000000000004b04213c2774f77e60702880654206b116d00508000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a737570657220504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095355504552504550450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000088dab37920b2e2a152e0517beab9d3522c4061ed0000000000000000000000004664b31a3684e3c5db3674a2304c510cd9a94fbe000000000000000000000000e609c7e57233896cc7730a06439c0c7c9a718c180000000000000000000000006c84368c49f84623fb3b61a3bd4814d1eb04bf080000000000000000000000003fb00ee13e29128125009200983dffcb38cd9426000000000000000000000000ec2549549534788812f14f045063d3562248a005000000000000000000000000dc133ed3521e61c2a38284175bbae8bd1a5a6eb900000000000000000000000022802e8c3542fb723822d8c495e69bb3ea5774dd000000000000000000000000353128225d52454607b36cf021b4214ff06c70ea0000000000000000000000007655b210121ea6d711f02b4542ff04c2d4e5494d0000000000000000000000008a0439c1ce93ef1107a2c39a0ee17836c4e65d03000000000000000000000000a18aa6b5a09f20dd28bc94934ee5de24def5838800000000000000000000000008449bcdf3038751ff738dee34b9932483028eb0000000000000000000000000e7fbc5ebdf0a19995eca999052052dae2b7e24d6000000000000000000000000f5bb5ef5486b7df17b1d93f4eae43b92bea3999c00000000000000000000000048752ac023c6591ee1a241b9176a0168525875030000000000000000000000000d9ad4bae847aa869310a53994c0d7c70f333048000000000000000000000000e16713e8e0465fa05849f6ed18c62727a3c434e6000000000000000000000000bd7eb4bd40c61704b1a624b655690763380a97930000000000000000000000005613053b59f1550ce6968118c5f40fbc99cd4c140000000000000000000000005f5460afac690a69895fc631e57c59145477ccda000000000000000000000000b100c8f00bbc641b4fe3f92568fb6428318721820000000000000000000000005afbfddb7d672be18b21e9adb6cc3ed02dd84cc8000000000000000000000000235d24cd1a89641b05a842233a6e399aafa91134000000000000000000000000ff2cde3c0dc4d7ab836669bbf113a81b80c55f3300000000000000000000000015a211ac7b3d336ef68e7e152454c77a68bcdd3000000000000000000000000050986fbdede547ba05bbb4d0a385c2bd201abb09

-----Decoded View---------------
Arg [0] : name_ (string): super PEPE
Arg [1] : symbol_ (string): SUPERPEPE
Arg [2] : decimals_ (uint8): 9
Arg [3] : totalSupply_ (uint256): 4200000000000000000000000000
Arg [4] : serviceFeeReceiver_ (address): 0x4B04213C2774f77e60702880654206B116D00508
Arg [5] : serviceFee_ (uint256): 10000000000000000
Arg [6] : coDeveloperslist (address[]): 0x88DAb37920b2e2A152E0517BEAb9D3522c4061Ed,0x4664b31A3684E3c5DB3674A2304c510cd9A94fBE,0xE609C7e57233896CC7730A06439C0c7C9A718C18,0x6c84368c49f84623FB3B61A3Bd4814D1EB04Bf08,0x3FB00EE13e29128125009200983DFFcB38cD9426,0xeC2549549534788812F14F045063D3562248A005,0xdC133ed3521E61c2a38284175bBAE8Bd1A5A6EB9,0x22802E8c3542FB723822d8C495E69bb3ea5774dd,0x353128225d52454607b36Cf021b4214ff06C70EA,0x7655b210121EA6d711F02b4542Ff04c2d4e5494D,0x8A0439c1ce93ef1107a2c39A0ee17836C4E65D03,0xA18AA6b5a09F20DD28bc94934ee5DE24DEf58388,0x08449BCDF3038751ff738DEe34B9932483028EB0,0xE7fBC5ebdF0a19995EcA999052052daE2b7e24d6,0xf5BB5eF5486b7df17B1D93F4eae43B92BEa3999C,0x48752ac023c6591Ee1a241b9176A016852587503,0x0d9aD4bAe847Aa869310a53994C0D7C70f333048,0xe16713E8E0465FA05849F6eD18c62727A3c434e6,0xbd7eb4bd40C61704b1A624b655690763380a9793,0x5613053B59F1550cE6968118c5F40fbc99cd4c14,0x5f5460aFAc690a69895Fc631e57C59145477CCda,0xB100C8f00bBC641B4FE3F92568fB642831872182,0x5AFBFddb7d672Be18B21E9aDb6cC3ed02dD84cC8,0x235D24cD1a89641B05A842233A6E399aAFA91134,0xff2CDe3C0dc4d7aB836669bBf113a81B80c55F33,0x15a211aC7B3D336EF68E7e152454C77a68bcDd30,0x50986FBDedE547BA05bBb4d0a385c2bd201AbB09

-----Encoded View---------------
39 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000d92289838d21a9968000000
Arg [4] : 0000000000000000000000004b04213c2774f77e60702880654206b116d00508
Arg [5] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 7375706572205045504500000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 5355504552504550450000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [12] : 00000000000000000000000088dab37920b2e2a152e0517beab9d3522c4061ed
Arg [13] : 0000000000000000000000004664b31a3684e3c5db3674a2304c510cd9a94fbe
Arg [14] : 000000000000000000000000e609c7e57233896cc7730a06439c0c7c9a718c18
Arg [15] : 0000000000000000000000006c84368c49f84623fb3b61a3bd4814d1eb04bf08
Arg [16] : 0000000000000000000000003fb00ee13e29128125009200983dffcb38cd9426
Arg [17] : 000000000000000000000000ec2549549534788812f14f045063d3562248a005
Arg [18] : 000000000000000000000000dc133ed3521e61c2a38284175bbae8bd1a5a6eb9
Arg [19] : 00000000000000000000000022802e8c3542fb723822d8c495e69bb3ea5774dd
Arg [20] : 000000000000000000000000353128225d52454607b36cf021b4214ff06c70ea
Arg [21] : 0000000000000000000000007655b210121ea6d711f02b4542ff04c2d4e5494d
Arg [22] : 0000000000000000000000008a0439c1ce93ef1107a2c39a0ee17836c4e65d03
Arg [23] : 000000000000000000000000a18aa6b5a09f20dd28bc94934ee5de24def58388
Arg [24] : 00000000000000000000000008449bcdf3038751ff738dee34b9932483028eb0
Arg [25] : 000000000000000000000000e7fbc5ebdf0a19995eca999052052dae2b7e24d6
Arg [26] : 000000000000000000000000f5bb5ef5486b7df17b1d93f4eae43b92bea3999c
Arg [27] : 00000000000000000000000048752ac023c6591ee1a241b9176a016852587503
Arg [28] : 0000000000000000000000000d9ad4bae847aa869310a53994c0d7c70f333048
Arg [29] : 000000000000000000000000e16713e8e0465fa05849f6ed18c62727a3c434e6
Arg [30] : 000000000000000000000000bd7eb4bd40c61704b1a624b655690763380a9793
Arg [31] : 0000000000000000000000005613053b59f1550ce6968118c5f40fbc99cd4c14
Arg [32] : 0000000000000000000000005f5460afac690a69895fc631e57c59145477ccda
Arg [33] : 000000000000000000000000b100c8f00bbc641b4fe3f92568fb642831872182
Arg [34] : 0000000000000000000000005afbfddb7d672be18b21e9adb6cc3ed02dd84cc8
Arg [35] : 000000000000000000000000235d24cd1a89641b05a842233a6e399aafa91134
Arg [36] : 000000000000000000000000ff2cde3c0dc4d7ab836669bbf113a81b80c55f33
Arg [37] : 00000000000000000000000015a211ac7b3d336ef68e7e152454c77a68bcdd30
Arg [38] : 00000000000000000000000050986fbdede547ba05bbb4d0a385c2bd201abb09


Deployed Bytecode Sourcemap

13883:10805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15059:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17346:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16158:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18038:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16002:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18901:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16329:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5525:94;;;:::i;:::-;;4874:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15269:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14265:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19704:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16719:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16998:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5774:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13976:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15059:91;15104:13;15137:5;15130:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15059:91;:::o;17346:210::-;17465:4;17487:39;17496:12;:10;:12::i;:::-;17510:7;17519:6;17487:8;:39::i;:::-;17544:4;17537:11;;17346:210;;;;:::o;16158:108::-;16219:7;16246:12;;16239:19;;16158:108;:::o;18038:454::-;18178:4;18195:36;18205:6;18213:9;18224:6;18195:9;:36::i;:::-;18242:220;18265:6;18286:12;:10;:12::i;:::-;18313:138;18369:6;18313:138;;;;;;;;;;;;;;;;;:11;:19;18325:6;18313:19;;;;;;;;;;;;;;;:33;18333:12;:10;:12::i;:::-;18313:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;18242:8;:220::i;:::-;18480:4;18473:11;;18038:454;;;;;:::o;16002:91::-;16051:5;16076:9;;;;;;;;;;;16069:16;;16002:91;:::o;18901:300::-;19016:4;19038:133;19061:12;:10;:12::i;:::-;19088:7;19110:50;19149:10;19110:11;:25;19122:12;:10;:12::i;:::-;19110:25;;;;;;;;;;;;;;;:34;19136:7;19110:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;19038:8;:133::i;:::-;19189:4;19182:11;;18901:300;;;;:::o;16329:177::-;16448:7;16480:9;:18;16490:7;16480:18;;;;;;;;;;;;;;;;16473:25;;16329:177;;;:::o;5525:94::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5590:21:::1;5608:1;5590:9;:21::i;:::-;5525:94::o:0;4874:87::-;4920:7;4947:6;;;;;;;;;;;4940:13;;4874:87;:::o;15269:95::-;15316:13;15349:7;15342:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15269:95;:::o;14265:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;19704:400::-;19824:4;19846:228;19869:12;:10;:12::i;:::-;19896:7;19918:145;19975:15;19918:145;;;;;;;;;;;;;;;;;:11;:25;19930:12;:10;:12::i;:::-;19918:25;;;;;;;;;;;;;;;:34;19944:7;19918:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;19846:8;:228::i;:::-;20092:4;20085:11;;19704:400;;;;:::o;16719:216::-;16841:4;16863:42;16873:12;:10;:12::i;:::-;16887:9;16898:6;16863:9;:42::i;:::-;16923:4;16916:11;;16719:216;;;;:::o;16998:201::-;17132:7;17164:11;:18;17176:5;17164:18;;;;;;;;;;;;;;;:27;17183:7;17164:27;;;;;;;;;;;;;;;;17157:34;;16998:201;;;;:::o;5774:192::-;5105:12;:10;:12::i;:::-;5094:23;;:7;:5;:7::i;:::-;:23;;;5086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5883:1:::1;5863:22;;:8;:22;;;;5855:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5939:19;5949:8;5939:9;:19::i;:::-;5774:192:::0;:::o;13976:35::-;14010:1;13976:35;:::o;8960:98::-;9018:7;9049:1;9045;:5;;;;:::i;:::-;9038:12;;8960:98;;;;:::o;3592:::-;3645:7;3672:10;3665:17;;3592:98;:::o;23090:380::-;23243:1;23226:19;;:5;:19;;;;23218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23324:1;23305:21;;:7;:21;;;;23297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23408:6;23378:11;:18;23390:5;23378:18;;;;;;;;;;;;;;;:27;23397:7;23378:27;;;;;;;;;;;;;;;:36;;;;23446:7;23430:32;;23439:5;23430:32;;;23455:6;23430:32;;;;;;:::i;:::-;;;;;;;;23090:380;;;:::o;20594:610::-;20752:1;20734:20;;:6;:20;;;;20726:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;20836:1;20815:23;;:9;:23;;;;20807:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;20891:47;20912:6;20920:9;20931:6;20891:20;:47::i;:::-;20971:108;21007:6;20971:108;;;;;;;;;;;;;;;;;:9;:17;20981:6;20971:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;20951:9;:17;20961:6;20951:17;;;;;;;;;;;;;;;:128;;;;21113:32;21138:6;21113:9;:20;21123:9;21113:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21090:9;:20;21100:9;21090:20;;;;;;;;;;;;;;;:55;;;;21178:9;21161:35;;21170:6;21161:35;;;21189:6;21161:35;;;;;;:::i;:::-;;;;;;;;20594:610;;;:::o;11239:240::-;11359:7;11417:1;11412;:6;;11420:12;11404:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;11459:1;11455;:5;11448:12;;11239:240;;;;;:::o;5974:173::-;6030:16;6049:6;;;;;;;;;;;6030:25;;6075:8;6066:6;;:17;;;;;;;;;;;;;;;;;;6130:8;6099:40;;6120:8;6099:40;;;;;;;;;;;;5974:173;;:::o;24503:182::-;24645:10;:16;24656:4;24645:16;;;;;;;;;;;;;;;;;;;;;;;;;24644:17;24636:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;24503:182;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:118::-;5249:24;5267:5;5249:24;:::i;:::-;5244:3;5237:37;5227:53;;:::o;5286:112::-;5369:22;5385:5;5369:22;:::i;:::-;5364:3;5357:35;5347:51;;:::o;5404:222::-;5497:4;5535:2;5524:9;5520:18;5512:26;;5548:71;5616:1;5605:9;5601:17;5592:6;5548:71;:::i;:::-;5502:124;;;;:::o;5632:210::-;5719:4;5757:2;5746:9;5742:18;5734:26;;5770:65;5832:1;5821:9;5817:17;5808:6;5770:65;:::i;:::-;5724:118;;;;:::o;5848:313::-;5961:4;5999:2;5988:9;5984:18;5976:26;;6048:9;6042:4;6038:20;6034:1;6023:9;6019:17;6012:47;6076:78;6149:4;6140:6;6076:78;:::i;:::-;6068:86;;5966:195;;;;:::o;6167:419::-;6333:4;6371:2;6360:9;6356:18;6348:26;;6420:9;6414:4;6410:20;6406:1;6395:9;6391:17;6384:47;6448:131;6574:4;6448:131;:::i;:::-;6440:139;;6338:248;;;:::o;6592:419::-;6758:4;6796:2;6785:9;6781:18;6773:26;;6845:9;6839:4;6835:20;6831:1;6820:9;6816:17;6809:47;6873:131;6999:4;6873:131;:::i;:::-;6865:139;;6763:248;;;:::o;7017:419::-;7183:4;7221:2;7210:9;7206:18;7198:26;;7270:9;7264:4;7260:20;7256:1;7245:9;7241:17;7234:47;7298:131;7424:4;7298:131;:::i;:::-;7290:139;;7188:248;;;:::o;7442:419::-;7608:4;7646:2;7635:9;7631:18;7623:26;;7695:9;7689:4;7685:20;7681:1;7670:9;7666:17;7659:47;7723:131;7849:4;7723:131;:::i;:::-;7715:139;;7613:248;;;:::o;7867:419::-;8033:4;8071:2;8060:9;8056:18;8048:26;;8120:9;8114:4;8110:20;8106:1;8095:9;8091:17;8084:47;8148:131;8274:4;8148:131;:::i;:::-;8140:139;;8038:248;;;:::o;8292:419::-;8458:4;8496:2;8485:9;8481:18;8473:26;;8545:9;8539:4;8535:20;8531:1;8520:9;8516:17;8509:47;8573:131;8699:4;8573:131;:::i;:::-;8565:139;;8463:248;;;:::o;8717:419::-;8883:4;8921:2;8910:9;8906:18;8898:26;;8970:9;8964:4;8960:20;8956:1;8945:9;8941:17;8934:47;8998:131;9124:4;8998:131;:::i;:::-;8990:139;;8888:248;;;:::o;9142:222::-;9235:4;9273:2;9262:9;9258:18;9250:26;;9286:71;9354:1;9343:9;9339:17;9330:6;9286:71;:::i;:::-;9240:124;;;;:::o;9370:214::-;9459:4;9497:2;9486:9;9482:18;9474:26;;9510:67;9574:1;9563:9;9559:17;9550:6;9510:67;:::i;:::-;9464:120;;;;:::o;9590:99::-;9642:6;9676:5;9670:12;9660:22;;9649:40;;;:::o;9695:169::-;9779:11;9813:6;9808:3;9801:19;9853:4;9848:3;9844:14;9829:29;;9791:73;;;;:::o;9870:305::-;9910:3;9929:20;9947:1;9929:20;:::i;:::-;9924:25;;9963:20;9981:1;9963:20;:::i;:::-;9958:25;;10117:1;10049:66;10045:74;10042:1;10039:81;10036:2;;;10123:18;;:::i;:::-;10036:2;10167:1;10164;10160:9;10153:16;;9914:261;;;;:::o;10181:96::-;10218:7;10247:24;10265:5;10247:24;:::i;:::-;10236:35;;10226:51;;;:::o;10283:90::-;10317:7;10360:5;10353:13;10346:21;10335:32;;10325:48;;;:::o;10379:126::-;10416:7;10456:42;10449:5;10445:54;10434:65;;10424:81;;;:::o;10511:77::-;10548:7;10577:5;10566:16;;10556:32;;;:::o;10594:86::-;10629:7;10669:4;10662:5;10658:16;10647:27;;10637:43;;;:::o;10686:307::-;10754:1;10764:113;10778:6;10775:1;10772:13;10764:113;;;10863:1;10858:3;10854:11;10848:18;10844:1;10839:3;10835:11;10828:39;10800:2;10797:1;10793:10;10788:15;;10764:113;;;10895:6;10892:1;10889:13;10886:2;;;10975:1;10966:6;10961:3;10957:16;10950:27;10886:2;10735:258;;;;:::o;10999:320::-;11043:6;11080:1;11074:4;11070:12;11060:22;;11127:1;11121:4;11117:12;11148:18;11138:2;;11204:4;11196:6;11192:17;11182:27;;11138:2;11266;11258:6;11255:14;11235:18;11232:38;11229:2;;;11285:18;;:::i;:::-;11229:2;11050:269;;;;:::o;11325:180::-;11373:77;11370:1;11363:88;11470:4;11467:1;11460:15;11494:4;11491:1;11484:15;11511:180;11559:77;11556:1;11549:88;11656:4;11653:1;11646:15;11680:4;11677:1;11670:15;11697:102;11738:6;11789:2;11785:7;11780:2;11773:5;11769:14;11765:28;11755:38;;11745:54;;;:::o;11805:222::-;11945:34;11941:1;11933:6;11929:14;11922:58;12014:5;12009:2;12001:6;11997:15;11990:30;11911:116;:::o;12033:225::-;12173:34;12169:1;12161:6;12157:14;12150:58;12242:8;12237:2;12229:6;12225:15;12218:33;12139:119;:::o;12264:221::-;12404:34;12400:1;12392:6;12388:14;12381:58;12473:4;12468:2;12460:6;12456:15;12449:29;12370:115;:::o;12491:161::-;12631:13;12627:1;12619:6;12615:14;12608:37;12597:55;:::o;12658:182::-;12798:34;12794:1;12786:6;12782:14;12775:58;12764:76;:::o;12846:224::-;12986:34;12982:1;12974:6;12970:14;12963:58;13055:7;13050:2;13042:6;13038:15;13031:32;12952:118;:::o;13076:223::-;13216:34;13212:1;13204:6;13200:14;13193:58;13285:6;13280:2;13272:6;13268:15;13261:31;13182:117;:::o;13305:122::-;13378:24;13396:5;13378:24;:::i;:::-;13371:5;13368:35;13358:2;;13417:1;13414;13407:12;13358:2;13348:79;:::o;13433:122::-;13506:24;13524:5;13506:24;:::i;:::-;13499:5;13496:35;13486:2;;13545:1;13542;13535:12;13486:2;13476:79;:::o

Swarm Source

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