ETH Price: $2,386.02 (+2.06%)

Token

RSGP (RSGP)
 

Overview

Max Total Supply

2,147,483,647 RSGP

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
113,510,057.825262933372569589 RSGP

Value
$0.00
0x11c1E404573f626a445B2bFbcC4ADA889d672C06
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:
RSGP

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-08
*/

//https://twitter.com/RSGPETH
//https://t.me/rsgp_eth

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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


// File contracts/RSGP.sol

//                                                                         :-+++==---::.     
//                                                                     .:=++++++++++++++=    
//                                                                    ==+++++++++++++++*=    
//                               .:::..                               =========+++++++**=    
//                            :-+++++++++++++.                        =============+++**=    
//                         :=+++++++++++++++#.                        =============+++**=    
//                        .===========++++++#.                        =============+++*#=    
//                        .===-----=====++++#.                        ============+++**#=    
//                        .===----======++++#.                        ============+++**#*    
//                        .===----=====++++*#                         ============+++**#%.   
//                        .====---=====++++*#                         -===========+++***#=   
//                        .====---=====++++**.::---==+=:              :===========+++***##   
//                        -====--=====+++++++++++++++++++=:            ===========++++**#%:  
//                        =====--=====++++++++++++++++++++**-          ============+++***#*  
//                       .=====--=====++++--===========++**#=          :===========+++***#%. 
//                       -=====--=====++++---==========++**#=          .===========++++***#= 
//                       ======--=====++++---==========++**#=           ===========++++***## 
//                      .======--=====++++--==========+++*##=           -===========+++***#%.
//   .:::--===++=-.     -======-=====+++++--==========++**##*           :===========++++***#+
// .=+++++++++++++++=-  =======-=====++++*=-=========++++**##-          .===========++++***##
// ===+++++++++++++*#* .======--=====++++**=-=========+++**###           ============++++**##
// --========+++++**#* .======--=====++++**+-=========++++**##=          ============++++***#
// --===========++**#* .======--=====++++**=:-=========+++***##.         =============+++***#
// --===========++**## .======--=====++++**= --=========+++**##*         =============+++***#
// :-==========+++**##*.======--=====++++**= :-=========++++**#%:        =============+++****
//  :-=========+++***##*======--=====++++**=  --=========+++**###        =============+++****
//   --=========+++***##*=====--====+++++**=  .-==========+++**##        ============++++****
//    --=========+++***##*====--====+++++***  .--=========+++**##        ============++++****
//     --========++++**###+===--====+++++**%  .--=========+++**##        ============++++****
//      -=========++++**##*====-=====++++**%: .--=========+++**##        ============++++**#*
//      --=========+++**##*==========++++**#= .--=========+++**##        ============++++**#*
//      --==========++**##*==========++++**#+ .--=========+++**##        ============+++***#*
//      --==========++**##*=+++++++++++++**## .--=========+++**#=        ============+++***#*
//      --==========++****+++++++++++++++**#* ---=========+++*#*        .============+++***#*
//      --==========++*++++++++++++++++++**#::--==========++*#%.        .============+++***#+
//     .--==========++*+=====+++++++++++=:-:.--=========+++*#%=         .============+++***#+
//    .---=========+++*+===---=====+++++:   ---========+++*###          .============+++***#+
//   .---========+++*##===----=====++++*:  :--========+++**#%.          .===========++++***#+
//  .--========++++*#*::=-----=====++++*- .--=======++++**##=           .===========++++***#=
//  :::--====+++++=:   :-----=====++++**- .::---===+++++=-.  .::::::::::::-=========+++***#* 
//            ..       :----======++++**-            ..  .:=++++++++++++=   .-======+++++=-. 
//                     :---======++++***-               =+++++++++++++++=      .:-=-:..      
//                       :-======++++**+:               ---==++++++++++++                    
//                          .:::...                       .:-=====++++==:                    

pragma solidity ^0.8.19;

contract RSGP is Ownable, ERC20 {
    address public uniswapV2Pair;
    
    mapping(address => bool) public blacklists;

    constructor() ERC20("RSGP", "RSGP") {
        _mint(msg.sender, 2_147_483_647 * 10 ** decimals());
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function enableTrading(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted.");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "Trading has not started yet.");
            return;
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"_uniswapV2Pair","type":"address"}],"name":"enableTrading","outputs":[],"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060048152602001630525347560e41b815250604051806040016040528060048152602001630525347560e41b8152506200006662000060620000c460201b60201c565b620000c8565b6004620000748382620003c6565b506005620000838282620003c6565b505050620000be336200009b6200011860201b60201c565b620000a890600a620005a7565b620000b890637fffffff620005bf565b6200011d565b620005ef565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b038216620001795760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001876000838362000214565b80600360008282546200019b9190620005d9565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ca908490620005d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821660009081526007602052604090205460ff161580156200025757506001600160a01b03831660009081526007602052604090205460ff16155b620002945760405162461bcd60e51b815260206004820152600c60248201526b213630b1b5b634b9ba32b21760a11b604482015260640162000170565b6006546001600160a01b03166200031d576000546001600160a01b0384811691161480620002cf57506000546001600160a01b038381169116145b6200031d5760405162461bcd60e51b815260206004820152601c60248201527f54726164696e6720686173206e6f742073746172746564207965742e00000000604482015260640162000170565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034d57607f821691505b6020821081036200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031d57600081815260208120601f850160051c810160208610156200039d5750805b601f850160051c820191505b81811015620003be57828155600101620003a9565b505050505050565b81516001600160401b03811115620003e257620003e262000322565b620003fa81620003f3845462000338565b8462000374565b602080601f831160018114620004325760008415620004195750858301515b600019600386901b1c1916600185901b178555620003be565b600085815260208120601f198616915b82811015620004635788860151825594840194600190910190840162000442565b5085821015620004825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e9578160001904821115620004cd57620004cd62000492565b80851615620004db57918102915b93841c9390800290620004ad565b509250929050565b6000826200050257506001620005a1565b816200051157506000620005a1565b81600181146200052a5760028114620005355762000555565b6001915050620005a1565b60ff84111562000549576200054962000492565b50506001821b620005a1565b5060208310610133831016604e8410600b84101617156200057a575081810a620005a1565b620005868383620004a8565b80600019048211156200059d576200059d62000492565b0290505b92915050565b6000620005b860ff841683620004f1565b9392505050565b8082028115828204841417620005a157620005a162000492565b80820180821115620005a157620005a162000492565b61148480620005ff6000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806342966c68116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102f8578063dd62ed3e1461030b578063f2fde38b1461035157600080fd5b806395d89b41146102dd578063a457c2d7146102e557600080fd5b806370a08231116100b257806370a0823114610281578063715018a6146102b75780638da5cb5b146102bf57600080fd5b806342966c681461022957806349bd5a5e1461023c57600080fd5b806318160ddd11610124578063313ce56711610109578063313ce567146101f45780633950935114610203578063404e51291461021657600080fd5b806318160ddd146101cf57806323b872dd146101e157600080fd5b806306fdde031461015657806307980cb914610174578063095ea7b31461018957806316c02129146101ac575b600080fd5b61015e610364565b60405161016b9190611201565b60405180910390f35b610187610182366004611296565b6103f6565b005b61019c6101973660046112b8565b6104c3565b604051901515815260200161016b565b61019c6101ba366004611296565b60076020526000908152604090205460ff1681565b6003545b60405190815260200161016b565b61019c6101ef3660046112e2565b6104da565b6040516012815260200161016b565b61019c6102113660046112b8565b6105c0565b61018761022436600461131e565b610609565b61018761023736600461135a565b6106e0565b60065461025c9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b6101d361028f366004611296565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101876106ed565b60005473ffffffffffffffffffffffffffffffffffffffff1661025c565b61015e61077a565b61019c6102f33660046112b8565b610789565b61019c6103063660046112b8565b610861565b6101d3610319366004611373565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61018761035f366004611296565b61086e565b606060048054610373906113a6565b80601f016020809104026020016040519081016040528092919081815260200182805461039f906113a6565b80156103ec5780601f106103c1576101008083540402835291602001916103ec565b820191906000526020600020905b8154815290600101906020018083116103cf57829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff16331461047c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60006104d033848461099b565b5060015b92915050565b60006104e7848484610b4f565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610473565b6105b5853385840361099b565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104d0918590610604908690611428565b61099b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6106ea3382610e0e565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b6107786000611004565b565b606060058054610373906113a6565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610473565b610857338585840361099b565b5060019392505050565b60006104d0338484610b4f565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b73ffffffffffffffffffffffffffffffffffffffff8116610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610473565b6106ea81611004565b73ffffffffffffffffffffffffffffffffffffffff8316610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff8216610ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610bf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff8216610c95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610473565b610ca0838383611079565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d9a908490611428565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0091815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610eb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610473565b610ebd82600083611079565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610f73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610faf90849061143b565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b42565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff161580156110d5575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16155b61113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f426c61636b6c69737465642e00000000000000000000000000000000000000006044820152606401610473565b60065473ffffffffffffffffffffffffffffffffffffffff16610fff5760005473ffffffffffffffffffffffffffffffffffffffff8481169116148061119b575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b610fff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f54726164696e6720686173206e6f742073746172746564207965742e000000006044820152606401610473565b600060208083528351808285015260005b8181101561122e57858101830151858201604001528201611212565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461129157600080fd5b919050565b6000602082840312156112a857600080fd5b6112b18261126d565b9392505050565b600080604083850312156112cb57600080fd5b6112d48361126d565b946020939093013593505050565b6000806000606084860312156112f757600080fd5b6113008461126d565b925061130e6020850161126d565b9150604084013590509250925092565b6000806040838503121561133157600080fd5b61133a8361126d565b91506020830135801515811461134f57600080fd5b809150509250929050565b60006020828403121561136c57600080fd5b5035919050565b6000806040838503121561138657600080fd5b61138f8361126d565b915061139d6020840161126d565b90509250929050565b600181811c908216806113ba57607f821691505b6020821081036113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156104d4576104d46113f9565b818103818111156104d4576104d46113f956fea26469706673582212200e9f653032b40f7fdd1e349c8903eececa42fe149cf5b3b7d7c67c1192d3fc9164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101515760003560e01c806342966c68116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102f8578063dd62ed3e1461030b578063f2fde38b1461035157600080fd5b806395d89b41146102dd578063a457c2d7146102e557600080fd5b806370a08231116100b257806370a0823114610281578063715018a6146102b75780638da5cb5b146102bf57600080fd5b806342966c681461022957806349bd5a5e1461023c57600080fd5b806318160ddd11610124578063313ce56711610109578063313ce567146101f45780633950935114610203578063404e51291461021657600080fd5b806318160ddd146101cf57806323b872dd146101e157600080fd5b806306fdde031461015657806307980cb914610174578063095ea7b31461018957806316c02129146101ac575b600080fd5b61015e610364565b60405161016b9190611201565b60405180910390f35b610187610182366004611296565b6103f6565b005b61019c6101973660046112b8565b6104c3565b604051901515815260200161016b565b61019c6101ba366004611296565b60076020526000908152604090205460ff1681565b6003545b60405190815260200161016b565b61019c6101ef3660046112e2565b6104da565b6040516012815260200161016b565b61019c6102113660046112b8565b6105c0565b61018761022436600461131e565b610609565b61018761023736600461135a565b6106e0565b60065461025c9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b6101d361028f366004611296565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101876106ed565b60005473ffffffffffffffffffffffffffffffffffffffff1661025c565b61015e61077a565b61019c6102f33660046112b8565b610789565b61019c6103063660046112b8565b610861565b6101d3610319366004611373565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b61018761035f366004611296565b61086e565b606060048054610373906113a6565b80601f016020809104026020016040519081016040528092919081815260200182805461039f906113a6565b80156103ec5780601f106103c1576101008083540402835291602001916103ec565b820191906000526020600020905b8154815290600101906020018083116103cf57829003601f168201915b5050505050905090565b60005473ffffffffffffffffffffffffffffffffffffffff16331461047c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60006104d033848461099b565b5060015b92915050565b60006104e7848484610b4f565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610473565b6105b5853385840361099b565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104d0918590610604908690611428565b61099b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461068a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6106ea3382610e0e565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461076e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b6107786000611004565b565b606060058054610373906113a6565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610473565b610857338585840361099b565b5060019392505050565b60006104d0338484610b4f565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610473565b73ffffffffffffffffffffffffffffffffffffffff8116610992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610473565b6106ea81611004565b73ffffffffffffffffffffffffffffffffffffffff8316610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff8216610ae0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610bf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff8216610c95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610473565b610ca0838383611079565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d9a908490611428565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0091815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610eb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610473565b610ebd82600083611079565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610f73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610473565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610faf90849061143b565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610b42565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205460ff161580156110d5575073ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205460ff16155b61113b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f426c61636b6c69737465642e00000000000000000000000000000000000000006044820152606401610473565b60065473ffffffffffffffffffffffffffffffffffffffff16610fff5760005473ffffffffffffffffffffffffffffffffffffffff8481169116148061119b575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b610fff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f54726164696e6720686173206e6f742073746172746564207965742e000000006044820152606401610473565b600060208083528351808285015260005b8181101561122e57858101830151858201604001528201611212565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461129157600080fd5b919050565b6000602082840312156112a857600080fd5b6112b18261126d565b9392505050565b600080604083850312156112cb57600080fd5b6112d48361126d565b946020939093013593505050565b6000806000606084860312156112f757600080fd5b6113008461126d565b925061130e6020850161126d565b9150604084013590509250925092565b6000806040838503121561133157600080fd5b61133a8361126d565b91506020830135801515811461134f57600080fd5b809150509250929050565b60006020828403121561136c57600080fd5b5035919050565b6000806040838503121561138657600080fd5b61138f8361126d565b915061139d6020840161126d565b90509250929050565b600181811c908216806113ba57607f821691505b6020821081036113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156104d4576104d46113f9565b818103818111156104d4576104d46113f956fea26469706673582212200e9f653032b40f7fdd1e349c8903eececa42fe149cf5b3b7d7c67c1192d3fc9164736f6c63430008130033

Deployed Bytecode Sourcemap

23509:974:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9306:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23897:115;;;;;;:::i;:::-;;:::i;:::-;;11473:169;;;;;;:::i;:::-;;:::i;:::-;;;1442:14:1;;1435:22;1417:41;;1405:2;1390:18;11473:169:0;1277:187:1;23589:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10426:108;10514:12;;10426:108;;;1615:25:1;;;1603:2;1588:18;10426:108:0;1469:177:1;12124:492:0;;;;;;:::i;:::-;;:::i;10268:93::-;;;10351:2;2126:36:1;;2114:2;2099:18;10268:93:0;1984:184:1;13025:215:0;;;;;;:::i;:::-;;:::i;23754:135::-;;;;;;:::i;:::-;;:::i;24399:81::-;;;;;;:::i;:::-;;:::i;23548:28::-;;;;;;;;;;;;2886:42:1;2874:55;;;2856:74;;2844:2;2829:18;23548:28:0;2710:226:1;10597:127:0;;;;;;:::i;:::-;10698:18;;10671:7;10698:18;;;:9;:18;;;;;;;10597:127;2707:103;;;:::i;2056:87::-;2102:7;2129:6;;;2056:87;;9525:104;;;:::i;13743:413::-;;;;;;:::i;:::-;;:::i;10937:175::-;;;;;;:::i;:::-;;:::i;11175:151::-;;;;;;:::i;:::-;11291:18;;;;11264:7;11291:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11175:151;2965:201;;;;;;:::i;:::-;;:::i;9306:100::-;9360:13;9393:5;9386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9306:100;:::o;23897:115::-;2102:7;2129:6;2276:23;2129:6;854:10;2276:23;2268:68;;;;;;;3850:2:1;2268:68:0;;;3832:21:1;;;3869:18;;;3862:30;3928:34;3908:18;;;3901:62;3980:18;;2268:68:0;;;;;;;;;23974:13:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;23897:115::o;11473:169::-;11556:4;11573:39;854:10;11596:7;11605:6;11573:8;:39::i;:::-;-1:-1:-1;11630:4:0;11473:169;;;;;:::o;12124:492::-;12264:4;12281:36;12291:6;12299:9;12310:6;12281:9;:36::i;:::-;12357:19;;;12330:24;12357:19;;;:11;:19;;;;;;;;854:10;12357:33;;;;;;;;12409:26;;;;12401:79;;;;;;;4211:2:1;12401:79:0;;;4193:21:1;4250:2;4230:18;;;4223:30;4289:34;4269:18;;;4262:62;4360:10;4340:18;;;4333:38;4388:19;;12401:79:0;4009:404:1;12401:79:0;12516:57;12525:6;854:10;12566:6;12547:16;:25;12516:8;:57::i;:::-;-1:-1:-1;12604:4:0;;12124:492;-1:-1:-1;;;;12124:492:0:o;13025:215::-;854:10;13113:4;13162:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13113:4;;13130:80;;13153:7;;13162:47;;13199:10;;13162:47;:::i;:::-;13130:8;:80::i;23754:135::-;2102:7;2129:6;2276:23;2129:6;854:10;2276:23;2268:68;;;;;;;3850:2:1;2268:68:0;;;3832:21:1;;;3869:18;;;3862:30;3928:34;3908:18;;;3901:62;3980:18;;2268:68:0;3648:356:1;2268:68:0;23843:20:::1;::::0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;23754:135::o;24399:81::-;24448:24;24454:10;24466:5;24448;:24::i;:::-;24399:81;:::o;2707:103::-;2102:7;2129:6;2276:23;2129:6;854:10;2276:23;2268:68;;;;;;;3850:2:1;2268:68:0;;;3832:21:1;;;3869:18;;;3862:30;3928:34;3908:18;;;3901:62;3980:18;;2268:68:0;3648:356:1;2268:68:0;2772:30:::1;2799:1;2772:18;:30::i;:::-;2707:103::o:0;9525:104::-;9581:13;9614:7;9607:14;;;;;:::i;13743:413::-;854:10;13836:4;13880:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13933:35;;;;13925:85;;;;;;;4939:2:1;13925:85:0;;;4921:21:1;4978:2;4958:18;;;4951:30;5017:34;4997:18;;;4990:62;5088:7;5068:18;;;5061:35;5113:19;;13925:85:0;4737:401:1;13925:85:0;14046:67;854:10;14069:7;14097:15;14078:16;:34;14046:8;:67::i;:::-;-1:-1:-1;14144:4:0;;13743:413;-1:-1:-1;;;13743:413:0:o;10937:175::-;11023:4;11040:42;854:10;11064:9;11075:6;11040:9;:42::i;2965:201::-;2102:7;2129:6;2276:23;2129:6;854:10;2276:23;2268:68;;;;;;;3850:2:1;2268:68:0;;;3832:21:1;;;3869:18;;;3862:30;3928:34;3908:18;;;3901:62;3980:18;;2268:68:0;3648:356:1;2268:68:0;3054:22:::1;::::0;::::1;3046:73;;;::::0;::::1;::::0;;5345:2:1;3046:73:0::1;::::0;::::1;5327:21:1::0;5384:2;5364:18;;;5357:30;5423:34;5403:18;;;5396:62;5494:8;5474:18;;;5467:36;5520:19;;3046:73:0::1;5143:402:1::0;3046:73:0::1;3130:28;3149:8;3130:18;:28::i;17427:380::-:0;17563:19;;;17555:68;;;;;;;5752:2:1;17555:68:0;;;5734:21:1;5791:2;5771:18;;;5764:30;5830:34;5810:18;;;5803:62;5901:6;5881:18;;;5874:34;5925:19;;17555:68:0;5550:400:1;17555:68:0;17642:21;;;17634:68;;;;;;;6157:2:1;17634:68:0;;;6139:21:1;6196:2;6176:18;;;6169:30;6235:34;6215:18;;;6208:62;6306:4;6286:18;;;6279:32;6328:19;;17634:68:0;5955:398:1;17634:68:0;17715:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17767:32;;1615:25:1;;;17767:32:0;;1588:18:1;17767:32:0;;;;;;;;17427:380;;;:::o;14646:733::-;14786:20;;;14778:70;;;;;;;6560:2:1;14778:70:0;;;6542:21:1;6599:2;6579:18;;;6572:30;6638:34;6618:18;;;6611:62;6709:7;6689:18;;;6682:35;6734:19;;14778:70:0;6358:401:1;14778:70:0;14867:23;;;14859:71;;;;;;;6966:2:1;14859:71:0;;;6948:21:1;7005:2;6985:18;;;6978:30;7044:34;7024:18;;;7017:62;7115:5;7095:18;;;7088:33;7138:19;;14859:71:0;6764:399:1;14859:71:0;14943:47;14964:6;14972:9;14983:6;14943:20;:47::i;:::-;15027:17;;;15003:21;15027:17;;;:9;:17;;;;;;15063:23;;;;15055:74;;;;;;;7370:2:1;15055:74:0;;;7352:21:1;7409:2;7389:18;;;7382:30;7448:34;7428:18;;;7421:62;7519:8;7499:18;;;7492:36;7545:19;;15055:74:0;7168:402:1;15055:74:0;15165:17;;;;;;;;:9;:17;;;;;;15185:22;;;15165:42;;15229:20;;;;;;;;:30;;15201:6;;15165:17;15229:30;;15201:6;;15229:30;:::i;:::-;;;;;;;;15294:9;15277:35;;15286:6;15277:35;;;15305:6;15277:35;;;;1615:25:1;;1603:2;1588:18;;1469:177;15277:35:0;;;;;;;;14767:612;14646:733;;;:::o;16398:591::-;16482:21;;;16474:67;;;;;;;7777:2:1;16474:67:0;;;7759:21:1;7816:2;7796:18;;;7789:30;7855:34;7835:18;;;7828:62;7926:3;7906:18;;;7899:31;7947:19;;16474:67:0;7575:397:1;16474:67:0;16554:49;16575:7;16592:1;16596:6;16554:20;:49::i;:::-;16641:18;;;16616:22;16641:18;;;:9;:18;;;;;;16678:24;;;;16670:71;;;;;;;8179:2:1;16670:71:0;;;8161:21:1;8218:2;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8328:4;8308:18;;;8301:32;8350:19;;16670:71:0;7977:398:1;16670:71:0;16777:18;;;;;;;:9;:18;;;;;16798:23;;;16777:44;;16843:12;:22;;16815:6;;16777:18;16843:22;;16815:6;;16843:22;:::i;:::-;;;;-1:-1:-1;;16883:37:0;;1615:25:1;;;16909:1:0;;16883:37;;;;;;1603:2:1;1588:18;16883:37:0;1469:177:1;16933:48:0;16463:526;16398:591;;:::o;3326:191::-;3400:16;3419:6;;;3436:17;;;;;;;;;;3469:40;;3419:6;;;;;;;3469:40;;3400:16;3469:40;3389:128;3326:191;:::o;24020:371::-;24165:14;;;;;;;:10;:14;;;;;;;;24164:15;:36;;;;-1:-1:-1;24184:16:0;;;;;;;:10;:16;;;;;;;;24183:17;24164:36;24156:61;;;;;;;8715:2:1;24156:61:0;;;8697:21:1;8754:2;8734:18;;;8727:30;8793:14;8773:18;;;8766:42;8825:18;;24156:61:0;8513:336:1;24156:61:0;24234:13;;:27;:13;24230:154;;2102:7;2129:6;;24286:15;;;2129:6;;24286:15;;:32;;-1:-1:-1;2102:7:0;2129:6;;24305:13;;;2129:6;;24305:13;24286:32;24278:73;;;;;;;9056:2:1;24278:73:0;;;9038:21:1;9095:2;9075:18;;;9068:30;9134;9114:18;;;9107:58;9182:18;;24278:73:0;8854:352:1;14:607;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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:186::-;886:6;939:2;927:9;918:7;914:23;910:32;907:52;;;955:1;952;945:12;907:52;978:29;997:9;978:29;:::i;:::-;968:39;827:186;-1:-1:-1;;;827:186:1:o;1018:254::-;1086:6;1094;1147:2;1135:9;1126:7;1122:23;1118:32;1115:52;;;1163:1;1160;1153:12;1115:52;1186:29;1205:9;1186:29;:::i;:::-;1176:39;1262:2;1247:18;;;;1234:32;;-1:-1:-1;;;1018:254:1:o;1651:328::-;1728:6;1736;1744;1797:2;1785:9;1776:7;1772:23;1768:32;1765:52;;;1813:1;1810;1803:12;1765:52;1836:29;1855:9;1836:29;:::i;:::-;1826:39;;1884:38;1918:2;1907:9;1903:18;1884:38;:::i;:::-;1874:48;;1969:2;1958:9;1954:18;1941:32;1931:42;;1651:328;;;;;:::o;2173:347::-;2238:6;2246;2299:2;2287:9;2278:7;2274:23;2270:32;2267:52;;;2315:1;2312;2305:12;2267:52;2338:29;2357:9;2338:29;:::i;:::-;2328:39;;2417:2;2406:9;2402:18;2389:32;2464:5;2457:13;2450:21;2443:5;2440:32;2430:60;;2486:1;2483;2476:12;2430:60;2509:5;2499:15;;;2173:347;;;;;:::o;2525:180::-;2584:6;2637:2;2625:9;2616:7;2612:23;2608:32;2605:52;;;2653:1;2650;2643:12;2605:52;-1:-1:-1;2676:23:1;;2525:180;-1:-1:-1;2525:180:1:o;2941:260::-;3009:6;3017;3070:2;3058:9;3049:7;3045:23;3041:32;3038:52;;;3086:1;3083;3076:12;3038:52;3109:29;3128:9;3109:29;:::i;:::-;3099:39;;3157:38;3191:2;3180:9;3176:18;3157:38;:::i;:::-;3147:48;;2941:260;;;;;:::o;3206:437::-;3285:1;3281:12;;;;3328;;;3349:61;;3403:4;3395:6;3391:17;3381:27;;3349:61;3456:2;3448:6;3445:14;3425:18;3422:38;3419:218;;3493:77;3490:1;3483:88;3594:4;3591:1;3584:15;3622:4;3619:1;3612:15;3419:218;;3206:437;;;:::o;4418:184::-;4470:77;4467:1;4460:88;4567:4;4564:1;4557:15;4591:4;4588:1;4581:15;4607:125;4672:9;;;4693:10;;;4690:36;;;4706:18;;:::i;8380:128::-;8447:9;;;8468:11;;;8465:37;;;8482:18;;:::i

Swarm Source

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