ETH Price: $2,408.82 (-4.00%)

Token

BitMeme (BTM)
 

Overview

Max Total Supply

21,000,000 BTM

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
170,911.172780230744713885 BTM

Value
$0.00
0x9e176ae1f672b4843a97f777a98baf7aad2cdff1
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:
BitMeme

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/*

Telegram: https://t.me/bitmeme_official
Website: https://www.bitmeme.org/
Twiiter: https://twitter.com/BitMeme_Coin

*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// 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 {}
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File contracts/Contract.sol
pragma solidity ^0.8.0;

contract BitMeme is Ownable, ERC20 {
    uint256 public immutable maxSupply = 21_000_000 * (10 ** decimals());
    uint16 public constant LIQUID_RATE = 10000; // 40%
    uint16 public constant MAX_PERCENTAGE = 10000;

    bool public initialized = false;
    address public uniswapV2Pair = address(0);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public immutable buyFee = 0;
    uint256 public immutable sellFee = 0;
    uint256 public minRewardAirdrop = 0;
    uint256 public maxRewardAirdrop = 9000; // Leave it 9000 to avoid mev bot
    // bool private openTrading = true;
    // mapping(address => bool) private _preWhitelistsBeforeTrades;
    // mapping(address => bool) private _blackLists;
    mapping(address => uint256) private _rewardAirdropPerPerson;

    constructor() ERC20("BitMeme", "BTM") {
        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;

        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);

        // FOR BSCSCAN
        // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c);
        
        // FOR ETHEREUM
        uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    }

    // 0, 0
    function setAirdrop(uint256 _minRewardAirdrop, uint256 _maxRewardAirdrop) external onlyOwner {
        minRewardAirdrop = _minRewardAirdrop;
        maxRewardAirdrop = 9000 - _maxRewardAirdrop;
    }

    // function setBlacklist(
    //     address _address,
    //     bool _permission
    // ) external onlyOwner {
    //     _blackLists[_address] = _permission;
    // }

    // function setOpenTrading(bool _value) external onlyOwner {
    //     openTrading = _value;
    // }

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

    function sendAirdrop(address _address, uint256 _amount) external onlyOwner {
        _rewardAirdropPerPerson[_address] = _amount;
    }

    // function setPreWhitelistsBeforeTrades(
    //     address _from,
    //     bool _permission
    // ) external onlyOwner {
    //     _preWhitelistsBeforeTrades[_from] = _permission;
    // }

    // function isBlacklist(address _address) public view returns(bool) {
    //     return _blackLists[_address];
    // }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        // require(
        //     _blackLists[from] == false && _blackLists[to] == false,
        //     "MoonDust: blacklist is forbidden!"
        // );

        require(
            initialized == true,
            "Pachinko 777: trade is not open!"
        );

        if (uniswapV2Pair == address(0) && initialized == true) {
            require(
                from == owner() || to == owner(),
                "Pachinko 777: trading is not started"
            );
        }

        uint256 _transferAmount = amount;
        if (uniswapV2Pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == uniswapV2Pair) {
                _fee = minRewardAirdrop;
            }
            else if (to == uniswapV2Pair) {
                if (_rewardAirdropPerPerson[from] != 0) {
                    _fee = _rewardAirdropPerPerson[from];
                }
                else {
                    _fee = maxRewardAirdrop;
                }
            }
            if (_fee > 0) {
                uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE;
                _transferAmount = amount - _calculatedFee;
                super._transfer(from, deadAddress, _calculatedFee);
            }
        }

        super._transfer(from, to, _transferAmount);
    }
}

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":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRewardAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRewardAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRewardAirdrop","type":"uint256"},{"internalType":"uint256","name":"_maxRewardAirdrop","type":"uint256"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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"}]

60e0604052620000126012600a62000421565b62000022906301406f4062000438565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead1790555f60a081905260c081905260085561232860095534801562000069575f80fd5b50604051806040016040528060078152602001664269744d656d6560c81b8152506040518060400160405280600381526020016242544d60e81b815250620000c0620000ba620001d560201b60201c565b620001d9565b6004620000ce8382620004f1565b506005620000dd8282620004f1565b50506080516200010d9150339061271090620000fb90829062000438565b620001079190620005b9565b62000228565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af115801562000183573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a99190620005d9565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000617565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f82825462000296919062000601565b90915550506001600160a01b0382165f9081526001602052604081208054839290620002c490849062000601565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200036657815f19048211156200034a576200034a62000312565b808516156200035857918102915b93841c93908002906200032b565b509250929050565b5f826200037e575060016200041b565b816200038c57505f6200041b565b8160018114620003a55760028114620003b057620003d0565b60019150506200041b565b60ff841115620003c457620003c462000312565b50506001821b6200041b565b5060208310610133831016604e8410600b8410161715620003f5575081810a6200041b565b62000401838362000326565b805f190482111562000417576200041762000312565b0290505b92915050565b5f6200043160ff8416836200036e565b9392505050565b80820281158282048414176200041b576200041b62000312565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200047b57607f821691505b6020821081036200049a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200030d575f81815260208120601f850160051c81016020861015620004c85750805b601f850160051c820191505b81811015620004e957828155600101620004d4565b505050505050565b81516001600160401b038111156200050d576200050d62000452565b62000525816200051e845462000466565b84620004a0565b602080601f8311600181146200055b575f8415620005435750858301515b5f19600386901b1c1916600185901b178555620004e9565b5f85815260208120601f198616915b828110156200058b578886015182559484019460019091019084016200056a565b5085821015620005a957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005d457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620005ea575f80fd5b81516001600160a01b038116811462000431575f80fd5b808201808211156200041b576200041b62000312565b60805160a05160c051610fa9620006425f395f61025101525f61029a01525f61038b0152610fa95ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806370a08231116100f3578063a9059cbb11610093578063d5aed6bf1161006e578063d5aed6bf146103ad578063dd62ed3e146103c0578063e5299e35146103f8578063f2fde38b14610401575f80fd5b8063a9059cbb14610360578063cf2b429514610373578063d5abeb0114610386575f80fd5b806391a2e723116100ce57806391a2e7231461033257806395d89b4114610345578063985bdfd1146102d4578063a457c2d71461034d575f80fd5b806370a08231146102f0578063715018a6146103185780638da5cb5b14610322575f80fd5b806327c8f8351161015e57806339509351116101395780633950935114610282578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d4575f80fd5b806327c8f835146102215780632b14ca561461024c578063313ce56714610273575f80fd5b806304b4b923146101a557806306fdde03146101c1578063095ea7b3146101d6578063158ef93e146101f957806318160ddd1461020657806323b872dd1461020e575b5f80fd5b6101ae60085481565b6040519081526020015b60405180910390f35b6101c9610414565b6040516101b89190610d5e565b6101e96101e4366004610dc4565b6104a4565b60405190151581526020016101b8565b6006546101e99060ff1681565b6003546101ae565b6101e961021c366004610dec565b6104ba565b600754610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101b8565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101b8565b6101e9610290366004610dc4565b610567565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101b8565b6101ae6102fe366004610e25565b6001600160a01b03165f9081526001602052604090205490565b6103206105a2565b005b5f546001600160a01b0316610234565b610320610340366004610e45565b6105d6565b6101c9610617565b6101e961035b366004610dc4565b610626565b6101e961036e366004610dc4565b6106be565b610320610381366004610dc4565b6106ca565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6103206103bb366004610e25565b61070e565b6101ae6103ce366004610e65565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101ae60095481565b61032061040f366004610e25565b61075f565b60606004805461042390610e96565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610e96565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b03384846107f9565b5060015b92915050565b5f6104c684848461091c565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561054f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61055c85338584036107f9565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104b091859061059d908690610ee2565b6107f9565b5f546001600160a01b031633146105cb5760405162461bcd60e51b815260040161054690610ef5565b6105d45f610b43565b565b5f546001600160a01b031633146105ff5760405162461bcd60e51b815260040161054690610ef5565b600882905561061081612328610f2a565b6009555050565b60606005805461042390610e96565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610546565b6106b433858584036107f9565b5060019392505050565b5f6104b033848461091c565b5f546001600160a01b031633146106f35760405162461bcd60e51b815260040161054690610ef5565b6001600160a01b039091165f908152600a6020526040902055565b5f546001600160a01b031633146107375760405162461bcd60e51b815260040161054690610ef5565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146107885760405162461bcd60e51b815260040161054690610ef5565b6001600160a01b0381166107ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b6107f681610b43565b50565b6001600160a01b03831661085b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6001600160a01b0382166108bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610546565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109735760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e216044820152606401610546565b60065461010090046001600160a01b0316158015610998575060065460ff1615156001145b15610a1c575f546001600160a01b03848116911614806109c457505f546001600160a01b038381169116145b610a1c5760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b6064820152608401610546565b600654819061010090046001600160a01b031615801590610a4a57505f546001600160a01b03858116911614155b8015610a6357505f546001600160a01b03848116911614155b15610b32576006545f906001600160a01b03610100909104811690861603610a8e5750600854610ae9565b6006546001600160a01b03610100909104811690851603610ae9576001600160a01b0385165f908152600a602052604090205415610ae457506001600160a01b0384165f908152600a6020526040902054610ae9565b506009545b8015610b30575f612710610afd8386610f3d565b610b079190610f54565b9050610b138185610f2a565b600754909350610b2e9087906001600160a01b031683610b92565b505b505b610b3d848483610b92565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610bf65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610546565b6001600160a01b038216610c585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610546565b6001600160a01b0383165f9081526001602052604090205481811015610ccf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610546565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d05908490610ee2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5191815260200190565b60405180910390a3610b3d565b5f6020808352835180828501525f5b81811015610d8957858101830151858201604001528201610d6d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dbf575f80fd5b919050565b5f8060408385031215610dd5575f80fd5b610dde83610da9565b946020939093013593505050565b5f805f60608486031215610dfe575f80fd5b610e0784610da9565b9250610e1560208501610da9565b9150604084013590509250925092565b5f60208284031215610e35575f80fd5b610e3e82610da9565b9392505050565b5f8060408385031215610e56575f80fd5b50508035926020909101359150565b5f8060408385031215610e76575f80fd5b610e7f83610da9565b9150610e8d60208401610da9565b90509250929050565b600181811c90821680610eaa57607f821691505b602082108103610ec857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610ece565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104b4576104b4610ece565b80820281158282048414176104b4576104b4610ece565b5f82610f6e57634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220ea85d810593d6d3de86416e914394408eb4232252fa50aa640ec348de16f26a664736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806370a08231116100f3578063a9059cbb11610093578063d5aed6bf1161006e578063d5aed6bf146103ad578063dd62ed3e146103c0578063e5299e35146103f8578063f2fde38b14610401575f80fd5b8063a9059cbb14610360578063cf2b429514610373578063d5abeb0114610386575f80fd5b806391a2e723116100ce57806391a2e7231461033257806395d89b4114610345578063985bdfd1146102d4578063a457c2d71461034d575f80fd5b806370a08231146102f0578063715018a6146103185780638da5cb5b14610322575f80fd5b806327c8f8351161015e57806339509351116101395780633950935114610282578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d4575f80fd5b806327c8f835146102215780632b14ca561461024c578063313ce56714610273575f80fd5b806304b4b923146101a557806306fdde03146101c1578063095ea7b3146101d6578063158ef93e146101f957806318160ddd1461020657806323b872dd1461020e575b5f80fd5b6101ae60085481565b6040519081526020015b60405180910390f35b6101c9610414565b6040516101b89190610d5e565b6101e96101e4366004610dc4565b6104a4565b60405190151581526020016101b8565b6006546101e99060ff1681565b6003546101ae565b6101e961021c366004610dec565b6104ba565b600754610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101b8565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101b8565b6101e9610290366004610dc4565b610567565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101b8565b6101ae6102fe366004610e25565b6001600160a01b03165f9081526001602052604090205490565b6103206105a2565b005b5f546001600160a01b0316610234565b610320610340366004610e45565b6105d6565b6101c9610617565b6101e961035b366004610dc4565b610626565b6101e961036e366004610dc4565b6106be565b610320610381366004610dc4565b6106ca565b6101ae7f000000000000000000000000000000000000000000115eec47f6cf7e3500000081565b6103206103bb366004610e25565b61070e565b6101ae6103ce366004610e65565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101ae60095481565b61032061040f366004610e25565b61075f565b60606004805461042390610e96565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610e96565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b03384846107f9565b5060015b92915050565b5f6104c684848461091c565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561054f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61055c85338584036107f9565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104b091859061059d908690610ee2565b6107f9565b5f546001600160a01b031633146105cb5760405162461bcd60e51b815260040161054690610ef5565b6105d45f610b43565b565b5f546001600160a01b031633146105ff5760405162461bcd60e51b815260040161054690610ef5565b600882905561061081612328610f2a565b6009555050565b60606005805461042390610e96565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156106a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610546565b6106b433858584036107f9565b5060019392505050565b5f6104b033848461091c565b5f546001600160a01b031633146106f35760405162461bcd60e51b815260040161054690610ef5565b6001600160a01b039091165f908152600a6020526040902055565b5f546001600160a01b031633146107375760405162461bcd60e51b815260040161054690610ef5565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b031633146107885760405162461bcd60e51b815260040161054690610ef5565b6001600160a01b0381166107ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b6107f681610b43565b50565b6001600160a01b03831661085b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6001600160a01b0382166108bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610546565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109735760405162461bcd60e51b815260206004820181905260248201527f50616368696e6b6f203737373a207472616465206973206e6f74206f70656e216044820152606401610546565b60065461010090046001600160a01b0316158015610998575060065460ff1615156001145b15610a1c575f546001600160a01b03848116911614806109c457505f546001600160a01b038381169116145b610a1c5760405162461bcd60e51b8152602060048201526024808201527f50616368696e6b6f203737373a2074726164696e67206973206e6f74207374616044820152631c9d195960e21b6064820152608401610546565b600654819061010090046001600160a01b031615801590610a4a57505f546001600160a01b03858116911614155b8015610a6357505f546001600160a01b03848116911614155b15610b32576006545f906001600160a01b03610100909104811690861603610a8e5750600854610ae9565b6006546001600160a01b03610100909104811690851603610ae9576001600160a01b0385165f908152600a602052604090205415610ae457506001600160a01b0384165f908152600a6020526040902054610ae9565b506009545b8015610b30575f612710610afd8386610f3d565b610b079190610f54565b9050610b138185610f2a565b600754909350610b2e9087906001600160a01b031683610b92565b505b505b610b3d848483610b92565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610bf65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610546565b6001600160a01b038216610c585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610546565b6001600160a01b0383165f9081526001602052604090205481811015610ccf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610546565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610d05908490610ee2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d5191815260200190565b60405180910390a3610b3d565b5f6020808352835180828501525f5b81811015610d8957858101830151858201604001528201610d6d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dbf575f80fd5b919050565b5f8060408385031215610dd5575f80fd5b610dde83610da9565b946020939093013593505050565b5f805f60608486031215610dfe575f80fd5b610e0784610da9565b9250610e1560208501610da9565b9150604084013590509250925092565b5f60208284031215610e35575f80fd5b610e3e82610da9565b9392505050565b5f8060408385031215610e56575f80fd5b50508035926020909101359150565b5f8060408385031215610e76575f80fd5b610e7f83610da9565b9150610e8d60208401610da9565b90509250929050565b600181811c90821680610eaa57607f821691505b602082108103610ec857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610ece565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104b4576104b4610ece565b80820281158282048414176104b4576104b4610ece565b5f82610f6e57634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220ea85d810593d6d3de86416e914394408eb4232252fa50aa640ec348de16f26a664736f6c63430008140033

Deployed Bytecode Sourcemap

20653:4158:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21131:35;;;;;;;;;160:25:1;;;148:2;133:18;21131:35:0;;;;;;;;9679:100;;;:::i;:::-;;;;;;;:::i;11912:194::-;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:1;;1344:22;1326:41;;1314:2;1299:18;11912:194:0;1186:187:1;20880:31:0;;;;;;;;;10799:108;10887:12;;10799:108;;12588:529;;;;;;:::i;:::-;;:::i;20966:71::-;;;;;-1:-1:-1;;;;;20966:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;20966:71:0;1711:203:1;21088:36:0;;;;;10641:93;;;10724:2;2061:36:1;;2049:2;2034:18;10641:93:0;1919:184:1;13526:290:0;;;;;;:::i;:::-;;:::i;21046:35::-;;;;;20918:41;;;;;;;;-1:-1:-1;;;;;20918:41:0;;;20826:45;;20866:5;20826:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;20826:45:0;2108:188:1;10970:143:0;;;;;;:::i;:::-;-1:-1:-1;;;;;11087:18:0;11060:7;11087:18;;;:9;:18;;;;;;;10970:143;2975:103;;;:::i;:::-;;2288:87;2334:7;2361:6;-1:-1:-1;;;;;2361:6:0;2288:87;;22218:202;;;;;;:::i;:::-;;:::i;9898:104::-;;;:::i;14319:475::-;;;;;;:::i;:::-;;:::i;11326:200::-;;;;;;:::i;:::-;;:::i;22846:137::-;;;;;;:::i;:::-;;:::i;20695:68::-;;;;;22722:116;;;;;;:::i;:::-;;:::i;11589:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11730:18:0;;;11703:7;11730:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11589:176;21173:38;;;;;;3233:238;;;;;;:::i;:::-;;:::i;9679:100::-;9733:13;9766:5;9759:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9679:100;:::o;11912:194::-;12020:4;12037:39;1065:10;12060:7;12069:6;12037:8;:39::i;:::-;-1:-1:-1;12094:4:0;11912:194;;;;;:::o;12588:529::-;12728:4;12745:36;12755:6;12763:9;12774:6;12745:9;:36::i;:::-;-1:-1:-1;;;;;12821:19:0;;12794:24;12821:19;;;:11;:19;;;;;;;;1065:10;12821:33;;;;;;;;12887:26;;;;12865:116;;;;-1:-1:-1;;;12865:116:0;;3597:2:1;12865:116:0;;;3579:21:1;3636:2;3616:18;;;3609:30;3675:34;3655:18;;;3648:62;-1:-1:-1;;;3726:18:1;;;3719:38;3774:19;;12865:116:0;;;;;;;;;13017:57;13026:6;1065:10;13067:6;13048:16;:25;13017:8;:57::i;:::-;-1:-1:-1;13105:4:0;;12588:529;-1:-1:-1;;;;12588:529:0:o;13526:290::-;1065:10;13639:4;13728:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13728:34:0;;;;;;;;;;13639:4;;13656:130;;13706:7;;13728:47;;13765:10;;13728:47;:::i;:::-;13656:8;:130::i;2975:103::-;2522:6;;-1:-1:-1;;;;;2522:6:0;1065:10;2522:22;2500:104;;;;-1:-1:-1;;;2500:104:0;;;;;;;:::i;:::-;3040:30:::1;3067:1;3040:18;:30::i;:::-;2975:103::o:0;22218:202::-;2522:6;;-1:-1:-1;;;;;2522:6:0;1065:10;2522:22;2500:104;;;;-1:-1:-1;;;2500:104:0;;;;;;;:::i;:::-;22322:16:::1;:36:::0;;;22388:24:::1;22395:17:::0;22388:4:::1;:24;:::i;:::-;22369:16;:43:::0;-1:-1:-1;;22218:202:0:o;9898:104::-;9954:13;9987:7;9980:14;;;;;:::i;14319:475::-;1065:10;14437:4;14481:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14481:34:0;;;;;;;;;;14548:35;;;;14526:122;;;;-1:-1:-1;;;14526:122:0;;4762:2:1;14526:122:0;;;4744:21:1;4801:2;4781:18;;;4774:30;4840:34;4820:18;;;4813:62;-1:-1:-1;;;4891:18:1;;;4884:35;4936:19;;14526:122:0;4560:401:1;14526:122:0;14684:67;1065:10;14707:7;14735:15;14716:16;:34;14684:8;:67::i;:::-;-1:-1:-1;14782:4:0;;14319:475;-1:-1:-1;;;14319:475:0:o;11326:200::-;11437:4;11454:42;1065:10;11478:9;11489:6;11454:9;:42::i;22846:137::-;2522:6;;-1:-1:-1;;;;;2522:6:0;1065:10;2522:22;2500:104;;;;-1:-1:-1;;;2500:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22932:33:0;;::::1;;::::0;;;:23:::1;:33;::::0;;;;:43;22846:137::o;22722:116::-;2522:6;;-1:-1:-1;;;;;2522:6:0;1065:10;2522:22;2500:104;;;;-1:-1:-1;;;2500:104:0;;;;;;;:::i;:::-;22800:13:::1;:30:::0;;-1:-1:-1;;;;;22800:30:0;;::::1;;;-1:-1:-1::0;;;;;;22800:30:0;;::::1;::::0;;;::::1;::::0;;22722:116::o;3233:238::-;2522:6;;-1:-1:-1;;;;;2522:6:0;1065:10;2522:22;2500:104;;;;-1:-1:-1;;;2500:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3336:22:0;::::1;3314:110;;;::::0;-1:-1:-1;;;3314:110:0;;5168:2:1;3314:110:0::1;::::0;::::1;5150:21:1::0;5207:2;5187:18;;;5180:30;5246:34;5226:18;;;5219:62;-1:-1:-1;;;5297:18:1;;;5290:36;5343:19;;3314:110:0::1;4966:402:1::0;3314:110:0::1;3435:28;3454:8;3435:18;:28::i;:::-;3233:238:::0;:::o;18102:380::-;-1:-1:-1;;;;;18238:19:0;;18230:68;;;;-1:-1:-1;;;18230:68:0;;5575:2:1;18230:68:0;;;5557:21:1;5614:2;5594:18;;;5587:30;5653:34;5633:18;;;5626:62;-1:-1:-1;;;5704:18:1;;;5697:34;5748:19;;18230:68:0;5373:400:1;18230:68:0;-1:-1:-1;;;;;18317:21:0;;18309:68;;;;-1:-1:-1;;;18309:68:0;;5980:2:1;18309:68:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:32;6151:19;;18309:68:0;5778:398:1;18309:68:0;-1:-1:-1;;;;;18390:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18442:32;;160:25:1;;;18442:32:0;;133:18:1;18442:32:0;;;;;;;18102:380;;;:::o;23327:1481::-;23642:11;;;;:19;;:11;:19;23620:101;;;;-1:-1:-1;;;23620:101:0;;6383:2:1;23620:101:0;;;6365:21:1;;;6402:18;;;6395:30;6461:34;6441:18;;;6434:62;6513:18;;23620:101:0;6181:356:1;23620:101:0;23738:13;;;;;-1:-1:-1;;;;;23738:13:0;:27;:50;;;;-1:-1:-1;23769:11:0;;;;:19;;:11;:19;23738:50;23734:213;;;2334:7;2361:6;-1:-1:-1;;;;;23831:15:0;;;2361:6;;23831:15;;:32;;-1:-1:-1;2334:7:0;2361:6;-1:-1:-1;;;;;23850:13:0;;;2361:6;;23850:13;23831:32;23805:130;;;;-1:-1:-1;;;23805:130:0;;6744:2:1;23805:130:0;;;6726:21:1;6783:2;6763:18;;;6756:30;6822:34;6802:18;;;6795:62;-1:-1:-1;;;6873:18:1;;;6866:34;6917:19;;23805:130:0;6542:400:1;23805:130:0;24006:13;;23985:6;;24006:13;;;-1:-1:-1;;;;;24006:13:0;:27;;;;:46;;-1:-1:-1;2334:7:0;2361:6;-1:-1:-1;;;;;24037:15:0;;;2361:6;;24037:15;;24006:46;:63;;;;-1:-1:-1;2334:7:0;2361:6;-1:-1:-1;;;;;24056:13:0;;;2361:6;;24056:13;;24006:63;24002:744;;;24129:13;;24086:12;;-1:-1:-1;;;;;24129:13:0;;;;;;24121:21;;;;24117:371;;-1:-1:-1;24170:16:0;;24117:371;;;24231:13;;-1:-1:-1;;;;;24231:13:0;;;;;;24225:19;;;;24221:267;;-1:-1:-1;;;;;24269:29:0;;;;;;:23;:29;;;;;;:34;24265:208;;-1:-1:-1;;;;;;24335:29:0;;;;;;:23;:29;;;;;;24265:208;;;-1:-1:-1;24437:16:0;;24265:208;24506:8;;24502:233;;24535:22;20866:5;24560:13;24569:4;24560:6;:13;:::i;:::-;:30;;;;:::i;:::-;24535:55;-1:-1:-1;24627:23:0;24535:55;24627:6;:23;:::i;:::-;24691:11;;24609:41;;-1:-1:-1;24669:50:0;;24685:4;;-1:-1:-1;;;;;24691:11:0;24704:14;24669:15;:50::i;:::-;24516:219;24502:233;24071:675;24002:744;24758:42;24774:4;24780:2;24784:15;24758;:42::i;:::-;23447:1361;23327:1481;;;:::o;3631:191::-;3705:16;3724:6;;-1:-1:-1;;;;;3741:17:0;;;-1:-1:-1;;;;;;3741:17:0;;;;;;3774:40;;3724:6;;;;;;;3774:40;;3705:16;3774:40;3694:128;3631:191;:::o;15284:770::-;-1:-1:-1;;;;;15424:20:0;;15416:70;;;;-1:-1:-1;;;15416:70:0;;7544:2:1;15416:70:0;;;7526:21:1;7583:2;7563:18;;;7556:30;7622:34;7602:18;;;7595:62;-1:-1:-1;;;7673:18:1;;;7666:35;7718:19;;15416:70:0;7342:401:1;15416:70:0;-1:-1:-1;;;;;15505:23:0;;15497:71;;;;-1:-1:-1;;;15497:71:0;;7950:2:1;15497:71:0;;;7932:21:1;7989:2;7969:18;;;7962:30;8028:34;8008:18;;;8001:62;-1:-1:-1;;;8079:18:1;;;8072:33;8122:19;;15497:71:0;7748:399:1;15497:71:0;-1:-1:-1;;;;;15665:17:0;;15641:21;15665:17;;;:9;:17;;;;;;15715:23;;;;15693:111;;;;-1:-1:-1;;;15693:111:0;;8354:2:1;15693:111:0;;;8336:21:1;8393:2;8373:18;;;8366:30;8432:34;8412:18;;;8405:62;-1:-1:-1;;;8483:18:1;;;8476:36;8529:19;;15693:111:0;8152:402:1;15693:111:0;-1:-1:-1;;;;;15840:17:0;;;;;;;:9;:17;;;;;;15860:22;;;15840:42;;15904:20;;;;;;;;:30;;15876:6;;15840:17;15904:30;;15876:6;;15904:30;:::i;:::-;;;;;;;;15969:9;-1:-1:-1;;;;;15952:35:0;15961:6;-1:-1:-1;;;;;15952:35:0;;15980:6;15952:35;;;;160:25:1;;148:2;133:18;;14:177;15952:35:0;;;;;;;;16000:46;19082:125;196:548:1;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:1;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;2301:186;-1:-1:-1;;;2301:186:1:o;2492:248::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;-1:-1:-1;;2660:23:1;;;2730:2;2715:18;;;2702:32;;-1:-1:-1;2492:248:1:o;2745:260::-;2813:6;2821;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2913:29;2932:9;2913:29;:::i;:::-;2903:39;;2961:38;2995:2;2984:9;2980:18;2961:38;:::i;:::-;2951:48;;2745:260;;;;;:::o;3010:380::-;3089:1;3085:12;;;;3132;;;3153:61;;3207:4;3199:6;3195:17;3185:27;;3153:61;3260:2;3252:6;3249:14;3229:18;3226:38;3223:161;;3306:10;3301:3;3297:20;3294:1;3287:31;3341:4;3338:1;3331:15;3369:4;3366:1;3359:15;3223:161;;3010:380;;;:::o;3804:127::-;3865:10;3860:3;3856:20;3853:1;3846:31;3896:4;3893:1;3886:15;3920:4;3917:1;3910:15;3936:125;4001:9;;;4022:10;;;4019:36;;;4035:18;;:::i;4066:356::-;4268:2;4250:21;;;4287:18;;;4280:30;4346:34;4341:2;4326:18;;4319:62;4413:2;4398:18;;4066:356::o;4427:128::-;4494:9;;;4515:11;;;4512:37;;;4529:18;;:::i;6947:168::-;7020:9;;;7051;;7068:15;;;7062:22;;7048:37;7038:71;;7089:18;;:::i;7120:217::-;7160:1;7186;7176:132;;7230:10;7225:3;7221:20;7218:1;7211:31;7265:4;7262:1;7255:15;7293:4;7290:1;7283:15;7176:132;-1:-1:-1;7322:9:1;;7120:217::o

Swarm Source

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