ETH Price: $2,682.28 (-3.01%)

Token

Patrick (Pat)
 

Overview

Max Total Supply

50,000,000,000 Pat

Holders

455

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
198,256,339.21 Pat

Value
$0.00
0xffff6f4a5b38fd45967ecfb09b4565a668b250d0
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:
Patrick

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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


interface IRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}


/**
 * @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;
    }
}



/**
 * @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);
    }
}




/**
 * @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);
}



/**
 * @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);
}





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



contract Patrick is Ownable, ERC20 {
    bool public limited;
    bool public enableWhitel;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public whitelists;

    IRouter public router;
    IFactory public factory;


    constructor() ERC20("Patrick", "Pat") {
        uint256 _totalSupply = 500 * 10**8 * 10**18;
        _mint(msg.sender, _totalSupply);

        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a pancake pair for this new token
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());

        router = _router;
        uniswapV2Pair = _pair;

        enableWhitel = true;
        whitelists[msg.sender] = true;
        whitelists[address(router)] = true;
        whitelists[uniswapV2Pair] = true;
    }

    function settwhitelist(address[] memory accounts, bool _iswhitelisting) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            whitelists[accounts[i]] = _iswhitelisting;
        }
    }

    function whitelist(address _address, bool _iswhitelisting) external onlyOwner {
        whitelists[_address] = _iswhitelisting;
    }

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

    function setEnableWhitel(bool isEnableWhitel)  external onlyOwner {
        enableWhitel = isEnableWhitel;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;

        if(_uniswapV2Pair != uniswapV2Pair && _uniswapV2Pair != address(0))
        {
            uniswapV2Pair = _uniswapV2Pair;
            whitelists[uniswapV2Pair] = true;
        }
    }

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

        if(enableWhitel) {
            require(whitelists[from]==true && whitelists[to]==true, "whitelist");
        }

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"enableWhitel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnableWhitel","type":"bool"}],"name":"setEnableWhitel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhitelist","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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060078152602001665061747269636b60c81b8152506040518060400160405280600381526020016214185d60ea1b81525062000068620000626200029760201b60201c565b6200029b565b6004620000768382620006fa565b506005620000858282620006fa565b506ba18f07d736b90be5500000009150620000a390503382620002eb565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001239190620007c6565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000171573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001979190620007c6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020b9190620007c6565b600c80546001600160a01b039485166001600160a01b031991821617825560098054938616939091169290921782556006805461ff001916610100179055336000908152600b6020526040808220805460ff1990811660019081179092559354871683528183208054851682179055935490951681529390932080549093161790915550620008209050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003475760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200035560008383620003e2565b8060036000828254620003699190620007f8565b90915550506001600160a01b0382166000908152600160205260408120805483929062000398908490620007f8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200042557506001600160a01b0383166000908152600a602052604090205460ff16155b620004615760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016200033e565b600654610100900460ff1615620004f7576001600160a01b0383166000908152600b602052604090205460ff1615156001148015620004bd57506001600160a01b0382166000908152600b602052604090205460ff1615156001145b620004f75760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016200033e565b6009546001600160a01b031662000585576000546001600160a01b03848116911614806200053257506000546001600160a01b038381169116145b620005805760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200033e565b505050565b60065460ff168015620005a557506009546001600160a01b038481169116145b15620005805760075481620005c5846200063b60201b620006b51760201c565b620005d19190620007f8565b1115801562000604575060085481620005f5846200063b60201b620006b51760201c565b620006019190620007f8565b10155b620005805760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200033e565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200068157607f821691505b602082108103620006a257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058057600081815260208120601f850160051c81016020861015620006d15750805b601f850160051c820191505b81811015620006f257828155600101620006dd565b505050505050565b81516001600160401b0381111562000716576200071662000656565b6200072e816200072784546200066c565b84620006a8565b602080601f8311600181146200076657600084156200074d5750858301515b600019600386901b1c1916600185901b178555620006f2565b600085815260208120601f198616915b82811015620007975788860151825594840194600190910190840162000776565b5085821015620007b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007d957600080fd5b81516001600160a01b0381168114620007f157600080fd5b9392505050565b808201808211156200081a57634e487b7160e01b600052601160045260246000fd5b92915050565b61129780620008306000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063860a32ec116100f9578063abdd77dd11610097578063dd62ed3e11610071578063dd62ed3e146103ae578063f2fde38b146103e7578063f59c3708146103fa578063f887ea401461040d57600080fd5b8063abdd77dd14610375578063c45a015514610388578063d59093f61461039b57600080fd5b806395c45729116100d357806395c457291461033557806395d89b4114610347578063a457c2d71461034f578063a9059cbb1461036257600080fd5b8063860a32ec1461030e57806389f9a1d31461031b5780638da5cb5b1461032457600080fd5b8063313ce56711610166578063404e512911610140578063404e5129146102b557806349bd5a5e146102c857806370a08231146102f3578063715018a61461030657600080fd5b8063313ce5671461027e578063395093511461028d5780633aa633aa146102a057600080fd5b806318160ddd116101a257806318160ddd1461022d5780631ab99e121461023f5780631e7be2101461024857806323b872dd1461026b57600080fd5b806306fdde03146101c9578063095ea7b3146101e757806316c021291461020a575b600080fd5b6101d1610420565b6040516101de9190610ef1565b60405180910390f35b6101fa6101f5366004610f5b565b6104b2565b60405190151581526020016101de565b6101fa610218366004610f85565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101de565b61023160085481565b6101fa610256366004610f85565b600b6020526000908152604090205460ff1681565b6101fa610279366004610fa7565b6104c9565b604051601281526020016101de565b6101fa61029b366004610f5b565b610578565b6102b36102ae366004610ff3565b6105b4565b005b6102b36102c3366004611035565b610660565b6009546102db906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b610231610301366004610f85565b6106b5565b6102b36106d0565b6006546101fa9060ff1681565b61023160075481565b6000546001600160a01b03166102db565b6006546101fa90610100900460ff1681565b6101d1610706565b6101fa61035d366004610f5b565b610715565b6101fa610370366004610f5b565b6107ae565b6102b361038336600461107e565b6107bb565b600d546102db906001600160a01b031681565b6102b36103a9366004611155565b610851565b6102316103bc366004611170565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102b36103f5366004610f85565b610895565b6102b3610408366004611035565b610930565b600c546102db906001600160a01b031681565b60606004805461042f9061119a565b80601f016020809104026020016040519081016040528092919081815260200182805461045b9061119a565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610985565b5060015b92915050565b60006104d6848484610aa9565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105605760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056d8533858403610985565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105af9086906111ea565b610985565b6000546001600160a01b031633146105de5760405162461bcd60e51b8152600401610557906111fd565b6006805460ff1916851515179055600782905560088190556009546001600160a01b039081169084161480159061061d57506001600160a01b03831615155b1561065a57600980546001600160a01b0319166001600160a01b0385169081179091556000908152600b60205260409020805460ff191660011790555b50505050565b6000546001600160a01b0316331461068a5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106fa5760405162461bcd60e51b8152600401610557906111fd565b6107046000610c82565b565b60606005805461042f9061119a565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610557565b6107a43385858403610985565b5060019392505050565b60006104bf338484610aa9565b6000546001600160a01b031633146107e55760405162461bcd60e51b8152600401610557906111fd565b60005b825181101561084c5781600b600085848151811061080857610808611232565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061084481611248565b9150506107e8565b505050565b6000546001600160a01b0316331461087b5760405162461bcd60e51b8152600401610557906111fd565b600680549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146108bf5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b0381166109245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610557565b61092d81610c82565b50565b6000546001600160a01b0316331461095a5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b0383166109e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610557565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610557565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610557565b6001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610557565b610b7a838383610cd2565b6001600160a01b03831660009081526001602052604090205481811015610bf25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610557565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c299084906111ea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7591815260200190565b60405180910390a361065a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610d1457506001600160a01b0383166000908152600a602052604090205460ff16155b610d4e5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610557565b600654610100900460ff1615610de0576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610da857506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610de05760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b6044820152606401610557565b6009546001600160a01b0316610e5e576000546001600160a01b0384811691161480610e1957506000546001600160a01b038381169116145b61084c5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610557565b60065460ff168015610e7d57506009546001600160a01b038481169116145b1561084c5760075481610e8f846106b5565b610e9991906111ea565b11158015610ebc575060085481610eaf846106b5565b610eb991906111ea565b10155b61084c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610557565b600060208083528351808285015260005b81811015610f1e57858101830151858201604001528201610f02565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f5657600080fd5b919050565b60008060408385031215610f6e57600080fd5b610f7783610f3f565b946020939093013593505050565b600060208284031215610f9757600080fd5b610fa082610f3f565b9392505050565b600080600060608486031215610fbc57600080fd5b610fc584610f3f565b9250610fd360208501610f3f565b9150604084013590509250925092565b80358015158114610f5657600080fd5b6000806000806080858703121561100957600080fd5b61101285610fe3565b935061102060208601610f3f565b93969395505050506040820135916060013590565b6000806040838503121561104857600080fd5b61105183610f3f565b915061105f60208401610fe3565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561109157600080fd5b823567ffffffffffffffff808211156110a957600080fd5b818501915085601f8301126110bd57600080fd5b81356020828211156110d1576110d1611068565b8160051b604051601f19603f830116810181811086821117156110f6576110f6611068565b60405292835281830193508481018201928984111561111457600080fd5b948201945b838610156111395761112a86610f3f565b85529482019493820193611119565b96506111489050878201610fe3565b9450505050509250929050565b60006020828403121561116757600080fd5b610fa082610fe3565b6000806040838503121561118357600080fd5b61118c83610f3f565b915061105f60208401610f3f565b600181811c908216806111ae57607f821691505b6020821081036111ce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c3576104c36111d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161125a5761125a6111d4565b506001019056fea26469706673582212207147ee7f256a0c4452fed931a5855a1aea9054a76e8b7637af82198fd5c3d0d964736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063860a32ec116100f9578063abdd77dd11610097578063dd62ed3e11610071578063dd62ed3e146103ae578063f2fde38b146103e7578063f59c3708146103fa578063f887ea401461040d57600080fd5b8063abdd77dd14610375578063c45a015514610388578063d59093f61461039b57600080fd5b806395c45729116100d357806395c457291461033557806395d89b4114610347578063a457c2d71461034f578063a9059cbb1461036257600080fd5b8063860a32ec1461030e57806389f9a1d31461031b5780638da5cb5b1461032457600080fd5b8063313ce56711610166578063404e512911610140578063404e5129146102b557806349bd5a5e146102c857806370a08231146102f3578063715018a61461030657600080fd5b8063313ce5671461027e578063395093511461028d5780633aa633aa146102a057600080fd5b806318160ddd116101a257806318160ddd1461022d5780631ab99e121461023f5780631e7be2101461024857806323b872dd1461026b57600080fd5b806306fdde03146101c9578063095ea7b3146101e757806316c021291461020a575b600080fd5b6101d1610420565b6040516101de9190610ef1565b60405180910390f35b6101fa6101f5366004610f5b565b6104b2565b60405190151581526020016101de565b6101fa610218366004610f85565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101de565b61023160085481565b6101fa610256366004610f85565b600b6020526000908152604090205460ff1681565b6101fa610279366004610fa7565b6104c9565b604051601281526020016101de565b6101fa61029b366004610f5b565b610578565b6102b36102ae366004610ff3565b6105b4565b005b6102b36102c3366004611035565b610660565b6009546102db906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b610231610301366004610f85565b6106b5565b6102b36106d0565b6006546101fa9060ff1681565b61023160075481565b6000546001600160a01b03166102db565b6006546101fa90610100900460ff1681565b6101d1610706565b6101fa61035d366004610f5b565b610715565b6101fa610370366004610f5b565b6107ae565b6102b361038336600461107e565b6107bb565b600d546102db906001600160a01b031681565b6102b36103a9366004611155565b610851565b6102316103bc366004611170565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102b36103f5366004610f85565b610895565b6102b3610408366004611035565b610930565b600c546102db906001600160a01b031681565b60606004805461042f9061119a565b80601f016020809104026020016040519081016040528092919081815260200182805461045b9061119a565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf338484610985565b5060015b92915050565b60006104d6848484610aa9565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105605760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056d8533858403610985565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105af9086906111ea565b610985565b6000546001600160a01b031633146105de5760405162461bcd60e51b8152600401610557906111fd565b6006805460ff1916851515179055600782905560088190556009546001600160a01b039081169084161480159061061d57506001600160a01b03831615155b1561065a57600980546001600160a01b0319166001600160a01b0385169081179091556000908152600b60205260409020805460ff191660011790555b50505050565b6000546001600160a01b0316331461068a5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106fa5760405162461bcd60e51b8152600401610557906111fd565b6107046000610c82565b565b60606005805461042f9061119a565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610557565b6107a43385858403610985565b5060019392505050565b60006104bf338484610aa9565b6000546001600160a01b031633146107e55760405162461bcd60e51b8152600401610557906111fd565b60005b825181101561084c5781600b600085848151811061080857610808611232565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061084481611248565b9150506107e8565b505050565b6000546001600160a01b0316331461087b5760405162461bcd60e51b8152600401610557906111fd565b600680549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146108bf5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b0381166109245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610557565b61092d81610c82565b50565b6000546001600160a01b0316331461095a5760405162461bcd60e51b8152600401610557906111fd565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b0383166109e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610557565b6001600160a01b038216610a485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610557565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610557565b6001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610557565b610b7a838383610cd2565b6001600160a01b03831660009081526001602052604090205481811015610bf25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610557565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610c299084906111ea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7591815260200190565b60405180910390a361065a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610d1457506001600160a01b0383166000908152600a602052604090205460ff16155b610d4e5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610557565b600654610100900460ff1615610de0576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610da857506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610de05760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b6044820152606401610557565b6009546001600160a01b0316610e5e576000546001600160a01b0384811691161480610e1957506000546001600160a01b038381169116145b61084c5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610557565b60065460ff168015610e7d57506009546001600160a01b038481169116145b1561084c5760075481610e8f846106b5565b610e9991906111ea565b11158015610ebc575060085481610eaf846106b5565b610eb991906111ea565b10155b61084c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610557565b600060208083528351808285015260005b81811015610f1e57858101830151858201604001528201610f02565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f5657600080fd5b919050565b60008060408385031215610f6e57600080fd5b610f7783610f3f565b946020939093013593505050565b600060208284031215610f9757600080fd5b610fa082610f3f565b9392505050565b600080600060608486031215610fbc57600080fd5b610fc584610f3f565b9250610fd360208501610f3f565b9150604084013590509250925092565b80358015158114610f5657600080fd5b6000806000806080858703121561100957600080fd5b61101285610fe3565b935061102060208601610f3f565b93969395505050506040820135916060013590565b6000806040838503121561104857600080fd5b61105183610f3f565b915061105f60208401610fe3565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561109157600080fd5b823567ffffffffffffffff808211156110a957600080fd5b818501915085601f8301126110bd57600080fd5b81356020828211156110d1576110d1611068565b8160051b604051601f19603f830116810181811086821117156110f6576110f6611068565b60405292835281830193508481018201928984111561111457600080fd5b948201945b838610156111395761112a86610f3f565b85529482019493820193611119565b96506111489050878201610fe3565b9450505050509250929050565b60006020828403121561116757600080fd5b610fa082610fe3565b6000806040838503121561118357600080fd5b61118c83610f3f565b915061105f60208401610f3f565b600181811c908216806111ae57607f821691505b6020821081036111ce57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c3576104c36111d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161125a5761125a6111d4565b506001019056fea26469706673582212207147ee7f256a0c4452fed931a5855a1aea9054a76e8b7637af82198fd5c3d0d964736f6c63430008120033

Deployed Bytecode Sourcemap

19569:2768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9604:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11771:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11771:169:0;1004:187:1;19779:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10724:108;10812:12;;10724:108;;;1533:25:1;;;1521:2;1506:18;10724:108:0;1387:177:1;19706:31:0;;;;;;19828:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12422:492;;;;;;:::i;:::-;;:::i;10566:93::-;;;10649:2;2044:36:1;;2032:2;2017:18;10566:93:0;1902:184:1;13323:215:0;;;;;;:::i;:::-;;:::i;21182:453::-;;;;;;:::i;:::-;;:::i;:::-;;20917:135;;;;;;:::i;:::-;;:::i;19744:28::-;;;;;-1:-1:-1;;;;;19744:28:0;;;;;;-1:-1:-1;;;;;3075:32:1;;;3057:51;;3045:2;3030:18;19744:28:0;2911:203:1;10895:127:0;;;;;;:::i;:::-;;:::i;3498:103::-;;;:::i;19611:19::-;;;;;;;;;19668:31;;;;;;2847:87;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;2847:87;;19637:24;;;;;;;;;;;;9823:104;;;:::i;14041:413::-;;;;;;:::i;:::-;;:::i;11235:175::-;;;;;;:::i;:::-;;:::i;20543:223::-;;;;;;:::i;:::-;;:::i;19907:23::-;;;;;-1:-1:-1;;;;;19907:23:0;;;21060:114;;;;;;:::i;:::-;;:::i;11473:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11589:18:0;;;11562:7;11589:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11473:151;3756:201;;;;;;:::i;:::-;;:::i;20774:135::-;;;;;;:::i;:::-;;:::i;19879:21::-;;;;;-1:-1:-1;;;;;19879:21:0;;;9604:100;9658:13;9691:5;9684:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9604:100;:::o;11771:169::-;11854:4;11871:39;1790:10;11894:7;11903:6;11871:8;:39::i;:::-;-1:-1:-1;11928:4:0;11771:169;;;;;:::o;12422:492::-;12562:4;12579:36;12589:6;12597:9;12608:6;12579:9;:36::i;:::-;-1:-1:-1;;;;;12655:19:0;;12628:24;12655:19;;;:11;:19;;;;;;;;1790:10;12655:33;;;;;;;;12707:26;;;;12699:79;;;;-1:-1:-1;;;12699:79:0;;5929:2:1;12699:79:0;;;5911:21:1;5968:2;5948:18;;;5941:30;6007:34;5987:18;;;5980:62;-1:-1:-1;;;6058:18:1;;;6051:38;6106:19;;12699:79:0;;;;;;;;;12814:57;12823:6;1790:10;12864:6;12845:16;:25;12814:8;:57::i;:::-;-1:-1:-1;12902:4:0;;12422:492;-1:-1:-1;;;;12422:492:0:o;13323:215::-;1790:10;13411:4;13460:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13460:34:0;;;;;;;;;;13411:4;;13428:80;;13451:7;;13460:47;;13497:10;;13460:47;:::i;:::-;13428:8;:80::i;21182:453::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;21322:7:::1;:18:::0;;-1:-1:-1;;21322:18:0::1;::::0;::::1;;;::::0;;21351:16:::1;:36:::0;;;21398:16:::1;:36:::0;;;21468:13:::1;::::0;-1:-1:-1;;;;;21468:13:0;;::::1;21450:31:::0;;::::1;;::::0;::::1;::::0;:63:::1;;-1:-1:-1::0;;;;;;21485:28:0;::::1;::::0;::::1;21450:63;21447:181;;;21539:13;:30:::0;;-1:-1:-1;;;;;;21539:30:0::1;-1:-1:-1::0;;;;;21539:30:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;21584:25:0;;;:10:::1;:25;::::0;;;;:32;;-1:-1:-1;;21584:32:0::1;-1:-1:-1::0;21584:32:0::1;::::0;;21447:181:::1;21182:453:::0;;;;:::o;20917:135::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21006:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21006:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20917:135::o;10895:127::-;-1:-1:-1;;;;;10996:18:0;10969:7;10996:18;;;:9;:18;;;;;;;10895:127::o;3498:103::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;3563:30:::1;3590:1;3563:18;:30::i;:::-;3498:103::o:0;9823:104::-;9879:13;9912:7;9905:14;;;;;:::i;14041:413::-;1790:10;14134:4;14178:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14178:34:0;;;;;;;;;;14231:35;;;;14223:85;;;;-1:-1:-1;;;14223:85:0;;6961:2:1;14223:85:0;;;6943:21:1;7000:2;6980:18;;;6973:30;7039:34;7019:18;;;7012:62;-1:-1:-1;;;7090:18:1;;;7083:35;7135:19;;14223:85:0;6759:401:1;14223:85:0;14344:67;1790:10;14367:7;14395:15;14376:16;:34;14344:8;:67::i;:::-;-1:-1:-1;14442:4:0;;14041:413;-1:-1:-1;;;14041:413:0:o;11235:175::-;11321:4;11338:42;1790:10;11362:9;11373:6;11338:9;:42::i;20543:223::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;20650:9:::1;20645:114;20669:8;:15;20665:1;:19;20645:114;;;20732:15;20706:10;:23;20717:8;20726:1;20717:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;20706:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;20706:23:0;:41;;-1:-1:-1;;20706:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20686:3;::::1;::::0;::::1;:::i;:::-;;;;20645:114;;;;20543:223:::0;;:::o;21060:114::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;21137:12:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;21137:29:0;;::::1;::::0;;;::::1;::::0;;21060:114::o;3756:201::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3845:22:0;::::1;3837:73;;;::::0;-1:-1:-1;;;3837:73:0;;7639:2:1;3837:73:0::1;::::0;::::1;7621:21:1::0;7678:2;7658:18;;;7651:30;7717:34;7697:18;;;7690:62;-1:-1:-1;;;7768:18:1;;;7761:36;7814:19;;3837:73:0::1;7437:402:1::0;3837:73:0::1;3921:28;3940:8;3921:18;:28::i;:::-;3756:201:::0;:::o;20774:135::-;2893:7;2920:6;-1:-1:-1;;;;;2920:6:0;1790:10;3067:23;3059:68;;;;-1:-1:-1;;;3059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20863:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;20863:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20774:135::o;17725:380::-;-1:-1:-1;;;;;17861:19:0;;17853:68;;;;-1:-1:-1;;;17853:68:0;;8046:2:1;17853:68:0;;;8028:21:1;8085:2;8065:18;;;8058:30;8124:34;8104:18;;;8097:62;-1:-1:-1;;;8175:18:1;;;8168:34;8219:19;;17853:68:0;7844:400:1;17853:68:0;-1:-1:-1;;;;;17940:21:0;;17932:68;;;;-1:-1:-1;;;17932:68:0;;8451:2:1;17932:68:0;;;8433:21:1;8490:2;8470:18;;;8463:30;8529:34;8509:18;;;8502:62;-1:-1:-1;;;8580:18:1;;;8573:32;8622:19;;17932:68:0;8249:398:1;17932:68:0;-1:-1:-1;;;;;18013:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18065:32;;1533:25:1;;;18065:32:0;;1506:18:1;18065:32:0;;;;;;;17725:380;;;:::o;14944:733::-;-1:-1:-1;;;;;15084:20:0;;15076:70;;;;-1:-1:-1;;;15076:70:0;;8854:2:1;15076:70:0;;;8836:21:1;8893:2;8873:18;;;8866:30;8932:34;8912:18;;;8905:62;-1:-1:-1;;;8983:18:1;;;8976:35;9028:19;;15076:70:0;8652:401:1;15076:70:0;-1:-1:-1;;;;;15165:23:0;;15157:71;;;;-1:-1:-1;;;15157:71:0;;9260:2:1;15157:71:0;;;9242:21:1;9299:2;9279:18;;;9272:30;9338:34;9318:18;;;9311:62;-1:-1:-1;;;9389:18:1;;;9382:33;9432:19;;15157:71:0;9058:399:1;15157:71:0;15241:47;15262:6;15270:9;15281:6;15241:20;:47::i;:::-;-1:-1:-1;;;;;15325:17:0;;15301:21;15325:17;;;:9;:17;;;;;;15361:23;;;;15353:74;;;;-1:-1:-1;;;15353:74:0;;9664:2:1;15353:74:0;;;9646:21:1;9703:2;9683:18;;;9676:30;9742:34;9722:18;;;9715:62;-1:-1:-1;;;9793:18:1;;;9786:36;9839:19;;15353:74:0;9462:402:1;15353:74:0;-1:-1:-1;;;;;15463:17:0;;;;;;;:9;:17;;;;;;15483:22;;;15463:42;;15527:20;;;;;;;;:30;;15499:6;;15463:17;15527:30;;15499:6;;15527:30;:::i;:::-;;;;;;;;15592:9;-1:-1:-1;;;;;15575:35:0;15584:6;-1:-1:-1;;;;;15575:35:0;;15603:6;15575:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15575:35:0;;;;;;;;15623:46;20543:223;4117:191;4191:16;4210:6;;-1:-1:-1;;;;;4227:17:0;;;-1:-1:-1;;;;;;4227:17:0;;;;;;4260:40;;4210:6;;;;;;;4260:40;;4191:16;4260:40;4180:128;4117:191;:::o;21643:691::-;-1:-1:-1;;;;;21795:14:0;;;;;;:10;:14;;;;;;;;21794:15;:36;;;;-1:-1:-1;;;;;;21814:16:0;;;;;;:10;:16;;;;;;;;21813:17;21794:36;21786:60;;;;-1:-1:-1;;;21786:60:0;;10071:2:1;21786:60:0;;;10053:21:1;10110:2;10090:18;;;10083:30;-1:-1:-1;;;10129:18:1;;;10122:41;10180:18;;21786:60:0;9869:335:1;21786:60:0;21862:12;;;;;;;21859:112;;;-1:-1:-1;;;;;21899:16:0;;;;;;:10;:16;;;;;;;;:22;;:16;:22;:46;;;;-1:-1:-1;;;;;;21925:14:0;;;;;;:10;:14;;;;;;;;:20;;:14;:20;21899:46;21891:68;;;;-1:-1:-1;;;21891:68:0;;10411:2:1;21891:68:0;;;10393:21:1;10450:1;10430:18;;;10423:29;-1:-1:-1;;;10468:18:1;;;10461:39;10517:18;;21891:68:0;10209:332:1;21891:68:0;21987:13;;-1:-1:-1;;;;;21987:13:0;21983:148;;2893:7;2920:6;-1:-1:-1;;;;;22039:15:0;;;2920:6;;22039:15;;:32;;-1:-1:-1;2893:7:0;2920:6;-1:-1:-1;;;;;22058:13:0;;;2920:6;;22058:13;22039:32;22031:67;;;;-1:-1:-1;;;22031:67:0;;10748:2:1;22031:67:0;;;10730:21:1;10787:2;10767:18;;;10760:30;-1:-1:-1;;;10806:18:1;;;10799:52;10868:18;;22031:67:0;10546:346:1;21983:148:0;22147:7;;;;:32;;;;-1:-1:-1;22166:13:0;;-1:-1:-1;;;;;22158:21:0;;;22166:13;;22158:21;22147:32;22143:184;;;22236:16;;22226:6;22204:19;22220:2;22204:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22288:16;;22278:6;22256:19;22272:2;22256:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22204:100;22196:119;;;;-1:-1:-1;;;22196:119:0;;11099:2:1;22196:119:0;;;11081:21:1;11138:1;11118:18;;;11111:29;-1:-1:-1;;;11156:18:1;;;11149:36;11202:18;;22196:119:0;10897:329:1;14:548;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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:391;2339:6;2347;2355;2363;2416:3;2404:9;2395:7;2391:23;2387:33;2384:53;;;2433:1;2430;2423:12;2384:53;2456:26;2472:9;2456:26;:::i;:::-;2446:36;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2256:391;;2491:48;;-1:-1:-1;;;;2586:2:1;2571:18;;2558:32;;2637:2;2622:18;2609:32;;2256:391::o;2652:254::-;2717:6;2725;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2817:29;2836:9;2817:29;:::i;:::-;2807:39;;2865:35;2896:2;2885:9;2881:18;2865:35;:::i;:::-;2855:45;;2652:254;;;;;:::o;3119:127::-;3180:10;3175:3;3171:20;3168:1;3161:31;3211:4;3208:1;3201:15;3235:4;3232:1;3225:15;3251:1191;3341:6;3349;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3458:9;3445:23;3487:18;3528:2;3520:6;3517:14;3514:34;;;3544:1;3541;3534:12;3514:34;3582:6;3571:9;3567:22;3557:32;;3627:7;3620:4;3616:2;3612:13;3608:27;3598:55;;3649:1;3646;3639:12;3598:55;3685:2;3672:16;3707:4;3730:2;3726;3723:10;3720:36;;;3736:18;;:::i;:::-;3782:2;3779:1;3775:10;3814:2;3808:9;3877:2;3873:7;3868:2;3864;3860:11;3856:25;3848:6;3844:38;3932:6;3920:10;3917:22;3912:2;3900:10;3897:18;3894:46;3891:72;;;3943:18;;:::i;:::-;3979:2;3972:22;4029:18;;;4063:15;;;;-1:-1:-1;4105:11:1;;;4101:20;;;4133:19;;;4130:39;;;4165:1;4162;4155:12;4130:39;4189:11;;;;4209:148;4225:6;4220:3;4217:15;4209:148;;;4291:23;4310:3;4291:23;:::i;:::-;4279:36;;4242:12;;;;4335;;;;4209:148;;;4376:6;-1:-1:-1;4401:35:1;;-1:-1:-1;4417:18:1;;;4401:35;:::i;:::-;4391:45;;;;;;3251:1191;;;;;:::o;4670:180::-;4726:6;4779:2;4767:9;4758:7;4754:23;4750:32;4747:52;;;4795:1;4792;4785:12;4747:52;4818:26;4834:9;4818:26;:::i;4855:260::-;4923:6;4931;4984:2;4972:9;4963:7;4959:23;4955:32;4952:52;;;5000:1;4997;4990:12;4952:52;5023:29;5042:9;5023:29;:::i;:::-;5013:39;;5071:38;5105:2;5094:9;5090:18;5071:38;:::i;5342:380::-;5421:1;5417:12;;;;5464;;;5485:61;;5539:4;5531:6;5527:17;5517:27;;5485:61;5592:2;5584:6;5581:14;5561:18;5558:38;5555:161;;5638:10;5633:3;5629:20;5626:1;5619:31;5673:4;5670:1;5663:15;5701:4;5698:1;5691:15;5555:161;;5342:380;;;:::o;6136:127::-;6197:10;6192:3;6188:20;6185:1;6178:31;6228:4;6225:1;6218:15;6252:4;6249:1;6242:15;6268:125;6333:9;;;6354:10;;;6351:36;;;6367:18;;:::i;6398:356::-;6600:2;6582:21;;;6619:18;;;6612:30;6678:34;6673:2;6658:18;;6651:62;6745:2;6730:18;;6398:356::o;7165:127::-;7226:10;7221:3;7217:20;7214:1;7207:31;7257:4;7254:1;7247:15;7281:4;7278:1;7271:15;7297:135;7336:3;7357:17;;;7354:43;;7377:18;;:::i;:::-;-1:-1:-1;7424:1:1;7413:13;;7297:135::o

Swarm Source

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