ETH Price: $2,522.81 (-0.06%)
Gas: 0.67 Gwei

Token

FROGS BET (FROGS)
 

Overview

Max Total Supply

111,111,111 FROGS

Holders

155

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
259,994.813564192271750945 FROGS

Value
$0.00
0xc18a728ef6502d023d3c53048337de67b055b239
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:
Frogs

Compiler Version
v0.8.18+commit.87f61d96

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

// File: Frogs.sol



pragma solidity ^0.8.4;



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

    function WETH() external pure returns (address);

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

contract Frogs is ERC20, Ownable {
	
    uint _totalSupply = 111_111_111*10**18;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public uniswapV2Factory;

    bool private swapping;
    uint256 public buyFees = 3;
    uint256 public sellFees = 5;
    uint256 public swapTokensAtAmount = _totalSupply / 1000; // 0.1% swap tokens at this amount

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    
    address public marketingWallet = 0x844Ea0a22513550Cf4FBC9f4a4a5B2DBBdd19aa1;

    receive() external payable {}

    constructor() ERC20("FROGS BET", "FROGS") {

		_mint(msg.sender, _totalSupply);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Factory = uniswapV2Router.factory();
        uniswapV2Pair = _calculatePairAddress(uniswapV2Router.WETH());
        
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);

	}

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed");
        _setAutomatedMarketMakerPair(pair, value);
    }

     function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        automatedMarketMakerPairs[pair] = value;
    }

    function setMarketingWallet(address wallet) public onlyOwner {
        marketingWallet = wallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function _calculatePairAddress(address _WETH) internal view returns (address) {

        address pair = address(uint160(uint(keccak256(abi.encodePacked(
            hex'ff',
            uniswapV2Factory,
            keccak256(abi.encodePacked(address(this), _WETH)),
            hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f'
        )))));

        return pair;

    }
	
    function _transfer(address from, address to, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");

        if (
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            _swapBack();
            swapping = false;
        }

        uint256 fees = 0;

        // only take fees on buys/sells, do not take on wallet transfers
        // on sell
        if (automatedMarketMakerPairs[to] && sellFees > 0) {
            fees = amount * sellFees / 100;
        }
        // on buy
        else if (automatedMarketMakerPairs[from] && buyFees > 0) {
            fees = amount * buyFees / 100;
        }

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            fees = 0;
        }

        if (fees > 0) {
            super._transfer(from, address(this), fees);
            amount -= fees;
        }
       
        super._transfer(from, to, amount);
    }

    function _swapTokensForEth(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint contractBalance = balanceOf(address(this));
        bool success;
        if (contractBalance == 0) {
            return;
        }
        if (contractBalance >= swapTokensAtAmount) {
            _swapTokensForEth(contractBalance);
            (success, ) = address(marketingWallet).call{value: address(this).balance}("");
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a5be8b1658c6bb9eabc00006006556003600a556005600b556103e86006546200002f9190620008d8565b600c5573844ea0a22513550cf4fbc9f4a4a5b2dbbdd19aa1600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009457600080fd5b506040518060400160405280600981526020017f46524f47532042455400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46524f4753000000000000000000000000000000000000000000000000000000815250816003908162000112919062000b80565b50806004908162000124919062000b80565b505050620001476200013b6200042260201b60201c565b6200042a60201b60201c565b6200015b33600654620004f060201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000244919062000cd1565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000328600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031c919062000cd1565b6200065d60201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200039d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006e560201b60201c565b620003bf620003b16200074060201b60201c565b60016200076a60201b60201c565b620003d23060016200076a60201b60201c565b620003e761dead60016200076a60201b60201c565b6200041c600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076a60201b60201c565b62001005565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000562576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005599062000d64565b60405180910390fd5b6200057660008383620007d560201b60201c565b80600260008282546200058a919062000d86565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063d919062000dd2565b60405180910390a36200065960008383620007da60201b60201c565b5050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630846040516020016200069892919062000e3f565b60405160208183030381529060405280519060200120604051602001620006c192919062000f49565b6040516020818303038152906040528051906020012060001c905080915050919050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200077a620007df60201b60201c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b620007ef6200042260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008156200074060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200086e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008659062000fe3565b60405180910390fd5b565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008e58262000870565b9150620008f28362000870565b9250826200090557620009046200087a565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099257607f821691505b602082108103620009a857620009a76200094a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d3565b62000a1e8683620009d3565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000a6162000a5b62000a558462000870565b62000a36565b62000870565b9050919050565b6000819050919050565b62000a7d8362000a40565b62000a9562000a8c8262000a68565b848454620009e0565b825550505050565b600090565b62000aac62000a9d565b62000ab981848462000a72565b505050565b5b8181101562000ae15762000ad560008262000aa2565b60018101905062000abf565b5050565b601f82111562000b305762000afa81620009ae565b62000b0584620009c3565b8101602085101562000b15578190505b62000b2d62000b2485620009c3565b83018262000abe565b50505b505050565b600082821c905092915050565b600062000b556000198460080262000b35565b1980831691505092915050565b600062000b70838362000b42565b9150826002028217905092915050565b62000b8b8262000910565b67ffffffffffffffff81111562000ba75762000ba66200091b565b5b62000bb3825462000979565b62000bc082828562000ae5565b600060209050601f83116001811462000bf8576000841562000be3578287015190505b62000bef858262000b62565b86555062000c5f565b601f19841662000c0886620009ae565b60005b8281101562000c325784890151825560018201915060208501945060208101905062000c0b565b8683101562000c52578489015162000c4e601f89168262000b42565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c998262000c6c565b9050919050565b62000cab8162000c8c565b811462000cb757600080fd5b50565b60008151905062000ccb8162000ca0565b92915050565b60006020828403121562000cea5762000ce962000c67565b5b600062000cfa8482850162000cba565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d4c601f8362000d03565b915062000d598262000d14565b602082019050919050565b6000602082019050818103600083015262000d7f8162000d3d565b9050919050565b600062000d938262000870565b915062000da08362000870565b925082820190508082111562000dbb5762000dba620008a9565b5b92915050565b62000dcc8162000870565b82525050565b600060208201905062000de9600083018462000dc1565b92915050565b60008160601b9050919050565b600062000e098262000def565b9050919050565b600062000e1d8262000dfc565b9050919050565b62000e3962000e338262000c8c565b62000e10565b82525050565b600062000e4d828562000e24565b60148201915062000e5f828462000e24565b6014820191508190509392505050565b600081905092915050565b7fff00000000000000000000000000000000000000000000000000000000000000600082015250565b600062000eb260018362000e6f565b915062000ebf8262000e7a565b600182019050919050565b6000819050919050565b6000819050919050565b62000ef362000eed8262000eca565b62000ed4565b82525050565b7f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f600082015250565b600062000f3160208362000e6f565b915062000f3e8262000ef9565b602082019050919050565b600062000f568262000ea3565b915062000f64828562000e24565b60148201915062000f76828462000ede565b60208201915062000f878262000f22565b91508190509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fcb60208362000d03565b915062000fd88262000f93565b602082019050919050565b6000602082019050818103600083015262000ffe8162000fbc565b9050919050565b6126f080620010156000396000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063b62496f51161008a578063e0f3ccf511610064578063e0f3ccf514610573578063e2f456051461059e578063e4748b9e146105c9578063f2fde38b146105f457610171565b8063b62496f5146104d0578063c02466681461050d578063dd62ed3e1461053657610171565b806375f0a874146103ac5780638da5cb5b146103d757806395d89b41146104025780639a7a23d61461042d578063a457c2d714610456578063a9059cbb1461049357610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d957806359d0f713146103045780635d098b381461032f57806370a0823114610358578063715018a61461039557610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61061d565b60405161019891906119b2565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611a6d565b6106af565b6040516101d59190611ac8565b60405180910390f35b3480156101ea57600080fd5b506101f36106d2565b6040516102009190611b42565b60405180910390f35b34801561021557600080fd5b5061021e6106f8565b60405161022b9190611b6c565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611b87565b610702565b6040516102689190611ac8565b60405180910390f35b34801561027d57600080fd5b50610286610731565b6040516102939190611bf6565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611a6d565b61073a565b6040516102d09190611ac8565b60405180910390f35b3480156102e557600080fd5b506102ee610771565b6040516102fb9190611c20565b60405180910390f35b34801561031057600080fd5b50610319610797565b6040516103269190611c20565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611c3b565b6107bd565b005b34801561036457600080fd5b5061037f600480360381019061037a9190611c3b565b610809565b60405161038c9190611b6c565b60405180910390f35b3480156103a157600080fd5b506103aa610851565b005b3480156103b857600080fd5b506103c1610865565b6040516103ce9190611c20565b60405180910390f35b3480156103e357600080fd5b506103ec61088b565b6040516103f99190611c20565b60405180910390f35b34801561040e57600080fd5b506104176108b5565b60405161042491906119b2565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190611c94565b610947565b005b34801561046257600080fd5b5061047d60048036038101906104789190611a6d565b6109ed565b60405161048a9190611ac8565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190611a6d565b610a64565b6040516104c79190611ac8565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611c3b565b610a87565b6040516105049190611ac8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611c94565b610aa7565b005b34801561054257600080fd5b5061055d60048036038101906105589190611cd4565b610b0a565b60405161056a9190611b6c565b60405180910390f35b34801561057f57600080fd5b50610588610b91565b6040516105959190611b6c565b60405180910390f35b3480156105aa57600080fd5b506105b3610b97565b6040516105c09190611b6c565b60405180910390f35b3480156105d557600080fd5b506105de610b9d565b6040516105eb9190611b6c565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190611c3b565b610ba3565b005b60606003805461062c90611d43565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611d43565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b6000806106ba610c26565b90506106c7818585610c2e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60008061070d610c26565b905061071a858285610df7565b610725858585610e83565b60019150509392505050565b60006012905090565b600080610745610c26565b90506107668185856107578589610b0a565b6107619190611da3565b610c2e565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107c56111fd565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108596111fd565b610863600061127b565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108c490611d43565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611d43565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b61094f6111fd565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690611e23565b60405180910390fd5b6109e98282611341565b5050565b6000806109f8610c26565b90506000610a068286610b0a565b905083811015610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290611eb5565b60405180910390fd5b610a588286868403610c2e565b60019250505092915050565b600080610a6f610c26565b9050610a7c818585610e83565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610aaf6111fd565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600c5481565b600a5481565b610bab6111fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611f47565b60405180910390fd5b610c238161127b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490611fd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d039061206b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dea9190611b6c565b60405180910390a3505050565b6000610e038484610b0a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e7d5781811015610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906120d7565b60405180910390fd5b610e7c8484848403610c2e565b5b50505050565b60008111610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90612169565b60405180910390fd5b600960149054906101000a900460ff16158015610f2d5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f835750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610fd95750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561101d576001600960146101000a81548160ff02191690831515021790555061100161139c565b6000600960146101000a81548160ff0219169083151502179055505b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561107a57506000600b54115b156110a0576064600b548361108f9190612189565b61109991906121fa565b905061111e565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156110fb57506000600a54115b1561111d576064600a54836111109190612189565b61111a91906121fa565b90505b5b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111bf5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c957600090505b60008111156111ec576111dd84308361145f565b80826111e9919061222b565b91505b6111f784848461145f565b50505050565b611205610c26565b73ffffffffffffffffffffffffffffffffffffffff1661122361088b565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906122ab565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006113a730610809565b905060008082036113b957505061145d565b600c54821061145a576113cb826116d5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611411906122fc565b60006040518083038185875af1925050503d806000811461144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5050809150505b50505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590612383565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490612415565b60405180910390fd5b611548838383611918565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906124a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116bc9190611b6c565b60405180910390a36116cf84848461191d565b50505050565b6000600267ffffffffffffffff8111156116f2576116f16124c7565b5b6040519080825280602002602001820160405280156117205781602001602082028036833780820191505090505b5090503081600081518110611738576117376124f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611803919061253a565b81600181518110611817576118166124f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061187e30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c2e565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016118e2959493929190612660565b600060405180830381600087803b1580156118fc57600080fd5b505af1158015611910573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561195c578082015181840152602081019050611941565b60008484015250505050565b6000601f19601f8301169050919050565b600061198482611922565b61198e818561192d565b935061199e81856020860161193e565b6119a781611968565b840191505092915050565b600060208201905081810360008301526119cc8184611979565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a04826119d9565b9050919050565b611a14816119f9565b8114611a1f57600080fd5b50565b600081359050611a3181611a0b565b92915050565b6000819050919050565b611a4a81611a37565b8114611a5557600080fd5b50565b600081359050611a6781611a41565b92915050565b60008060408385031215611a8457611a836119d4565b5b6000611a9285828601611a22565b9250506020611aa385828601611a58565b9150509250929050565b60008115159050919050565b611ac281611aad565b82525050565b6000602082019050611add6000830184611ab9565b92915050565b6000819050919050565b6000611b08611b03611afe846119d9565b611ae3565b6119d9565b9050919050565b6000611b1a82611aed565b9050919050565b6000611b2c82611b0f565b9050919050565b611b3c81611b21565b82525050565b6000602082019050611b576000830184611b33565b92915050565b611b6681611a37565b82525050565b6000602082019050611b816000830184611b5d565b92915050565b600080600060608486031215611ba057611b9f6119d4565b5b6000611bae86828701611a22565b9350506020611bbf86828701611a22565b9250506040611bd086828701611a58565b9150509250925092565b600060ff82169050919050565b611bf081611bda565b82525050565b6000602082019050611c0b6000830184611be7565b92915050565b611c1a816119f9565b82525050565b6000602082019050611c356000830184611c11565b92915050565b600060208284031215611c5157611c506119d4565b5b6000611c5f84828501611a22565b91505092915050565b611c7181611aad565b8114611c7c57600080fd5b50565b600081359050611c8e81611c68565b92915050565b60008060408385031215611cab57611caa6119d4565b5b6000611cb985828601611a22565b9250506020611cca85828601611c7f565b9150509250929050565b60008060408385031215611ceb57611cea6119d4565b5b6000611cf985828601611a22565b9250506020611d0a85828601611a22565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d5b57607f821691505b602082108103611d6e57611d6d611d14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dae82611a37565b9150611db983611a37565b9250828201905080821115611dd157611dd0611d74565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f766564000000000000600082015250565b6000611e0d601a8361192d565b9150611e1882611dd7565b602082019050919050565b60006020820190508181036000830152611e3c81611e00565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e9f60258361192d565b9150611eaa82611e43565b604082019050919050565b60006020820190508181036000830152611ece81611e92565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f3160268361192d565b9150611f3c82611ed5565b604082019050919050565b60006020820190508181036000830152611f6081611f24565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fc360248361192d565b9150611fce82611f67565b604082019050919050565b60006020820190508181036000830152611ff281611fb6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061205560228361192d565b915061206082611ff9565b604082019050919050565b6000602082019050818103600083015261208481612048565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120c1601d8361192d565b91506120cc8261208b565b602082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061215360298361192d565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b600061219482611a37565b915061219f83611a37565b92508282026121ad81611a37565b915082820484148315176121c4576121c3611d74565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061220582611a37565b915061221083611a37565b9250826122205761221f6121cb565b5b828204905092915050565b600061223682611a37565b915061224183611a37565b925082820390508181111561225957612258611d74565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061229560208361192d565b91506122a08261225f565b602082019050919050565b600060208201905081810360008301526122c481612288565b9050919050565b600081905092915050565b50565b60006122e66000836122cb565b91506122f1826122d6565b600082019050919050565b6000612307826122d9565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061236d60258361192d565b915061237882612311565b604082019050919050565b6000602082019050818103600083015261239c81612360565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123ff60238361192d565b915061240a826123a3565b604082019050919050565b6000602082019050818103600083015261242e816123f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061249160268361192d565b915061249c82612435565b604082019050919050565b600060208201905081810360008301526124c081612484565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253481611a0b565b92915050565b6000602082840312156125505761254f6119d4565b5b600061255e84828501612525565b91505092915050565b6000819050919050565b600061258c61258761258284612567565b611ae3565b611a37565b9050919050565b61259c81612571565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d7816119f9565b82525050565b60006125e983836125ce565b60208301905092915050565b6000602082019050919050565b600061260d826125a2565b61261781856125ad565b9350612622836125be565b8060005b8381101561265357815161263a88826125dd565b9750612645836125f5565b925050600181019050612626565b5085935050505092915050565b600060a0820190506126756000830188611b5d565b6126826020830187612593565b81810360408301526126948186612602565b90506126a36060830185611c11565b6126b06080830184611b5d565b969550505050505056fea26469706673582212203c630500dca46d08fd620bca360b6a0db68ad68ceee40c9ae9cca5fdd31193cb64736f6c63430008120033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063b62496f51161008a578063e0f3ccf511610064578063e0f3ccf514610573578063e2f456051461059e578063e4748b9e146105c9578063f2fde38b146105f457610171565b8063b62496f5146104d0578063c02466681461050d578063dd62ed3e1461053657610171565b806375f0a874146103ac5780638da5cb5b146103d757806395d89b41146104025780639a7a23d61461042d578063a457c2d714610456578063a9059cbb1461049357610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d957806359d0f713146103045780635d098b381461032f57806370a0823114610358578063715018a61461039557610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61061d565b60405161019891906119b2565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611a6d565b6106af565b6040516101d59190611ac8565b60405180910390f35b3480156101ea57600080fd5b506101f36106d2565b6040516102009190611b42565b60405180910390f35b34801561021557600080fd5b5061021e6106f8565b60405161022b9190611b6c565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611b87565b610702565b6040516102689190611ac8565b60405180910390f35b34801561027d57600080fd5b50610286610731565b6040516102939190611bf6565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611a6d565b61073a565b6040516102d09190611ac8565b60405180910390f35b3480156102e557600080fd5b506102ee610771565b6040516102fb9190611c20565b60405180910390f35b34801561031057600080fd5b50610319610797565b6040516103269190611c20565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611c3b565b6107bd565b005b34801561036457600080fd5b5061037f600480360381019061037a9190611c3b565b610809565b60405161038c9190611b6c565b60405180910390f35b3480156103a157600080fd5b506103aa610851565b005b3480156103b857600080fd5b506103c1610865565b6040516103ce9190611c20565b60405180910390f35b3480156103e357600080fd5b506103ec61088b565b6040516103f99190611c20565b60405180910390f35b34801561040e57600080fd5b506104176108b5565b60405161042491906119b2565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190611c94565b610947565b005b34801561046257600080fd5b5061047d60048036038101906104789190611a6d565b6109ed565b60405161048a9190611ac8565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190611a6d565b610a64565b6040516104c79190611ac8565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611c3b565b610a87565b6040516105049190611ac8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611c94565b610aa7565b005b34801561054257600080fd5b5061055d60048036038101906105589190611cd4565b610b0a565b60405161056a9190611b6c565b60405180910390f35b34801561057f57600080fd5b50610588610b91565b6040516105959190611b6c565b60405180910390f35b3480156105aa57600080fd5b506105b3610b97565b6040516105c09190611b6c565b60405180910390f35b3480156105d557600080fd5b506105de610b9d565b6040516105eb9190611b6c565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190611c3b565b610ba3565b005b60606003805461062c90611d43565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611d43565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b6000806106ba610c26565b90506106c7818585610c2e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60008061070d610c26565b905061071a858285610df7565b610725858585610e83565b60019150509392505050565b60006012905090565b600080610745610c26565b90506107668185856107578589610b0a565b6107619190611da3565b610c2e565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107c56111fd565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108596111fd565b610863600061127b565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108c490611d43565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611d43565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b5050505050905090565b61094f6111fd565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690611e23565b60405180910390fd5b6109e98282611341565b5050565b6000806109f8610c26565b90506000610a068286610b0a565b905083811015610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290611eb5565b60405180910390fd5b610a588286868403610c2e565b60019250505092915050565b600080610a6f610c26565b9050610a7c818585610e83565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610aaf6111fd565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600c5481565b600a5481565b610bab6111fd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190611f47565b60405180910390fd5b610c238161127b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490611fd9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d039061206b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dea9190611b6c565b60405180910390a3505050565b6000610e038484610b0a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e7d5781811015610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906120d7565b60405180910390fd5b610e7c8484848403610c2e565b5b50505050565b60008111610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90612169565b60405180910390fd5b600960149054906101000a900460ff16158015610f2d5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f835750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610fd95750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561101d576001600960146101000a81548160ff02191690831515021790555061100161139c565b6000600960146101000a81548160ff0219169083151502179055505b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561107a57506000600b54115b156110a0576064600b548361108f9190612189565b61109991906121fa565b905061111e565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156110fb57506000600a54115b1561111d576064600a54836111109190612189565b61111a91906121fa565b90505b5b600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111bf5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c957600090505b60008111156111ec576111dd84308361145f565b80826111e9919061222b565b91505b6111f784848461145f565b50505050565b611205610c26565b73ffffffffffffffffffffffffffffffffffffffff1661122361088b565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611270906122ab565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006113a730610809565b905060008082036113b957505061145d565b600c54821061145a576113cb826116d5565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611411906122fc565b60006040518083038185875af1925050503d806000811461144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5050809150505b50505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590612383565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490612415565b60405180910390fd5b611548838383611918565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906124a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116bc9190611b6c565b60405180910390a36116cf84848461191d565b50505050565b6000600267ffffffffffffffff8111156116f2576116f16124c7565b5b6040519080825280602002602001820160405280156117205781602001602082028036833780820191505090505b5090503081600081518110611738576117376124f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611803919061253a565b81600181518110611817576118166124f6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061187e30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c2e565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016118e2959493929190612660565b600060405180830381600087803b1580156118fc57600080fd5b505af1158015611910573d6000803e3d6000fd5b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561195c578082015181840152602081019050611941565b60008484015250505050565b6000601f19601f8301169050919050565b600061198482611922565b61198e818561192d565b935061199e81856020860161193e565b6119a781611968565b840191505092915050565b600060208201905081810360008301526119cc8184611979565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a04826119d9565b9050919050565b611a14816119f9565b8114611a1f57600080fd5b50565b600081359050611a3181611a0b565b92915050565b6000819050919050565b611a4a81611a37565b8114611a5557600080fd5b50565b600081359050611a6781611a41565b92915050565b60008060408385031215611a8457611a836119d4565b5b6000611a9285828601611a22565b9250506020611aa385828601611a58565b9150509250929050565b60008115159050919050565b611ac281611aad565b82525050565b6000602082019050611add6000830184611ab9565b92915050565b6000819050919050565b6000611b08611b03611afe846119d9565b611ae3565b6119d9565b9050919050565b6000611b1a82611aed565b9050919050565b6000611b2c82611b0f565b9050919050565b611b3c81611b21565b82525050565b6000602082019050611b576000830184611b33565b92915050565b611b6681611a37565b82525050565b6000602082019050611b816000830184611b5d565b92915050565b600080600060608486031215611ba057611b9f6119d4565b5b6000611bae86828701611a22565b9350506020611bbf86828701611a22565b9250506040611bd086828701611a58565b9150509250925092565b600060ff82169050919050565b611bf081611bda565b82525050565b6000602082019050611c0b6000830184611be7565b92915050565b611c1a816119f9565b82525050565b6000602082019050611c356000830184611c11565b92915050565b600060208284031215611c5157611c506119d4565b5b6000611c5f84828501611a22565b91505092915050565b611c7181611aad565b8114611c7c57600080fd5b50565b600081359050611c8e81611c68565b92915050565b60008060408385031215611cab57611caa6119d4565b5b6000611cb985828601611a22565b9250506020611cca85828601611c7f565b9150509250929050565b60008060408385031215611ceb57611cea6119d4565b5b6000611cf985828601611a22565b9250506020611d0a85828601611a22565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d5b57607f821691505b602082108103611d6e57611d6d611d14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dae82611a37565b9150611db983611a37565b9250828201905080821115611dd157611dd0611d74565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f766564000000000000600082015250565b6000611e0d601a8361192d565b9150611e1882611dd7565b602082019050919050565b60006020820190508181036000830152611e3c81611e00565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e9f60258361192d565b9150611eaa82611e43565b604082019050919050565b60006020820190508181036000830152611ece81611e92565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f3160268361192d565b9150611f3c82611ed5565b604082019050919050565b60006020820190508181036000830152611f6081611f24565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fc360248361192d565b9150611fce82611f67565b604082019050919050565b60006020820190508181036000830152611ff281611fb6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061205560228361192d565b915061206082611ff9565b604082019050919050565b6000602082019050818103600083015261208481612048565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120c1601d8361192d565b91506120cc8261208b565b602082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061215360298361192d565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b600061219482611a37565b915061219f83611a37565b92508282026121ad81611a37565b915082820484148315176121c4576121c3611d74565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061220582611a37565b915061221083611a37565b9250826122205761221f6121cb565b5b828204905092915050565b600061223682611a37565b915061224183611a37565b925082820390508181111561225957612258611d74565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061229560208361192d565b91506122a08261225f565b602082019050919050565b600060208201905081810360008301526122c481612288565b9050919050565b600081905092915050565b50565b60006122e66000836122cb565b91506122f1826122d6565b600082019050919050565b6000612307826122d9565b9150819050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061236d60258361192d565b915061237882612311565b604082019050919050565b6000602082019050818103600083015261239c81612360565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123ff60238361192d565b915061240a826123a3565b604082019050919050565b6000602082019050818103600083015261242e816123f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061249160268361192d565b915061249c82612435565b604082019050919050565b600060208201905081810360008301526124c081612484565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061253481611a0b565b92915050565b6000602082840312156125505761254f6119d4565b5b600061255e84828501612525565b91505092915050565b6000819050919050565b600061258c61258761258284612567565b611ae3565b611a37565b9050919050565b61259c81612571565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125d7816119f9565b82525050565b60006125e983836125ce565b60208301905092915050565b6000602082019050919050565b600061260d826125a2565b61261781856125ad565b9350612622836125be565b8060005b8381101561265357815161263a88826125dd565b9750612645836125f5565b925050600181019050612626565b5085935050505092915050565b600060a0820190506126756000830188611b5d565b6126826020830187612593565b81810360408301526126948186612602565b90506126a36060830185611c11565b6126b06080830184611b5d565b969550505050505056fea26469706673582212203c630500dca46d08fd620bca360b6a0db68ad68ceee40c9ae9cca5fdd31193cb64736f6c63430008120033

Deployed Bytecode Sourcemap

20970:4347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21060:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10471:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10313:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13187:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21108:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21143:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22568:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10642:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;21506:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9570:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13928:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10975:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21436:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22680:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11231:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21244:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21278:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21211:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9351:100;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;11802:13;11818:12;:10;:12::i;:::-;11802:28;;11841:32;11850:5;11857:7;11866:6;11841:8;:32::i;:::-;11891:4;11884:11;;;11702:201;;;;:::o;21060:41::-;;;;;;;;;;;;;:::o;10471:108::-;10532:7;10559:12;;10552:19;;10471:108;:::o;12483:295::-;12614:4;12631:15;12649:12;:10;:12::i;:::-;12631:30;;12672:38;12688:4;12694:7;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;12766:4;12759:11;;;12483:295;;;;;:::o;10313:93::-;10371:5;10396:2;10389:9;;10313:93;:::o;13187:238::-;13275:4;13292:13;13308:12;:10;:12::i;:::-;13292:28;;13331:64;13340:5;13347:7;13384:10;13356:25;13366:5;13373:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;:::-;13413:4;13406:11;;;13187:238;;;;:::o;21108:28::-;;;;;;;;;;;;;:::o;21143:31::-;;;;;;;;;;;;;:::o;22568:104::-;2014:13;:11;:13::i;:::-;22658:6:::1;22640:15;;:24;;;;;;;;;;;;;;;;;;22568:104:::0;:::o;10642:127::-;10716:7;10743:9;:18;10753:7;10743:18;;;;;;;;;;;;;;;;10736:25;;10642:127;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;21506:75::-;;;;;;;;;;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570:104;:::o;22209:211::-;2014:13;:11;:13::i;:::-;22316::::1;;;;;;;;;;;22308:21;;:4;:21;;::::0;22300:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22371:41;22400:4;22406:5;22371:28;:41::i;:::-;22209:211:::0;;:::o;13928:436::-;14021:4;14038:13;14054:12;:10;:12::i;:::-;14038:28;;14077:24;14104:25;14114:5;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;:::-;14352:4;14345:11;;;;13928:436;;;;:::o;10975:193::-;11054:4;11071:13;11087:12;:10;:12::i;:::-;11071:28;;11110;11120:5;11127:2;11131:6;11110:9;:28::i;:::-;11156:4;11149:11;;;10975:193;;;;:::o;21436:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;22680:132::-;2014:13;:11;:13::i;:::-;22796:8:::1;22765:19;:28;22785:7;22765:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;22680:132:::0;;:::o;11231:151::-;11320:7;11347:11;:18;11359:5;11347:18;;;;;;;;;;;;;;;:27;11366:7;11347:27;;;;;;;;;;;;;;;;11340:34;;11231:151;;;;:::o;21244:27::-;;;;:::o;21278:55::-;;;;:::o;21211:26::-;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17955:380::-;18108:1;18091:19;;:5;:19;;;18083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18189:1;18170:21;;:7;:21;;;18162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18273:6;18243:11;:18;18255:5;18243:18;;;;;;;;;;;;;;;:27;18262:7;18243:27;;;;;;;;;;;;;;;:36;;;;18311:7;18295:32;;18304:5;18295:32;;;18320:6;18295:32;;;;;;:::i;:::-;;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;18848:17;18828:16;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18824:248;18750:329;18626:453;;;:::o;23232:1197::-;23339:1;23330:6;:10;23322:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23418:8;;;;;;;;;;;23417:9;:58;;;;;23444:25;:31;23470:4;23444:31;;;;;;;;;;;;;;;;;;;;;;;;;23443:32;23417:58;:101;;;;;23493:19;:25;23513:4;23493:25;;;;;;;;;;;;;;;;;;;;;;;;;23492:26;23417:101;:142;;;;;23536:19;:23;23556:2;23536:23;;;;;;;;;;;;;;;;;;;;;;;;;23535:24;23417:142;23399:271;;;23597:4;23586:8;;:15;;;;;;;;;;;;;;;;;;23616:11;:9;:11::i;:::-;23653:5;23642:8;;:16;;;;;;;;;;;;;;;;;;23399:271;23682:12;23809:25;:29;23835:2;23809:29;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;23853:1;23842:8;;:12;23809:45;23805:250;;;23898:3;23887:8;;23878:6;:17;;;;:::i;:::-;:23;;;;:::i;:::-;23871:30;;23805:250;;;23951:25;:31;23977:4;23951:31;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;23996:1;23986:7;;:11;23951:46;23947:108;;;24040:3;24030:7;;24021:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;24014:29;;23947:108;23805:250;24156:19;:25;24176:4;24156:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;24185:19;:23;24205:2;24185:23;;;;;;;;;;;;;;;;;;;;;;;;;24156:52;24152:93;;;24232:1;24225:8;;24152:93;24268:1;24261:4;:8;24257:112;;;24286:42;24302:4;24316;24323;24286:15;:42::i;:::-;24353:4;24343:14;;;;;:::i;:::-;;;24257:112;24388:33;24404:4;24410:2;24414:6;24388:15;:33::i;:::-;23311:1118;23232:1197;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;22429:131::-;22547:5;22513:25;:31;22539:4;22513:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;22429:131;;:::o;24918:394::-;24959:20;24982:24;25000:4;24982:9;:24::i;:::-;24959:47;;25017:12;25063:1;25044:15;:20;25040:59;;25081:7;;;;25040:59;25132:18;;25113:15;:37;25109:196;;25167:34;25185:15;25167:17;:34::i;:::-;25238:15;;;;;;;;;;;25230:29;;25267:21;25230:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25216:77;;;;;25109:196;24948:364;;24918:394;:::o;14834:840::-;14981:1;14965:18;;:4;:18;;;14957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15058:1;15044:16;;:2;:16;;;15036:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:38;15134:4;15140:2;15144:6;15113:20;:38::i;:::-;15164:19;15186:9;:15;15196:4;15186:15;;;;;;;;;;;;;;;;15164:37;;15235:6;15220:11;:21;;15212:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:6;15338:11;:20;15320:9;:15;15330:4;15320:15;;;;;;;;;;;;;;;:38;;;;15555:6;15538:9;:13;15548:2;15538:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15605:2;15590:26;;15599:4;15590:26;;;15609:6;15590:26;;;;;;:::i;:::-;;;;;;;;15629:37;15649:4;15655:2;15659:6;15629:19;:37::i;:::-;14946:728;14834:840;;;:::o;24437:473::-;24505:21;24543:1;24529:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24505:40;;24574:4;24556;24561:1;24556:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;24600:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24590:4;24595:1;24590:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;24633:62;24650:4;24665:15;;;;;;;;;;;24683:11;24633:8;:62::i;:::-;24706:15;;;;;;;;;;;:66;;;24787:11;24813:1;24829:4;24856;24876:15;24706:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:416;24437:473;:::o;19679:125::-;;;;:::o;20408:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:116::-;6583:21;6598:5;6583:21;:::i;:::-;6576:5;6573:32;6563:60;;6619:1;6616;6609:12;6563:60;6513:116;:::o;6635:133::-;6678:5;6716:6;6703:20;6694:29;;6732:30;6756:5;6732:30;:::i;:::-;6635:133;;;;:::o;6774:468::-;6839:6;6847;6896:2;6884:9;6875:7;6871:23;6867:32;6864:119;;;6902:79;;:::i;:::-;6864:119;7022:1;7047:53;7092:7;7083:6;7072:9;7068:22;7047:53;:::i;:::-;7037:63;;6993:117;7149:2;7175:50;7217:7;7208:6;7197:9;7193:22;7175:50;:::i;:::-;7165:60;;7120:115;6774:468;;;;;:::o;7248:474::-;7316:6;7324;7373:2;7361:9;7352:7;7348:23;7344:32;7341:119;;;7379:79;;:::i;:::-;7341:119;7499:1;7524:53;7569:7;7560:6;7549:9;7545:22;7524:53;:::i;:::-;7514:63;;7470:117;7626:2;7652:53;7697:7;7688:6;7677:9;7673:22;7652:53;:::i;:::-;7642:63;;7597:118;7248:474;;;;;:::o;7728:180::-;7776:77;7773:1;7766:88;7873:4;7870:1;7863:15;7897:4;7894:1;7887:15;7914:320;7958:6;7995:1;7989:4;7985:12;7975:22;;8042:1;8036:4;8032:12;8063:18;8053:81;;8119:4;8111:6;8107:17;8097:27;;8053:81;8181:2;8173:6;8170:14;8150:18;8147:38;8144:84;;8200:18;;:::i;:::-;8144:84;7965:269;7914:320;;;:::o;8240:180::-;8288:77;8285:1;8278:88;8385:4;8382:1;8375:15;8409:4;8406:1;8399:15;8426:191;8466:3;8485:20;8503:1;8485:20;:::i;:::-;8480:25;;8519:20;8537:1;8519:20;:::i;:::-;8514:25;;8562:1;8559;8555:9;8548:16;;8583:3;8580:1;8577:10;8574:36;;;8590:18;;:::i;:::-;8574:36;8426:191;;;;:::o;8623:176::-;8763:28;8759:1;8751:6;8747:14;8740:52;8623:176;:::o;8805:366::-;8947:3;8968:67;9032:2;9027:3;8968:67;:::i;:::-;8961:74;;9044:93;9133:3;9044:93;:::i;:::-;9162:2;9157:3;9153:12;9146:19;;8805:366;;;:::o;9177:419::-;9343:4;9381:2;9370:9;9366:18;9358:26;;9430:9;9424:4;9420:20;9416:1;9405:9;9401:17;9394:47;9458:131;9584:4;9458:131;:::i;:::-;9450:139;;9177:419;;;:::o;9602:224::-;9742:34;9738:1;9730:6;9726:14;9719:58;9811:7;9806:2;9798:6;9794:15;9787:32;9602:224;:::o;9832:366::-;9974:3;9995:67;10059:2;10054:3;9995:67;:::i;:::-;9988:74;;10071:93;10160:3;10071:93;:::i;:::-;10189:2;10184:3;10180:12;10173:19;;9832:366;;;:::o;10204:419::-;10370:4;10408:2;10397:9;10393:18;10385:26;;10457:9;10451:4;10447:20;10443:1;10432:9;10428:17;10421:47;10485:131;10611:4;10485:131;:::i;:::-;10477:139;;10204:419;;;:::o;10629:225::-;10769:34;10765:1;10757:6;10753:14;10746:58;10838:8;10833:2;10825:6;10821:15;10814:33;10629:225;:::o;10860:366::-;11002:3;11023:67;11087:2;11082:3;11023:67;:::i;:::-;11016:74;;11099:93;11188:3;11099:93;:::i;:::-;11217:2;11212:3;11208:12;11201:19;;10860:366;;;:::o;11232:419::-;11398:4;11436:2;11425:9;11421:18;11413:26;;11485:9;11479:4;11475:20;11471:1;11460:9;11456:17;11449:47;11513:131;11639:4;11513:131;:::i;:::-;11505:139;;11232:419;;;:::o;11657:223::-;11797:34;11793:1;11785:6;11781:14;11774:58;11866:6;11861:2;11853:6;11849:15;11842:31;11657:223;:::o;11886:366::-;12028:3;12049:67;12113:2;12108:3;12049:67;:::i;:::-;12042:74;;12125:93;12214:3;12125:93;:::i;:::-;12243:2;12238:3;12234:12;12227:19;;11886:366;;;:::o;12258:419::-;12424:4;12462:2;12451:9;12447:18;12439:26;;12511:9;12505:4;12501:20;12497:1;12486:9;12482:17;12475:47;12539:131;12665:4;12539:131;:::i;:::-;12531:139;;12258:419;;;:::o;12683:221::-;12823:34;12819:1;12811:6;12807:14;12800:58;12892:4;12887:2;12879:6;12875:15;12868:29;12683:221;:::o;12910:366::-;13052:3;13073:67;13137:2;13132:3;13073:67;:::i;:::-;13066:74;;13149:93;13238:3;13149:93;:::i;:::-;13267:2;13262:3;13258:12;13251:19;;12910:366;;;:::o;13282:419::-;13448:4;13486:2;13475:9;13471:18;13463:26;;13535:9;13529:4;13525:20;13521:1;13510:9;13506:17;13499:47;13563:131;13689:4;13563:131;:::i;:::-;13555:139;;13282:419;;;:::o;13707:179::-;13847:31;13843:1;13835:6;13831:14;13824:55;13707:179;:::o;13892:366::-;14034:3;14055:67;14119:2;14114:3;14055:67;:::i;:::-;14048:74;;14131:93;14220:3;14131:93;:::i;:::-;14249:2;14244:3;14240:12;14233:19;;13892:366;;;:::o;14264:419::-;14430:4;14468:2;14457:9;14453:18;14445:26;;14517:9;14511:4;14507:20;14503:1;14492:9;14488:17;14481:47;14545:131;14671:4;14545:131;:::i;:::-;14537:139;;14264:419;;;:::o;14689:228::-;14829:34;14825:1;14817:6;14813:14;14806:58;14898:11;14893:2;14885:6;14881:15;14874:36;14689:228;:::o;14923:366::-;15065:3;15086:67;15150:2;15145:3;15086:67;:::i;:::-;15079:74;;15162:93;15251:3;15162:93;:::i;:::-;15280:2;15275:3;15271:12;15264:19;;14923:366;;;:::o;15295:419::-;15461:4;15499:2;15488:9;15484:18;15476:26;;15548:9;15542:4;15538:20;15534:1;15523:9;15519:17;15512:47;15576:131;15702:4;15576:131;:::i;:::-;15568:139;;15295:419;;;:::o;15720:410::-;15760:7;15783:20;15801:1;15783:20;:::i;:::-;15778:25;;15817:20;15835:1;15817:20;:::i;:::-;15812:25;;15872:1;15869;15865:9;15894:30;15912:11;15894:30;:::i;:::-;15883:41;;16073:1;16064:7;16060:15;16057:1;16054:22;16034:1;16027:9;16007:83;15984:139;;16103:18;;:::i;:::-;15984:139;15768:362;15720:410;;;;:::o;16136:180::-;16184:77;16181:1;16174:88;16281:4;16278:1;16271:15;16305:4;16302:1;16295:15;16322:185;16362:1;16379:20;16397:1;16379:20;:::i;:::-;16374:25;;16413:20;16431:1;16413:20;:::i;:::-;16408:25;;16452:1;16442:35;;16457:18;;:::i;:::-;16442:35;16499:1;16496;16492:9;16487:14;;16322:185;;;;:::o;16513:194::-;16553:4;16573:20;16591:1;16573:20;:::i;:::-;16568:25;;16607:20;16625:1;16607:20;:::i;:::-;16602:25;;16651:1;16648;16644:9;16636:17;;16675:1;16669:4;16666:11;16663:37;;;16680:18;;:::i;:::-;16663:37;16513:194;;;;:::o;16713:182::-;16853:34;16849:1;16841:6;16837:14;16830:58;16713:182;:::o;16901:366::-;17043:3;17064:67;17128:2;17123:3;17064:67;:::i;:::-;17057:74;;17140:93;17229:3;17140:93;:::i;:::-;17258:2;17253:3;17249:12;17242:19;;16901:366;;;:::o;17273:419::-;17439:4;17477:2;17466:9;17462:18;17454:26;;17526:9;17520:4;17516:20;17512:1;17501:9;17497:17;17490:47;17554:131;17680:4;17554:131;:::i;:::-;17546:139;;17273:419;;;:::o;17698:147::-;17799:11;17836:3;17821:18;;17698:147;;;;:::o;17851:114::-;;:::o;17971:398::-;18130:3;18151:83;18232:1;18227:3;18151:83;:::i;:::-;18144:90;;18243:93;18332:3;18243:93;:::i;:::-;18361:1;18356:3;18352:11;18345:18;;17971:398;;;:::o;18375:379::-;18559:3;18581:147;18724:3;18581:147;:::i;:::-;18574:154;;18745:3;18738:10;;18375:379;;;:::o;18760:224::-;18900:34;18896:1;18888:6;18884:14;18877:58;18969:7;18964:2;18956:6;18952:15;18945:32;18760:224;:::o;18990:366::-;19132:3;19153:67;19217:2;19212:3;19153:67;:::i;:::-;19146:74;;19229:93;19318:3;19229:93;:::i;:::-;19347:2;19342:3;19338:12;19331:19;;18990:366;;;:::o;19362:419::-;19528:4;19566:2;19555:9;19551:18;19543:26;;19615:9;19609:4;19605:20;19601:1;19590:9;19586:17;19579:47;19643:131;19769:4;19643:131;:::i;:::-;19635:139;;19362:419;;;:::o;19787:222::-;19927:34;19923:1;19915:6;19911:14;19904:58;19996:5;19991:2;19983:6;19979:15;19972:30;19787:222;:::o;20015:366::-;20157:3;20178:67;20242:2;20237:3;20178:67;:::i;:::-;20171:74;;20254:93;20343:3;20254:93;:::i;:::-;20372:2;20367:3;20363:12;20356:19;;20015:366;;;:::o;20387:419::-;20553:4;20591:2;20580:9;20576:18;20568:26;;20640:9;20634:4;20630:20;20626:1;20615:9;20611:17;20604:47;20668:131;20794:4;20668:131;:::i;:::-;20660:139;;20387:419;;;:::o;20812:225::-;20952:34;20948:1;20940:6;20936:14;20929:58;21021:8;21016:2;21008:6;21004:15;20997:33;20812:225;:::o;21043:366::-;21185:3;21206:67;21270:2;21265:3;21206:67;:::i;:::-;21199:74;;21282:93;21371:3;21282:93;:::i;:::-;21400:2;21395:3;21391:12;21384:19;;21043:366;;;:::o;21415:419::-;21581:4;21619:2;21608:9;21604:18;21596:26;;21668:9;21662:4;21658:20;21654:1;21643:9;21639:17;21632:47;21696:131;21822:4;21696:131;:::i;:::-;21688:139;;21415:419;;;:::o;21840:180::-;21888:77;21885:1;21878:88;21985:4;21982:1;21975:15;22009:4;22006:1;21999:15;22026:180;22074:77;22071:1;22064:88;22171:4;22168:1;22161:15;22195:4;22192:1;22185:15;22212:143;22269:5;22300:6;22294:13;22285:22;;22316:33;22343:5;22316:33;:::i;:::-;22212:143;;;;:::o;22361:351::-;22431:6;22480:2;22468:9;22459:7;22455:23;22451:32;22448:119;;;22486:79;;:::i;:::-;22448:119;22606:1;22631:64;22687:7;22678:6;22667:9;22663:22;22631:64;:::i;:::-;22621:74;;22577:128;22361:351;;;;:::o;22718:85::-;22763:7;22792:5;22781:16;;22718:85;;;:::o;22809:158::-;22867:9;22900:61;22918:42;22927:32;22953:5;22927:32;:::i;:::-;22918:42;:::i;:::-;22900:61;:::i;:::-;22887:74;;22809:158;;;:::o;22973:147::-;23068:45;23107:5;23068:45;:::i;:::-;23063:3;23056:58;22973:147;;:::o;23126:114::-;23193:6;23227:5;23221:12;23211:22;;23126:114;;;:::o;23246:184::-;23345:11;23379:6;23374:3;23367:19;23419:4;23414:3;23410:14;23395:29;;23246:184;;;;:::o;23436:132::-;23503:4;23526:3;23518:11;;23556:4;23551:3;23547:14;23539:22;;23436:132;;;:::o;23574:108::-;23651:24;23669:5;23651:24;:::i;:::-;23646:3;23639:37;23574:108;;:::o;23688:179::-;23757:10;23778:46;23820:3;23812:6;23778:46;:::i;:::-;23856:4;23851:3;23847:14;23833:28;;23688:179;;;;:::o;23873:113::-;23943:4;23975;23970:3;23966:14;23958:22;;23873:113;;;:::o;24022:732::-;24141:3;24170:54;24218:5;24170:54;:::i;:::-;24240:86;24319:6;24314:3;24240:86;:::i;:::-;24233:93;;24350:56;24400:5;24350:56;:::i;:::-;24429:7;24460:1;24445:284;24470:6;24467:1;24464:13;24445:284;;;24546:6;24540:13;24573:63;24632:3;24617:13;24573:63;:::i;:::-;24566:70;;24659:60;24712:6;24659:60;:::i;:::-;24649:70;;24505:224;24492:1;24489;24485:9;24480:14;;24445:284;;;24449:14;24745:3;24738:10;;24146:608;;;24022:732;;;;:::o;24760:831::-;25023:4;25061:3;25050:9;25046:19;25038:27;;25075:71;25143:1;25132:9;25128:17;25119:6;25075:71;:::i;:::-;25156:80;25232:2;25221:9;25217:18;25208:6;25156:80;:::i;:::-;25283:9;25277:4;25273:20;25268:2;25257:9;25253:18;25246:48;25311:108;25414:4;25405:6;25311:108;:::i;:::-;25303:116;;25429:72;25497:2;25486:9;25482:18;25473:6;25429:72;:::i;:::-;25511:73;25579:3;25568:9;25564:19;25555:6;25511:73;:::i;:::-;24760:831;;;;;;;;:::o

Swarm Source

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