ETH Price: $2,641.10 (+1.52%)

Token

HaveFunStayingPoor (HFSP)
 

Overview

Max Total Supply

420,000,000,000 HFSP

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ninjaklan.eth
Balance
1,478,285,637.264311188137291358 HFSP

Value
$0.00
0xa8da5912db11c6caa2762473f0b5d3dba6aff992
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:
HaveFunStayingPoor

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**

Telegram: https://t.me/HFSP_coin
Twitter: https://twitter.com/HFSP_coin

 __    __                                      ________                           ______    __                          __                            _______                               
/  |  /  |                                    /        |                         /      \  /  |                        /  |                          /       \                              
$$ |  $$ |  ______   __     __  ______        $$$$$$$$/__    __  _______        /$$$$$$  |_$$ |_     ______   __    __ $$/  _______    ______        $$$$$$$  | ______    ______    ______  
$$ |__$$ | /      \ /  \   /  |/      \       $$ |__  /  |  /  |/       \       $$ \__$$// $$   |   /      \ /  |  /  |/  |/       \  /      \       $$ |__$$ |/      \  /      \  /      \ 
$$    $$ | $$$$$$  |$$  \ /$$//$$$$$$  |      $$    | $$ |  $$ |$$$$$$$  |      $$      \$$$$$$/    $$$$$$  |$$ |  $$ |$$ |$$$$$$$  |/$$$$$$  |      $$    $$//$$$$$$  |/$$$$$$  |/$$$$$$  |
$$$$$$$$ | /    $$ | $$  /$$/ $$    $$ |      $$$$$/  $$ |  $$ |$$ |  $$ |       $$$$$$  | $$ | __  /    $$ |$$ |  $$ |$$ |$$ |  $$ |$$ |  $$ |      $$$$$$$/ $$ |  $$ |$$ |  $$ |$$ |  $$/ 
$$ |  $$ |/$$$$$$$ |  $$ $$/  $$$$$$$$/       $$ |    $$ \__$$ |$$ |  $$ |      /  \__$$ | $$ |/  |/$$$$$$$ |$$ \__$$ |$$ |$$ |  $$ |$$ \__$$ |      $$ |     $$ \__$$ |$$ \__$$ |$$ |      
$$ |  $$ |$$    $$ |   $$$/   $$       |      $$ |    $$    $$/ $$ |  $$ |      $$    $$/  $$  $$/ $$    $$ |$$    $$ |$$ |$$ |  $$ |$$    $$ |      $$ |     $$    $$/ $$    $$/ $$ |      
$$/   $$/  $$$$$$$/     $/     $$$$$$$/       $$/      $$$$$$/  $$/   $$/        $$$$$$/    $$$$/   $$$$$$$/  $$$$$$$ |$$/ $$/   $$/  $$$$$$$ |      $$/       $$$$$$/   $$$$$$/  $$/       
                                                                                                             /  \__$$ |              /  \__$$ |                                             
                                                                                                             $$    $$/               $$    $$/                                              
                                                                                                              $$$$$$/                 $$$$$$/                                               

*/


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

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

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

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

pragma solidity ^0.8.0;


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract HaveFunStayingPoor is Ownable, ERC20 {
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    address private router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    bool private botProtection;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    constructor(uint256 _totalSupply) ERC20("HaveFunStayingPoor", "HFSP") {
        uint256 twopointfivepercent = _totalSupply / 40;
        _mint(msg.sender, (_totalSupply / 100) * 85);
        _mint(0x72404089751540Fb4Af65221c78Cfad2C232A52f, twopointfivepercent);
        _mint(0x0015f56a52b0Fb80B5CaD9e404e4aF9CCBCABaD0, twopointfivepercent);
        _mint(0xBD9986665bA10EaE7157b007d6b52004aD96FbA1, twopointfivepercent);
        _mint(0x305810FbB905f6110E17FDE8FDa2Dfeb924c0b87, twopointfivepercent);
        _mint(0xC7054563668902235b2e3E27Ba3DcDa8Fffa2D92, twopointfivepercent);
        _mint(0x7711a0259B98B3e9b54E261B8490864B7062e931, twopointfivepercent);
        maxHoldingAmount = twopointfivepercent; // decreased to 1% BEFORE trading opens
    }

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

    function setMaxWallet(uint256 _maxHoldingAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
    }

    function disableTransferDelay() external onlyOwner {
        botProtection = false;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner() || from == address(0), "You can't trade");
            return;
        }

        if (from == router || from == uniswapV2Pair) require(super.balanceOf(to) + amount <= maxHoldingAmount, "You too fat");

        if (botProtection) {
            if (
                to != owner() &&
                to != router &&
                to != uniswapV2Pair
            ) {
                require(
                    _holderLastTransferTimestamp[tx.origin] + 2 <
                        block.number,
                    "1 buy per 3 blocks allowed"
                );
                _holderLastTransferTimestamp[tx.origin] = block.number;
            }
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","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"}]

6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620033d9380380620033d983398181016040528101906200008c9190620009cd565b6040518060400160405280601281526020017f4861766546756e53746179696e67506f6f7200000000000000000000000000008152506040518060400160405280600481526020017f4846535000000000000000000000000000000000000000000000000000000000815250620001186200010c6200027160201b60201c565b6200027960201b60201c565b816004908162000129919062000c6f565b5080600590816200013b919062000c6f565b50505060006028826200014f919062000db4565b90506200017f33605560648562000167919062000db4565b62000173919062000dec565b6200033d60201b60201c565b620001a57372404089751540fb4af65221c78cfad2c232a52f826200033d60201b60201c565b620001ca7215f56a52b0fb80b5cad9e404e4af9ccbcabad0826200033d60201b60201c565b620001f073bd9986665ba10eae7157b007d6b52004ad96fba1826200033d60201b60201c565b6200021673305810fbb905f6110e17fde8fda2dfeb924c0b87826200033d60201b60201c565b6200023c73c7054563668902235b2e3e27ba3dcda8fffa2d92826200033d60201b60201c565b62000262737711a0259b98b3e9b54e261b8490864b7062e931826200033d60201b60201c565b80600681905550505062001079565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a69062000e98565b60405180910390fd5b620003c360008383620004b660201b60201c565b8060036000828254620003d7919062000eba565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200042f919062000eba565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000496919062000f06565b60405180910390a3620004b2600083836200091660201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000611576200051d6200091b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005915750620005626200091b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80620005c95750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6200060b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006029062000f73565b60405180910390fd5b62000911565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620006bb5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620007275760065481620006d6846200094460201b60201c565b620006e2919062000eba565b111562000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000fe5565b60405180910390fd5b5b600860149054906101000a900460ff161562000910576200074d6200091b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620007d75750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620008325750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200090f57436002600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000887919062000eba565b10620008ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c19062001057565b60405180910390fd5b43600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b620009a78162000992565b8114620009b357600080fd5b50565b600081519050620009c7816200099c565b92915050565b600060208284031215620009e657620009e56200098d565b5b6000620009f684828501620009b6565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8157607f821691505b60208210810362000a975762000a9662000a39565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac2565b62000b0d868362000ac2565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b5062000b4a62000b448462000992565b62000b25565b62000992565b9050919050565b6000819050919050565b62000b6c8362000b2f565b62000b8462000b7b8262000b57565b84845462000acf565b825550505050565b600090565b62000b9b62000b8c565b62000ba881848462000b61565b505050565b5b8181101562000bd05762000bc460008262000b91565b60018101905062000bae565b5050565b601f82111562000c1f5762000be98162000a9d565b62000bf48462000ab2565b8101602085101562000c04578190505b62000c1c62000c138562000ab2565b83018262000bad565b50505b505050565b600082821c905092915050565b600062000c446000198460080262000c24565b1980831691505092915050565b600062000c5f838362000c31565b9150826002028217905092915050565b62000c7a82620009ff565b67ffffffffffffffff81111562000c965762000c9562000a0a565b5b62000ca2825462000a68565b62000caf82828562000bd4565b600060209050601f83116001811462000ce7576000841562000cd2578287015190505b62000cde858262000c51565b86555062000d4e565b601f19841662000cf78662000a9d565b60005b8281101562000d215784890151825560018201915060208501945060208101905062000cfa565b8683101562000d41578489015162000d3d601f89168262000c31565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dc18262000992565b915062000dce8362000992565b92508262000de15762000de062000d56565b5b828204905092915050565b600062000df98262000992565b915062000e068362000992565b925082820262000e168162000992565b9150828204841483151762000e305762000e2f62000d85565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e80601f8362000e37565b915062000e8d8262000e48565b602082019050919050565b6000602082019050818103600083015262000eb38162000e71565b9050919050565b600062000ec78262000992565b915062000ed48362000992565b925082820190508082111562000eef5762000eee62000d85565b5b92915050565b62000f008162000992565b82525050565b600060208201905062000f1d600083018462000ef5565b92915050565b7f596f752063616e27742074726164650000000000000000000000000000000000600082015250565b600062000f5b600f8362000e37565b915062000f688262000f23565b602082019050919050565b6000602082019050818103600083015262000f8e8162000f4c565b9050919050565b7f596f7520746f6f20666174000000000000000000000000000000000000000000600082015250565b600062000fcd600b8362000e37565b915062000fda8262000f95565b602082019050919050565b60006020820190508181036000830152620010008162000fbe565b9050919050565b7f312062757920706572203320626c6f636b7320616c6c6f776564000000000000600082015250565b60006200103f601a8362000e37565b91506200104c8262001007565b602082019050919050565b60006020820190508181036000830152620010728162001030565b9050919050565b61235080620010896000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610321578063a9059cbb14610351578063dd62ed3e14610381578063e884f260146103b1578063f2fde38b146103bb5761012c565b8063715018a6146102a15780638187f516146102ab57806389f9a1d3146102c75780638da5cb5b146102e557806395d89b41146103035761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b57806349bd5a5e146102375780635d0044ca1461025557806370a08231146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611816565b60405180910390f35b610169600480360381019061016491906118d1565b610469565b604051610176919061192c565b60405180910390f35b610187610487565b6040516101949190611956565b60405180910390f35b6101b760048036038101906101b29190611971565b610491565b6040516101c4919061192c565b60405180910390f35b6101d5610589565b6040516101e291906119e0565b60405180910390f35b610205600480360381019061020091906118d1565b610592565b604051610212919061192c565b60405180910390f35b610235600480360381019061023091906119fb565b61063e565b005b61023f61064b565b60405161024c9190611a37565b60405180910390f35b61026f600480360381019061026a91906119fb565b610671565b005b61028b60048036038101906102869190611a52565b6106f7565b6040516102989190611956565b60405180910390f35b6102a9610740565b005b6102c560048036038101906102c09190611a52565b6107c8565b005b6102cf610888565b6040516102dc9190611956565b60405180910390f35b6102ed61088e565b6040516102fa9190611a37565b60405180910390f35b61030b6108b7565b6040516103189190611816565b60405180910390f35b61033b600480360381019061033691906118d1565b610949565b604051610348919061192c565b60405180910390f35b61036b600480360381019061036691906118d1565b610a34565b604051610378919061192c565b60405180910390f35b61039b60048036038101906103969190611a7f565b610a52565b6040516103a89190611956565b60405180910390f35b6103b9610ad9565b005b6103d560048036038101906103d09190611a52565b610b72565b005b6060600480546103e690611aee565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611aee565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d610476610c69565b8484610c71565b6001905092915050565b6000600354905090565b600061049e848484610e3a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104e9610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611b91565b60405180910390fd5b61057d85610575610c69565b858403610c71565b60019150509392505050565b60006012905090565b600061063461059f610c69565b8484600260006105ad610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461062f9190611be0565b610c71565b6001905092915050565b61064833826110bc565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610679610c69565b73ffffffffffffffffffffffffffffffffffffffff1661069761088e565b73ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611c60565b60405180910390fd5b8060068190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610748610c69565b73ffffffffffffffffffffffffffffffffffffffff1661076661088e565b73ffffffffffffffffffffffffffffffffffffffff16146107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390611c60565b60405180910390fd5b6107c66000611294565b565b6107d0610c69565b73ffffffffffffffffffffffffffffffffffffffff166107ee61088e565b73ffffffffffffffffffffffffffffffffffffffff1614610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611c60565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108c690611aee565b80601f01602080910402602001604051908101604052809291908181526020018280546108f290611aee565b801561093f5780601f106109145761010080835404028352916020019161093f565b820191906000526020600020905b81548152906001019060200180831161092257829003601f168201915b5050505050905090565b60008060026000610958610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611cf2565b60405180910390fd5b610a29610a20610c69565b85858403610c71565b600191505092915050565b6000610a48610a41610c69565b8484610e3a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ae1610c69565b73ffffffffffffffffffffffffffffffffffffffff16610aff61088e565b73ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90611c60565b60405180910390fd5b6000600860146101000a81548160ff021916908315150217905550565b610b7a610c69565b73ffffffffffffffffffffffffffffffffffffffff16610b9861088e565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611c60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490611d84565b60405180910390fd5b610c6681611294565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790611e16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611ea8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2d9190611956565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090611f3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611fcc565b60405180910390fd5b610f23838383611358565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061205e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461103f9190611be0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a39190611956565b60405180910390a36110b6848484611781565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906120f0565b60405180910390fd5b61113782600083611358565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612182565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461121691906121a2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127b9190611956565b60405180910390a361128f83600084611781565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361149c576113b661088e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142157506113f261088e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806114585750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612222565b60405180910390fd5b61177c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115a35760065481611557846106f7565b6115619190611be0565b11156115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061228e565b60405180910390fd5b5b600860149054906101000a900460ff161561177b576115c061088e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116495750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116a35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561177a57436002600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116f59190611be0565b10611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906122fa565b60405180910390fd5b43600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c05780820151818401526020810190506117a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006117e882611786565b6117f28185611791565b93506118028185602086016117a2565b61180b816117cc565b840191505092915050565b6000602082019050818103600083015261183081846117dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118688261183d565b9050919050565b6118788161185d565b811461188357600080fd5b50565b6000813590506118958161186f565b92915050565b6000819050919050565b6118ae8161189b565b81146118b957600080fd5b50565b6000813590506118cb816118a5565b92915050565b600080604083850312156118e8576118e7611838565b5b60006118f685828601611886565b9250506020611907858286016118bc565b9150509250929050565b60008115159050919050565b61192681611911565b82525050565b6000602082019050611941600083018461191d565b92915050565b6119508161189b565b82525050565b600060208201905061196b6000830184611947565b92915050565b60008060006060848603121561198a57611989611838565b5b600061199886828701611886565b93505060206119a986828701611886565b92505060406119ba868287016118bc565b9150509250925092565b600060ff82169050919050565b6119da816119c4565b82525050565b60006020820190506119f560008301846119d1565b92915050565b600060208284031215611a1157611a10611838565b5b6000611a1f848285016118bc565b91505092915050565b611a318161185d565b82525050565b6000602082019050611a4c6000830184611a28565b92915050565b600060208284031215611a6857611a67611838565b5b6000611a7684828501611886565b91505092915050565b60008060408385031215611a9657611a95611838565b5b6000611aa485828601611886565b9250506020611ab585828601611886565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0657607f821691505b602082108103611b1957611b18611abf565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b7b602883611791565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611beb8261189b565b9150611bf68361189b565b9250828201905080821115611c0e57611c0d611bb1565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c4a602083611791565b9150611c5582611c14565b602082019050919050565b60006020820190508181036000830152611c7981611c3d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611cdc602583611791565b9150611ce782611c80565b604082019050919050565b60006020820190508181036000830152611d0b81611ccf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d6e602683611791565b9150611d7982611d12565b604082019050919050565b60006020820190508181036000830152611d9d81611d61565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e00602483611791565b9150611e0b82611da4565b604082019050919050565b60006020820190508181036000830152611e2f81611df3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e92602283611791565b9150611e9d82611e36565b604082019050919050565b60006020820190508181036000830152611ec181611e85565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f24602583611791565b9150611f2f82611ec8565b604082019050919050565b60006020820190508181036000830152611f5381611f17565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fb6602383611791565b9150611fc182611f5a565b604082019050919050565b60006020820190508181036000830152611fe581611fa9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612048602683611791565b915061205382611fec565b604082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120da602183611791565b91506120e58261207e565b604082019050919050565b60006020820190508181036000830152612109816120cd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061216c602283611791565b915061217782612110565b604082019050919050565b6000602082019050818103600083015261219b8161215f565b9050919050565b60006121ad8261189b565b91506121b88361189b565b92508282039050818111156121d0576121cf611bb1565b5b92915050565b7f596f752063616e27742074726164650000000000000000000000000000000000600082015250565b600061220c600f83611791565b9150612217826121d6565b602082019050919050565b6000602082019050818103600083015261223b816121ff565b9050919050565b7f596f7520746f6f20666174000000000000000000000000000000000000000000600082015250565b6000612278600b83611791565b915061228382612242565b602082019050919050565b600060208201905081810360008301526122a78161226b565b9050919050565b7f312062757920706572203320626c6f636b7320616c6c6f776564000000000000600082015250565b60006122e4601a83611791565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b905091905056fea2646970667358221220222c37df28890507cb29b97755c42e46a35ba492100a52f616afb7ad25fa052364736f6c6343000813003300000000000000000000000000000000000000054d17db76321263eca0000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610321578063a9059cbb14610351578063dd62ed3e14610381578063e884f260146103b1578063f2fde38b146103bb5761012c565b8063715018a6146102a15780638187f516146102ab57806389f9a1d3146102c75780638da5cb5b146102e557806395d89b41146103035761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b57806349bd5a5e146102375780635d0044ca1461025557806370a08231146102715761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d7565b6040516101469190611816565b60405180910390f35b610169600480360381019061016491906118d1565b610469565b604051610176919061192c565b60405180910390f35b610187610487565b6040516101949190611956565b60405180910390f35b6101b760048036038101906101b29190611971565b610491565b6040516101c4919061192c565b60405180910390f35b6101d5610589565b6040516101e291906119e0565b60405180910390f35b610205600480360381019061020091906118d1565b610592565b604051610212919061192c565b60405180910390f35b610235600480360381019061023091906119fb565b61063e565b005b61023f61064b565b60405161024c9190611a37565b60405180910390f35b61026f600480360381019061026a91906119fb565b610671565b005b61028b60048036038101906102869190611a52565b6106f7565b6040516102989190611956565b60405180910390f35b6102a9610740565b005b6102c560048036038101906102c09190611a52565b6107c8565b005b6102cf610888565b6040516102dc9190611956565b60405180910390f35b6102ed61088e565b6040516102fa9190611a37565b60405180910390f35b61030b6108b7565b6040516103189190611816565b60405180910390f35b61033b600480360381019061033691906118d1565b610949565b604051610348919061192c565b60405180910390f35b61036b600480360381019061036691906118d1565b610a34565b604051610378919061192c565b60405180910390f35b61039b60048036038101906103969190611a7f565b610a52565b6040516103a89190611956565b60405180910390f35b6103b9610ad9565b005b6103d560048036038101906103d09190611a52565b610b72565b005b6060600480546103e690611aee565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611aee565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047d610476610c69565b8484610c71565b6001905092915050565b6000600354905090565b600061049e848484610e3a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104e9610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056090611b91565b60405180910390fd5b61057d85610575610c69565b858403610c71565b60019150509392505050565b60006012905090565b600061063461059f610c69565b8484600260006105ad610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461062f9190611be0565b610c71565b6001905092915050565b61064833826110bc565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610679610c69565b73ffffffffffffffffffffffffffffffffffffffff1661069761088e565b73ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e490611c60565b60405180910390fd5b8060068190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610748610c69565b73ffffffffffffffffffffffffffffffffffffffff1661076661088e565b73ffffffffffffffffffffffffffffffffffffffff16146107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390611c60565b60405180910390fd5b6107c66000611294565b565b6107d0610c69565b73ffffffffffffffffffffffffffffffffffffffff166107ee61088e565b73ffffffffffffffffffffffffffffffffffffffff1614610844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083b90611c60565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108c690611aee565b80601f01602080910402602001604051908101604052809291908181526020018280546108f290611aee565b801561093f5780601f106109145761010080835404028352916020019161093f565b820191906000526020600020905b81548152906001019060200180831161092257829003601f168201915b5050505050905090565b60008060026000610958610c69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611cf2565b60405180910390fd5b610a29610a20610c69565b85858403610c71565b600191505092915050565b6000610a48610a41610c69565b8484610e3a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ae1610c69565b73ffffffffffffffffffffffffffffffffffffffff16610aff61088e565b73ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90611c60565b60405180910390fd5b6000600860146101000a81548160ff021916908315150217905550565b610b7a610c69565b73ffffffffffffffffffffffffffffffffffffffff16610b9861088e565b73ffffffffffffffffffffffffffffffffffffffff1614610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590611c60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5490611d84565b60405180910390fd5b610c6681611294565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790611e16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611ea8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2d9190611956565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090611f3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611fcc565b60405180910390fd5b610f23838383611358565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa19061205e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461103f9190611be0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110a39190611956565b60405180910390a36110b6848484611781565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906120f0565b60405180910390fd5b61113782600083611358565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612182565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461121691906121a2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161127b9190611956565b60405180910390a361128f83600084611781565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361149c576113b661088e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142157506113f261088e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806114585750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90612222565b60405180910390fd5b61177c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115455750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115a35760065481611557846106f7565b6115619190611be0565b11156115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061228e565b60405180910390fd5b5b600860149054906101000a900460ff161561177b576115c061088e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116495750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116a35750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561177a57436002600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116f59190611be0565b10611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c906122fa565b60405180910390fd5b43600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117c05780820151818401526020810190506117a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006117e882611786565b6117f28185611791565b93506118028185602086016117a2565b61180b816117cc565b840191505092915050565b6000602082019050818103600083015261183081846117dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118688261183d565b9050919050565b6118788161185d565b811461188357600080fd5b50565b6000813590506118958161186f565b92915050565b6000819050919050565b6118ae8161189b565b81146118b957600080fd5b50565b6000813590506118cb816118a5565b92915050565b600080604083850312156118e8576118e7611838565b5b60006118f685828601611886565b9250506020611907858286016118bc565b9150509250929050565b60008115159050919050565b61192681611911565b82525050565b6000602082019050611941600083018461191d565b92915050565b6119508161189b565b82525050565b600060208201905061196b6000830184611947565b92915050565b60008060006060848603121561198a57611989611838565b5b600061199886828701611886565b93505060206119a986828701611886565b92505060406119ba868287016118bc565b9150509250925092565b600060ff82169050919050565b6119da816119c4565b82525050565b60006020820190506119f560008301846119d1565b92915050565b600060208284031215611a1157611a10611838565b5b6000611a1f848285016118bc565b91505092915050565b611a318161185d565b82525050565b6000602082019050611a4c6000830184611a28565b92915050565b600060208284031215611a6857611a67611838565b5b6000611a7684828501611886565b91505092915050565b60008060408385031215611a9657611a95611838565b5b6000611aa485828601611886565b9250506020611ab585828601611886565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b0657607f821691505b602082108103611b1957611b18611abf565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611b7b602883611791565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611beb8261189b565b9150611bf68361189b565b9250828201905080821115611c0e57611c0d611bb1565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c4a602083611791565b9150611c5582611c14565b602082019050919050565b60006020820190508181036000830152611c7981611c3d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611cdc602583611791565b9150611ce782611c80565b604082019050919050565b60006020820190508181036000830152611d0b81611ccf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d6e602683611791565b9150611d7982611d12565b604082019050919050565b60006020820190508181036000830152611d9d81611d61565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e00602483611791565b9150611e0b82611da4565b604082019050919050565b60006020820190508181036000830152611e2f81611df3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e92602283611791565b9150611e9d82611e36565b604082019050919050565b60006020820190508181036000830152611ec181611e85565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f24602583611791565b9150611f2f82611ec8565b604082019050919050565b60006020820190508181036000830152611f5381611f17565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fb6602383611791565b9150611fc182611f5a565b604082019050919050565b60006020820190508181036000830152611fe581611fa9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612048602683611791565b915061205382611fec565b604082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120da602183611791565b91506120e58261207e565b604082019050919050565b60006020820190508181036000830152612109816120cd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061216c602283611791565b915061217782612110565b604082019050919050565b6000602082019050818103600083015261219b8161215f565b9050919050565b60006121ad8261189b565b91506121b88361189b565b92508282039050818111156121d0576121cf611bb1565b5b92915050565b7f596f752063616e27742074726164650000000000000000000000000000000000600082015250565b600061220c600f83611791565b9150612217826121d6565b602082019050919050565b6000602082019050818103600083015261223b816121ff565b9050919050565b7f596f7520746f6f20666174000000000000000000000000000000000000000000600082015250565b6000612278600b83611791565b915061228382612242565b602082019050919050565b600060208201905081810360008301526122a78161226b565b9050919050565b7f312062757920706572203320626c6f636b7320616c6c6f776564000000000000600082015250565b60006122e4601a83611791565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b905091905056fea2646970667358221220222c37df28890507cb29b97755c42e46a35ba492100a52f616afb7ad25fa052364736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000054d17db76321263eca0000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000054d17db76321263eca0000000


Deployed Bytecode Sourcemap

20945:2438:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10957:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13124:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12077:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13775:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11919:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14676:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23299:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21036:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22144:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12248:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4786:103;;;:::i;:::-;;22027:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20998:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4135:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11176:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15394:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12588:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12826:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22275:91;;;:::i;:::-;;5044:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10957:100;11011:13;11044:5;11037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10957:100;:::o;13124:169::-;13207:4;13224:39;13233:12;:10;:12::i;:::-;13247:7;13256:6;13224:8;:39::i;:::-;13281:4;13274:11;;13124:169;;;;:::o;12077:108::-;12138:7;12165:12;;12158:19;;12077:108;:::o;13775:492::-;13915:4;13932:36;13942:6;13950:9;13961:6;13932:9;:36::i;:::-;13981:24;14008:11;:19;14020:6;14008:19;;;;;;;;;;;;;;;:33;14028:12;:10;:12::i;:::-;14008:33;;;;;;;;;;;;;;;;13981:60;;14080:6;14060:16;:26;;14052:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14167:57;14176:6;14184:12;:10;:12::i;:::-;14217:6;14198:16;:25;14167:8;:57::i;:::-;14255:4;14248:11;;;13775:492;;;;;:::o;11919:93::-;11977:5;12002:2;11995:9;;11919:93;:::o;14676:215::-;14764:4;14781:80;14790:12;:10;:12::i;:::-;14804:7;14850:10;14813:11;:25;14825:12;:10;:12::i;:::-;14813:25;;;;;;;;;;;;;;;:34;14839:7;14813:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14781:8;:80::i;:::-;14879:4;14872:11;;14676:215;;;;:::o;23299:81::-;23348:24;23354:10;23366:5;23348;:24::i;:::-;23299:81;:::o;21036:28::-;;;;;;;;;;;;;:::o;22144:123::-;4366:12;:10;:12::i;:::-;4355:23;;:7;:5;:7::i;:::-;:23;;;4347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22242:17:::1;22223:16;:36;;;;22144:123:::0;:::o;12248:127::-;12322:7;12349:9;:18;12359:7;12349:18;;;;;;;;;;;;;;;;12342:25;;12248:127;;;:::o;4786:103::-;4366:12;:10;:12::i;:::-;4355:23;;:7;:5;:7::i;:::-;:23;;;4347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4851:30:::1;4878:1;4851:18;:30::i;:::-;4786:103::o:0;22027:109::-;4366:12;:10;:12::i;:::-;4355:23;;:7;:5;:7::i;:::-;:23;;;4347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:14:::1;22098:13;;:30;;;;;;;;;;;;;;;;;;22027:109:::0;:::o;20998:31::-;;;;:::o;4135:87::-;4181:7;4208:6;;;;;;;;;;;4201:13;;4135:87;:::o;11176:104::-;11232:13;11265:7;11258:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11176:104;:::o;15394:413::-;15487:4;15504:24;15531:11;:25;15543:12;:10;:12::i;:::-;15531:25;;;;;;;;;;;;;;;:34;15557:7;15531:34;;;;;;;;;;;;;;;;15504:61;;15604:15;15584:16;:35;;15576:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15697:67;15706:12;:10;:12::i;:::-;15720:7;15748:15;15729:16;:34;15697:8;:67::i;:::-;15795:4;15788:11;;;15394:413;;;;:::o;12588:175::-;12674:4;12691:42;12701:12;:10;:12::i;:::-;12715:9;12726:6;12691:9;:42::i;:::-;12751:4;12744:11;;12588:175;;;;:::o;12826:151::-;12915:7;12942:11;:18;12954:5;12942:18;;;;;;;;;;;;;;;:27;12961:7;12942:27;;;;;;;;;;;;;;;;12935:34;;12826:151;;;;:::o;22275:91::-;4366:12;:10;:12::i;:::-;4355:23;;:7;:5;:7::i;:::-;:23;;;4347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22353:5:::1;22337:13;;:21;;;;;;;;;;;;;;;;;;22275:91::o:0;5044:201::-;4366:12;:10;:12::i;:::-;4355:23;;:7;:5;:7::i;:::-;:23;;;4347:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:1:::1;5133:22;;:8;:22;;::::0;5125:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5209:28;5228:8;5209:18;:28::i;:::-;5044:201:::0;:::o;2975:98::-;3028:7;3055:10;3048:17;;2975:98;:::o;19078:380::-;19231:1;19214:19;;:5;:19;;;19206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19312:1;19293:21;;:7;:21;;;19285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19396:6;19366:11;:18;19378:5;19366:18;;;;;;;;;;;;;;;:27;19385:7;19366:27;;;;;;;;;;;;;;;:36;;;;19434:7;19418:32;;19427:5;19418:32;;;19443:6;19418:32;;;;;;:::i;:::-;;;;;;;;19078:380;;;:::o;16297:733::-;16455:1;16437:20;;:6;:20;;;16429:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16539:1;16518:23;;:9;:23;;;16510:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16594:47;16615:6;16623:9;16634:6;16594:20;:47::i;:::-;16654:21;16678:9;:17;16688:6;16678:17;;;;;;;;;;;;;;;;16654:41;;16731:6;16714:13;:23;;16706:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16852:6;16836:13;:22;16816:9;:17;16826:6;16816:17;;;;;;;;;;;;;;;:42;;;;16904:6;16880:9;:20;16890:9;16880:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16945:9;16928:35;;16937:6;16928:35;;;16956:6;16928:35;;;;;;:::i;:::-;;;;;;;;16976:46;16996:6;17004:9;17015:6;16976:19;:46::i;:::-;16418:612;16297:733;;;:::o;18049:591::-;18152:1;18133:21;;:7;:21;;;18125:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18205:49;18226:7;18243:1;18247:6;18205:20;:49::i;:::-;18267:22;18292:9;:18;18302:7;18292:18;;;;;;;;;;;;;;;;18267:43;;18347:6;18329:14;:24;;18321:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18466:6;18449:14;:23;18428:9;:18;18438:7;18428:18;;;;;;;;;;;;;;;:44;;;;18510:6;18494:12;;:22;;;;;;;:::i;:::-;;;;;;;;18560:1;18534:37;;18543:7;18534:37;;;18564:6;18534:37;;;;;;:::i;:::-;;;;;;;;18584:48;18604:7;18621:1;18625:6;18584:19;:48::i;:::-;18114:526;18049:591;;:::o;5405:191::-;5479:16;5498:6;;;;;;;;;;;5479:25;;5524:8;5515:6;;:17;;;;;;;;;;;;;;;;;;5579:8;5548:40;;5569:8;5548:40;;;;;;;;;;;;5468:128;5405:191;:::o;22374:917::-;22548:1;22523:27;;:13;;;;;;;;;;;:27;;;22519:163;;22583:7;:5;:7::i;:::-;22575:15;;:4;:15;;;:32;;;;22600:7;:5;:7::i;:::-;22594:13;;:2;:13;;;22575:32;:54;;;;22627:1;22611:18;;:4;:18;;;22575:54;22567:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;22664:7;;22519:163;22706:6;;;;;;;;;;;22698:14;;:4;:14;;;:39;;;;22724:13;;;;;;;;;;;22716:21;;:4;:21;;;22698:39;22694:117;;;22779:16;;22769:6;22747:19;22763:2;22747:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22739:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22694:117;22828:13;;;;;;;;;;;22824:460;;;22886:7;:5;:7::i;:::-;22880:13;;:2;:13;;;;:46;;;;;22920:6;;;;;;;;;;;22914:12;;:2;:12;;;;22880:46;:86;;;;;22953:13;;;;;;;;;;;22947:19;;:2;:19;;;;22880:86;22858:415;;;23102:12;23073:1;23031:28;:39;23060:9;23031:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:83;23001:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;23245:12;23203:28;:39;23232:9;23203:39;;;;;;;;;;;;;;;:54;;;;22858:415;22824:460;22374:917;;;;:::o;20787:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:227::-;7007:34;7003:1;6995:6;6991:14;6984:58;7076:10;7071:2;7063:6;7059:15;7052:35;6867:227;:::o;7100:366::-;7242:3;7263:67;7327:2;7322:3;7263:67;:::i;:::-;7256:74;;7339:93;7428:3;7339:93;:::i;:::-;7457:2;7452:3;7448:12;7441:19;;7100:366;;;:::o;7472:419::-;7638:4;7676:2;7665:9;7661:18;7653:26;;7725:9;7719:4;7715:20;7711:1;7700:9;7696:17;7689:47;7753:131;7879:4;7753:131;:::i;:::-;7745:139;;7472:419;;;:::o;7897:180::-;7945:77;7942:1;7935:88;8042:4;8039:1;8032:15;8066:4;8063:1;8056:15;8083:191;8123:3;8142:20;8160:1;8142:20;:::i;:::-;8137:25;;8176:20;8194:1;8176:20;:::i;:::-;8171:25;;8219:1;8216;8212:9;8205:16;;8240:3;8237:1;8234:10;8231:36;;;8247:18;;:::i;:::-;8231:36;8083:191;;;;:::o;8280:182::-;8420:34;8416:1;8408:6;8404:14;8397:58;8280:182;:::o;8468:366::-;8610:3;8631:67;8695:2;8690:3;8631:67;:::i;:::-;8624:74;;8707:93;8796:3;8707:93;:::i;:::-;8825:2;8820:3;8816:12;8809:19;;8468:366;;;:::o;8840:419::-;9006:4;9044:2;9033:9;9029:18;9021:26;;9093:9;9087:4;9083:20;9079:1;9068:9;9064:17;9057:47;9121:131;9247:4;9121:131;:::i;:::-;9113:139;;8840:419;;;:::o;9265:224::-;9405:34;9401:1;9393:6;9389:14;9382:58;9474:7;9469:2;9461:6;9457:15;9450:32;9265:224;:::o;9495:366::-;9637:3;9658:67;9722:2;9717:3;9658:67;:::i;:::-;9651:74;;9734:93;9823:3;9734:93;:::i;:::-;9852:2;9847:3;9843:12;9836:19;;9495:366;;;:::o;9867:419::-;10033:4;10071:2;10060:9;10056:18;10048:26;;10120:9;10114:4;10110:20;10106:1;10095:9;10091:17;10084:47;10148:131;10274:4;10148:131;:::i;:::-;10140:139;;9867:419;;;:::o;10292:225::-;10432:34;10428:1;10420:6;10416:14;10409:58;10501:8;10496:2;10488:6;10484:15;10477:33;10292:225;:::o;10523:366::-;10665:3;10686:67;10750:2;10745:3;10686:67;:::i;:::-;10679:74;;10762:93;10851:3;10762:93;:::i;:::-;10880:2;10875:3;10871:12;10864:19;;10523:366;;;:::o;10895:419::-;11061:4;11099:2;11088:9;11084:18;11076:26;;11148:9;11142:4;11138:20;11134:1;11123:9;11119:17;11112:47;11176:131;11302:4;11176:131;:::i;:::-;11168:139;;10895:419;;;:::o;11320:223::-;11460:34;11456:1;11448:6;11444:14;11437:58;11529:6;11524:2;11516:6;11512:15;11505:31;11320:223;:::o;11549:366::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:419::-;12087:4;12125:2;12114:9;12110:18;12102:26;;12174:9;12168:4;12164:20;12160:1;12149:9;12145:17;12138:47;12202:131;12328:4;12202:131;:::i;:::-;12194:139;;11921:419;;;:::o;12346:221::-;12486:34;12482:1;12474:6;12470:14;12463:58;12555:4;12550:2;12542:6;12538:15;12531:29;12346:221;:::o;12573:366::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:419::-;13111:4;13149:2;13138:9;13134:18;13126:26;;13198:9;13192:4;13188:20;13184:1;13173:9;13169:17;13162:47;13226:131;13352:4;13226:131;:::i;:::-;13218:139;;12945:419;;;:::o;13370:224::-;13510:34;13506:1;13498:6;13494:14;13487:58;13579:7;13574:2;13566:6;13562:15;13555:32;13370:224;:::o;13600:366::-;13742:3;13763:67;13827:2;13822:3;13763:67;:::i;:::-;13756:74;;13839:93;13928:3;13839:93;:::i;:::-;13957:2;13952:3;13948:12;13941:19;;13600:366;;;:::o;13972:419::-;14138:4;14176:2;14165:9;14161:18;14153:26;;14225:9;14219:4;14215:20;14211:1;14200:9;14196:17;14189:47;14253:131;14379:4;14253:131;:::i;:::-;14245:139;;13972:419;;;:::o;14397:222::-;14537:34;14533:1;14525:6;14521:14;14514:58;14606:5;14601:2;14593:6;14589:15;14582:30;14397:222;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:225::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:8;15626:2;15618:6;15614:15;15607:33;15422:225;:::o;15653:366::-;15795:3;15816:67;15880:2;15875:3;15816:67;:::i;:::-;15809:74;;15892:93;15981:3;15892:93;:::i;:::-;16010:2;16005:3;16001:12;15994:19;;15653:366;;;:::o;16025:419::-;16191:4;16229:2;16218:9;16214:18;16206:26;;16278:9;16272:4;16268:20;16264:1;16253:9;16249:17;16242:47;16306:131;16432:4;16306:131;:::i;:::-;16298:139;;16025:419;;;:::o;16450:220::-;16590:34;16586:1;16578:6;16574:14;16567:58;16659:3;16654:2;16646:6;16642:15;16635:28;16450:220;:::o;16676:366::-;16818:3;16839:67;16903:2;16898:3;16839:67;:::i;:::-;16832:74;;16915:93;17004:3;16915:93;:::i;:::-;17033:2;17028:3;17024:12;17017:19;;16676:366;;;:::o;17048:419::-;17214:4;17252:2;17241:9;17237:18;17229:26;;17301:9;17295:4;17291:20;17287:1;17276:9;17272:17;17265:47;17329:131;17455:4;17329:131;:::i;:::-;17321:139;;17048:419;;;:::o;17473:221::-;17613:34;17609:1;17601:6;17597:14;17590:58;17682:4;17677:2;17669:6;17665:15;17658:29;17473:221;:::o;17700:366::-;17842:3;17863:67;17927:2;17922:3;17863:67;:::i;:::-;17856:74;;17939:93;18028:3;17939:93;:::i;:::-;18057:2;18052:3;18048:12;18041:19;;17700:366;;;:::o;18072:419::-;18238:4;18276:2;18265:9;18261:18;18253:26;;18325:9;18319:4;18315:20;18311:1;18300:9;18296:17;18289:47;18353:131;18479:4;18353:131;:::i;:::-;18345:139;;18072:419;;;:::o;18497:194::-;18537:4;18557:20;18575:1;18557:20;:::i;:::-;18552:25;;18591:20;18609:1;18591:20;:::i;:::-;18586:25;;18635:1;18632;18628:9;18620:17;;18659:1;18653:4;18650:11;18647:37;;;18664:18;;:::i;:::-;18647:37;18497:194;;;;:::o;18697:165::-;18837:17;18833:1;18825:6;18821:14;18814:41;18697:165;:::o;18868:366::-;19010:3;19031:67;19095:2;19090:3;19031:67;:::i;:::-;19024:74;;19107:93;19196:3;19107:93;:::i;:::-;19225:2;19220:3;19216:12;19209:19;;18868:366;;;:::o;19240:419::-;19406:4;19444:2;19433:9;19429:18;19421:26;;19493:9;19487:4;19483:20;19479:1;19468:9;19464:17;19457:47;19521:131;19647:4;19521:131;:::i;:::-;19513:139;;19240:419;;;:::o;19665:161::-;19805:13;19801:1;19793:6;19789:14;19782:37;19665:161;:::o;19832:366::-;19974:3;19995:67;20059:2;20054:3;19995:67;:::i;:::-;19988:74;;20071:93;20160:3;20071:93;:::i;:::-;20189:2;20184:3;20180:12;20173:19;;19832:366;;;:::o;20204:419::-;20370:4;20408:2;20397:9;20393:18;20385:26;;20457:9;20451:4;20447:20;20443:1;20432:9;20428:17;20421:47;20485:131;20611:4;20485:131;:::i;:::-;20477:139;;20204:419;;;:::o;20629:176::-;20769:28;20765:1;20757:6;20753:14;20746:52;20629:176;:::o;20811:366::-;20953:3;20974:67;21038:2;21033:3;20974:67;:::i;:::-;20967:74;;21050:93;21139:3;21050:93;:::i;:::-;21168:2;21163:3;21159:12;21152:19;;20811:366;;;:::o;21183:419::-;21349:4;21387:2;21376:9;21372:18;21364:26;;21436:9;21430:4;21426:20;21422:1;21411:9;21407:17;21400:47;21464:131;21590:4;21464:131;:::i;:::-;21456:139;;21183:419;;;:::o

Swarm Source

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