ETH Price: $2,518.19 (-0.26%)

Token

Lowkey (LOWKEY)
 

Overview

Max Total Supply

99,985,714.849453577405988864 LOWKEY

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
28,474.750666917106750236 LOWKEY

Value
$0.00
0x03dA7475aA632520a49cF146404a61a4165FAE22
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:
Lowkey

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

//     /$$   /$$                      /$$                        
//   /$$$$$$| $$                     | $$                        
//  /$$__  $| $$ /$$$$$$ /$$  /$$  /$| $$   /$$ /$$$$$$ /$$   /$$
// | $$  \__| $$/$$__  $| $$ | $$ | $| $$  /$$//$$__  $| $$  | $$
// |  $$$$$$| $| $$  \ $| $$ | $$ | $| $$$$$$/| $$$$$$$| $$  | $$
//  \____  $| $| $$  | $| $$ | $$ | $| $$_  $$| $$_____| $$  | $$
//  /$$  \ $| $|  $$$$$$|  $$$$$/$$$$| $$ \  $|  $$$$$$|  $$$$$$$
// |  $$$$$$|__/\______/ \_____/\___/|__/  \__/\_______/\____  $$
//  \_  $$_/                                            /$$  | $$
//    \__/                                             |  $$$$$$/
//                                                      \______/ 
// https://lowkey.expert/

pragma solidity 0.8.17;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)


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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}


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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

contract Lowkey is ERC20, Ownable, ERC20Burnable {
    uint256 public constant BURN_FEE_PERCENT_MEV = 5;

    address[] public __pairAddresses;

    mapping(address => bool) private __pairs;
    mapping(address => bool) private __taxlessList;
    mapping(address => uint256) private __walletLastTxBlock;

    bool private __tradingEnabled = false;

    event TradingEnabled(bool enabled);
    event TaxLess(address indexed wallet, bool value);
    event AddPair(address indexed router, address indexed pair);

    constructor() ERC20("Lowkey", "LOWKEY") {
        __taxlessList[msg.sender] = true;

        _mint(msg.sender, 100000000000000000000000000);
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        addPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, _uniswapV2Router.WETH());
    }

    function _beforeTokenTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) override internal virtual {
        require(__taxlessList[sender] || __taxlessList[recipient] || __tradingEnabled, "Trade not enabled");
        super._beforeTokenTransfer(sender, recipient, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (!__taxlessList[sender] && !__taxlessList[recipient] && __pairs[recipient]) {
            uint256 burnAmount = 0;
            if (isSecondTxInSameBlock(sender)) {
                burnAmount = amount * BURN_FEE_PERCENT_MEV / 100;  // Calculate fee of the transaction amount for mevs
                _burn(sender, burnAmount);  // Burns the token
            }
            uint256 sendAmount = amount - burnAmount;

            super._transfer(sender, recipient, sendAmount); 
        } else {
            if (!__taxlessList[sender] && !__taxlessList[recipient] && __pairs[sender]) {
                __walletLastTxBlock[recipient] = block.number;
            }
            super._transfer(sender, recipient, amount);
        }
    }
    
    function isSecondTxInSameBlock(address _from) internal view returns(bool) {
        return __walletLastTxBlock[_from] == block.number;
    }

    function enableTrading() external onlyOwner {
        __tradingEnabled = true;
        emit TradingEnabled(true);
    }

    function setIsTaxless(address _address, bool value) external onlyOwner {
        __taxlessList[_address] = value;
        emit TaxLess(_address, value);
    }

    function addPair(address _router, address _token) public onlyOwner {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        address pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _token);
        __pairAddresses.push(pair);
        __pairs[pair] = true;
        emit AddPair(_router, pair);
    }

    function getPair(uint256 _index) external view returns(address) {
        return __pairAddresses[_index];
    }

    function isTaxLess(
        address _address
    ) external view returns (bool is_tax_less) {
        return __taxlessList[_address];
    }

    function isPair(address _pair) external view returns (bool is_pair) {
        return __pairs[_pair];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"AddPair","type":"event"},{"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":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"TaxLess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingEnabled","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":"BURN_FEE_PERCENT_MEV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"__pairAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"addPair","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"is_pair","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isTaxLess","outputs":[{"internalType":"bool","name":"is_tax_less","type":"bool"}],"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsTaxless","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600681526020017f4c6f776b657900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4c4f574b455900000000000000000000000000000000000000000000000000008152508160039081620000aa919062000ac6565b508060049081620000bc919062000ac6565b505050620000df620000d36200020b60201b60201c565b6200021360201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000154336a52b7d2dcc80cd2e4000000620002d960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000204737a250d5630b4cf539739df2c5dacb4c659f2488d8273ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f8919062000c17565b6200044660201b60201c565b5062000e86565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200034b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003429062000caa565b60405180910390fd5b6200035f600083836200066e60201b60201c565b806002600082825462000373919062000cfb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000426919062000d47565b60405180910390a362000442600083836200078760201b60201c565b5050565b620004566200078c60201b60201c565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004cf919062000c17565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b81526004016200050b92919062000d75565b6020604051808303816000875af11580156200052b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000551919062000c17565b90506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc185c2e07c96a12ccdeaba3948d6a6699b41f26f5d9ea4f94f13991707f5915a60405160405180910390a350505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620007105750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620007285750600a60009054906101000a900460ff165b6200076a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007619062000df2565b60405180910390fd5b620007828383836200081d60201b62000d3d1760201c565b505050565b505050565b6200079c6200020b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007c26200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200081b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008129062000e64565b60405180910390fd5b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ce57607f821691505b602082108103620008e457620008e362000886565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200094e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200090f565b6200095a86836200090f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009a7620009a16200099b8462000972565b6200097c565b62000972565b9050919050565b6000819050919050565b620009c38362000986565b620009db620009d282620009ae565b8484546200091c565b825550505050565b600090565b620009f2620009e3565b620009ff818484620009b8565b505050565b5b8181101562000a275762000a1b600082620009e8565b60018101905062000a05565b5050565b601f82111562000a765762000a4081620008ea565b62000a4b84620008ff565b8101602085101562000a5b578190505b62000a7362000a6a85620008ff565b83018262000a04565b50505b505050565b600082821c905092915050565b600062000a9b6000198460080262000a7b565b1980831691505092915050565b600062000ab6838362000a88565b9150826002028217905092915050565b62000ad1826200084c565b67ffffffffffffffff81111562000aed5762000aec62000857565b5b62000af98254620008b5565b62000b0682828562000a2b565b600060209050601f83116001811462000b3e576000841562000b29578287015190505b62000b35858262000aa8565b86555062000ba5565b601f19841662000b4e86620008ea565b60005b8281101562000b785784890151825560018201915060208501945060208101905062000b51565b8683101562000b98578489015162000b94601f89168262000a88565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bdf8262000bb2565b9050919050565b62000bf18162000bd2565b811462000bfd57600080fd5b50565b60008151905062000c118162000be6565b92915050565b60006020828403121562000c305762000c2f62000bad565b5b600062000c408482850162000c00565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c92601f8362000c49565b915062000c9f8262000c5a565b602082019050919050565b6000602082019050818103600083015262000cc58162000c83565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d088262000972565b915062000d158362000972565b925082820190508082111562000d305762000d2f62000ccc565b5b92915050565b62000d418162000972565b82525050565b600060208201905062000d5e600083018462000d36565b92915050565b62000d6f8162000bd2565b82525050565b600060408201905062000d8c600083018562000d64565b62000d9b602083018462000d64565b9392505050565b7f5472616465206e6f7420656e61626c6564000000000000000000000000000000600082015250565b600062000dda60118362000c49565b915062000de78262000da2565b602082019050919050565b6000602082019050818103600083015262000e0d8162000dcb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4c60208362000c49565b915062000e598262000e14565b602082019050919050565b6000602082019050818103600083015262000e7f8162000e3d565b9050919050565b61259b8062000e966000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063b6f3e0871161007c578063b6f3e087146103c9578063b7306f91146103e5578063bdf391cc14610415578063dd62ed3e14610445578063e5e31b1314610475578063f2fde38b146104a557610158565b806379cc6790146103075780638a8c523c146103235780638da5cb5b1461032d57806395d89b411461034b578063a457c2d714610369578063a9059cbb1461039957610158565b80633950935111610115578063395093511461023357806342966c68146102635780636381c1671461027f57806366767a2d1461029d57806370a08231146102cd578063715018a6146102fd57610158565b806306fdde031461015d578063095ea7b31461017b5780630c490f5d146101ab57806318160ddd146101c757806323b872dd146101e5578063313ce56714610215575b600080fd5b6101656104c1565b60405161017291906119b7565b60405180910390f35b61019560048036038101906101909190611a72565b610553565b6040516101a29190611acd565b60405180910390f35b6101c560048036038101906101c09190611b14565b610576565b005b6101cf610627565b6040516101dc9190611b63565b60405180910390f35b6101ff60048036038101906101fa9190611b7e565b610631565b60405161020c9190611acd565b60405180910390f35b61021d610660565b60405161022a9190611bed565b60405180910390f35b61024d60048036038101906102489190611a72565b610669565b60405161025a9190611acd565b60405180910390f35b61027d60048036038101906102789190611c08565b6106a0565b005b6102876106b4565b6040516102949190611b63565b60405180910390f35b6102b760048036038101906102b29190611c08565b6106b9565b6040516102c49190611c44565b60405180910390f35b6102e760048036038101906102e29190611c5f565b6106f8565b6040516102f49190611b63565b60405180910390f35b610305610740565b005b610321600480360381019061031c9190611a72565b610754565b005b61032b610774565b005b6103356107d1565b6040516103429190611c44565b60405180910390f35b6103536107fb565b60405161036091906119b7565b60405180910390f35b610383600480360381019061037e9190611a72565b61088d565b6040516103909190611acd565b60405180910390f35b6103b360048036038101906103ae9190611a72565b610904565b6040516103c09190611acd565b60405180910390f35b6103e360048036038101906103de9190611c8c565b610927565b005b6103ff60048036038101906103fa9190611c5f565b610b3f565b60405161040c9190611acd565b60405180910390f35b61042f600480360381019061042a9190611c08565b610b95565b60405161043c9190611c44565b60405180910390f35b61045f600480360381019061045a9190611c8c565b610bdd565b60405161046c9190611b63565b60405180910390f35b61048f600480360381019061048a9190611c5f565b610c64565b60405161049c9190611acd565b60405180910390f35b6104bf60048036038101906104ba9190611c5f565b610cba565b005b6060600380546104d090611cfb565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90611cfb565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b60008061055e610d42565b905061056b818585610d4a565b600191505092915050565b61057e610f13565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f84cedd5027f23cfb7a4075134a4fb1b871d2d554152e98c344ca73af5713a7bc8260405161061b9190611acd565b60405180910390a25050565b6000600254905090565b60008061063c610d42565b9050610649858285610f91565b61065485858561101d565b60019150509392505050565b60006012905090565b600080610674610d42565b90506106958185856106868589610bdd565b6106909190611d5b565b610d4a565b600191505092915050565b6106b16106ab610d42565b826112c7565b50565b600581565b600681815481106106c957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610748610f13565b6107526000611494565b565b61076682610760610d42565b83610f91565b61077082826112c7565b5050565b61077c610f13565b6001600a60006101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516107c79190611acd565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080a90611cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461083690611cfb565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600080610898610d42565b905060006108a68286610bdd565b9050838110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290611e01565b60405180910390fd5b6108f88286868403610d4a565b60019250505092915050565b60008061090f610d42565b905061091c81858561101d565b600191505092915050565b61092f610f13565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610981573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a59190611e36565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b81526004016109df929190611e63565b6020604051808303816000875af11580156109fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a229190611e36565b90506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc185c2e07c96a12ccdeaba3948d6a6699b41f26f5d9ea4f94f13991707f5915a60405160405180910390a350505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600060068281548110610bab57610baa611e8c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610cc2610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611f2d565b60405180910390fd5b610d3a81611494565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612051565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f069190611b63565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f396107d1565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906120bd565b60405180910390fd5b565b6000610f9d8484610bdd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110175781811015611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612129565b60405180910390fd5b6110168484848403610d4a565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110c15750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111165750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111735760006111268461155a565b1561115157606460058361113a9190612149565b61114491906121ba565b905061115084826112c7565b5b6000818361115f91906121eb565b905061116c8585836115a5565b50506112c2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112175750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561126c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112b65743600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6112c18383836115a5565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612291565b60405180910390fd5b6113428260008361181b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90612323565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147b9190611b63565b60405180910390a361148f83600084611922565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600043600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906123b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90612447565b60405180910390fd5b61168e83838361181b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906124d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118029190611b63565b60405180910390a3611815848484611922565b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118bc5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118d35750600a60009054906101000a900460ff165b611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990612545565b60405180910390fd5b61191d838383610d3d565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611961578082015181840152602081019050611946565b60008484015250505050565b6000601f19601f8301169050919050565b600061198982611927565b6119938185611932565b93506119a3818560208601611943565b6119ac8161196d565b840191505092915050565b600060208201905081810360008301526119d1818461197e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a09826119de565b9050919050565b611a19816119fe565b8114611a2457600080fd5b50565b600081359050611a3681611a10565b92915050565b6000819050919050565b611a4f81611a3c565b8114611a5a57600080fd5b50565b600081359050611a6c81611a46565b92915050565b60008060408385031215611a8957611a886119d9565b5b6000611a9785828601611a27565b9250506020611aa885828601611a5d565b9150509250929050565b60008115159050919050565b611ac781611ab2565b82525050565b6000602082019050611ae26000830184611abe565b92915050565b611af181611ab2565b8114611afc57600080fd5b50565b600081359050611b0e81611ae8565b92915050565b60008060408385031215611b2b57611b2a6119d9565b5b6000611b3985828601611a27565b9250506020611b4a85828601611aff565b9150509250929050565b611b5d81611a3c565b82525050565b6000602082019050611b786000830184611b54565b92915050565b600080600060608486031215611b9757611b966119d9565b5b6000611ba586828701611a27565b9350506020611bb686828701611a27565b9250506040611bc786828701611a5d565b9150509250925092565b600060ff82169050919050565b611be781611bd1565b82525050565b6000602082019050611c026000830184611bde565b92915050565b600060208284031215611c1e57611c1d6119d9565b5b6000611c2c84828501611a5d565b91505092915050565b611c3e816119fe565b82525050565b6000602082019050611c596000830184611c35565b92915050565b600060208284031215611c7557611c746119d9565b5b6000611c8384828501611a27565b91505092915050565b60008060408385031215611ca357611ca26119d9565b5b6000611cb185828601611a27565b9250506020611cc285828601611a27565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d1357607f821691505b602082108103611d2657611d25611ccc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d6682611a3c565b9150611d7183611a3c565b9250828201905080821115611d8957611d88611d2c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611deb602583611932565b9150611df682611d8f565b604082019050919050565b60006020820190508181036000830152611e1a81611dde565b9050919050565b600081519050611e3081611a10565b92915050565b600060208284031215611e4c57611e4b6119d9565b5b6000611e5a84828501611e21565b91505092915050565b6000604082019050611e786000830185611c35565b611e856020830184611c35565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f17602683611932565b9150611f2282611ebb565b604082019050919050565b60006020820190508181036000830152611f4681611f0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fa9602483611932565b9150611fb482611f4d565b604082019050919050565b60006020820190508181036000830152611fd881611f9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061203b602283611932565b915061204682611fdf565b604082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120a7602083611932565b91506120b282612071565b602082019050919050565b600060208201905081810360008301526120d68161209a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612113601d83611932565b915061211e826120dd565b602082019050919050565b6000602082019050818103600083015261214281612106565b9050919050565b600061215482611a3c565b915061215f83611a3c565b925082820261216d81611a3c565b9150828204841483151761218457612183611d2c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121c582611a3c565b91506121d083611a3c565b9250826121e0576121df61218b565b5b828204905092915050565b60006121f682611a3c565b915061220183611a3c565b925082820390508181111561221957612218611d2c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061227b602183611932565b91506122868261221f565b604082019050919050565b600060208201905081810360008301526122aa8161226e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061230d602283611932565b9150612318826122b1565b604082019050919050565b6000602082019050818103600083015261233c81612300565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061239f602583611932565b91506123aa82612343565b604082019050919050565b600060208201905081810360008301526123ce81612392565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612431602383611932565b915061243c826123d5565b604082019050919050565b6000602082019050818103600083015261246081612424565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124c3602683611932565b91506124ce82612467565b604082019050919050565b600060208201905081810360008301526124f2816124b6565b9050919050565b7f5472616465206e6f7420656e61626c6564000000000000000000000000000000600082015250565b600061252f601183611932565b915061253a826124f9565b602082019050919050565b6000602082019050818103600083015261255e81612522565b905091905056fea2646970667358221220df62a17d10b8f8ee0d9b03cd60b33d25bb2540517b4bae961dd8193ea2ed845764736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063b6f3e0871161007c578063b6f3e087146103c9578063b7306f91146103e5578063bdf391cc14610415578063dd62ed3e14610445578063e5e31b1314610475578063f2fde38b146104a557610158565b806379cc6790146103075780638a8c523c146103235780638da5cb5b1461032d57806395d89b411461034b578063a457c2d714610369578063a9059cbb1461039957610158565b80633950935111610115578063395093511461023357806342966c68146102635780636381c1671461027f57806366767a2d1461029d57806370a08231146102cd578063715018a6146102fd57610158565b806306fdde031461015d578063095ea7b31461017b5780630c490f5d146101ab57806318160ddd146101c757806323b872dd146101e5578063313ce56714610215575b600080fd5b6101656104c1565b60405161017291906119b7565b60405180910390f35b61019560048036038101906101909190611a72565b610553565b6040516101a29190611acd565b60405180910390f35b6101c560048036038101906101c09190611b14565b610576565b005b6101cf610627565b6040516101dc9190611b63565b60405180910390f35b6101ff60048036038101906101fa9190611b7e565b610631565b60405161020c9190611acd565b60405180910390f35b61021d610660565b60405161022a9190611bed565b60405180910390f35b61024d60048036038101906102489190611a72565b610669565b60405161025a9190611acd565b60405180910390f35b61027d60048036038101906102789190611c08565b6106a0565b005b6102876106b4565b6040516102949190611b63565b60405180910390f35b6102b760048036038101906102b29190611c08565b6106b9565b6040516102c49190611c44565b60405180910390f35b6102e760048036038101906102e29190611c5f565b6106f8565b6040516102f49190611b63565b60405180910390f35b610305610740565b005b610321600480360381019061031c9190611a72565b610754565b005b61032b610774565b005b6103356107d1565b6040516103429190611c44565b60405180910390f35b6103536107fb565b60405161036091906119b7565b60405180910390f35b610383600480360381019061037e9190611a72565b61088d565b6040516103909190611acd565b60405180910390f35b6103b360048036038101906103ae9190611a72565b610904565b6040516103c09190611acd565b60405180910390f35b6103e360048036038101906103de9190611c8c565b610927565b005b6103ff60048036038101906103fa9190611c5f565b610b3f565b60405161040c9190611acd565b60405180910390f35b61042f600480360381019061042a9190611c08565b610b95565b60405161043c9190611c44565b60405180910390f35b61045f600480360381019061045a9190611c8c565b610bdd565b60405161046c9190611b63565b60405180910390f35b61048f600480360381019061048a9190611c5f565b610c64565b60405161049c9190611acd565b60405180910390f35b6104bf60048036038101906104ba9190611c5f565b610cba565b005b6060600380546104d090611cfb565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc90611cfb565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b60008061055e610d42565b905061056b818585610d4a565b600191505092915050565b61057e610f13565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f84cedd5027f23cfb7a4075134a4fb1b871d2d554152e98c344ca73af5713a7bc8260405161061b9190611acd565b60405180910390a25050565b6000600254905090565b60008061063c610d42565b9050610649858285610f91565b61065485858561101d565b60019150509392505050565b60006012905090565b600080610674610d42565b90506106958185856106868589610bdd565b6106909190611d5b565b610d4a565b600191505092915050565b6106b16106ab610d42565b826112c7565b50565b600581565b600681815481106106c957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610748610f13565b6107526000611494565b565b61076682610760610d42565b83610f91565b61077082826112c7565b5050565b61077c610f13565b6001600a60006101000a81548160ff0219169083151502179055507fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a60016040516107c79190611acd565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461080a90611cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461083690611cfb565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600080610898610d42565b905060006108a68286610bdd565b9050838110156108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290611e01565b60405180910390fd5b6108f88286868403610d4a565b60019250505092915050565b60008061090f610d42565b905061091c81858561101d565b600191505092915050565b61092f610f13565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610981573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a59190611e36565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630856040518363ffffffff1660e01b81526004016109df929190611e63565b6020604051808303816000875af11580156109fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a229190611e36565b90506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc185c2e07c96a12ccdeaba3948d6a6699b41f26f5d9ea4f94f13991707f5915a60405160405180910390a350505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600060068281548110610bab57610baa611e8c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610cc2610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611f2d565b60405180910390fd5b610d3a81611494565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90612051565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f069190611b63565b60405180910390a3505050565b610f1b610d42565b73ffffffffffffffffffffffffffffffffffffffff16610f396107d1565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f86906120bd565b60405180910390fd5b565b6000610f9d8484610bdd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110175781811015611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612129565b60405180910390fd5b6110168484848403610d4a565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110c15750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111165750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111735760006111268461155a565b1561115157606460058361113a9190612149565b61114491906121ba565b905061115084826112c7565b5b6000818361115f91906121eb565b905061116c8585836115a5565b50506112c2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112175750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561126c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112b65743600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6112c18383836115a5565b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d90612291565b60405180910390fd5b6113428260008361181b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90612323565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147b9190611b63565b60405180910390a361148f83600084611922565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600043600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906123b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90612447565b60405180910390fd5b61168e83838361181b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906124d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118029190611b63565b60405180910390a3611815848484611922565b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118bc5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118d35750600a60009054906101000a900460ff165b611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990612545565b60405180910390fd5b61191d838383610d3d565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611961578082015181840152602081019050611946565b60008484015250505050565b6000601f19601f8301169050919050565b600061198982611927565b6119938185611932565b93506119a3818560208601611943565b6119ac8161196d565b840191505092915050565b600060208201905081810360008301526119d1818461197e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a09826119de565b9050919050565b611a19816119fe565b8114611a2457600080fd5b50565b600081359050611a3681611a10565b92915050565b6000819050919050565b611a4f81611a3c565b8114611a5a57600080fd5b50565b600081359050611a6c81611a46565b92915050565b60008060408385031215611a8957611a886119d9565b5b6000611a9785828601611a27565b9250506020611aa885828601611a5d565b9150509250929050565b60008115159050919050565b611ac781611ab2565b82525050565b6000602082019050611ae26000830184611abe565b92915050565b611af181611ab2565b8114611afc57600080fd5b50565b600081359050611b0e81611ae8565b92915050565b60008060408385031215611b2b57611b2a6119d9565b5b6000611b3985828601611a27565b9250506020611b4a85828601611aff565b9150509250929050565b611b5d81611a3c565b82525050565b6000602082019050611b786000830184611b54565b92915050565b600080600060608486031215611b9757611b966119d9565b5b6000611ba586828701611a27565b9350506020611bb686828701611a27565b9250506040611bc786828701611a5d565b9150509250925092565b600060ff82169050919050565b611be781611bd1565b82525050565b6000602082019050611c026000830184611bde565b92915050565b600060208284031215611c1e57611c1d6119d9565b5b6000611c2c84828501611a5d565b91505092915050565b611c3e816119fe565b82525050565b6000602082019050611c596000830184611c35565b92915050565b600060208284031215611c7557611c746119d9565b5b6000611c8384828501611a27565b91505092915050565b60008060408385031215611ca357611ca26119d9565b5b6000611cb185828601611a27565b9250506020611cc285828601611a27565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d1357607f821691505b602082108103611d2657611d25611ccc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d6682611a3c565b9150611d7183611a3c565b9250828201905080821115611d8957611d88611d2c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611deb602583611932565b9150611df682611d8f565b604082019050919050565b60006020820190508181036000830152611e1a81611dde565b9050919050565b600081519050611e3081611a10565b92915050565b600060208284031215611e4c57611e4b6119d9565b5b6000611e5a84828501611e21565b91505092915050565b6000604082019050611e786000830185611c35565b611e856020830184611c35565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f17602683611932565b9150611f2282611ebb565b604082019050919050565b60006020820190508181036000830152611f4681611f0a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fa9602483611932565b9150611fb482611f4d565b604082019050919050565b60006020820190508181036000830152611fd881611f9c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061203b602283611932565b915061204682611fdf565b604082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120a7602083611932565b91506120b282612071565b602082019050919050565b600060208201905081810360008301526120d68161209a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612113601d83611932565b915061211e826120dd565b602082019050919050565b6000602082019050818103600083015261214281612106565b9050919050565b600061215482611a3c565b915061215f83611a3c565b925082820261216d81611a3c565b9150828204841483151761218457612183611d2c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121c582611a3c565b91506121d083611a3c565b9250826121e0576121df61218b565b5b828204905092915050565b60006121f682611a3c565b915061220183611a3c565b925082820390508181111561221957612218611d2c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061227b602183611932565b91506122868261221f565b604082019050919050565b600060208201905081810360008301526122aa8161226e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061230d602283611932565b9150612318826122b1565b604082019050919050565b6000602082019050818103600083015261233c81612300565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061239f602583611932565b91506123aa82612343565b604082019050919050565b600060208201905081810360008301526123ce81612392565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612431602383611932565b915061243c826123d5565b604082019050919050565b6000602082019050818103600083015261246081612424565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006124c3602683611932565b91506124ce82612467565b604082019050919050565b600060208201905081810360008301526124f2816124b6565b9050919050565b7f5472616465206e6f7420656e61626c6564000000000000000000000000000000600082015250565b600061252f601183611932565b915061253a826124f9565b602082019050919050565b6000602082019050818103600083015261255e81612522565b905091905056fea2646970667358221220df62a17d10b8f8ee0d9b03cd60b33d25bb2540517b4bae961dd8193ea2ed845764736f6c63430008110033

Deployed Bytecode Sourcemap

22031:3287:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9436:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24396:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8205:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10217:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8047:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10887:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18542:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22087:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22144:32;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8376:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20913:103;;;:::i;:::-;;18952:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24266:122;;;:::i;:::-;;20272:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7295:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11628:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8709:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24565:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25056:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24935:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8965:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25207:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21171:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7076:100;7130:13;7163:5;7156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7076:100;:::o;9436:201::-;9519:4;9536:13;9552:12;:10;:12::i;:::-;9536:28;;9575:32;9584:5;9591:7;9600:6;9575:8;:32::i;:::-;9625:4;9618:11;;;9436:201;;;;:::o;24396:161::-;20158:13;:11;:13::i;:::-;24504:5:::1;24478:13;:23;24492:8;24478:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;24533:8;24525:24;;;24543:5;24525:24;;;;;;:::i;:::-;;;;;;;;24396:161:::0;;:::o;8205:108::-;8266:7;8293:12;;8286:19;;8205:108;:::o;10217:261::-;10314:4;10331:15;10349:12;:10;:12::i;:::-;10331:30;;10372:38;10388:4;10394:7;10403:6;10372:15;:38::i;:::-;10421:27;10431:4;10437:2;10441:6;10421:9;:27::i;:::-;10466:4;10459:11;;;10217:261;;;;;:::o;8047:93::-;8105:5;8130:2;8123:9;;8047:93;:::o;10887:238::-;10975:4;10992:13;11008:12;:10;:12::i;:::-;10992:28;;11031:64;11040:5;11047:7;11084:10;11056:25;11066:5;11073:7;11056:9;:25::i;:::-;:38;;;;:::i;:::-;11031:8;:64::i;:::-;11113:4;11106:11;;;10887:238;;;;:::o;18542:91::-;18598:27;18604:12;:10;:12::i;:::-;18618:6;18598:5;:27::i;:::-;18542:91;:::o;22087:48::-;22134:1;22087:48;:::o;22144:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8376:127::-;8450:7;8477:9;:18;8487:7;8477:18;;;;;;;;;;;;;;;;8470:25;;8376:127;;;:::o;20913:103::-;20158:13;:11;:13::i;:::-;20978:30:::1;21005:1;20978:18;:30::i;:::-;20913:103::o:0;18952:164::-;19029:46;19045:7;19054:12;:10;:12::i;:::-;19068:6;19029:15;:46::i;:::-;19086:22;19092:7;19101:6;19086:5;:22::i;:::-;18952:164;;:::o;24266:122::-;20158:13;:11;:13::i;:::-;24340:4:::1;24321:16;;:23;;;;;;;;;;;;;;;;;;24360:20;24375:4;24360:20;;;;;;:::i;:::-;;;;;;;;24266:122::o:0;20272:87::-;20318:7;20345:6;;;;;;;;;;;20338:13;;20272:87;:::o;7295:104::-;7351:13;7384:7;7377:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7295:104;:::o;11628:436::-;11721:4;11738:13;11754:12;:10;:12::i;:::-;11738:28;;11777:24;11804:25;11814:5;11821:7;11804:9;:25::i;:::-;11777:52;;11868:15;11848:16;:35;;11840:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11961:60;11970:5;11977:7;12005:15;11986:16;:34;11961:8;:60::i;:::-;12052:4;12045:11;;;;11628:436;;;;:::o;8709:193::-;8788:4;8805:13;8821:12;:10;:12::i;:::-;8805:28;;8844;8854:5;8861:2;8865:6;8844:9;:28::i;:::-;8890:4;8883:11;;;8709:193;;;;:::o;24565:362::-;20158:13;:11;:13::i;:::-;24643:35:::1;24700:7;24643:65;;24719:12;24752:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24734:56;;;24799:4;24806:6;24734:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24719:94;;24824:15;24845:4;24824:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24877:4;24861:7;:13;24869:4;24861:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;24914:4;24897:22;;24905:7;24897:22;;;;;;;;;;;;24632:295;;24565:362:::0;;:::o;25056:143::-;25132:16;25168:13;:23;25182:8;25168:23;;;;;;;;;;;;;;;;;;;;;;;;;25161:30;;25056:143;;;:::o;24935:113::-;24990:7;25017:15;25033:6;25017:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25010:30;;24935:113;;;:::o;8965:151::-;9054:7;9081:11;:18;9093:5;9081:18;;;;;;;;;;;;;;;:27;9100:7;9081:27;;;;;;;;;;;;;;;;9074:34;;8965:151;;;;:::o;25207:108::-;25261:12;25293:7;:14;25301:5;25293:14;;;;;;;;;;;;;;;;;;;;;;;;;25286:21;;25207:108;;;:::o;21171:201::-;20158:13;:11;:13::i;:::-;21280:1:::1;21260:22;;:8;:22;;::::0;21252:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21336:28;21355:8;21336:18;:28::i;:::-;21171:201:::0;:::o;17277:91::-;;;;:::o;4807:98::-;4860:7;4887:10;4880:17;;4807:98;:::o;15621:346::-;15740:1;15723:19;;:5;:19;;;15715:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15821:1;15802:21;;:7;:21;;;15794:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15905:6;15875:11;:18;15887:5;15875:18;;;;;;;;;;;;;;;:27;15894:7;15875:27;;;;;;;;;;;;;;;:36;;;;15943:7;15927:32;;15936:5;15927:32;;;15952:6;15927:32;;;;;;:::i;:::-;;;;;;;;15621:346;;;:::o;20437:132::-;20512:12;:10;:12::i;:::-;20501:23;;:7;:5;:7::i;:::-;:23;;;20493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20437:132::o;16258:419::-;16359:24;16386:25;16396:5;16403:7;16386:9;:25::i;:::-;16359:52;;16446:17;16426:16;:37;16422:248;;16508:6;16488:16;:26;;16480:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16592:51;16601:5;16608:7;16636:6;16617:16;:25;16592:8;:51::i;:::-;16422:248;16348:329;16258:419;;;:::o;23257:847::-;23361:13;:21;23375:6;23361:21;;;;;;;;;;;;;;;;;;;;;;;;;23360:22;:51;;;;;23387:13;:24;23401:9;23387:24;;;;;;;;;;;;;;;;;;;;;;;;;23386:25;23360:51;:73;;;;;23415:7;:18;23423:9;23415:18;;;;;;;;;;;;;;;;;;;;;;;;;23360:73;23356:741;;;23450:18;23491:29;23513:6;23491:21;:29::i;:::-;23487:235;;;23586:3;22134:1;23554:6;:29;;;;:::i;:::-;:35;;;;:::i;:::-;23541:48;;23661:25;23667:6;23675:10;23661:5;:25::i;:::-;23487:235;23736:18;23766:10;23757:6;:19;;;;:::i;:::-;23736:40;;23793:46;23809:6;23817:9;23828:10;23793:15;:46::i;:::-;23435:417;;23356:741;;;23878:13;:21;23892:6;23878:21;;;;;;;;;;;;;;;;;;;;;;;;;23877:22;:51;;;;;23904:13;:24;23918:9;23904:24;;;;;;;;;;;;;;;;;;;;;;;;;23903:25;23877:51;:70;;;;;23932:7;:15;23940:6;23932:15;;;;;;;;;;;;;;;;;;;;;;;;;23877:70;23873:156;;;24001:12;23968:19;:30;23988:9;23968:30;;;;;;;;;;;;;;;:45;;;;23873:156;24043:42;24059:6;24067:9;24078:6;24043:15;:42::i;:::-;23356:741;23257:847;;;:::o;14508:675::-;14611:1;14592:21;;:7;:21;;;14584:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14664:49;14685:7;14702:1;14706:6;14664:20;:49::i;:::-;14726:22;14751:9;:18;14761:7;14751:18;;;;;;;;;;;;;;;;14726:43;;14806:6;14788:14;:24;;14780:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14925:6;14908:14;:23;14887:9;:18;14897:7;14887:18;;;;;;;;;;;;;;;:44;;;;15042:6;15026:12;;:22;;;;;;;;;;;15103:1;15077:37;;15086:7;15077:37;;;15107:6;15077:37;;;;;;:::i;:::-;;;;;;;;15127:48;15147:7;15164:1;15168:6;15127:19;:48::i;:::-;14573:610;14508:675;;:::o;21532:191::-;21606:16;21625:6;;;;;;;;;;;21606:25;;21651:8;21642:6;;:17;;;;;;;;;;;;;;;;;;21706:8;21675:40;;21696:8;21675:40;;;;;;;;;;;;21595:128;21532:191;:::o;24116:142::-;24184:4;24238:12;24208:19;:26;24228:5;24208:26;;;;;;;;;;;;;;;;:42;24201:49;;24116:142;;;:::o;12534:806::-;12647:1;12631:18;;:4;:18;;;12623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12724:1;12710:16;;:2;:16;;;12702:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12779:38;12800:4;12806:2;12810:6;12779:20;:38::i;:::-;12830:19;12852:9;:15;12862:4;12852:15;;;;;;;;;;;;;;;;12830:37;;12901:6;12886:11;:21;;12878:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13018:6;13004:11;:20;12986:9;:15;12996:4;12986:15;;;;;;;;;;;;;;;:38;;;;13221:6;13204:9;:13;13214:2;13204:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13271:2;13256:26;;13265:4;13256:26;;;13275:6;13256:26;;;;;;:::i;:::-;;;;;;;;13295:37;13315:4;13321:2;13325:6;13295:19;:37::i;:::-;12612:728;12534:806;;;:::o;22926:323::-;23086:13;:21;23100:6;23086:21;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;23111:13;:24;23125:9;23111:24;;;;;;;;;;;;;;;;;;;;;;;;;23086:49;:69;;;;23139:16;;;;;;;;;;;23086:69;23078:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;23188:53;23215:6;23223:9;23234:6;23188:26;:53::i;:::-;22926:323;;;:::o;17972:90::-;;;;:::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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:468::-;3772:6;3780;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;4082:2;4108:50;4150:7;4141:6;4130:9;4126:22;4108:50;:::i;:::-;4098:60;;4053:115;3707:468;;;;;:::o;4181:118::-;4268:24;4286:5;4268:24;:::i;:::-;4263:3;4256:37;4181:118;;:::o;4305:222::-;4398:4;4436:2;4425:9;4421:18;4413:26;;4449:71;4517:1;4506:9;4502:17;4493:6;4449:71;:::i;:::-;4305:222;;;;:::o;4533:619::-;4610:6;4618;4626;4675:2;4663:9;4654:7;4650:23;4646:32;4643:119;;;4681:79;;:::i;:::-;4643:119;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;5056:2;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5027:118;4533:619;;;;;:::o;5158:86::-;5193:7;5233:4;5226:5;5222:16;5211:27;;5158:86;;;:::o;5250:112::-;5333:22;5349:5;5333:22;:::i;:::-;5328:3;5321:35;5250:112;;:::o;5368:214::-;5457:4;5495:2;5484:9;5480:18;5472:26;;5508:67;5572:1;5561:9;5557:17;5548:6;5508:67;:::i;:::-;5368:214;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:329::-;6334:6;6383:2;6371:9;6362:7;6358:23;6354:32;6351:119;;;6389:79;;:::i;:::-;6351:119;6509:1;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6480:117;6275:329;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:180::-;7650:77;7647:1;7640:88;7747:4;7744:1;7737:15;7771:4;7768:1;7761:15;7788:191;7828:3;7847:20;7865:1;7847:20;:::i;:::-;7842:25;;7881:20;7899:1;7881:20;:::i;:::-;7876:25;;7924:1;7921;7917:9;7910:16;;7945:3;7942:1;7939:10;7936:36;;;7952:18;;:::i;:::-;7936:36;7788:191;;;;:::o;7985:224::-;8125:34;8121:1;8113:6;8109:14;8102:58;8194:7;8189:2;8181:6;8177:15;8170:32;7985:224;:::o;8215:366::-;8357:3;8378:67;8442:2;8437:3;8378:67;:::i;:::-;8371:74;;8454:93;8543:3;8454:93;:::i;:::-;8572:2;8567:3;8563:12;8556:19;;8215:366;;;:::o;8587:419::-;8753:4;8791:2;8780:9;8776:18;8768:26;;8840:9;8834:4;8830:20;8826:1;8815:9;8811:17;8804:47;8868:131;8994:4;8868:131;:::i;:::-;8860:139;;8587:419;;;:::o;9012:143::-;9069:5;9100:6;9094:13;9085:22;;9116:33;9143:5;9116:33;:::i;:::-;9012:143;;;;:::o;9161:351::-;9231:6;9280:2;9268:9;9259:7;9255:23;9251:32;9248:119;;;9286:79;;:::i;:::-;9248:119;9406:1;9431:64;9487:7;9478:6;9467:9;9463:22;9431:64;:::i;:::-;9421:74;;9377:128;9161:351;;;;:::o;9518:332::-;9639:4;9677:2;9666:9;9662:18;9654:26;;9690:71;9758:1;9747:9;9743:17;9734:6;9690:71;:::i;:::-;9771:72;9839:2;9828:9;9824:18;9815:6;9771:72;:::i;:::-;9518:332;;;;;:::o;9856:180::-;9904:77;9901:1;9894:88;10001:4;9998:1;9991:15;10025:4;10022:1;10015:15;10042:225;10182:34;10178:1;10170:6;10166:14;10159:58;10251:8;10246:2;10238:6;10234:15;10227:33;10042:225;:::o;10273:366::-;10415:3;10436:67;10500:2;10495:3;10436:67;:::i;:::-;10429:74;;10512:93;10601:3;10512:93;:::i;:::-;10630:2;10625:3;10621:12;10614:19;;10273:366;;;:::o;10645:419::-;10811:4;10849:2;10838:9;10834:18;10826:26;;10898:9;10892:4;10888:20;10884:1;10873:9;10869:17;10862:47;10926:131;11052:4;10926:131;:::i;:::-;10918:139;;10645:419;;;:::o;11070:223::-;11210:34;11206:1;11198:6;11194:14;11187:58;11279:6;11274:2;11266:6;11262:15;11255:31;11070:223;:::o;11299:366::-;11441:3;11462:67;11526:2;11521:3;11462:67;:::i;:::-;11455:74;;11538:93;11627:3;11538:93;:::i;:::-;11656:2;11651:3;11647:12;11640:19;;11299:366;;;:::o;11671:419::-;11837:4;11875:2;11864:9;11860:18;11852:26;;11924:9;11918:4;11914:20;11910:1;11899:9;11895:17;11888:47;11952:131;12078:4;11952:131;:::i;:::-;11944:139;;11671:419;;;:::o;12096:221::-;12236:34;12232:1;12224:6;12220:14;12213:58;12305:4;12300:2;12292:6;12288:15;12281:29;12096:221;:::o;12323:366::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:419::-;12861:4;12899:2;12888:9;12884:18;12876:26;;12948:9;12942:4;12938:20;12934:1;12923:9;12919:17;12912:47;12976:131;13102:4;12976:131;:::i;:::-;12968:139;;12695:419;;;:::o;13120:182::-;13260:34;13256:1;13248:6;13244:14;13237:58;13120:182;:::o;13308:366::-;13450:3;13471:67;13535:2;13530:3;13471:67;:::i;:::-;13464:74;;13547:93;13636:3;13547:93;:::i;:::-;13665:2;13660:3;13656:12;13649:19;;13308:366;;;:::o;13680:419::-;13846:4;13884:2;13873:9;13869:18;13861:26;;13933:9;13927:4;13923:20;13919:1;13908:9;13904:17;13897:47;13961:131;14087:4;13961:131;:::i;:::-;13953:139;;13680:419;;;:::o;14105:179::-;14245:31;14241:1;14233:6;14229:14;14222:55;14105:179;:::o;14290:366::-;14432:3;14453:67;14517:2;14512:3;14453:67;:::i;:::-;14446:74;;14529:93;14618:3;14529:93;:::i;:::-;14647:2;14642:3;14638:12;14631:19;;14290:366;;;:::o;14662:419::-;14828:4;14866:2;14855:9;14851:18;14843:26;;14915:9;14909:4;14905:20;14901:1;14890:9;14886:17;14879:47;14943:131;15069:4;14943:131;:::i;:::-;14935:139;;14662:419;;;:::o;15087:410::-;15127:7;15150:20;15168:1;15150:20;:::i;:::-;15145:25;;15184:20;15202:1;15184:20;:::i;:::-;15179:25;;15239:1;15236;15232:9;15261:30;15279:11;15261:30;:::i;:::-;15250:41;;15440:1;15431:7;15427:15;15424:1;15421:22;15401:1;15394:9;15374:83;15351:139;;15470:18;;:::i;:::-;15351:139;15135:362;15087:410;;;;:::o;15503:180::-;15551:77;15548:1;15541:88;15648:4;15645:1;15638:15;15672:4;15669:1;15662:15;15689:185;15729:1;15746:20;15764:1;15746:20;:::i;:::-;15741:25;;15780:20;15798:1;15780:20;:::i;:::-;15775:25;;15819:1;15809:35;;15824:18;;:::i;:::-;15809:35;15866:1;15863;15859:9;15854:14;;15689:185;;;;:::o;15880:194::-;15920:4;15940:20;15958:1;15940:20;:::i;:::-;15935:25;;15974:20;15992:1;15974:20;:::i;:::-;15969:25;;16018:1;16015;16011:9;16003:17;;16042:1;16036:4;16033:11;16030:37;;;16047:18;;:::i;:::-;16030:37;15880:194;;;;:::o;16080:220::-;16220:34;16216:1;16208:6;16204:14;16197:58;16289:3;16284:2;16276:6;16272:15;16265:28;16080:220;:::o;16306:366::-;16448:3;16469:67;16533:2;16528:3;16469:67;:::i;:::-;16462:74;;16545:93;16634:3;16545:93;:::i;:::-;16663:2;16658:3;16654:12;16647:19;;16306:366;;;:::o;16678:419::-;16844:4;16882:2;16871:9;16867:18;16859:26;;16931:9;16925:4;16921:20;16917:1;16906:9;16902:17;16895:47;16959:131;17085:4;16959:131;:::i;:::-;16951:139;;16678:419;;;:::o;17103:221::-;17243:34;17239:1;17231:6;17227:14;17220:58;17312:4;17307:2;17299:6;17295:15;17288:29;17103:221;:::o;17330:366::-;17472:3;17493:67;17557:2;17552:3;17493:67;:::i;:::-;17486:74;;17569:93;17658:3;17569:93;:::i;:::-;17687:2;17682:3;17678:12;17671:19;;17330:366;;;:::o;17702:419::-;17868:4;17906:2;17895:9;17891:18;17883:26;;17955:9;17949:4;17945:20;17941:1;17930:9;17926:17;17919:47;17983:131;18109:4;17983:131;:::i;:::-;17975:139;;17702:419;;;:::o;18127:224::-;18267:34;18263:1;18255:6;18251:14;18244:58;18336:7;18331:2;18323:6;18319:15;18312:32;18127:224;:::o;18357:366::-;18499:3;18520:67;18584:2;18579:3;18520:67;:::i;:::-;18513:74;;18596:93;18685:3;18596:93;:::i;:::-;18714:2;18709:3;18705:12;18698:19;;18357:366;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:222::-;19294:34;19290:1;19282:6;19278:14;19271:58;19363:5;19358:2;19350:6;19346:15;19339:30;19154:222;:::o;19382:366::-;19524:3;19545:67;19609:2;19604:3;19545:67;:::i;:::-;19538:74;;19621:93;19710:3;19621:93;:::i;:::-;19739:2;19734:3;19730:12;19723:19;;19382:366;;;:::o;19754:419::-;19920:4;19958:2;19947:9;19943:18;19935:26;;20007:9;20001:4;19997:20;19993:1;19982:9;19978:17;19971:47;20035:131;20161:4;20035:131;:::i;:::-;20027:139;;19754:419;;;:::o;20179:225::-;20319:34;20315:1;20307:6;20303:14;20296:58;20388:8;20383:2;20375:6;20371:15;20364:33;20179:225;:::o;20410:366::-;20552:3;20573:67;20637:2;20632:3;20573:67;:::i;:::-;20566:74;;20649:93;20738:3;20649:93;:::i;:::-;20767:2;20762:3;20758:12;20751:19;;20410:366;;;:::o;20782:419::-;20948:4;20986:2;20975:9;20971:18;20963:26;;21035:9;21029:4;21025:20;21021:1;21010:9;21006:17;20999:47;21063:131;21189:4;21063:131;:::i;:::-;21055:139;;20782:419;;;:::o;21207:167::-;21347:19;21343:1;21335:6;21331:14;21324:43;21207:167;:::o;21380:366::-;21522:3;21543:67;21607:2;21602:3;21543:67;:::i;:::-;21536:74;;21619:93;21708:3;21619:93;:::i;:::-;21737:2;21732:3;21728:12;21721:19;;21380:366;;;:::o;21752:419::-;21918:4;21956:2;21945:9;21941:18;21933:26;;22005:9;21999:4;21995:20;21991:1;21980:9;21976:17;21969:47;22033:131;22159:4;22033:131;:::i;:::-;22025:139;;21752:419;;;:::o

Swarm Source

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