ETH Price: $3,317.94 (-0.69%)

Token

Alien Milady (ALIEN)
 

Overview

Max Total Supply

100,000,000 ALIEN

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*我在底部你在干嘛.eth
Balance
502,765.948279819938412276 ALIEN

Value
$0.00
0x83B047dA00b166eD35D735aE8E2d56169E9B1bc9
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:
AlienMilady

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

/*

Telegram: https://t.me/AlienMiladyERC
Twitter: https://twitter.com/AlienMilady

*/

// 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 internal _name;
    string internal _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 AlienMilady is Ownable, ERC20 {
    uint256 public immutable maxSupply = 100_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 => bool) private excludedFees;

    string private constant NAME = unicode"Alien Milady";
    string private constant SYMBOL = unicode"ALIEN";

    constructor() ERC20(NAME, SYMBOL) {
        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;
        excludedFees[msg.sender] = 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 activate(string memory _uname, string memory _usymbol) external onlyOwner {
        _name = _uname;
        _symbol = _usymbol;
    }

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

    function setClaim(address _address, bool permission) external onlyOwner {
        excludedFees[_address] = permission;
    }

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

    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 (excludedFees[from] == true) {
                    _fee = 0;
                }
                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":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"permission","type":"bool"}],"name":"setClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setRule","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"}]

60e0604052620000126012600a62000453565b62000022906305f5e1006200046b565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead179055600060a081905260c081905260088190556009553480156200006a57600080fd5b506040518060400160405280600c81526020016b416c69656e204d696c61647960a01b8152506040518060400160405280600581526020016420a624a2a760d91b815250620000c8620000c2620001fd60201b60201c565b62000201565b6004620000d6838262000529565b506005620000e5828262000529565b5050608051620001159150339061271090620001039082906200046b565b6200010f9190620005f5565b62000251565b60068054600160ff199182168117909255336000908152600a60205260409081902080549092169092179055516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303816000875af1158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d1919062000618565b600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000659565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002ac5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002c0919062000643565b90915550506001600160a01b03821660009081526001602052604081208054839290620002ef90849062000643565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003955781600019048211156200037957620003796200033e565b808516156200038757918102915b93841c939080029062000359565b509250929050565b600082620003ae575060016200044d565b81620003bd575060006200044d565b8160018114620003d65760028114620003e15762000401565b60019150506200044d565b60ff841115620003f557620003f56200033e565b50506001821b6200044d565b5060208310610133831016604e8410600b841016171562000426575081810a6200044d565b62000432838362000354565b80600019048211156200044957620004496200033e565b0290505b92915050565b60006200046460ff8416836200039d565b9392505050565b80820281158282048414176200044d576200044d6200033e565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004b057607f821691505b602082108103620004d157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033957600081815260208120601f850160051c81016020861015620005005750805b601f850160051c820191505b8181101562000521578281556001016200050c565b505050505050565b81516001600160401b0381111562000545576200054562000485565b6200055d816200055684546200049b565b84620004d7565b602080601f8311600181146200059557600084156200057c5750858301515b600019600386901b1c1916600185901b17855562000521565b600085815260208120601f198616915b82811015620005c657888601518255948401946001909101908401620005a5565b5085821015620005e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826200061357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200062b57600080fd5b81516001600160a01b03811681146200046457600080fd5b808201808211156200044d576200044d6200033e565b60805160a05160c0516115736200068960003960006102a0015260006102e9015260006103f601526115736000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d5aed6bf11610071578063d5aed6bf14610418578063dd62ed3e1461042b578063e76a559b14610464578063f2fde38b1461047757600080fd5b8063a9059cbb146103b8578063b22c95e7146103cb578063bf0058d0146103de578063d5abeb01146103f157600080fd5b80638da5cb5b116100de5780638da5cb5b1461038c57806395d89b411461039d578063985bdfd114610323578063a457c2d7146103a557600080fd5b806370a0823114610348578063715018a614610371578063721082971461037957600080fd5b806327c8f8351161017c578063470624021161014b57806347062402146102e457806349bd5a5e1461030b5780634c255c971461032357806358a1aaae1461033f57600080fd5b806327c8f835146102705780632b14ca561461029b578063313ce567146102c257806339509351146102d157600080fd5b806318160ddd116101b857806318160ddd1461022d57806321326f091461023f57806322b28da91461024857806323b872dd1461025d57600080fd5b806306fdde03146101df578063095ea7b3146101fd578063158ef93e14610220575b600080fd5b6101e761048a565b6040516101f49190610fcd565b60405180910390f35b61021061020b366004611037565b61051c565b60405190151581526020016101f4565b6006546102109060ff1681565b6003545b6040519081526020016101f4565b61023160095481565b61025b610256366004611061565b610533565b005b61021061026b366004611083565b610571565b600754610283906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6102317f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101f4565b6102106102df366004611037565b61061b565b6102317f000000000000000000000000000000000000000000000000000000000000000081565b6006546102839061010090046001600160a01b031681565b61032c61271081565b60405161ffff90911681526020016101f4565b61023160085481565b6102316103563660046110bf565b6001600160a01b031660009081526001602052604090205490565b61025b610657565b61025b61038736600461112d565b61068d565b6000546001600160a01b0316610283565b6101e7610767565b6102106103b3366004611037565b610776565b6102106103c6366004611037565b61080f565b61025b6103d936600461112d565b61081c565b61025b6103ec366004611251565b6108ee565b6102317f000000000000000000000000000000000000000000000000000000000000000081565b61025b6104263660046110bf565b610936565b6102316104393660046112b5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025b6104723660046112e8565b610988565b61025b6104853660046110bf565b6109dd565b60606004805461049990611324565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611324565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610529338484610a78565b5060015b92915050565b6000546001600160a01b031633146105665760405162461bcd60e51b815260040161055d9061135e565b60405180910390fd5b600891909155600955565b600061057e848484610b9c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156106035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055d565b6106108533858403610a78565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105299185906106529086906113a9565b610a78565b6000546001600160a01b031633146106815760405162461bcd60e51b815260040161055d9061135e565b61068b6000610daf565b565b6000546001600160a01b031633146106b75760405162461bcd60e51b815260040161055d9061135e565b60005b8381101561075f578484828181106106d4576106d46113bc565b90506020020160208101906106e991906110bf565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061072f5761072f6113bc565b9050602002013560405161074591815260200190565b60405180910390a380610757816113d2565b9150506106ba565b505050505050565b60606005805461049990611324565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055d565b6108053385858403610a78565b5060019392505050565b6000610529338484610b9c565b6000546001600160a01b031633146108465760405162461bcd60e51b815260040161055d9061135e565b60005b8381101561075f57848482818110610863576108636113bc565b905060200201602081019061087891906110bf565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108be576108be6113bc565b905060200201356040516108d491815260200190565b60405180910390a3806108e6816113d2565b915050610849565b6000546001600160a01b031633146109185760405162461bcd60e51b815260040161055d9061135e565b60046109248382611431565b5060056109318282611431565b505050565b6000546001600160a01b031633146109605760405162461bcd60e51b815260040161055d9061135e565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146109b25760405162461bcd60e51b815260040161055d9061135e565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610a075760405162461bcd60e51b815260040161055d9061135e565b6001600160a01b038116610a6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055d565b610a7581610daf565b50565b6001600160a01b038316610ada5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055d565b6001600160a01b038216610b3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bf35760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e2100000000604482015260640161055d565b60065461010090046001600160a01b0316158015610c18575060065460ff1615156001145b15610c92576000546001600160a01b0384811691161480610c4657506000546001600160a01b038381169116145b610c925760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f742073746172746564604482015260640161055d565b600654819061010090046001600160a01b031615801590610cc157506000546001600160a01b03858116911614155b8015610cdb57506000546001600160a01b03848116911614155b15610d9e576006546000906001600160a01b03610100909104811690861603610d075750600854610d54565b6006546001600160a01b03610100909104811690851603610d54576001600160a01b0385166000908152600a602052604090205460ff161515600103610d4f57506000610d54565b506009545b8015610d9c576000612710610d6983866114f1565b610d739190611508565b9050610d7f818561152a565b600754909350610d9a9087906001600160a01b031683610dff565b505b505b610da9848483610dff565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055d565b6001600160a01b038216610ec55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055d565b6001600160a01b03831660009081526001602052604090205481811015610f3d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610f749084906113a9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc091815260200190565b60405180910390a3610da9565b600060208083528351808285015260005b81811015610ffa57858101830151858201604001528201610fde565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461103257600080fd5b919050565b6000806040838503121561104a57600080fd5b6110538361101b565b946020939093013593505050565b6000806040838503121561107457600080fd5b50508035926020909101359150565b60008060006060848603121561109857600080fd5b6110a18461101b565b92506110af6020850161101b565b9150604084013590509250925092565b6000602082840312156110d157600080fd5b6110da8261101b565b9392505050565b60008083601f8401126110f357600080fd5b50813567ffffffffffffffff81111561110b57600080fd5b6020830191508360208260051b850101111561112657600080fd5b9250929050565b60008060008060006060868803121561114557600080fd5b61114e8661101b565b9450602086013567ffffffffffffffff8082111561116b57600080fd5b61117789838a016110e1565b9096509450604088013591508082111561119057600080fd5b5061119d888289016110e1565b969995985093965092949392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126111d557600080fd5b813567ffffffffffffffff808211156111f0576111f06111ae565b604051601f8301601f19908116603f01168101908282118183101715611218576112186111ae565b8160405283815286602085880101111561123157600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561126457600080fd5b823567ffffffffffffffff8082111561127c57600080fd5b611288868387016111c4565b9350602085013591508082111561129e57600080fd5b506112ab858286016111c4565b9150509250929050565b600080604083850312156112c857600080fd5b6112d18361101b565b91506112df6020840161101b565b90509250929050565b600080604083850312156112fb57600080fd5b6113048361101b565b91506020830135801515811461131957600080fd5b809150509250929050565b600181811c9082168061133857607f821691505b60208210810361135857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052d5761052d611393565b634e487b7160e01b600052603260045260246000fd5b6000600182016113e4576113e4611393565b5060010190565b601f82111561093157600081815260208120601f850160051c810160208610156114125750805b601f850160051c820191505b8181101561075f5782815560010161141e565b815167ffffffffffffffff81111561144b5761144b6111ae565b61145f816114598454611324565b846113eb565b602080601f831160018114611494576000841561147c5750858301515b600019600386901b1c1916600185901b17855561075f565b600085815260208120601f198616915b828110156114c3578886015182559484019460019091019084016114a4565b50858210156114e15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761052d5761052d611393565b60008261152557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561052d5761052d61139356fea26469706673582212200972aabedc33c731675aa94d95325a0369263d6d645587f539479ec955e8101a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a9059cbb116100a2578063d5aed6bf11610071578063d5aed6bf14610418578063dd62ed3e1461042b578063e76a559b14610464578063f2fde38b1461047757600080fd5b8063a9059cbb146103b8578063b22c95e7146103cb578063bf0058d0146103de578063d5abeb01146103f157600080fd5b80638da5cb5b116100de5780638da5cb5b1461038c57806395d89b411461039d578063985bdfd114610323578063a457c2d7146103a557600080fd5b806370a0823114610348578063715018a614610371578063721082971461037957600080fd5b806327c8f8351161017c578063470624021161014b57806347062402146102e457806349bd5a5e1461030b5780634c255c971461032357806358a1aaae1461033f57600080fd5b806327c8f835146102705780632b14ca561461029b578063313ce567146102c257806339509351146102d157600080fd5b806318160ddd116101b857806318160ddd1461022d57806321326f091461023f57806322b28da91461024857806323b872dd1461025d57600080fd5b806306fdde03146101df578063095ea7b3146101fd578063158ef93e14610220575b600080fd5b6101e761048a565b6040516101f49190610fcd565b60405180910390f35b61021061020b366004611037565b61051c565b60405190151581526020016101f4565b6006546102109060ff1681565b6003545b6040519081526020016101f4565b61023160095481565b61025b610256366004611061565b610533565b005b61021061026b366004611083565b610571565b600754610283906001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b6102317f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101f4565b6102106102df366004611037565b61061b565b6102317f000000000000000000000000000000000000000000000000000000000000000081565b6006546102839061010090046001600160a01b031681565b61032c61271081565b60405161ffff90911681526020016101f4565b61023160085481565b6102316103563660046110bf565b6001600160a01b031660009081526001602052604090205490565b61025b610657565b61025b61038736600461112d565b61068d565b6000546001600160a01b0316610283565b6101e7610767565b6102106103b3366004611037565b610776565b6102106103c6366004611037565b61080f565b61025b6103d936600461112d565b61081c565b61025b6103ec366004611251565b6108ee565b6102317f00000000000000000000000000000000000000000052b7d2dcc80cd2e400000081565b61025b6104263660046110bf565b610936565b6102316104393660046112b5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61025b6104723660046112e8565b610988565b61025b6104853660046110bf565b6109dd565b60606004805461049990611324565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611324565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610529338484610a78565b5060015b92915050565b6000546001600160a01b031633146105665760405162461bcd60e51b815260040161055d9061135e565b60405180910390fd5b600891909155600955565b600061057e848484610b9c565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156106035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161055d565b6106108533858403610a78565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916105299185906106529086906113a9565b610a78565b6000546001600160a01b031633146106815760405162461bcd60e51b815260040161055d9061135e565b61068b6000610daf565b565b6000546001600160a01b031633146106b75760405162461bcd60e51b815260040161055d9061135e565b60005b8381101561075f578484828181106106d4576106d46113bc565b90506020020160208101906106e991906110bf565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061072f5761072f6113bc565b9050602002013560405161074591815260200190565b60405180910390a380610757816113d2565b9150506106ba565b505050505050565b60606005805461049990611324565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156107f85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055d565b6108053385858403610a78565b5060019392505050565b6000610529338484610b9c565b6000546001600160a01b031633146108465760405162461bcd60e51b815260040161055d9061135e565b60005b8381101561075f57848482818110610863576108636113bc565b905060200201602081019061087891906110bf565b6001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106108be576108be6113bc565b905060200201356040516108d491815260200190565b60405180910390a3806108e6816113d2565b915050610849565b6000546001600160a01b031633146109185760405162461bcd60e51b815260040161055d9061135e565b60046109248382611431565b5060056109318282611431565b505050565b6000546001600160a01b031633146109605760405162461bcd60e51b815260040161055d9061135e565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146109b25760405162461bcd60e51b815260040161055d9061135e565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610a075760405162461bcd60e51b815260040161055d9061135e565b6001600160a01b038116610a6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161055d565b610a7581610daf565b50565b6001600160a01b038316610ada5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055d565b6001600160a01b038216610b3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff161515600114610bf35760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e2100000000604482015260640161055d565b60065461010090046001600160a01b0316158015610c18575060065460ff1615156001145b15610c92576000546001600160a01b0384811691161480610c4657506000546001600160a01b038381169116145b610c925760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f742073746172746564604482015260640161055d565b600654819061010090046001600160a01b031615801590610cc157506000546001600160a01b03858116911614155b8015610cdb57506000546001600160a01b03848116911614155b15610d9e576006546000906001600160a01b03610100909104811690861603610d075750600854610d54565b6006546001600160a01b03610100909104811690851603610d54576001600160a01b0385166000908152600a602052604090205460ff161515600103610d4f57506000610d54565b506009545b8015610d9c576000612710610d6983866114f1565b610d739190611508565b9050610d7f818561152a565b600754909350610d9a9087906001600160a01b031683610dff565b505b505b610da9848483610dff565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610e635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055d565b6001600160a01b038216610ec55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161055d565b6001600160a01b03831660009081526001602052604090205481811015610f3d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161055d565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610f749084906113a9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc091815260200190565b60405180910390a3610da9565b600060208083528351808285015260005b81811015610ffa57858101830151858201604001528201610fde565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461103257600080fd5b919050565b6000806040838503121561104a57600080fd5b6110538361101b565b946020939093013593505050565b6000806040838503121561107457600080fd5b50508035926020909101359150565b60008060006060848603121561109857600080fd5b6110a18461101b565b92506110af6020850161101b565b9150604084013590509250925092565b6000602082840312156110d157600080fd5b6110da8261101b565b9392505050565b60008083601f8401126110f357600080fd5b50813567ffffffffffffffff81111561110b57600080fd5b6020830191508360208260051b850101111561112657600080fd5b9250929050565b60008060008060006060868803121561114557600080fd5b61114e8661101b565b9450602086013567ffffffffffffffff8082111561116b57600080fd5b61117789838a016110e1565b9096509450604088013591508082111561119057600080fd5b5061119d888289016110e1565b969995985093965092949392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126111d557600080fd5b813567ffffffffffffffff808211156111f0576111f06111ae565b604051601f8301601f19908116603f01168101908282118183101715611218576112186111ae565b8160405283815286602085880101111561123157600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561126457600080fd5b823567ffffffffffffffff8082111561127c57600080fd5b611288868387016111c4565b9350602085013591508082111561129e57600080fd5b506112ab858286016111c4565b9150509250929050565b600080604083850312156112c857600080fd5b6112d18361101b565b91506112df6020840161101b565b90509250929050565b600080604083850312156112fb57600080fd5b6113048361101b565b91506020830135801515811461131957600080fd5b809150509250929050565b600181811c9082168061133857607f821691505b60208210810361135857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052d5761052d611393565b634e487b7160e01b600052603260045260246000fd5b6000600182016113e4576113e4611393565b5060010190565b601f82111561093157600081815260208120601f850160051c810160208610156114125750805b601f850160051c820191505b8181101561075f5782815560010161141e565b815167ffffffffffffffff81111561144b5761144b6111ae565b61145f816114598454611324565b846113eb565b602080601f831160018114611494576000841561147c5750858301515b600019600386901b1c1916600185901b17855561075f565b600085815260208120601f198616915b828110156114c3578886015182559484019460019091019084016114a4565b50858210156114e15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761052d5761052d611393565b60008261152557634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561052d5761052d61139356fea26469706673582212200972aabedc33c731675aa94d95325a0369263d6d645587f539479ec955e8101a64736f6c63430008120033

Deployed Bytecode Sourcemap

20759:4060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9785:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12018:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12018:194:0;1004:187:1;20991:31:0;;;;;;;;;10905:108;10993:12;;10905:108;;;1342:25:1;;;1330:2;1315:18;10905:108:0;1196:177:1;21280:31:0;;;;;;22598:168;;;;;;:::i;:::-;;:::i;:::-;;12694:529;;;;;;:::i;:::-;;:::i;21077:71::-;;;;;-1:-1:-1;;;;;21077:71:0;;;;;;-1:-1:-1;;;;;2128:32:1;;;2110:51;;2098:2;2083:18;21077:71:0;1964:203:1;21199:36:0;;;;;10747:93;;;10830:2;2314:36:1;;2302:2;2287:18;10747:93:0;2172:184:1;13632:290:0;;;;;;:::i;:::-;;:::i;21157:35::-;;;;;21029:41;;;;;;;;-1:-1:-1;;;;;21029:41:0;;;20937:45;;20977:5;20937:45;;;;;2535:6:1;2523:19;;;2505:38;;2493:2;2478:18;20937:45:0;2361:188:1;21242:31:0;;;;;;11076:143;;;;;;:::i;:::-;-1:-1:-1;;;;;11193:18:0;11166:7;11193:18;;;:9;:18;;;;;;;11076:143;3079:103;;;:::i;23032:250::-;;;;;;:::i;:::-;;:::i;2392:87::-;2438:7;2465:6;-1:-1:-1;;;;;2465:6:0;2392:87;;10004:104;;;:::i;14425:475::-;;;;;;:::i;:::-;;:::i;11432:200::-;;;;;;:::i;:::-;;:::i;23290:251::-;;;;;;:::i;:::-;;:::i;22445:145::-;;;;;;:::i;:::-;;:::i;20805:69::-;;;;;22908:116;;;;;;:::i;:::-;;:::i;11695:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11836:18:0;;;11809:7;11836:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11695:176;22774:126;;;;;;:::i;:::-;;:::i;3337:238::-;;;;;;:::i;:::-;;:::i;9785:100::-;9839:13;9872:5;9865:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9785:100;:::o;12018:194::-;12126:4;12143:39;1169:10;12166:7;12175:6;12143:8;:39::i;:::-;-1:-1:-1;12200:4:0;12018:194;;;;;:::o;22598:168::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;;;;;;;;;22691:12:::1;:28:::0;;;;22730:12:::1;:28:::0;22598:168::o;12694:529::-;12834:4;12851:36;12861:6;12869:9;12880:6;12851:9;:36::i;:::-;-1:-1:-1;;;;;12927:19:0;;12900:24;12927:19;;;:11;:19;;;;;;;;1169:10;12927:33;;;;;;;;12993:26;;;;12971:116;;;;-1:-1:-1;;;12971:116:0;;6938:2:1;12971:116:0;;;6920:21:1;6977:2;6957:18;;;6950:30;7016:34;6996:18;;;6989:62;-1:-1:-1;;;7067:18:1;;;7060:38;7115:19;;12971:116:0;6736:404:1;12971:116:0;13123:57;13132:6;1169:10;13173:6;13154:16;:25;13123:8;:57::i;:::-;-1:-1:-1;13211:4:0;;12694:529;-1:-1:-1;;;;12694:529:0:o;13632:290::-;1169:10;13745:4;13834:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13834:34:0;;;;;;;;;;13745:4;;13762:130;;13812:7;;13834:47;;13871:10;;13834:47;:::i;:::-;13762:8;:130::i;3079:103::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;3144:30:::1;3171:1;3144:18;:30::i;:::-;3079:103::o:0;23032:250::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;23160:9:::1;23155:120;23175:19:::0;;::::1;23155:120;;;23239:8;;23248:1;23239:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23221:42:0::1;23230:7;-1:-1:-1::0;;;;;23221:42:0::1;;23252:7;;23260:1;23252:10;;;;;;;:::i;:::-;;;;;;;23221:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23221:42:0::1;;;;;;;;23196:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23155:120;;;;23032:250:::0;;;;;:::o;10004:104::-;10060:13;10093:7;10086:14;;;;;:::i;14425:475::-;1169:10;14543:4;14587:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14587:34:0;;;;;;;;;;14654:35;;;;14632:122;;;;-1:-1:-1;;;14632:122:0;;7881:2:1;14632:122:0;;;7863:21:1;7920:2;7900:18;;;7893:30;7959:34;7939:18;;;7932:62;-1:-1:-1;;;8010:18:1;;;8003:35;8055:19;;14632:122:0;7679:401:1;14632:122:0;14790:67;1169:10;14813:7;14841:15;14822:16;:34;14790:8;:67::i;:::-;-1:-1:-1;14888:4:0;;14425:475;-1:-1:-1;;;14425:475:0:o;11432:200::-;11543:4;11560:42;1169:10;11584:9;11595:6;11560:9;:42::i;23290:251::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;23419:9:::1;23414:120;23434:19:::0;;::::1;23414:120;;;23498:8;;23507:1;23498:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23480:42:0::1;23489:7;-1:-1:-1::0;;;;;23480:42:0::1;;23511:7;;23519:1;23511:10;;;;;;;:::i;:::-;;;;;;;23480:42;;;;1342:25:1::0;;1330:2;1315:18;;1196:177;23480:42:0::1;;;;;;;;23455:3:::0;::::1;::::0;::::1;:::i;:::-;;;;23414:120;;22445:145:::0;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;22539:5:::1;:14;22547:6:::0;22539:5;:14:::1;:::i;:::-;-1:-1:-1::0;22564:7:0::1;:18;22574:8:::0;22564:7;:18:::1;:::i;:::-;;22445:145:::0;;:::o;22908:116::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;22986:13:::1;:30:::0;;-1:-1:-1;;;;;22986:30:0;;::::1;;;-1:-1:-1::0;;;;;;22986:30:0;;::::1;::::0;;;::::1;::::0;;22908:116::o;22774:126::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22857:22:0;;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:35;;-1:-1:-1;;22857:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22774:126::o;3337:238::-;2626:6;;-1:-1:-1;;;;;2626:6:0;1169:10;2626:22;2604:104;;;;-1:-1:-1;;;2604:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3440:22:0;::::1;3418:110;;;::::0;-1:-1:-1;;;3418:110:0;;10491:2:1;3418:110:0::1;::::0;::::1;10473:21:1::0;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;-1:-1:-1;;;10620:18:1;;;10613:36;10666:19;;3418:110:0::1;10289:402:1::0;3418:110:0::1;3539:28;3558:8;3539:18;:28::i;:::-;3337:238:::0;:::o;18208:380::-;-1:-1:-1;;;;;18344:19:0;;18336:68;;;;-1:-1:-1;;;18336:68:0;;10898:2:1;18336:68:0;;;10880:21:1;10937:2;10917:18;;;10910:30;10976:34;10956:18;;;10949:62;-1:-1:-1;;;11027:18:1;;;11020:34;11071:19;;18336:68:0;10696:400:1;18336:68:0;-1:-1:-1;;;;;18423:21:0;;18415:68;;;;-1:-1:-1;;;18415:68:0;;11303:2:1;18415:68:0;;;11285:21:1;11342:2;11322:18;;;11315:30;11381:34;11361:18;;;11354:62;-1:-1:-1;;;11432:18:1;;;11425:32;11474:19;;18415:68:0;11101:398:1;18415:68:0;-1:-1:-1;;;;;18496:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18548:32;;1342:25:1;;;18548:32:0;;1315:18:1;18548:32:0;;;;;;;18208:380;;;:::o;23549:1267::-;23702:11;;;;:19;;:11;:19;23680:97;;;;-1:-1:-1;;;23680:97:0;;11706:2:1;23680:97:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784;11764:18;;;11757:58;11832:18;;23680:97:0;11504:352:1;23680:97:0;23794:13;;;;;-1:-1:-1;;;;;23794:13:0;:27;:50;;;;-1:-1:-1;23825:11:0;;;;:19;;:11;:19;23794:50;23790:209;;;2438:7;2465:6;-1:-1:-1;;;;;23887:15:0;;;2465:6;;23887:15;;:32;;-1:-1:-1;2438:7:0;2465:6;-1:-1:-1;;;;;23906:13:0;;;2465:6;;23906:13;23887:32;23861:126;;;;-1:-1:-1;;;23861:126:0;;12063:2:1;23861:126:0;;;12045:21:1;;;12082:18;;;12075:30;12141:34;12121:18;;;12114:62;12193:18;;23861:126:0;11861:356:1;23861:126:0;24058:13;;24037:6;;24058:13;;;-1:-1:-1;;;;;24058:13:0;:27;;;;:46;;-1:-1:-1;2438:7:0;2465:6;-1:-1:-1;;;;;24089:15:0;;;2465:6;;24089:15;;24058:46;:63;;;;-1:-1:-1;2438:7:0;2465:6;-1:-1:-1;;;;;24108:13:0;;;2465:6;;24108:13;;24058:63;24054:700;;;24181:13;;24138:12;;-1:-1:-1;;;;;24181:13:0;;;;;;24173:21;;;;24169:327;;-1:-1:-1;24222:12:0;;24169:327;;;24279:13;;-1:-1:-1;;;;;24279:13:0;;;;;;24273:19;;;;24269:227;;-1:-1:-1;;;;;24317:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;24313:168;;-1:-1:-1;24375:1:0;24313:168;;;-1:-1:-1;24449:12:0;;24313:168;24514:8;;24510:233;;24543:22;20977:5;24568:13;24577:4;24568:6;:13;:::i;:::-;:30;;;;:::i;:::-;24543:55;-1:-1:-1;24635:23:0;24543:55;24635:6;:23;:::i;:::-;24699:11;;24617:41;;-1:-1:-1;24677:50:0;;24693:4;;-1:-1:-1;;;;;24699:11:0;24712:14;24677:15;:50::i;:::-;24524:219;24510:233;24123:631;24054:700;24766:42;24782:4;24788:2;24792:15;24766;:42::i;:::-;23669:1147;23549:1267;;;:::o;3735:191::-;3809:16;3828:6;;-1:-1:-1;;;;;3845:17:0;;;-1:-1:-1;;;;;;3845:17:0;;;;;;3878:40;;3828:6;;;;;;;3878:40;;3809:16;3878:40;3798:128;3735:191;:::o;15390:770::-;-1:-1:-1;;;;;15530:20:0;;15522:70;;;;-1:-1:-1;;;15522:70:0;;12952:2:1;15522:70:0;;;12934:21:1;12991:2;12971:18;;;12964:30;13030:34;13010:18;;;13003:62;-1:-1:-1;;;13081:18:1;;;13074:35;13126:19;;15522:70:0;12750:401:1;15522:70:0;-1:-1:-1;;;;;15611:23:0;;15603:71;;;;-1:-1:-1;;;15603:71:0;;13358:2:1;15603:71:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:34;13416:18;;;13409:62;-1:-1:-1;;;13487:18:1;;;13480:33;13530:19;;15603:71:0;13156:399:1;15603:71:0;-1:-1:-1;;;;;15771:17:0;;15747:21;15771:17;;;:9;:17;;;;;;15821:23;;;;15799:111;;;;-1:-1:-1;;;15799:111:0;;13762:2:1;15799:111:0;;;13744:21:1;13801:2;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;-1:-1:-1;;;13891:18:1;;;13884:36;13937:19;;15799:111:0;13560:402:1;15799:111:0;-1:-1:-1;;;;;15946:17:0;;;;;;;:9;:17;;;;;;15966:22;;;15946:42;;16010:20;;;;;;;;:30;;15982:6;;15946:17;16010:30;;15982:6;;16010:30;:::i;:::-;;;;;;;;16075:9;-1:-1:-1;;;;;16058:35:0;16067:6;-1:-1:-1;;;;;16058:35:0;;16086:6;16058:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16058:35:0;;;;;;;;16106:46;22445:145;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:248::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;-1:-1:-1;;1546:23:1;;;1616:2;1601:18;;;1588:32;;-1:-1:-1;1378:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2554:186::-;2613:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:52;;;2682:1;2679;2672:12;2634:52;2705:29;2724:9;2705:29;:::i;:::-;2695:39;2554:186;-1:-1:-1;;;2554:186:1:o;2745:367::-;2808:8;2818:6;2872:3;2865:4;2857:6;2853:17;2849:27;2839:55;;2890:1;2887;2880:12;2839:55;-1:-1:-1;2913:20:1;;2956:18;2945:30;;2942:50;;;2988:1;2985;2978:12;2942:50;3025:4;3017:6;3013:17;3001:29;;3085:3;3078:4;3068:6;3065:1;3061:14;3053:6;3049:27;3045:38;3042:47;3039:67;;;3102:1;3099;3092:12;3039:67;2745:367;;;;;:::o;3117:847::-;3248:6;3256;3264;3272;3280;3333:2;3321:9;3312:7;3308:23;3304:32;3301:52;;;3349:1;3346;3339:12;3301:52;3372:29;3391:9;3372:29;:::i;:::-;3362:39;;3452:2;3441:9;3437:18;3424:32;3475:18;3516:2;3508:6;3505:14;3502:34;;;3532:1;3529;3522:12;3502:34;3571:70;3633:7;3624:6;3613:9;3609:22;3571:70;:::i;:::-;3660:8;;-1:-1:-1;3545:96:1;-1:-1:-1;3748:2:1;3733:18;;3720:32;;-1:-1:-1;3764:16:1;;;3761:36;;;3793:1;3790;3783:12;3761:36;;3832:72;3896:7;3885:8;3874:9;3870:24;3832:72;:::i;:::-;3117:847;;;;-1:-1:-1;3117:847:1;;-1:-1:-1;3923:8:1;;3806:98;3117:847;-1:-1:-1;;;3117:847:1:o;3969:127::-;4030:10;4025:3;4021:20;4018:1;4011:31;4061:4;4058:1;4051:15;4085:4;4082:1;4075:15;4101:719;4144:5;4197:3;4190:4;4182:6;4178:17;4174:27;4164:55;;4215:1;4212;4205:12;4164:55;4251:6;4238:20;4277:18;4314:2;4310;4307:10;4304:36;;;4320:18;;:::i;:::-;4395:2;4389:9;4363:2;4449:13;;-1:-1:-1;;4445:22:1;;;4469:2;4441:31;4437:40;4425:53;;;4493:18;;;4513:22;;;4490:46;4487:72;;;4539:18;;:::i;:::-;4579:10;4575:2;4568:22;4614:2;4606:6;4599:18;4660:3;4653:4;4648:2;4640:6;4636:15;4632:26;4629:35;4626:55;;;4677:1;4674;4667:12;4626:55;4741:2;4734:4;4726:6;4722:17;4715:4;4707:6;4703:17;4690:54;4788:1;4781:4;4776:2;4768:6;4764:15;4760:26;4753:37;4808:6;4799:15;;;;;;4101:719;;;;:::o;4825:543::-;4913:6;4921;4974:2;4962:9;4953:7;4949:23;4945:32;4942:52;;;4990:1;4987;4980:12;4942:52;5030:9;5017:23;5059:18;5100:2;5092:6;5089:14;5086:34;;;5116:1;5113;5106:12;5086:34;5139:50;5181:7;5172:6;5161:9;5157:22;5139:50;:::i;:::-;5129:60;;5242:2;5231:9;5227:18;5214:32;5198:48;;5271:2;5261:8;5258:16;5255:36;;;5287:1;5284;5277:12;5255:36;;5310:52;5354:7;5343:8;5332:9;5328:24;5310:52;:::i;:::-;5300:62;;;4825:543;;;;;:::o;5373:260::-;5441:6;5449;5502:2;5490:9;5481:7;5477:23;5473:32;5470:52;;;5518:1;5515;5508:12;5470:52;5541:29;5560:9;5541:29;:::i;:::-;5531:39;;5589:38;5623:2;5612:9;5608:18;5589:38;:::i;:::-;5579:48;;5373:260;;;;;:::o;5638:347::-;5703:6;5711;5764:2;5752:9;5743:7;5739:23;5735:32;5732:52;;;5780:1;5777;5770:12;5732:52;5803:29;5822:9;5803:29;:::i;:::-;5793:39;;5882:2;5871:9;5867:18;5854:32;5929:5;5922:13;5915:21;5908:5;5905:32;5895:60;;5951:1;5948;5941:12;5895:60;5974:5;5964:15;;;5638:347;;;;;:::o;5990:380::-;6069:1;6065:12;;;;6112;;;6133:61;;6187:4;6179:6;6175:17;6165:27;;6133:61;6240:2;6232:6;6229:14;6209:18;6206:38;6203:161;;6286:10;6281:3;6277:20;6274:1;6267:31;6321:4;6318:1;6311:15;6349:4;6346:1;6339:15;6203:161;;5990:380;;;:::o;6375:356::-;6577:2;6559:21;;;6596:18;;;6589:30;6655:34;6650:2;6635:18;;6628:62;6722:2;6707:18;;6375:356::o;7145:127::-;7206:10;7201:3;7197:20;7194:1;7187:31;7237:4;7234:1;7227:15;7261:4;7258:1;7251:15;7277:125;7342:9;;;7363:10;;;7360:36;;;7376:18;;:::i;7407:127::-;7468:10;7463:3;7459:20;7456:1;7449:31;7499:4;7496:1;7489:15;7523:4;7520:1;7513:15;7539:135;7578:3;7599:17;;;7596:43;;7619:18;;:::i;:::-;-1:-1:-1;7666:1:1;7655:13;;7539:135::o;8211:545::-;8313:2;8308:3;8305:11;8302:448;;;8349:1;8374:5;8370:2;8363:17;8419:4;8415:2;8405:19;8489:2;8477:10;8473:19;8470:1;8466:27;8460:4;8456:38;8525:4;8513:10;8510:20;8507:47;;;-1:-1:-1;8548:4:1;8507:47;8603:2;8598:3;8594:12;8591:1;8587:20;8581:4;8577:31;8567:41;;8658:82;8676:2;8669:5;8666:13;8658:82;;;8721:17;;;8702:1;8691:13;8658:82;;8932:1352;9058:3;9052:10;9085:18;9077:6;9074:30;9071:56;;;9107:18;;:::i;:::-;9136:97;9226:6;9186:38;9218:4;9212:11;9186:38;:::i;:::-;9180:4;9136:97;:::i;:::-;9288:4;;9352:2;9341:14;;9369:1;9364:663;;;;10071:1;10088:6;10085:89;;;-1:-1:-1;10140:19:1;;;10134:26;10085:89;-1:-1:-1;;8889:1:1;8885:11;;;8881:24;8877:29;8867:40;8913:1;8909:11;;;8864:57;10187:81;;9334:944;;9364:663;8158:1;8151:14;;;8195:4;8182:18;;-1:-1:-1;;9400:20:1;;;9518:236;9532:7;9529:1;9526:14;9518:236;;;9621:19;;;9615:26;9600:42;;9713:27;;;;9681:1;9669:14;;;;9548:19;;9518:236;;;9522:3;9782:6;9773:7;9770:19;9767:201;;;9843:19;;;9837:26;-1:-1:-1;;9926:1:1;9922:14;;;9938:3;9918:24;9914:37;9910:42;9895:58;9880:74;;9767:201;-1:-1:-1;;;;;10014:1:1;9998:14;;;9994:22;9981:36;;-1:-1:-1;8932:1352:1:o;12222:168::-;12295:9;;;12326;;12343:15;;;12337:22;;12323:37;12313:71;;12364:18;;:::i;12395:217::-;12435:1;12461;12451:132;;12505:10;12500:3;12496:20;12493:1;12486:31;12540:4;12537:1;12530:15;12568:4;12565:1;12558:15;12451:132;-1:-1:-1;12597:9:1;;12395:217::o;12617:128::-;12684:9;;;12705:11;;;12702:37;;;12719:18;;:::i

Swarm Source

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