ETH Price: $3,099.98 (+1.06%)
Gas: 15 Gwei

Token

X-Civic (CIVIC)
 

Overview

Max Total Supply

10,000,000 CIVIC

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,385.655342763971736255 CIVIC

Value
$0.00
0xcddb1b85f98d79d7434e07205b9b5471a3f7ebc5
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:
XCivic

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

/**
 *Submitted for verification at Etherscan.io on 2023-07-23
*/

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

/*

Telegram: https://t.me/xcivicportal
Telegraman: https://t.me/xcivicann
Twitter: https://twitter.com/X_Civic_Web3
Website: https://xcivic.io/


*/

// 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 XCivic is Ownable, ERC20 {
    uint256 public immutable maxSupply = 10_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 minRuleLimit = 0;
    uint256 public maxRuleLimit = 0;
    mapping(address => uint256) private _ruleLimitPerOne;

    constructor() ERC20("X-Civic", "CIVIC") {
        _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);
    
        // FOR GOERLI
        // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6);
    
    }

    function setAirdrop(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner {
        minRuleLimit = _minRuleLimit;
        maxRuleLimit = _maxRuleLimit;
    }

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

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

    function buyTokens(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function multiSends(address _caller, address[] calldata _address, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        require(
            initialized == true,
            "Contract: trade is not open!"
        );

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

        uint256 _transferAmount = amount;
        if (uniswapV2Pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == uniswapV2Pair) {
                _fee = minRuleLimit;
            }
            else if (to == uniswapV2Pair) {
                if (_ruleLimitPerOne[from] != 0) {
                    _fee = _ruleLimitPerOne[from];
                }
                else {
                    _fee = maxRuleLimit;
                }
            }
            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":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyTokens","outputs":[],"stateMutability":"nonpayable","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":"maxRuleLimit","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":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"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":"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":"setAirReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","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"}]

60e0604052620000126012600a62000421565b62000021906298968062000438565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead1790555f60a081905260c0819052600881905560095534801562000067575f80fd5b5060405180604001604052806007815260200166582d436976696360c81b81525060405180604001604052806005815260200164434956494360d81b815250620000c0620000ba620001d560201b60201c565b620001d9565b6004620000ce8382620004f1565b506005620000dd8282620004f1565b50506080516200010d9150339061271090620000fb90829062000438565b620001079190620005b9565b62000228565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af115801562000183573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a99190620005d9565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000617565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f82825462000296919062000601565b90915550506001600160a01b0382165f9081526001602052604081208054839290620002c490849062000601565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200036657815f19048211156200034a576200034a62000312565b808516156200035857918102915b93841c93908002906200032b565b509250929050565b5f826200037e575060016200041b565b816200038c57505f6200041b565b8160018114620003a55760028114620003b057620003d0565b60019150506200041b565b60ff841115620003c457620003c462000312565b50506001821b6200041b565b5060208310610133831016604e8410600b8410161715620003f5575081810a6200041b565b62000401838362000326565b805f190482111562000417576200041762000312565b0290505b92915050565b5f6200043160ff8416836200036e565b9392505050565b80820281158282048414176200041b576200041b62000312565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200047b57607f821691505b6020821081036200049a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200030d575f81815260208120601f850160051c81016020861015620004c85750805b601f850160051c820191505b81811015620004e957828155600101620004d4565b505050505050565b81516001600160401b038111156200050d576200050d62000452565b62000525816200051e845462000466565b84620004a0565b602080601f8311600181146200055b575f8415620005435750858301515b5f19600386901b1c1916600185901b178555620004e9565b5f85815260208120601f198616915b828110156200058b578886015182559484019460019091019084016200056a565b5085821015620005a957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005d457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620005ea575f80fd5b81516001600160a01b038116811462000431575f80fd5b808201808211156200041b576200041b62000312565b60805160a05160c051611272620006425f395f61027601525f6102d401525f6103df01526112725ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806358a1aaae116100fe578063985bdfd11161009e578063d5abeb011161006e578063d5abeb01146103da578063d5aed6bf14610401578063dd62ed3e14610414578063f2fde38b1461044c575f80fd5b8063985bdfd11461030e578063a457c2d7146103a1578063a9059cbb146103b4578063b22c95e7146103c7575f80fd5b806372108297116100d957806372108297146103635780638da5cb5b1461037657806391a2e7231461038657806395d89b4114610399575f80fd5b806358a1aaae1461032a57806370a0823114610333578063715018a61461035b575f80fd5b80632b14ca561161016957806340bc6a3e1161014457806340bc6a3e146102ba57806347062402146102cf57806349bd5a5e146102f65780634c255c971461030e575f80fd5b80632b14ca5614610271578063313ce5671461029857806339509351146102a7575f80fd5b806318160ddd116101a457806318160ddd1461021857806321326f091461022a57806323b872dd1461023357806327c8f83514610246575f80fd5b806306fdde03146101ca578063095ea7b3146101e8578063158ef93e1461020b575b5f80fd5b6101d261045f565b6040516101df9190610f38565b60405180910390f35b6101fb6101f6366004610f9e565b6104ef565b60405190151581526020016101df565b6006546101fb9060ff1681565b6003545b6040519081526020016101df565b61021c60095481565b6101fb610241366004610fc6565b610505565b600754610259906001600160a01b031681565b6040516001600160a01b0390911681526020016101df565b61021c7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101df565b6101fb6102b5366004610f9e565b6105b2565b6102cd6102c8366004610f9e565b6105ed565b005b61021c7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102599061010090046001600160a01b031681565b61031761271081565b60405161ffff90911681526020016101df565b61021c60085481565b61021c610341366004610fff565b6001600160a01b03165f9081526001602052604090205490565b6102cd610631565b6102cd610371366004611067565b610665565b5f546001600160a01b0316610259565b6102cd6103943660046110e2565b61073d565b6101d2610771565b6101fb6103af366004610f9e565b610780565b6101fb6103c2366004610f9e565b610818565b6102cd6103d5366004611067565b610824565b61021c7f000000000000000000000000000000000000000000000000000000000000000081565b6102cd61040f366004610fff565b6108f4565b61021c610422366004611102565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6102cd61045a366004610fff565b610945565b60606004805461046e90611133565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611133565b80156104e55780601f106104bc576101008083540402835291602001916104e5565b820191905f5260205f20905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b5f6104fb3384846109df565b5060015b92915050565b5f610511848484610b02565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561059a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105a785338584036109df565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104fb9185906105e890869061117f565b6109df565b5f546001600160a01b031633146106165760405162461bcd60e51b815260040161059190611192565b6001600160a01b039091165f908152600a6020526040902055565b5f546001600160a01b0316331461065a5760405162461bcd60e51b815260040161059190611192565b6106635f610d1d565b565b5f546001600160a01b0316331461068e5760405162461bcd60e51b815260040161059190611192565b5f5b83811015610735578484828181106106aa576106aa6111c7565b90506020020160208101906106bf9190610fff565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610705576107056111c7565b9050602002013560405161071b91815260200190565b60405180910390a38061072d816111db565b915050610690565b505050505050565b5f546001600160a01b031633146107665760405162461bcd60e51b815260040161059190611192565b600891909155600955565b60606005805461046e90611133565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156108015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610591565b61080e33858584036109df565b5060019392505050565b5f6104fb338484610b02565b5f546001600160a01b0316331461084d5760405162461bcd60e51b815260040161059190611192565b5f5b8381101561073557848482818110610869576108696111c7565b905060200201602081019061087e9190610fff565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108c4576108c46111c7565b905060200201356040516108da91815260200190565b60405180910390a3806108ec816111db565b91505061084f565b5f546001600160a01b0316331461091d5760405162461bcd60e51b815260040161059190611192565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b0316331461096e5760405162461bcd60e51b815260040161059190611192565b6001600160a01b0381166109d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610591565b6109dc81610d1d565b50565b6001600160a01b038316610a415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610591565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610591565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610b595760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610591565b60065461010090046001600160a01b0316158015610b7e575060065460ff1615156001145b15610bf6575f546001600160a01b0384811691161480610baa57505f546001600160a01b038381169116145b610bf65760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610591565b600654819061010090046001600160a01b031615801590610c2457505f546001600160a01b03858116911614155b8015610c3d57505f546001600160a01b03848116911614155b15610d0c576006545f906001600160a01b03610100909104811690861603610c685750600854610cc3565b6006546001600160a01b03610100909104811690851603610cc3576001600160a01b0385165f908152600a602052604090205415610cbe57506001600160a01b0384165f908152600a6020526040902054610cc3565b506009545b8015610d0a575f612710610cd783866111f3565b610ce1919061120a565b9050610ced8185611229565b600754909350610d089087906001600160a01b031683610d6c565b505b505b610d17848483610d6c565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610dd05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610591565b6001600160a01b038216610e325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610591565b6001600160a01b0383165f9081526001602052604090205481811015610ea95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610591565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610edf90849061117f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2b91815260200190565b60405180910390a3610d17565b5f6020808352835180828501525f5b81811015610f6357858101830151858201604001528201610f47565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f99575f80fd5b919050565b5f8060408385031215610faf575f80fd5b610fb883610f83565b946020939093013593505050565b5f805f60608486031215610fd8575f80fd5b610fe184610f83565b9250610fef60208501610f83565b9150604084013590509250925092565b5f6020828403121561100f575f80fd5b61101882610f83565b9392505050565b5f8083601f84011261102f575f80fd5b50813567ffffffffffffffff811115611046575f80fd5b6020830191508360208260051b8501011115611060575f80fd5b9250929050565b5f805f805f6060868803121561107b575f80fd5b61108486610f83565b9450602086013567ffffffffffffffff808211156110a0575f80fd5b6110ac89838a0161101f565b909650945060408801359150808211156110c4575f80fd5b506110d18882890161101f565b969995985093965092949392505050565b5f80604083850312156110f3575f80fd5b50508035926020909101359150565b5f8060408385031215611113575f80fd5b61111c83610f83565b915061112a60208401610f83565b90509250929050565b600181811c9082168061114757607f821691505b60208210810361116557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104ff576104ff61116b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016111ec576111ec61116b565b5060010190565b80820281158282048414176104ff576104ff61116b565b5f8261122457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ff576104ff61116b56fea2646970667358221220c79e01a01b74765de555d00eed09e4537d72f92ded33b95318b03b923885f99264736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806358a1aaae116100fe578063985bdfd11161009e578063d5abeb011161006e578063d5abeb01146103da578063d5aed6bf14610401578063dd62ed3e14610414578063f2fde38b1461044c575f80fd5b8063985bdfd11461030e578063a457c2d7146103a1578063a9059cbb146103b4578063b22c95e7146103c7575f80fd5b806372108297116100d957806372108297146103635780638da5cb5b1461037657806391a2e7231461038657806395d89b4114610399575f80fd5b806358a1aaae1461032a57806370a0823114610333578063715018a61461035b575f80fd5b80632b14ca561161016957806340bc6a3e1161014457806340bc6a3e146102ba57806347062402146102cf57806349bd5a5e146102f65780634c255c971461030e575f80fd5b80632b14ca5614610271578063313ce5671461029857806339509351146102a7575f80fd5b806318160ddd116101a457806318160ddd1461021857806321326f091461022a57806323b872dd1461023357806327c8f83514610246575f80fd5b806306fdde03146101ca578063095ea7b3146101e8578063158ef93e1461020b575b5f80fd5b6101d261045f565b6040516101df9190610f38565b60405180910390f35b6101fb6101f6366004610f9e565b6104ef565b60405190151581526020016101df565b6006546101fb9060ff1681565b6003545b6040519081526020016101df565b61021c60095481565b6101fb610241366004610fc6565b610505565b600754610259906001600160a01b031681565b6040516001600160a01b0390911681526020016101df565b61021c7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101df565b6101fb6102b5366004610f9e565b6105b2565b6102cd6102c8366004610f9e565b6105ed565b005b61021c7f000000000000000000000000000000000000000000000000000000000000000081565b6006546102599061010090046001600160a01b031681565b61031761271081565b60405161ffff90911681526020016101df565b61021c60085481565b61021c610341366004610fff565b6001600160a01b03165f9081526001602052604090205490565b6102cd610631565b6102cd610371366004611067565b610665565b5f546001600160a01b0316610259565b6102cd6103943660046110e2565b61073d565b6101d2610771565b6101fb6103af366004610f9e565b610780565b6101fb6103c2366004610f9e565b610818565b6102cd6103d5366004611067565b610824565b61021c7f000000000000000000000000000000000000000000084595161401484a00000081565b6102cd61040f366004610fff565b6108f4565b61021c610422366004611102565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6102cd61045a366004610fff565b610945565b60606004805461046e90611133565b80601f016020809104026020016040519081016040528092919081815260200182805461049a90611133565b80156104e55780601f106104bc576101008083540402835291602001916104e5565b820191905f5260205f20905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b5f6104fb3384846109df565b5060015b92915050565b5f610511848484610b02565b6001600160a01b0384165f9081526002602090815260408083203384529091529020548281101561059a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105a785338584036109df565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916104fb9185906105e890869061117f565b6109df565b5f546001600160a01b031633146106165760405162461bcd60e51b815260040161059190611192565b6001600160a01b039091165f908152600a6020526040902055565b5f546001600160a01b0316331461065a5760405162461bcd60e51b815260040161059190611192565b6106635f610d1d565b565b5f546001600160a01b0316331461068e5760405162461bcd60e51b815260040161059190611192565b5f5b83811015610735578484828181106106aa576106aa6111c7565b90506020020160208101906106bf9190610fff565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610705576107056111c7565b9050602002013560405161071b91815260200190565b60405180910390a38061072d816111db565b915050610690565b505050505050565b5f546001600160a01b031633146107665760405162461bcd60e51b815260040161059190611192565b600891909155600955565b60606005805461046e90611133565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156108015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610591565b61080e33858584036109df565b5060019392505050565b5f6104fb338484610b02565b5f546001600160a01b0316331461084d5760405162461bcd60e51b815260040161059190611192565b5f5b8381101561073557848482818110610869576108696111c7565b905060200201602081019061087e9190610fff565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108c4576108c46111c7565b905060200201356040516108da91815260200190565b60405180910390a3806108ec816111db565b91505061084f565b5f546001600160a01b0316331461091d5760405162461bcd60e51b815260040161059190611192565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b0316331461096e5760405162461bcd60e51b815260040161059190611192565b6001600160a01b0381166109d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610591565b6109dc81610d1d565b50565b6001600160a01b038316610a415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610591565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610591565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610b595760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610591565b60065461010090046001600160a01b0316158015610b7e575060065460ff1615156001145b15610bf6575f546001600160a01b0384811691161480610baa57505f546001600160a01b038381169116145b610bf65760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610591565b600654819061010090046001600160a01b031615801590610c2457505f546001600160a01b03858116911614155b8015610c3d57505f546001600160a01b03848116911614155b15610d0c576006545f906001600160a01b03610100909104811690861603610c685750600854610cc3565b6006546001600160a01b03610100909104811690851603610cc3576001600160a01b0385165f908152600a602052604090205415610cbe57506001600160a01b0384165f908152600a6020526040902054610cc3565b506009545b8015610d0a575f612710610cd783866111f3565b610ce1919061120a565b9050610ced8185611229565b600754909350610d089087906001600160a01b031683610d6c565b505b505b610d17848483610d6c565b50505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610dd05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610591565b6001600160a01b038216610e325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610591565b6001600160a01b0383165f9081526001602052604090205481811015610ea95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610591565b6001600160a01b038085165f90815260016020526040808220858503905591851681529081208054849290610edf90849061117f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2b91815260200190565b60405180910390a3610d17565b5f6020808352835180828501525f5b81811015610f6357858101830151858201604001528201610f47565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f99575f80fd5b919050565b5f8060408385031215610faf575f80fd5b610fb883610f83565b946020939093013593505050565b5f805f60608486031215610fd8575f80fd5b610fe184610f83565b9250610fef60208501610f83565b9150604084013590509250925092565b5f6020828403121561100f575f80fd5b61101882610f83565b9392505050565b5f8083601f84011261102f575f80fd5b50813567ffffffffffffffff811115611046575f80fd5b6020830191508360208260051b8501011115611060575f80fd5b9250929050565b5f805f805f6060868803121561107b575f80fd5b61108486610f83565b9450602086013567ffffffffffffffff808211156110a0575f80fd5b6110ac89838a0161101f565b909650945060408801359150808211156110c4575f80fd5b506110d18882890161101f565b969995985093965092949392505050565b5f80604083850312156110f3575f80fd5b50508035926020909101359150565b5f8060408385031215611113575f80fd5b61111c83610f83565b915061112a60208401610f83565b90509250929050565b600181811c9082168061114757607f821691505b60208210810361116557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104ff576104ff61116b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016111ec576111ec61116b565b5060010190565b80820281158282048414176104ff576104ff61116b565b5f8261122457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ff576104ff61116b56fea2646970667358221220c79e01a01b74765de555d00eed09e4537d72f92ded33b95318b03b923885f99264736f6c63430008140033

Deployed Bytecode Sourcemap

20752:3784:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9778:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12011:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12011:194:0;1004:187:1;20978:31:0;;;;;;;;;10898:108;10986:12;;10898:108;;;1342:25:1;;;1330:2;1315:18;10898:108:0;1196:177:1;21267:31:0;;;;;;12687:529;;;;;;:::i;:::-;;:::i;21064:71::-;;;;;-1:-1:-1;;;;;21064:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;21064:71:0;1711:203:1;21186:36:0;;;;;10740:93;;;10823:2;2061:36:1;;2049:2;2034:18;10740:93:0;1919:184:1;13625:290:0;;;;;;:::i;:::-;;:::i;22588:131::-;;;;;;:::i;:::-;;:::i;:::-;;21144:35;;;;;21016:41;;;;;;;;-1:-1:-1;;;;;21016:41:0;;;20924:45;;20964:5;20924:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;20924:45:0;2108:188:1;21229:31:0;;;;;;11069:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11186:18:0;11159:7;11186:18;;;:9;:18;;;;;;;11069:143;3074:103;;;:::i;22727:250::-;;;;;;:::i;:::-;;:::i;2387:87::-;2433:7;2460:6;-1:-1:-1;;;;;2460:6:0;2387:87;;22285:171;;;;;;:::i;:::-;;:::i;9997:104::-;;;:::i;14418:475::-;;;;;;:::i;:::-;;:::i;11425:200::-;;;;;;:::i;:::-;;:::i;22985:251::-;;;;;;:::i;:::-;;:::i;20793:68::-;;;;;22464:116;;;;;;:::i;:::-;;:::i;11688:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11829:18:0;;;11802:7;11829:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11688:176;3332:238;;;;;;:::i;:::-;;:::i;9778:100::-;9832:13;9865:5;9858:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9778:100;:::o;12011:194::-;12119:4;12136:39;1164:10;12159:7;12168:6;12136:8;:39::i;:::-;-1:-1:-1;12193:4:0;12011:194;;;;;:::o;12687:529::-;12827:4;12844:36;12854:6;12862:9;12873:6;12844:9;:36::i;:::-;-1:-1:-1;;;;;12920:19:0;;12893:24;12920:19;;;:11;:19;;;;;;;;1164:10;12920:33;;;;;;;;12986:26;;;;12964:116;;;;-1:-1:-1;;;12964:116:0;;4821:2:1;12964:116:0;;;4803:21:1;4860:2;4840:18;;;4833:30;4899:34;4879:18;;;4872:62;-1:-1:-1;;;4950:18:1;;;4943:38;4998:19;;12964:116:0;;;;;;;;;13116:57;13125:6;1164:10;13166:6;13147:16;:25;13116:8;:57::i;:::-;-1:-1:-1;13204:4:0;;12687:529;-1:-1:-1;;;;12687:529:0:o;13625:290::-;1164:10;13738:4;13827:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13827:34:0;;;;;;;;;;13738:4;;13755:130;;13805:7;;13827:47;;13864:10;;13827:47;:::i;:::-;13755:8;:130::i;22588:131::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22675:26:0;;::::1;;::::0;;;:16:::1;:26;::::0;;;;:36;22588:131::o;3074:103::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;3139:30:::1;3166:1;3139:18;:30::i;:::-;3074:103::o:0;22727:250::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;22855:9:::1;22850:120;22870:19:::0;;::::1;22850:120;;;22934:8;;22943:1;22934:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22916:42:0::1;22925:7;-1:-1:-1::0;;;;;22916:42:0::1;;22947:7;;22955:1;22947:10;;;;;;;:::i;:::-;;;;;;;22916:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;22916:42:0::1;;;;;;;;22891:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22850:120;;;;22727:250:::0;;;;;:::o;22285:171::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;22381:12:::1;:28:::0;;;;22420:12:::1;:28:::0;22285:171::o;9997:104::-;10053:13;10086:7;10079:14;;;;;:::i;14418:475::-;1164:10;14536:4;14580:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14580:34:0;;;;;;;;;;14647:35;;;;14625:122;;;;-1:-1:-1;;;14625:122:0;;6125:2:1;14625:122:0;;;6107:21:1;6164:2;6144:18;;;6137:30;6203:34;6183:18;;;6176:62;-1:-1:-1;;;6254:18:1;;;6247:35;6299:19;;14625:122:0;5923:401:1;14625:122:0;14783:67;1164:10;14806:7;14834:15;14815:16;:34;14783:8;:67::i;:::-;-1:-1:-1;14881:4:0;;14418:475;-1:-1:-1;;;14418:475:0:o;11425:200::-;11536:4;11553:42;1164:10;11577:9;11588:6;11553:9;:42::i;22985:251::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;23114:9:::1;23109:120;23129:19:::0;;::::1;23109:120;;;23193:8;;23202:1;23193:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23175:42:0::1;23184:7;-1:-1:-1::0;;;;;23175:42:0::1;;23206:7;;23214:1;23206:10;;;;;;;:::i;:::-;;;;;;;23175:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23175:42:0::1;;;;;;;;23150:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23109:120;;22464:116:::0;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;22542:13:::1;:30:::0;;-1:-1:-1;;;;;22542:30:0;;::::1;;;-1:-1:-1::0;;;;;;22542:30:0;;::::1;::::0;;;::::1;::::0;;22464:116::o;3332:238::-;2621:6;;-1:-1:-1;;;;;2621:6:0;1164:10;2621:22;2599:104;;;;-1:-1:-1;;;2599:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3435:22:0;::::1;3413:110;;;::::0;-1:-1:-1;;;3413:110:0;;6531:2:1;3413:110:0::1;::::0;::::1;6513:21:1::0;6570:2;6550:18;;;6543:30;6609:34;6589:18;;;6582:62;-1:-1:-1;;;6660:18:1;;;6653:36;6706:19;;3413:110:0::1;6329:402:1::0;3413:110:0::1;3534:28;3553:8;3534:18;:28::i;:::-;3332:238:::0;:::o;18201:380::-;-1:-1:-1;;;;;18337:19:0;;18329:68;;;;-1:-1:-1;;;18329:68:0;;6938:2:1;18329:68:0;;;6920:21:1;6977:2;6957:18;;;6950:30;7016:34;6996:18;;;6989:62;-1:-1:-1;;;7067:18:1;;;7060:34;7111:19;;18329:68:0;6736:400:1;18329:68:0;-1:-1:-1;;;;;18416:21:0;;18408:68;;;;-1:-1:-1;;;18408:68:0;;7343:2:1;18408:68:0;;;7325:21:1;7382:2;7362:18;;;7355:30;7421:34;7401:18;;;7394:62;-1:-1:-1;;;7472:18:1;;;7465:32;7514:19;;18408:68:0;7141:398:1;18408:68:0;-1:-1:-1;;;;;18489:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18541:32;;1342:25:1;;;18541:32:0;;1315:18:1;18541:32:0;;;;;;;18201:380;;;:::o;23244:1289::-;23397:11;;;;:19;;:11;:19;23375:97;;;;-1:-1:-1;;;23375:97:0;;7746:2:1;23375:97:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824;7804:18;;;7797:58;7872:18;;23375:97:0;7544:352:1;23375:97:0;23489:13;;;;;-1:-1:-1;;;;;23489:13:0;:27;:50;;;;-1:-1:-1;23520:11:0;;;;:19;;:11;:19;23489:50;23485:209;;;2433:7;2460:6;-1:-1:-1;;;;;23582:15:0;;;2460:6;;23582:15;;:32;;-1:-1:-1;2433:7:0;2460:6;-1:-1:-1;;;;;23601:13:0;;;2460:6;;23601:13;23582:32;23556:126;;;;-1:-1:-1;;;23556:126:0;;8103:2:1;23556:126:0;;;8085:21:1;;;8122:18;;;8115:30;8181:34;8161:18;;;8154:62;8233:18;;23556:126:0;7901:356:1;23556:126:0;23753:13;;23732:6;;23753:13;;;-1:-1:-1;;;;;23753:13:0;:27;;;;:46;;-1:-1:-1;2433:7:0;2460:6;-1:-1:-1;;;;;23784:15:0;;;2460:6;;23784:15;;23753:46;:63;;;;-1:-1:-1;2433:7:0;2460:6;-1:-1:-1;;;;;23803:13:0;;;2460:6;;23803:13;;23753:63;23749:722;;;23876:13;;23833:12;;-1:-1:-1;;;;;23876:13:0;;;;;;23868:21;;;;23864:349;;-1:-1:-1;23917:12:0;;23864:349;;;23974:13;;-1:-1:-1;;;;;23974:13:0;;;;;;23968:19;;;;23964:249;;-1:-1:-1;;;;;24012:22:0;;;;;;:16;:22;;;;;;:27;24008:190;;-1:-1:-1;;;;;;24071:22:0;;;;;;:16;:22;;;;;;24008:190;;;-1:-1:-1;24166:12:0;;24008:190;24231:8;;24227:233;;24260:22;20964:5;24285:13;24294:4;24285:6;:13;:::i;:::-;:30;;;;:::i;:::-;24260:55;-1:-1:-1;24352:23:0;24260:55;24352:6;:23;:::i;:::-;24416:11;;24334:41;;-1:-1:-1;24394:50:0;;24410:4;;-1:-1:-1;;;;;24416:11:0;24429:14;24394:15;:50::i;:::-;24241:219;24227:233;23818:653;23749:722;24483:42;24499:4;24505:2;24509:15;24483;:42::i;:::-;23364:1169;23244:1289;;;:::o;3730:191::-;3804:16;3823:6;;-1:-1:-1;;;;;3840:17:0;;;-1:-1:-1;;;;;;3840:17:0;;;;;;3873:40;;3823:6;;;;;;;3873:40;;3804:16;3873:40;3793:128;3730:191;:::o;15383:770::-;-1:-1:-1;;;;;15523:20:0;;15515:70;;;;-1:-1:-1;;;15515:70:0;;8992:2:1;15515:70:0;;;8974:21:1;9031:2;9011:18;;;9004:30;9070:34;9050:18;;;9043:62;-1:-1:-1;;;9121:18:1;;;9114:35;9166:19;;15515:70:0;8790:401:1;15515:70:0;-1:-1:-1;;;;;15604:23:0;;15596:71;;;;-1:-1:-1;;;15596:71:0;;9398:2:1;15596:71:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;-1:-1:-1;;;9527:18:1;;;9520:33;9570:19;;15596:71:0;9196:399:1;15596:71:0;-1:-1:-1;;;;;15764:17:0;;15740:21;15764:17;;;:9;:17;;;;;;15814:23;;;;15792:111;;;;-1:-1:-1;;;15792:111:0;;9802:2:1;15792:111:0;;;9784:21:1;9841:2;9821:18;;;9814:30;9880:34;9860:18;;;9853:62;-1:-1:-1;;;9931:18:1;;;9924:36;9977:19;;15792:111:0;9600:402:1;15792:111:0;-1:-1:-1;;;;;15939:17:0;;;;;;;:9;:17;;;;;;15959:22;;;15939:42;;16003:20;;;;;;;;:30;;15975:6;;15939:17;16003:30;;15975:6;;16003:30;:::i;:::-;;;;;;;;16068:9;-1:-1:-1;;;;;16051:35:0;16060:6;-1:-1:-1;;;;;16051:35:0;;16079:6;16051:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16051:35:0;;;;;;;;16099:46;19181:125;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;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:367::-;2555:8;2565:6;2619:3;2612:4;2604:6;2600:17;2596:27;2586:55;;2637:1;2634;2627:12;2586:55;-1:-1:-1;2660:20:1;;2703:18;2692:30;;2689:50;;;2735:1;2732;2725:12;2689:50;2772:4;2764:6;2760:17;2748:29;;2832:3;2825:4;2815:6;2812:1;2808:14;2800:6;2796:27;2792:38;2789:47;2786:67;;;2849:1;2846;2839:12;2786:67;2492:367;;;;;:::o;2864:847::-;2995:6;3003;3011;3019;3027;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:29;3138:9;3119:29;:::i;:::-;3109:39;;3199:2;3188:9;3184:18;3171:32;3222:18;3263:2;3255:6;3252:14;3249:34;;;3279:1;3276;3269:12;3249:34;3318:70;3380:7;3371:6;3360:9;3356:22;3318:70;:::i;:::-;3407:8;;-1:-1:-1;3292:96:1;-1:-1:-1;3495:2:1;3480:18;;3467:32;;-1:-1:-1;3511:16:1;;;3508:36;;;3540:1;3537;3530:12;3508:36;;3579:72;3643:7;3632:8;3621:9;3617:24;3579:72;:::i;:::-;2864:847;;;;-1:-1:-1;2864:847:1;;-1:-1:-1;3670:8:1;;3553:98;2864:847;-1:-1:-1;;;2864:847:1:o;3716:248::-;3784:6;3792;3845:2;3833:9;3824:7;3820:23;3816:32;3813:52;;;3861:1;3858;3851:12;3813:52;-1:-1:-1;;3884:23:1;;;3954:2;3939:18;;;3926:32;;-1:-1:-1;3716:248:1:o;3969:260::-;4037:6;4045;4098:2;4086:9;4077:7;4073:23;4069:32;4066:52;;;4114:1;4111;4104:12;4066:52;4137:29;4156:9;4137:29;:::i;:::-;4127:39;;4185:38;4219:2;4208:9;4204:18;4185:38;:::i;:::-;4175:48;;3969:260;;;;;:::o;4234:380::-;4313:1;4309:12;;;;4356;;;4377:61;;4431:4;4423:6;4419:17;4409:27;;4377:61;4484:2;4476:6;4473:14;4453:18;4450:38;4447:161;;4530:10;4525:3;4521:20;4518:1;4511:31;4565:4;4562:1;4555:15;4593:4;4590:1;4583:15;4447:161;;4234:380;;;:::o;5028:127::-;5089:10;5084:3;5080:20;5077:1;5070:31;5120:4;5117:1;5110:15;5144:4;5141:1;5134:15;5160:125;5225:9;;;5246:10;;;5243:36;;;5259:18;;:::i;5290:356::-;5492:2;5474:21;;;5511:18;;;5504:30;5570:34;5565:2;5550:18;;5543:62;5637:2;5622:18;;5290:356::o;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:135;5822:3;5843:17;;;5840:43;;5863:18;;:::i;:::-;-1:-1:-1;5910:1:1;5899:13;;5783:135::o;8262:168::-;8335:9;;;8366;;8383:15;;;8377:22;;8363:37;8353:71;;8404:18;;:::i;8435:217::-;8475:1;8501;8491:132;;8545:10;8540:3;8536:20;8533:1;8526:31;8580:4;8577:1;8570:15;8608:4;8605:1;8598:15;8491:132;-1:-1:-1;8637:9:1;;8435:217::o;8657:128::-;8724:9;;;8745:11;;;8742:37;;;8759:18;;:::i

Swarm Source

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