ETH Price: $3,077.30 (-4.10%)
Gas: 7 Gwei

Token

Anti Social (DEGENERATE)
 

Overview

Max Total Supply

100,000 DEGENERATE

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
849.178125273 DEGENERATE

Value
$0.00
0x1E9df8B502d1567fd184B90C7E96755BAf605F1A
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:
DEGENERATE

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-23
*/

// SPDX-License-Identifier: MIT


pragma solidity 0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

/**
 * @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 DEGENERATE is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Anti Social";
    string private _symbol = "DEGENERATE";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000;
    uint256 public taxForLiquidity = 4;
    uint256 public taxForMarketing = 0;
    uint256 public maxTxAmount = 1000 * 10**_decimals;
    uint256 public maxWalletAmount = 1000 * 10**_decimals;
    address public marketingWallet = 0x7E1C3638775acC941a10BD55321F14eBbE13661D;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 500000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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 + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    receive() external payable {}
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"}]

60c06040526040518060400160405280600b81526020017f416e746920536f6369616c000000000000000000000000000000000000000000815250600690816200004a919062000b38565b506040518060400160405280600a81526020017f444547454e4552415445000000000000000000000000000000000000000000008152506007908162000091919062000b38565b506009600860006101000a81548160ff021916908360ff160217905550620186a06009556004600a556000600b55600860009054906101000a900460ff16600a620000dd919062000daf565b6103e8620000ec919062000e00565b600c55600860009054906101000a900460ff16600a6200010d919062000daf565b6103e86200011c919062000e00565b600d55737e1c3638775acc941a10bd55321f14ebbe13661d600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a62000197919062000daf565b6207a120620001a7919062000e00565b601155600860009054906101000a900460ff16600a620001c8919062000daf565b62030d40620001d8919062000e00565b601255348015620001e857600080fd5b5060068054620001f89062000927565b80601f0160208091040260200160405190810160405280929190818152602001828054620002269062000927565b8015620002775780601f106200024b5761010080835404028352916020019162000277565b820191906000526020600020905b8154815290600101906020018083116200025957829003601f168201915b5050505050600780546200028b9062000927565b80601f0160208091040260200160405190810160405280929190818152602001828054620002b99062000927565b80156200030a5780601f10620002de576101008083540402835291602001916200030a565b820191906000526020600020905b815481529060010190602001808311620002ec57829003601f168201915b5050505050816003908162000320919062000b38565b50806004908162000332919062000b38565b5050506200035562000349620006ab60201b60201c565b620006b360201b60201c565b6200039333600860009054906101000a900460ff16600a62000378919062000daf565b60095462000387919062000e00565b6200077960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041e919062000ecb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000486573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ac919062000ecb565b6040518363ffffffff1660e01b8152600401620004cb92919062000f0e565b6020604051808303816000875af1158015620004eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000511919062000ecb565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016010600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001027565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e29062000f9c565b60405180910390fd5b8060026000828254620007ff919062000fbe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008b291906200100a565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094057607f821691505b602082108103620009565762000955620008f8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000981565b620009cc868362000981565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1962000a1362000a0d84620009e4565b620009ee565b620009e4565b9050919050565b6000819050919050565b62000a3583620009f8565b62000a4d62000a448262000a20565b8484546200098e565b825550505050565b600090565b62000a6462000a55565b62000a7181848462000a2a565b505050565b5b8181101562000a995762000a8d60008262000a5a565b60018101905062000a77565b5050565b601f82111562000ae85762000ab2816200095c565b62000abd8462000971565b8101602085101562000acd578190505b62000ae562000adc8562000971565b83018262000a76565b50505b505050565b600082821c905092915050565b600062000b0d6000198460080262000aed565b1980831691505092915050565b600062000b28838362000afa565b9150826002028217905092915050565b62000b4382620008be565b67ffffffffffffffff81111562000b5f5762000b5e620008c9565b5b62000b6b825462000927565b62000b7882828562000a9d565b600060209050601f83116001811462000bb0576000841562000b9b578287015190505b62000ba7858262000b1a565b86555062000c17565b601f19841662000bc0866200095c565b60005b8281101562000bea5784890151825560018201915060208501945060208101905062000bc3565b8683101562000c0a578489015162000c06601f89168262000afa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cad5780860481111562000c855762000c8462000c1f565b5b600185161562000c955780820291505b808102905062000ca58562000c4e565b945062000c65565b94509492505050565b60008262000cc8576001905062000d9b565b8162000cd8576000905062000d9b565b816001811462000cf1576002811462000cfc5762000d32565b600191505062000d9b565b60ff84111562000d115762000d1062000c1f565b5b8360020a91508482111562000d2b5762000d2a62000c1f565b5b5062000d9b565b5060208310610133831016604e8410600b841016171562000d6c5782820a90508381111562000d665762000d6562000c1f565b5b62000d9b565b62000d7b848484600162000c5b565b9250905081840481111562000d955762000d9462000c1f565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dbc82620009e4565b915062000dc98362000da2565b925062000df87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb6565b905092915050565b600062000e0d82620009e4565b915062000e1a83620009e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e565762000e5562000c1f565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e938262000e66565b9050919050565b62000ea58162000e86565b811462000eb157600080fd5b50565b60008151905062000ec58162000e9a565b92915050565b60006020828403121562000ee45762000ee362000e61565b5b600062000ef48482850162000eb4565b91505092915050565b62000f088162000e86565b82525050565b600060408201905062000f25600083018562000efd565b62000f34602083018462000efd565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f84601f8362000f3b565b915062000f918262000f4c565b602082019050919050565b6000602082019050818103600083015262000fb78162000f75565b9050919050565b600062000fcb82620009e4565b915062000fd883620009e4565b925082820190508082111562000ff35762000ff262000c1f565b5b92915050565b6200100481620009e4565b82525050565b600060208201905062001021600083018462000ff9565b92915050565b60805160a051612b686200108c600039600081816107ad01528181610f4a01528181610f9f0152818161100d015261125401526000818161071001528181611666015281816117470152818161176e01528181611aad0152611ad40152612b686000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461058b578063dd62ed3e146105c8578063f2fde38b14610605578063f345bd851461062e57610171565b8063a9059cbb146104e6578063aa4bde2814610523578063af8af6901461054e57610171565b806375f0a874146103c057806381bfdcca146103eb5780638c0b5e22146104285780638da5cb5b1461045357806395d89b411461047e578063a457c2d7146104a957610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d9578063527ffabd14610304578063677daa571461032f57806370a082311461036c578063715018a6146103a957610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610659565b6040516101989190611c33565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611cee565b6106eb565b6040516101d59190611d49565b60405180910390f35b3480156101ea57600080fd5b506101f361070e565b6040516102009190611dc3565b60405180910390f35b34801561021557600080fd5b5061021e610732565b60405161022b9190611ded565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611e08565b61073c565b6040516102689190611d49565b60405180910390f35b34801561027d57600080fd5b5061028661076b565b6040516102939190611e77565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611cee565b610774565b6040516102d09190611d49565b60405180910390f35b3480156102e557600080fd5b506102ee6107ab565b6040516102fb9190611ea1565b60405180910390f35b34801561031057600080fd5b506103196107cf565b6040516103269190611ded565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611ebc565b6107d5565b6040516103639190611d49565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611ee9565b6107ef565b6040516103a09190611ded565b60405180910390f35b3480156103b557600080fd5b506103be610837565b005b3480156103cc57600080fd5b506103d561084b565b6040516103e29190611ea1565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190611ebc565b610871565b60405161041f9190611d49565b60405180910390f35b34801561043457600080fd5b5061043d61088b565b60405161044a9190611ded565b60405180910390f35b34801561045f57600080fd5b50610468610891565b6040516104759190611ea1565b60405180910390f35b34801561048a57600080fd5b506104936108bb565b6040516104a09190611c33565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190611cee565b61094d565b6040516104dd9190611d49565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190611cee565b6109c4565b60405161051a9190611d49565b60405180910390f35b34801561052f57600080fd5b506105386109e7565b6040516105459190611ded565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611f16565b6109ed565b6040516105829190611d49565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611ee9565b610a5e565b6040516105bf9190611d49565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190611f56565b610ab2565b6040516105fc9190611ded565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190611ee9565b610b39565b005b34801561063a57600080fd5b50610643610bbc565b6040516106509190611ded565b60405180910390f35b60606003805461066890611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461069490611fc5565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6000806106f6610bc2565b9050610703818585610bca565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610747610bc2565b9050610754858285610d93565b61075f858585610e1f565b60019150509392505050565b60006009905090565b60008061077f610bc2565b90506107a08185856107918589610ab2565b61079b9190612025565b610bca565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b60006107df6113a7565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083f6113a7565b6108496000611425565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061087b6113a7565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ca90611fc5565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611fc5565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600080610958610bc2565b905060006109668286610ab2565b9050838110156109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906120cb565b60405180910390fd5b6109b88286868403610bca565b60019250505092915050565b6000806109cf610bc2565b90506109dc818585610e1f565b600191505092915050565b600d5481565b60006109f76113a7565b600a8284610a059190612025565b1115610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061215d565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610a686113a7565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b416113a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906121ef565b60405180910390fd5b610bb981611425565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612281565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612313565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d869190611ded565b60405180910390a3505050565b6000610d9f8484610ab2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e195781811015610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061237f565b60405180910390fd5b610e188484848403610bca565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906124a3565b60405180910390fd5b80610f07846107ef565b1015610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612535565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fed57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110065750601360009054906101000a900460ff16155b15611396577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461115d576000600f5461106c306107ef565b6110769190612555565b9050601154811061108d5761108c6011546114eb565b5b601254600f541061115b576110a36012546115ac565b601254600f60008282546110b79190612555565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906125d5565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112005750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561120d57819050611385565b600c54821115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612667565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112fe57600d546112b1846107ef565b836112bc9190612025565b11156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906126f9565b60405180910390fd5b5b60006064600b54846113109190612719565b61131a91906127a2565b905060006064600a548561132e9190612719565b61133891906127a2565b905080826113469190612025565b846113519190612555565b925081600f60008282546113659190612025565b925050819055506113828630838561137d9190612025565b61182c565b50505b61139084848361182c565b506113a2565b6113a183838361182c565b5b505050565b6113af610bc2565b73ffffffffffffffffffffffffffffffffffffffff166113cd610891565b73ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a9061281f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff021916908315150217905550600060028261151591906127a2565b9050600081836115259190612555565b90506000479050611535836115ac565b600081476115439190612555565b905061154f8382611a8c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516115829392919061283f565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156115e4576115e3612876565b5b6040519080825280602002602001820160405280156116125781602001602082028036833780820191505090505b509050308160008151811061162a576116296128a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f391906128e9565b81600181518110611707576117066128a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061176c307f000000000000000000000000000000000000000000000000000000000000000084610bca565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117bb9190612025565b6040518663ffffffff1660e01b81526004016117db959493929190612a0f565b600060405180830381600087803b1580156117f557600080fd5b505af1158015611809573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290612411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906124a3565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790612535565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7e9190611ded565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611ad2307f000000000000000000000000000000000000000000000000000000000000000084610bca565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b1c610891565b426040518863ffffffff1660e01b8152600401611b3e96959493929190612a69565b60606040518083038185885af1158015611b5c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b819190612adf565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bdd578082015181840152602081019050611bc2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c0582611ba3565b611c0f8185611bae565b9350611c1f818560208601611bbf565b611c2881611be9565b840191505092915050565b60006020820190508181036000830152611c4d8184611bfa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c8582611c5a565b9050919050565b611c9581611c7a565b8114611ca057600080fd5b50565b600081359050611cb281611c8c565b92915050565b6000819050919050565b611ccb81611cb8565b8114611cd657600080fd5b50565b600081359050611ce881611cc2565b92915050565b60008060408385031215611d0557611d04611c55565b5b6000611d1385828601611ca3565b9250506020611d2485828601611cd9565b9150509250929050565b60008115159050919050565b611d4381611d2e565b82525050565b6000602082019050611d5e6000830184611d3a565b92915050565b6000819050919050565b6000611d89611d84611d7f84611c5a565b611d64565b611c5a565b9050919050565b6000611d9b82611d6e565b9050919050565b6000611dad82611d90565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611cb8565b82525050565b6000602082019050611e026000830184611dde565b92915050565b600080600060608486031215611e2157611e20611c55565b5b6000611e2f86828701611ca3565b9350506020611e4086828701611ca3565b9250506040611e5186828701611cd9565b9150509250925092565b600060ff82169050919050565b611e7181611e5b565b82525050565b6000602082019050611e8c6000830184611e68565b92915050565b611e9b81611c7a565b82525050565b6000602082019050611eb66000830184611e92565b92915050565b600060208284031215611ed257611ed1611c55565b5b6000611ee084828501611cd9565b91505092915050565b600060208284031215611eff57611efe611c55565b5b6000611f0d84828501611ca3565b91505092915050565b60008060408385031215611f2d57611f2c611c55565b5b6000611f3b85828601611cd9565b9250506020611f4c85828601611cd9565b9150509250929050565b60008060408385031215611f6d57611f6c611c55565b5b6000611f7b85828601611ca3565b9250506020611f8c85828601611ca3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fdd57607f821691505b602082108103611ff057611fef611f96565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203082611cb8565b915061203b83611cb8565b925082820190508082111561205357612052611ff6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b5602583611bae565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612147602c83611bae565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121d9602683611bae565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061226b602483611bae565b91506122768261220f565b604082019050919050565b6000602082019050818103600083015261229a8161225e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122fd602283611bae565b9150612308826122a1565b604082019050919050565b6000602082019050818103600083015261232c816122f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612369601d83611bae565b915061237482612333565b602082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123fb602583611bae565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061248d602383611bae565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251f602683611bae565b915061252a826124c3565b604082019050919050565b6000602082019050818103600083015261254e81612512565b9050919050565b600061256082611cb8565b915061256b83611cb8565b925082820390508181111561258357612582611ff6565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006125bf601283611bae565b91506125ca82612589565b602082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612651603983611bae565b915061265c826125f5565b604082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006126e3603683611bae565b91506126ee82612687565b604082019050919050565b60006020820190508181036000830152612712816126d6565b9050919050565b600061272482611cb8565b915061272f83611cb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276857612767611ff6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127ad82611cb8565b91506127b883611cb8565b9250826127c8576127c7612773565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612809602083611bae565b9150612814826127d3565b602082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b60006060820190506128546000830186611dde565b6128616020830185611dde565b61286e6040830184611dde565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128e381611c8c565b92915050565b6000602082840312156128ff576128fe611c55565b5b600061290d848285016128d4565b91505092915050565b6000819050919050565b600061293b61293661293184612916565b611d64565b611cb8565b9050919050565b61294b81612920565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298681611c7a565b82525050565b6000612998838361297d565b60208301905092915050565b6000602082019050919050565b60006129bc82612951565b6129c6818561295c565b93506129d18361296d565b8060005b83811015612a025781516129e9888261298c565b97506129f4836129a4565b9250506001810190506129d5565b5085935050505092915050565b600060a082019050612a246000830188611dde565b612a316020830187612942565b8181036040830152612a4381866129b1565b9050612a526060830185611e92565b612a5f6080830184611dde565b9695505050505050565b600060c082019050612a7e6000830189611e92565b612a8b6020830188611dde565b612a986040830187612942565b612aa56060830186612942565b612ab26080830185611e92565b612abf60a0830184611dde565b979650505050505050565b600081519050612ad981611cc2565b92915050565b600080600060608486031215612af857612af7611c55565b5b6000612b0686828701612aca565b9350506020612b1786828701612aca565b9250506040612b2886828701612aca565b915050925092509256fea2646970667358221220fb7d24f8930c99b46b08fa7ec4921692eb071ea04174651e440f32e03a5173c664736f6c63430008100033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461058b578063dd62ed3e146105c8578063f2fde38b14610605578063f345bd851461062e57610171565b8063a9059cbb146104e6578063aa4bde2814610523578063af8af6901461054e57610171565b806375f0a874146103c057806381bfdcca146103eb5780638c0b5e22146104285780638da5cb5b1461045357806395d89b411461047e578063a457c2d7146104a957610171565b80633950935111610123578063395093511461029c57806349bd5a5e146102d9578063527ffabd14610304578063677daa571461032f57806370a082311461036c578063715018a6146103a957610171565b806306fdde0314610176578063095ea7b3146101a15780631694505e146101de57806318160ddd1461020957806323b872dd14610234578063313ce5671461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b610659565b6040516101989190611c33565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611cee565b6106eb565b6040516101d59190611d49565b60405180910390f35b3480156101ea57600080fd5b506101f361070e565b6040516102009190611dc3565b60405180910390f35b34801561021557600080fd5b5061021e610732565b60405161022b9190611ded565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611e08565b61073c565b6040516102689190611d49565b60405180910390f35b34801561027d57600080fd5b5061028661076b565b6040516102939190611e77565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190611cee565b610774565b6040516102d09190611d49565b60405180910390f35b3480156102e557600080fd5b506102ee6107ab565b6040516102fb9190611ea1565b60405180910390f35b34801561031057600080fd5b506103196107cf565b6040516103269190611ded565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190611ebc565b6107d5565b6040516103639190611d49565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190611ee9565b6107ef565b6040516103a09190611ded565b60405180910390f35b3480156103b557600080fd5b506103be610837565b005b3480156103cc57600080fd5b506103d561084b565b6040516103e29190611ea1565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190611ebc565b610871565b60405161041f9190611d49565b60405180910390f35b34801561043457600080fd5b5061043d61088b565b60405161044a9190611ded565b60405180910390f35b34801561045f57600080fd5b50610468610891565b6040516104759190611ea1565b60405180910390f35b34801561048a57600080fd5b506104936108bb565b6040516104a09190611c33565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190611cee565b61094d565b6040516104dd9190611d49565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190611cee565b6109c4565b60405161051a9190611d49565b60405180910390f35b34801561052f57600080fd5b506105386109e7565b6040516105459190611ded565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190611f16565b6109ed565b6040516105829190611d49565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190611ee9565b610a5e565b6040516105bf9190611d49565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190611f56565b610ab2565b6040516105fc9190611ded565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190611ee9565b610b39565b005b34801561063a57600080fd5b50610643610bbc565b6040516106509190611ded565b60405180910390f35b60606003805461066890611fc5565b80601f016020809104026020016040519081016040528092919081815260200182805461069490611fc5565b80156106e15780601f106106b6576101008083540402835291602001916106e1565b820191906000526020600020905b8154815290600101906020018083116106c457829003601f168201915b5050505050905090565b6000806106f6610bc2565b9050610703818585610bca565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610747610bc2565b9050610754858285610d93565b61075f858585610e1f565b60019150509392505050565b60006009905090565b60008061077f610bc2565b90506107a08185856107918589610ab2565b61079b9190612025565b610bca565b600191505092915050565b7f000000000000000000000000ee68e4949bfde1ae2ed5c1537b1ec3a6a5d9bff881565b600b5481565b60006107df6113a7565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083f6113a7565b6108496000611425565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061087b6113a7565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108ca90611fc5565b80601f01602080910402602001604051908101604052809291908181526020018280546108f690611fc5565b80156109435780601f1061091857610100808354040283529160200191610943565b820191906000526020600020905b81548152906001019060200180831161092657829003601f168201915b5050505050905090565b600080610958610bc2565b905060006109668286610ab2565b9050838110156109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906120cb565b60405180910390fd5b6109b88286868403610bca565b60019250505092915050565b6000806109cf610bc2565b90506109dc818585610e1f565b600191505092915050565b600d5481565b60006109f76113a7565b600a8284610a059190612025565b1115610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061215d565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610a686113a7565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b416113a7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906121ef565b60405180910390fd5b610bb981611425565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612281565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612313565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d869190611ded565b60405180910390a3505050565b6000610d9f8484610ab2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e195781811015610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061237f565b60405180910390fd5b610e188484848403610bca565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906124a3565b60405180910390fd5b80610f07846107ef565b1015610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612535565b60405180910390fd5b7f000000000000000000000000ee68e4949bfde1ae2ed5c1537b1ec3a6a5d9bff873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fed57507f000000000000000000000000ee68e4949bfde1ae2ed5c1537b1ec3a6a5d9bff873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110065750601360009054906101000a900460ff16155b15611396577f000000000000000000000000ee68e4949bfde1ae2ed5c1537b1ec3a6a5d9bff873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461115d576000600f5461106c306107ef565b6110769190612555565b9050601154811061108d5761108c6011546114eb565b5b601254600f541061115b576110a36012546115ac565b601254600f60008282546110b79190612555565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906125d5565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112005750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561120d57819050611385565b600c54821115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612667565b60405180910390fd5b7f000000000000000000000000ee68e4949bfde1ae2ed5c1537b1ec3a6a5d9bff873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112fe57600d546112b1846107ef565b836112bc9190612025565b11156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906126f9565b60405180910390fd5b5b60006064600b54846113109190612719565b61131a91906127a2565b905060006064600a548561132e9190612719565b61133891906127a2565b905080826113469190612025565b846113519190612555565b925081600f60008282546113659190612025565b925050819055506113828630838561137d9190612025565b61182c565b50505b61139084848361182c565b506113a2565b6113a183838361182c565b5b505050565b6113af610bc2565b73ffffffffffffffffffffffffffffffffffffffff166113cd610891565b73ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a9061281f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff021916908315150217905550600060028261151591906127a2565b9050600081836115259190612555565b90506000479050611535836115ac565b600081476115439190612555565b905061154f8382611a8c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516115829392919061283f565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156115e4576115e3612876565b5b6040519080825280602002602001820160405280156116125781602001602082028036833780820191505090505b509050308160008151811061162a576116296128a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f391906128e9565b81600181518110611707576117066128a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061176c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bca565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426117bb9190612025565b6040518663ffffffff1660e01b81526004016117db959493929190612a0f565b600060405180830381600087803b1580156117f557600080fd5b505af1158015611809573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290612411565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906124a3565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790612535565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7e9190611ded565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611ad2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bca565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b1c610891565b426040518863ffffffff1660e01b8152600401611b3e96959493929190612a69565b60606040518083038185885af1158015611b5c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611b819190612adf565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bdd578082015181840152602081019050611bc2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c0582611ba3565b611c0f8185611bae565b9350611c1f818560208601611bbf565b611c2881611be9565b840191505092915050565b60006020820190508181036000830152611c4d8184611bfa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c8582611c5a565b9050919050565b611c9581611c7a565b8114611ca057600080fd5b50565b600081359050611cb281611c8c565b92915050565b6000819050919050565b611ccb81611cb8565b8114611cd657600080fd5b50565b600081359050611ce881611cc2565b92915050565b60008060408385031215611d0557611d04611c55565b5b6000611d1385828601611ca3565b9250506020611d2485828601611cd9565b9150509250929050565b60008115159050919050565b611d4381611d2e565b82525050565b6000602082019050611d5e6000830184611d3a565b92915050565b6000819050919050565b6000611d89611d84611d7f84611c5a565b611d64565b611c5a565b9050919050565b6000611d9b82611d6e565b9050919050565b6000611dad82611d90565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611cb8565b82525050565b6000602082019050611e026000830184611dde565b92915050565b600080600060608486031215611e2157611e20611c55565b5b6000611e2f86828701611ca3565b9350506020611e4086828701611ca3565b9250506040611e5186828701611cd9565b9150509250925092565b600060ff82169050919050565b611e7181611e5b565b82525050565b6000602082019050611e8c6000830184611e68565b92915050565b611e9b81611c7a565b82525050565b6000602082019050611eb66000830184611e92565b92915050565b600060208284031215611ed257611ed1611c55565b5b6000611ee084828501611cd9565b91505092915050565b600060208284031215611eff57611efe611c55565b5b6000611f0d84828501611ca3565b91505092915050565b60008060408385031215611f2d57611f2c611c55565b5b6000611f3b85828601611cd9565b9250506020611f4c85828601611cd9565b9150509250929050565b60008060408385031215611f6d57611f6c611c55565b5b6000611f7b85828601611ca3565b9250506020611f8c85828601611ca3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fdd57607f821691505b602082108103611ff057611fef611f96565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203082611cb8565b915061203b83611cb8565b925082820190508082111561205357612052611ff6565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b5602583611bae565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612147602c83611bae565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121d9602683611bae565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061226b602483611bae565b91506122768261220f565b604082019050919050565b6000602082019050818103600083015261229a8161225e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122fd602283611bae565b9150612308826122a1565b604082019050919050565b6000602082019050818103600083015261232c816122f0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612369601d83611bae565b915061237482612333565b602082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123fb602583611bae565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061248d602383611bae565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251f602683611bae565b915061252a826124c3565b604082019050919050565b6000602082019050818103600083015261254e81612512565b9050919050565b600061256082611cb8565b915061256b83611cb8565b925082820390508181111561258357612582611ff6565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006125bf601283611bae565b91506125ca82612589565b602082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612651603983611bae565b915061265c826125f5565b604082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006126e3603683611bae565b91506126ee82612687565b604082019050919050565b60006020820190508181036000830152612712816126d6565b9050919050565b600061272482611cb8565b915061272f83611cb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561276857612767611ff6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006127ad82611cb8565b91506127b883611cb8565b9250826127c8576127c7612773565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612809602083611bae565b9150612814826127d3565b602082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b60006060820190506128546000830186611dde565b6128616020830185611dde565b61286e6040830184611dde565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506128e381611c8c565b92915050565b6000602082840312156128ff576128fe611c55565b5b600061290d848285016128d4565b91505092915050565b6000819050919050565b600061293b61293661293184612916565b611d64565b611cb8565b9050919050565b61294b81612920565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61298681611c7a565b82525050565b6000612998838361297d565b60208301905092915050565b6000602082019050919050565b60006129bc82612951565b6129c6818561295c565b93506129d18361296d565b8060005b83811015612a025781516129e9888261298c565b97506129f4836129a4565b9250506001810190506129d5565b5085935050505092915050565b600060a082019050612a246000830188611dde565b612a316020830187612942565b8181036040830152612a4381866129b1565b9050612a526060830185611e92565b612a5f6080830184611dde565b9695505050505050565b600060c082019050612a7e6000830189611e92565b612a8b6020830188611dde565b612a986040830187612942565b612aa56060830186612942565b612ab26080830185611e92565b612abf60a0830184611dde565b979650505050505050565b600081519050612ad981611cc2565b92915050565b600080600060608486031215612af857612af7611c55565b5b6000612b0686828701612aca565b9350506020612b1786828701612aca565b9250506040612b2886828701612aca565b915050925092509256fea2646970667358221220fb7d24f8930c99b46b08fa7ec4921692eb071ea04174651e440f32e03a5173c664736f6c63430008100033

Deployed Bytecode Sourcemap

28217:7202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17936:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20210:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28874:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19074:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21034:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18917:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22750:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28932:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28548:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34991:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18101:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15195:103;;;;;;;;;;;;;:::i;:::-;;28705:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35181:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28589:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14547:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17760:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21834:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19654:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28645:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34593:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34403:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19247:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15453:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28507:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17936:102;17992:13;18025:5;18018:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17936:102;:::o;20210:244::-;20331:4;20353:13;20369:12;:10;:12::i;:::-;20353:28;;20392:32;20401:5;20408:7;20417:6;20392:8;:32::i;:::-;20442:4;20435:11;;;20210:244;;;;:::o;28874:51::-;;;:::o;19074:110::-;19137:7;19164:12;;19157:19;;19074:110;:::o;21034:297::-;21167:4;21184:15;21202:12;:10;:12::i;:::-;21184:30;;21225:38;21241:4;21247:7;21256:6;21225:15;:38::i;:::-;21274:27;21284:4;21290:2;21294:6;21274:9;:27::i;:::-;21319:4;21312:11;;;21034:297;;;;;:::o;18917:92::-;18975:5;19000:1;18993:8;;18917:92;:::o;22750:272::-;22867:4;22889:13;22905:12;:10;:12::i;:::-;22889:28;;22928:64;22937:5;22944:7;22981:10;22953:25;22963:5;22970:7;22953:9;:25::i;:::-;:38;;;;:::i;:::-;22928:8;:64::i;:::-;23010:4;23003:11;;;22750:272;;;;:::o;28932:38::-;;;:::o;28548:34::-;;;;:::o;34991:182::-;35093:4;14433:13;:11;:13::i;:::-;35129:12:::1;35115:11;:26;;;;35161:4;35154:11;;34991:182:::0;;;:::o;18101:177::-;18220:7;18252:9;:18;18262:7;18252:18;;;;;;;;;;;;;;;;18245:25;;18101:177;;;:::o;15195:103::-;14433:13;:11;:13::i;:::-;15260:30:::1;15287:1;15260:18;:30::i;:::-;15195:103::o:0;28705:75::-;;;;;;;;;;;;;:::o;35181:198::-;35291:4;14433:13;:11;:13::i;:::-;35331:16:::1;35313:15;:34;;;;35367:4;35360:11;;35181:198:::0;;;:::o;28589:49::-;;;;:::o;14547:87::-;14593:7;14620:6;;;;;;;;;;;14613:13;;14547:87;:::o;17760:106::-;17818:13;17851:7;17844:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17760:106;:::o;21834:507::-;21956:4;21978:13;21994:12;:10;:12::i;:::-;21978:28;;22017:24;22044:25;22054:5;22061:7;22044:9;:25::i;:::-;22017:52;;22122:15;22102:16;:35;;22080:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22238:60;22247:5;22254:7;22282:15;22263:16;:34;22238:8;:60::i;:::-;22329:4;22322:11;;;;21834:507;;;;:::o;19654:236::-;19771:4;19793:13;19809:12;:10;:12::i;:::-;19793:28;;19832;19842:5;19849:2;19853:6;19832:9;:28::i;:::-;19878:4;19871:11;;;19654:236;;;;:::o;28645:53::-;;;;:::o;34593:390::-;34741:4;14433:13;:11;:13::i;:::-;34810:2:::1;34789:16;34772;:33;;;;:::i;:::-;34771:41;;34763:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;34890:16;34872:15;:34;;;;34935:16;34917:15;:34;;;;34971:4;34964:11;;34593:390:::0;;;;:::o;34403:182::-;34506:4;14433:13;:11;:13::i;:::-;34546:9:::1;34528:15;;:27;;;;;;;;;;;;;;;;;;34573:4;34566:11;;34403:182:::0;;;:::o;19247:201::-;19381:7;19413:11;:18;19425:5;19413:18;;;;;;;;;;;;;;;:27;19432:7;19413:27;;;;;;;;;;;;;;;;19406:34;;19247:201;;;;:::o;15453:238::-;14433:13;:11;:13::i;:::-;15576:1:::1;15556:22;;:8;:22;;::::0;15534:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15655:28;15674:8;15655:18;:28::i;:::-;15453:238:::0;:::o;28507:34::-;;;;:::o;13340:98::-;13393:7;13420:10;13413:17;;13340:98;:::o;25057:380::-;25210:1;25193:19;;:5;:19;;;25185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25291:1;25272:21;;:7;:21;;;25264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25375:6;25345:11;:18;25357:5;25345:18;;;;;;;;;;;;;;;:27;25364:7;25345:27;;;;;;;;;;;;;;;:36;;;;25413:7;25397:32;;25406:5;25397:32;;;25422:6;25397:32;;;;;;:::i;:::-;;;;;;;;25057:380;;;:::o;25728:502::-;25863:24;25890:25;25900:5;25907:7;25890:9;:25::i;:::-;25863:52;;25950:17;25930:16;:37;25926:297;;26030:6;26010:16;:26;;25984:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26145:51;26154:5;26161:7;26189:6;26170:16;:25;26145:8;:51::i;:::-;25926:297;25852:378;25728:502;;;:::o;30854:2149::-;30968:1;30952:18;;:4;:18;;;30944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31045:1;31031:16;;:2;:16;;;31023:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31125:6;31106:15;31116:4;31106:9;:15::i;:::-;:25;;31098:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31200:13;31192:21;;:4;:21;;;:44;;;;31223:13;31217:19;;:2;:19;;;31192:44;31191:67;;;;;31242:16;;;;;;;;;;;31241:17;31191:67;31187:1809;;;31287:13;31279:21;;:4;:21;;;31275:686;;31321:32;31383:18;;31356:24;31374:4;31356:9;:24::i;:::-;:45;;;;:::i;:::-;31321:80;;31452:30;;31424:24;:58;31420:154;;31507:47;31523:30;;31507:15;:47::i;:::-;31420:154;31620:24;;31597:18;;31596:48;31592:354;;31669:43;31687:24;;31669:17;:43::i;:::-;31757:24;;31735:18;;:46;;;;;;;:::i;:::-;;;;;;;;31804:9;31824:15;;;;;;;;;;;31816:29;;:52;31846:21;31816:52;;;;;;;;;;;;;;;;;;;;;;;31804:64;;31899:4;31891:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31646:300;31592:354;31302:659;31275:686;31977:22;32018:18;:24;32037:4;32018:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32046:18;:22;32065:2;32046:22;;;;;;;;;;;;;;;;;;;;;;;;;32018:50;32014:839;;;32106:6;32089:23;;32014:839;;;32185:11;;32175:6;:21;;32167:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32288:13;32280:21;;:4;:21;;;32277:178;;32361:15;;32343:13;32353:2;32343:9;:13::i;:::-;32334:6;:22;;;;:::i;:::-;32333:43;;32325:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32277:178;32475:22;32530:3;32511:15;;32502:6;:24;;;;:::i;:::-;32501:32;;;;:::i;:::-;32475:59;;32553:22;32608:3;32589:15;;32580:6;:24;;;;:::i;:::-;32579:32;;;;:::i;:::-;32553:59;;32675:14;32658;:31;;;;:::i;:::-;32648:6;:42;;;;:::i;:::-;32631:59;;32731:14;32709:18;;:36;;;;;;;:::i;:::-;;;;;;;;32766:71;32782:4;32796;32821:14;32804;:31;;;;:::i;:::-;32766:15;:71::i;:::-;32148:705;;32014:839;32867:41;32883:4;32889:2;32893:14;32867:15;:41::i;:::-;31260:1660;31187:1809;;;32951:33;32967:4;32973:2;32977:6;32951:15;:33::i;:::-;31187:1809;30854:2149;;;:::o;14712:132::-;14787:12;:10;:12::i;:::-;14776:23;;:7;:5;:7::i;:::-;:23;;;14768:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14712:132::o;15851:191::-;15925:16;15944:6;;;;;;;;;;;15925:25;;15970:8;15961:6;;:17;;;;;;;;;;;;;;;;;;16025:8;15994:40;;16015:8;15994:40;;;;;;;;;;;;15914:128;15851:191;:::o;33011:474::-;29450:4;29431:16;;:23;;;;;;;;;;;;;;;;;;33097:12:::1;33136:1;33113:20;:24;;;;:::i;:::-;33097:41;;33149:17;33193:4;33170:20;:27;;;;:::i;:::-;33149:49;;33211:22;33236:21;33211:46;;33270:23;33288:4;33270:17;:23::i;:::-;33306:18;33352:14;33328:21;:38;;;;:::i;:::-;33306:61;;33380:36;33394:9;33405:10;33380:13;:36::i;:::-;33434:43;33449:4;33455:10;33467:9;33434:43;;;;;;;;:::i;:::-;;;;;;;;33086:399;;;;29496:5:::0;29477:16;;:24;;;;;;;;;;;;;;;;;;33011:474;:::o;33493:496::-;29450:4;29431:16;;:23;;;;;;;;;;;;;;;;;;33572:21:::1;33610:1;33596:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33572:40;;33641:4;33623;33628:1;33623:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33667:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33657:4;33662:1;33657:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33702:62;33719:4;33734:15;33752:11;33702:8;:62::i;:::-;33777:15;:66;;;33858:11;33884:1;33900:4;33927;33966:3;33948:15;:21;;;;:::i;:::-;33777:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33561:428;29496:5:::0;29477:16;;:24;;;;;;;;;;;;;;;;;;33493:496;:::o;26238:776::-;26385:1;26369:18;;:4;:18;;;26361:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26462:1;26448:16;;:2;:16;;;26440:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26517:19;26539:9;:15;26549:4;26539:15;;;;;;;;;;;;;;;;26517:37;;26602:6;26587:11;:21;;26565:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26742:6;26728:11;:20;26710:9;:15;26720:4;26710:15;;;;;;;;;;;;;;;:38;;;;26945:6;26928:9;:13;26938:2;26928:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26995:2;26980:26;;26989:4;26980:26;;;26999:6;26980:26;;;;;;:::i;:::-;;;;;;;;26350:664;26238:776;;;:::o;33997:398::-;29450:4;29431:16;;:23;;;;;;;;;;;;;;;;;;34114:62:::1;34131:4;34146:15;34164:11;34114:8;:62::i;:::-;34189:15;:31;;;34228:9;34261:4;34281:11;34307:1;34323::::0;34339:7:::1;:5;:7::i;:::-;34361:15;34189:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29496:5:::0;29477:16;;:24;;;;;;;;;;;;;;;;;;33997:398;;:::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:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:224::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:7;8907:2;8899:6;8895:15;8888:32;8703:224;:::o;8933:366::-;9075:3;9096:67;9160:2;9155:3;9096:67;:::i;:::-;9089:74;;9172:93;9261:3;9172:93;:::i;:::-;9290:2;9285:3;9281:12;9274:19;;8933:366;;;:::o;9305:419::-;9471:4;9509:2;9498:9;9494:18;9486:26;;9558:9;9552:4;9548:20;9544:1;9533:9;9529:17;9522:47;9586:131;9712:4;9586:131;:::i;:::-;9578:139;;9305:419;;;:::o;9730:231::-;9870:34;9866:1;9858:6;9854:14;9847:58;9939:14;9934:2;9926:6;9922:15;9915:39;9730:231;:::o;9967:366::-;10109:3;10130:67;10194:2;10189:3;10130:67;:::i;:::-;10123:74;;10206:93;10295:3;10206:93;:::i;:::-;10324:2;10319:3;10315:12;10308:19;;9967:366;;;:::o;10339:419::-;10505:4;10543:2;10532:9;10528:18;10520:26;;10592:9;10586:4;10582:20;10578:1;10567:9;10563:17;10556:47;10620:131;10746:4;10620:131;:::i;:::-;10612:139;;10339:419;;;:::o;10764:225::-;10904:34;10900:1;10892:6;10888:14;10881:58;10973:8;10968:2;10960:6;10956:15;10949:33;10764:225;:::o;10995:366::-;11137:3;11158:67;11222:2;11217:3;11158:67;:::i;:::-;11151:74;;11234:93;11323:3;11234:93;:::i;:::-;11352:2;11347:3;11343:12;11336:19;;10995:366;;;:::o;11367:419::-;11533:4;11571:2;11560:9;11556:18;11548:26;;11620:9;11614:4;11610:20;11606:1;11595:9;11591:17;11584:47;11648:131;11774:4;11648:131;:::i;:::-;11640:139;;11367:419;;;:::o;11792:223::-;11932:34;11928:1;11920:6;11916:14;11909:58;12001:6;11996:2;11988:6;11984:15;11977:31;11792:223;:::o;12021:366::-;12163:3;12184:67;12248:2;12243:3;12184:67;:::i;:::-;12177:74;;12260:93;12349:3;12260:93;:::i;:::-;12378:2;12373:3;12369:12;12362:19;;12021:366;;;:::o;12393:419::-;12559:4;12597:2;12586:9;12582:18;12574:26;;12646:9;12640:4;12636:20;12632:1;12621:9;12617:17;12610:47;12674:131;12800:4;12674:131;:::i;:::-;12666:139;;12393:419;;;:::o;12818:221::-;12958:34;12954:1;12946:6;12942:14;12935:58;13027:4;13022:2;13014:6;13010:15;13003:29;12818:221;:::o;13045:366::-;13187:3;13208:67;13272:2;13267:3;13208:67;:::i;:::-;13201:74;;13284:93;13373:3;13284:93;:::i;:::-;13402:2;13397:3;13393:12;13386:19;;13045:366;;;:::o;13417:419::-;13583:4;13621:2;13610:9;13606:18;13598:26;;13670:9;13664:4;13660:20;13656:1;13645:9;13641:17;13634:47;13698:131;13824:4;13698:131;:::i;:::-;13690:139;;13417:419;;;:::o;13842:179::-;13982:31;13978:1;13970:6;13966:14;13959:55;13842:179;:::o;14027:366::-;14169:3;14190:67;14254:2;14249:3;14190:67;:::i;:::-;14183:74;;14266:93;14355:3;14266:93;:::i;:::-;14384:2;14379:3;14375:12;14368:19;;14027:366;;;:::o;14399:419::-;14565:4;14603:2;14592:9;14588:18;14580:26;;14652:9;14646:4;14642:20;14638:1;14627:9;14623:17;14616:47;14680:131;14806:4;14680:131;:::i;:::-;14672:139;;14399:419;;;:::o;14824:224::-;14964:34;14960:1;14952:6;14948:14;14941:58;15033:7;15028:2;15020:6;15016:15;15009:32;14824:224;:::o;15054:366::-;15196:3;15217:67;15281:2;15276:3;15217:67;:::i;:::-;15210:74;;15293:93;15382:3;15293:93;:::i;:::-;15411:2;15406:3;15402:12;15395:19;;15054:366;;;:::o;15426:419::-;15592:4;15630:2;15619:9;15615:18;15607:26;;15679:9;15673:4;15669:20;15665:1;15654:9;15650:17;15643:47;15707:131;15833:4;15707:131;:::i;:::-;15699:139;;15426:419;;;:::o;15851:222::-;15991:34;15987:1;15979:6;15975:14;15968:58;16060:5;16055:2;16047:6;16043:15;16036:30;15851:222;:::o;16079:366::-;16221:3;16242:67;16306:2;16301:3;16242:67;:::i;:::-;16235:74;;16318:93;16407:3;16318:93;:::i;:::-;16436:2;16431:3;16427:12;16420:19;;16079:366;;;:::o;16451:419::-;16617:4;16655:2;16644:9;16640:18;16632:26;;16704:9;16698:4;16694:20;16690:1;16679:9;16675:17;16668:47;16732:131;16858:4;16732:131;:::i;:::-;16724:139;;16451:419;;;:::o;16876:225::-;17016:34;17012:1;17004:6;17000:14;16993:58;17085:8;17080:2;17072:6;17068:15;17061:33;16876:225;:::o;17107:366::-;17249:3;17270:67;17334:2;17329:3;17270:67;:::i;:::-;17263:74;;17346:93;17435:3;17346:93;:::i;:::-;17464:2;17459:3;17455:12;17448:19;;17107:366;;;:::o;17479:419::-;17645:4;17683:2;17672:9;17668:18;17660:26;;17732:9;17726:4;17722:20;17718:1;17707:9;17703:17;17696:47;17760:131;17886:4;17760:131;:::i;:::-;17752:139;;17479:419;;;:::o;17904:194::-;17944:4;17964:20;17982:1;17964:20;:::i;:::-;17959:25;;17998:20;18016:1;17998:20;:::i;:::-;17993:25;;18042:1;18039;18035:9;18027:17;;18066:1;18060:4;18057:11;18054:37;;;18071:18;;:::i;:::-;18054:37;17904:194;;;;:::o;18104:168::-;18244:20;18240:1;18232:6;18228:14;18221:44;18104:168;:::o;18278:366::-;18420:3;18441:67;18505:2;18500:3;18441:67;:::i;:::-;18434:74;;18517:93;18606:3;18517:93;:::i;:::-;18635:2;18630:3;18626:12;18619:19;;18278:366;;;:::o;18650:419::-;18816:4;18854:2;18843:9;18839:18;18831:26;;18903:9;18897:4;18893:20;18889:1;18878:9;18874:17;18867:47;18931:131;19057:4;18931:131;:::i;:::-;18923:139;;18650:419;;;:::o;19075:244::-;19215:34;19211:1;19203:6;19199:14;19192:58;19284:27;19279:2;19271:6;19267:15;19260:52;19075:244;:::o;19325:366::-;19467:3;19488:67;19552:2;19547:3;19488:67;:::i;:::-;19481:74;;19564:93;19653:3;19564:93;:::i;:::-;19682:2;19677:3;19673:12;19666:19;;19325:366;;;:::o;19697:419::-;19863:4;19901:2;19890:9;19886:18;19878:26;;19950:9;19944:4;19940:20;19936:1;19925:9;19921:17;19914:47;19978:131;20104:4;19978:131;:::i;:::-;19970:139;;19697:419;;;:::o;20122:241::-;20262:34;20258:1;20250:6;20246:14;20239:58;20331:24;20326:2;20318:6;20314:15;20307:49;20122:241;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:348::-;21206:7;21229:20;21247:1;21229:20;:::i;:::-;21224:25;;21263:20;21281:1;21263:20;:::i;:::-;21258:25;;21451:1;21383:66;21379:74;21376:1;21373:81;21368:1;21361:9;21354:17;21350:105;21347:131;;;21458:18;;:::i;:::-;21347:131;21506:1;21503;21499:9;21488:20;;21166:348;;;;:::o;21520:180::-;21568:77;21565:1;21558:88;21665:4;21662:1;21655:15;21689:4;21686:1;21679:15;21706:185;21746:1;21763:20;21781:1;21763:20;:::i;:::-;21758:25;;21797:20;21815:1;21797:20;:::i;:::-;21792:25;;21836:1;21826:35;;21841:18;;:::i;:::-;21826:35;21883:1;21880;21876:9;21871:14;;21706:185;;;;:::o;21897:182::-;22037:34;22033:1;22025:6;22021:14;22014:58;21897:182;:::o;22085:366::-;22227:3;22248:67;22312:2;22307:3;22248:67;:::i;:::-;22241:74;;22324:93;22413:3;22324:93;:::i;:::-;22442:2;22437:3;22433:12;22426:19;;22085:366;;;:::o;22457:419::-;22623:4;22661:2;22650:9;22646:18;22638:26;;22710:9;22704:4;22700:20;22696:1;22685:9;22681:17;22674:47;22738:131;22864:4;22738:131;:::i;:::-;22730:139;;22457:419;;;:::o;22882:442::-;23031:4;23069:2;23058:9;23054:18;23046:26;;23082:71;23150:1;23139:9;23135:17;23126:6;23082:71;:::i;:::-;23163:72;23231:2;23220:9;23216:18;23207:6;23163:72;:::i;:::-;23245;23313:2;23302:9;23298:18;23289:6;23245:72;:::i;:::-;22882:442;;;;;;:::o;23330:180::-;23378:77;23375:1;23368:88;23475:4;23472:1;23465:15;23499:4;23496:1;23489:15;23516:180;23564:77;23561:1;23554:88;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23702:143;23759:5;23790:6;23784:13;23775:22;;23806:33;23833:5;23806:33;:::i;:::-;23702:143;;;;:::o;23851:351::-;23921:6;23970:2;23958:9;23949:7;23945:23;23941:32;23938:119;;;23976:79;;:::i;:::-;23938:119;24096:1;24121:64;24177:7;24168:6;24157:9;24153:22;24121:64;:::i;:::-;24111:74;;24067:128;23851:351;;;;:::o;24208:85::-;24253:7;24282:5;24271:16;;24208:85;;;:::o;24299:158::-;24357:9;24390:61;24408:42;24417:32;24443:5;24417:32;:::i;:::-;24408:42;:::i;:::-;24390:61;:::i;:::-;24377:74;;24299:158;;;:::o;24463:147::-;24558:45;24597:5;24558:45;:::i;:::-;24553:3;24546:58;24463:147;;:::o;24616:114::-;24683:6;24717:5;24711:12;24701:22;;24616:114;;;:::o;24736:184::-;24835:11;24869:6;24864:3;24857:19;24909:4;24904:3;24900:14;24885:29;;24736:184;;;;:::o;24926:132::-;24993:4;25016:3;25008:11;;25046:4;25041:3;25037:14;25029:22;;24926:132;;;:::o;25064:108::-;25141:24;25159:5;25141:24;:::i;:::-;25136:3;25129:37;25064:108;;:::o;25178:179::-;25247:10;25268:46;25310:3;25302:6;25268:46;:::i;:::-;25346:4;25341:3;25337:14;25323:28;;25178:179;;;;:::o;25363:113::-;25433:4;25465;25460:3;25456:14;25448:22;;25363:113;;;:::o;25512:732::-;25631:3;25660:54;25708:5;25660:54;:::i;:::-;25730:86;25809:6;25804:3;25730:86;:::i;:::-;25723:93;;25840:56;25890:5;25840:56;:::i;:::-;25919:7;25950:1;25935:284;25960:6;25957:1;25954:13;25935:284;;;26036:6;26030:13;26063:63;26122:3;26107:13;26063:63;:::i;:::-;26056:70;;26149:60;26202:6;26149:60;:::i;:::-;26139:70;;25995:224;25982:1;25979;25975:9;25970:14;;25935:284;;;25939:14;26235:3;26228:10;;25636:608;;;25512:732;;;;:::o;26250:831::-;26513:4;26551:3;26540:9;26536:19;26528:27;;26565:71;26633:1;26622:9;26618:17;26609:6;26565:71;:::i;:::-;26646:80;26722:2;26711:9;26707:18;26698:6;26646:80;:::i;:::-;26773:9;26767:4;26763:20;26758:2;26747:9;26743:18;26736:48;26801:108;26904:4;26895:6;26801:108;:::i;:::-;26793:116;;26919:72;26987:2;26976:9;26972:18;26963:6;26919:72;:::i;:::-;27001:73;27069:3;27058:9;27054:19;27045:6;27001:73;:::i;:::-;26250:831;;;;;;;;:::o;27087:807::-;27336:4;27374:3;27363:9;27359:19;27351:27;;27388:71;27456:1;27445:9;27441:17;27432:6;27388:71;:::i;:::-;27469:72;27537:2;27526:9;27522:18;27513:6;27469:72;:::i;:::-;27551:80;27627:2;27616:9;27612:18;27603:6;27551:80;:::i;:::-;27641;27717:2;27706:9;27702:18;27693:6;27641:80;:::i;:::-;27731:73;27799:3;27788:9;27784:19;27775:6;27731:73;:::i;:::-;27814;27882:3;27871:9;27867:19;27858:6;27814:73;:::i;:::-;27087:807;;;;;;;;;:::o;27900:143::-;27957:5;27988:6;27982:13;27973:22;;28004:33;28031:5;28004:33;:::i;:::-;27900:143;;;;:::o;28049:663::-;28137:6;28145;28153;28202:2;28190:9;28181:7;28177:23;28173:32;28170:119;;;28208:79;;:::i;:::-;28170:119;28328:1;28353:64;28409:7;28400:6;28389:9;28385:22;28353:64;:::i;:::-;28343:74;;28299:128;28466:2;28492:64;28548:7;28539:6;28528:9;28524:22;28492:64;:::i;:::-;28482:74;;28437:129;28605:2;28631:64;28687:7;28678:6;28667:9;28663:22;28631:64;:::i;:::-;28621:74;;28576:129;28049:663;;;;;:::o

Swarm Source

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