ETH Price: $3,494.40 (+3.66%)
Gas: 4 Gwei

Token

Fable Of The Baby Dragon (TYRANT)
 

Overview

Max Total Supply

761,761,761 TYRANT

Holders

87

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
FableOfTheBabyDragon

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-12-02
*/

// SPDX-License-Identifier: MIT

//http://twitter.com/fableofthebabyD

//https://t.me/fableofthebabydragon

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 FableOfTheBabyDragon is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Fable Of The Baby Dragon";
    string private _symbol = "TYRANT";
    uint8 private _decimals = 9;
    uint256 private _supply = 761761761;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMarketing = 4;
    uint256 public maxTxAmount = 15235235 * 10**_decimals;
    uint256 public maxWalletAmount = 15235235 * 10**_decimals;
    address public marketingWallet = 0x5231C500Bc9C64B672040ad49cE5C73D36cCF41a;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 7617617 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 3808800 * 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 updateNumTokensSellToAddToLiquidity(uint256 amount) external onlyOwner {
        _numTokensSellToAddToLiquidity = amount ;
    }

function updateNumTokensSellToAddToETH(uint256 amount) external onlyOwner {
        _numTokensSellToAddToETH = amount ;
    }

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

 function updateLiquidityTax(uint256 _taxForLiquidity)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10");
        taxForLiquidity = _taxForLiquidity;
        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"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"}],"name":"updateLiquidityTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"updateMarketingTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateNumTokensSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280601881526020017f4661626c65204f6620546865204261627920447261676f6e0000000000000000815250600690816200004a919062000b3b565b506040518060400160405280600681526020017f545952414e5400000000000000000000000000000000000000000000000000008152506007908162000091919062000b3b565b506009600860006101000a81548160ff021916908360ff160217905550632d678fe16009556001600a556004600b55600860009054906101000a900460ff16600a620000de919062000db2565b62e878a3620000ee919062000e03565b600c55600860009054906101000a900460ff16600a6200010f919062000db2565b62e878a36200011f919062000e03565b600d55735231c500bc9c64b672040ad49ce5c73d36ccf41a600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a6200019a919062000db2565b62743c51620001aa919062000e03565b601155600860009054906101000a900460ff16600a620001cb919062000db2565b623a1e20620001db919062000e03565b601255348015620001eb57600080fd5b5060068054620001fb906200092a565b80601f016020809104026020016040519081016040528092919081815260200182805462000229906200092a565b80156200027a5780601f106200024e576101008083540402835291602001916200027a565b820191906000526020600020905b8154815290600101906020018083116200025c57829003601f168201915b5050505050600780546200028e906200092a565b80601f0160208091040260200160405190810160405280929190818152602001828054620002bc906200092a565b80156200030d5780601f10620002e1576101008083540402835291602001916200030d565b820191906000526020600020905b815481529060010190602001808311620002ef57829003601f168201915b5050505050816003908162000323919062000b3b565b50806004908162000335919062000b3b565b505050620003586200034c620006ae60201b60201c565b620006b660201b60201c565b6200039633600860009054906101000a900460ff16600a6200037b919062000db2565b6009546200038a919062000e03565b6200077c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000421919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000489573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004af919062000ece565b6040518363ffffffff1660e01b8152600401620004ce92919062000f11565b6020604051808303816000875af1158015620004ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000514919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016010600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200102a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e59062000f9f565b60405180910390fd5b806002600082825462000802919062000fc1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008b591906200100d565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094357607f821691505b602082108103620009595762000958620008fb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000984565b620009cf868362000984565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1c62000a1662000a1084620009e7565b620009f1565b620009e7565b9050919050565b6000819050919050565b62000a3883620009fb565b62000a5062000a478262000a23565b84845462000991565b825550505050565b600090565b62000a6762000a58565b62000a7481848462000a2d565b505050565b5b8181101562000a9c5762000a9060008262000a5d565b60018101905062000a7a565b5050565b601f82111562000aeb5762000ab5816200095f565b62000ac08462000974565b8101602085101562000ad0578190505b62000ae862000adf8562000974565b83018262000a79565b50505b505050565b600082821c905092915050565b600062000b106000198460080262000af0565b1980831691505092915050565b600062000b2b838362000afd565b9150826002028217905092915050565b62000b4682620008c1565b67ffffffffffffffff81111562000b625762000b61620008cc565b5b62000b6e82546200092a565b62000b7b82828562000aa0565b600060209050601f83116001811462000bb3576000841562000b9e578287015190505b62000baa858262000b1d565b86555062000c1a565b601f19841662000bc3866200095f565b60005b8281101562000bed5784890151825560018201915060208501945060208101905062000bc6565b8683101562000c0d578489015162000c09601f89168262000afd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cb05780860481111562000c885762000c8762000c22565b5b600185161562000c985780820291505b808102905062000ca88562000c51565b945062000c68565b94509492505050565b60008262000ccb576001905062000d9e565b8162000cdb576000905062000d9e565b816001811462000cf4576002811462000cff5762000d35565b600191505062000d9e565b60ff84111562000d145762000d1362000c22565b5b8360020a91508482111562000d2e5762000d2d62000c22565b5b5062000d9e565b5060208310610133831016604e8410600b841016171562000d6f5782820a90508381111562000d695762000d6862000c22565b5b62000d9e565b62000d7e848484600162000c5e565b9250905081840481111562000d985762000d9762000c22565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dbf82620009e7565b915062000dcc8362000da5565b925062000dfb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb9565b905092915050565b600062000e1082620009e7565b915062000e1d83620009e7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e595762000e5862000c22565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e968262000e69565b9050919050565b62000ea88162000e89565b811462000eb457600080fd5b50565b60008151905062000ec88162000e9d565b92915050565b60006020828403121562000ee75762000ee662000e64565b5b600062000ef78482850162000eb7565b91505092915050565b62000f0b8162000e89565b82525050565b600060408201905062000f28600083018562000f00565b62000f37602083018462000f00565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f87601f8362000f3e565b915062000f948262000f4f565b602082019050919050565b6000602082019050818103600083015262000fba8162000f78565b9050919050565b600062000fce82620009e7565b915062000fdb83620009e7565b925082820190508082111562000ff65762000ff562000c22565b5b92915050565b6200100781620009e7565b82525050565b600060208201905062001024600083018462000ffc565b92915050565b60805160a051612d896200108f6000396000818161093f015281816111e90152818161123e015281816112ac01526114f30152600081816108a201528181611887015281816119680152818161198f01528181611cce0152611cf50152612d896000f3fe6080604052600436106101c55760003560e01c80637c2f68c5116100f7578063aa4bde2811610095578063dab0c97e11610064578063dab0c97e146106c6578063dd62ed3e146106ef578063f2fde38b1461072c578063f345bd8514610755576101cc565b8063aa4bde28146105f8578063af8af69014610623578063bb85c6d114610660578063c9ed74431461069d576101cc565b80638da5cb5b116100d15780638da5cb5b1461052857806395d89b4114610553578063a457c2d71461057e578063a9059cbb146105bb576101cc565b80637c2f68c51461048357806381bfdcca146104c05780638c0b5e22146104fd576101cc565b80633950935111610164578063677daa571161013e578063677daa57146103c757806370a0823114610404578063715018a61461044157806375f0a87414610458576101cc565b8063395093511461033457806349bd5a5e14610371578063527ffabd1461039c576101cc565b80631694505e116101a05780631694505e1461027657806318160ddd146102a157806323b872dd146102cc578063313ce56714610309576101cc565b806289716a146101d157806306fdde031461020e578063095ea7b314610239576101cc565b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190611dff565b610780565b6040516102059190611e47565b60405180910390f35b34801561021a57600080fd5b506102236107eb565b6040516102309190611ef2565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b9190611f72565b61087d565b60405161026d9190611e47565b60405180910390f35b34801561028257600080fd5b5061028b6108a0565b6040516102989190612011565b60405180910390f35b3480156102ad57600080fd5b506102b66108c4565b6040516102c3919061203b565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612056565b6108ce565b6040516103009190611e47565b60405180910390f35b34801561031557600080fd5b5061031e6108fd565b60405161032b91906120c5565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190611f72565b610906565b6040516103689190611e47565b60405180910390f35b34801561037d57600080fd5b5061038661093d565b60405161039391906120ef565b60405180910390f35b3480156103a857600080fd5b506103b1610961565b6040516103be919061203b565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190611dff565b610967565b6040516103fb9190611e47565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061210a565b610981565b604051610438919061203b565b60405180910390f35b34801561044d57600080fd5b506104566109c9565b005b34801561046457600080fd5b5061046d6109dd565b60405161047a91906120ef565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190611dff565b610a03565b6040516104b79190611e47565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190611dff565b610a6e565b6040516104f49190611e47565b60405180910390f35b34801561050957600080fd5b50610512610a88565b60405161051f919061203b565b60405180910390f35b34801561053457600080fd5b5061053d610a8e565b60405161054a91906120ef565b60405180910390f35b34801561055f57600080fd5b50610568610ab8565b6040516105759190611ef2565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190611f72565b610b4a565b6040516105b29190611e47565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190611f72565b610bc1565b6040516105ef9190611e47565b60405180910390f35b34801561060457600080fd5b5061060d610be4565b60405161061a919061203b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612137565b610bea565b6040516106579190611e47565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061210a565b610c5b565b6040516106949190611e47565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190611dff565b610caf565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190611dff565b610cc1565b005b3480156106fb57600080fd5b5061071660048036038101906107119190612177565b610cd3565b604051610723919061203b565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e919061210a565b610d5a565b005b34801561076157600080fd5b5061076a610ddd565b604051610777919061203b565b60405180910390f35b600061078a610de3565b600a82600a5461079a91906121e6565b11156107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061228c565b60405180910390fd5b81600b8190555060019050919050565b6060600380546107fa906122db565b80601f0160208091040260200160405190810160405280929190818152602001828054610826906122db565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600080610888610e61565b9050610895818585610e69565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108d9610e61565b90506108e6858285611032565b6108f18585856110be565b60019150509392505050565b60006009905090565b600080610911610e61565b90506109328185856109238589610cd3565b61092d91906121e6565b610e69565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b6000610971610de3565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d1610de3565b6109db6000611646565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a0d610de3565b600a600b5483610a1d91906121e6565b1115610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a559061228c565b60405180910390fd5b81600a8190555060019050919050565b6000610a78610de3565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ac7906122db565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906122db565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b600080610b55610e61565b90506000610b638286610cd3565b905083811015610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f9061237e565b60405180910390fd5b610bb58286868403610e69565b60019250505092915050565b600080610bcc610e61565b9050610bd98185856110be565b600191505092915050565b600d5481565b6000610bf4610de3565b600a8284610c0291906121e6565b1115610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a9061228c565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610c65610de3565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610cb7610de3565b8060118190555050565b610cc9610de3565b8060128190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d62610de3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612410565b60405180910390fd5b610dda81611646565b50565b600a5481565b610deb610e61565b73ffffffffffffffffffffffffffffffffffffffff16610e09610a8e565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061247c565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061250e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906125a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611025919061203b565b60405180910390a3505050565b600061103e8484610cd3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b857818110156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061260c565b60405180910390fd5b6110b78484848403610e69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061269e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612730565b60405180910390fd5b806111a684610981565b10156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906127c2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112a55750601360009054906101000a900460ff16155b15611635577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113fc576000600f5461130b30610981565b61131591906127e2565b9050601154811061132c5761132b60115461170c565b5b601254600f54106113fa576113426012546117cd565b601254600f600082825461135691906127e2565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612862565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061149f5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114ac57819050611624565b600c548211156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906128f4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361159d57600d5461155084610981565b8361155b91906121e6565b111561159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390612986565b60405180910390fd5b5b60006064600b54846115af91906129a6565b6115b99190612a2f565b905060006064600a54856115cd91906129a6565b6115d79190612a2f565b905080826115e591906121e6565b846115f091906127e2565b925081600f600082825461160491906121e6565b925050819055506116218630838561161c91906121e6565b611a4d565b50505b61162f848483611a4d565b50611641565b611640838383611a4d565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826117369190612a2f565b90506000818361174691906127e2565b90506000479050611756836117cd565b6000814761176491906127e2565b90506117708382611cad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117a393929190612a60565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561180557611804612a97565b5b6040519080825280602002602001820160405280156118335781602001602082028036833780820191505090505b509050308160008151811061184b5761184a612ac6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119149190612b0a565b8160018151811061192857611927612ac6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061198d307f000000000000000000000000000000000000000000000000000000000000000084610e69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426119dc91906121e6565b6040518663ffffffff1660e01b81526004016119fc959493929190612c30565b600060405180830381600087803b158015611a1657600080fd5b505af1158015611a2a573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab39061269e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290612730565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906127c2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f919061203b565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611cf3307f000000000000000000000000000000000000000000000000000000000000000084610e69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611d3d610a8e565b426040518863ffffffff1660e01b8152600401611d5f96959493929190612c8a565b60606040518083038185885af1158015611d7d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611da29190612d00565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600080fd5b6000819050919050565b611ddc81611dc9565b8114611de757600080fd5b50565b600081359050611df981611dd3565b92915050565b600060208284031215611e1557611e14611dc4565b5b6000611e2384828501611dea565b91505092915050565b60008115159050919050565b611e4181611e2c565b82525050565b6000602082019050611e5c6000830184611e38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e9c578082015181840152602081019050611e81565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ec482611e62565b611ece8185611e6d565b9350611ede818560208601611e7e565b611ee781611ea8565b840191505092915050565b60006020820190508181036000830152611f0c8184611eb9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f3f82611f14565b9050919050565b611f4f81611f34565b8114611f5a57600080fd5b50565b600081359050611f6c81611f46565b92915050565b60008060408385031215611f8957611f88611dc4565b5b6000611f9785828601611f5d565b9250506020611fa885828601611dea565b9150509250929050565b6000819050919050565b6000611fd7611fd2611fcd84611f14565b611fb2565b611f14565b9050919050565b6000611fe982611fbc565b9050919050565b6000611ffb82611fde565b9050919050565b61200b81611ff0565b82525050565b60006020820190506120266000830184612002565b92915050565b61203581611dc9565b82525050565b6000602082019050612050600083018461202c565b92915050565b60008060006060848603121561206f5761206e611dc4565b5b600061207d86828701611f5d565b935050602061208e86828701611f5d565b925050604061209f86828701611dea565b9150509250925092565b600060ff82169050919050565b6120bf816120a9565b82525050565b60006020820190506120da60008301846120b6565b92915050565b6120e981611f34565b82525050565b600060208201905061210460008301846120e0565b92915050565b6000602082840312156121205761211f611dc4565b5b600061212e84828501611f5d565b91505092915050565b6000806040838503121561214e5761214d611dc4565b5b600061215c85828601611dea565b925050602061216d85828601611dea565b9150509250929050565b6000806040838503121561218e5761218d611dc4565b5b600061219c85828601611f5d565b92505060206121ad85828601611f5d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121f182611dc9565b91506121fc83611dc9565b9250828201905080821115612214576122136121b7565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612276602c83611e6d565b91506122818261221a565b604082019050919050565b600060208201905081810360008301526122a581612269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122f357607f821691505b602082108103612306576123056122ac565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612368602583611e6d565b91506123738261230c565b604082019050919050565b600060208201905081810360008301526123978161235b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123fa602683611e6d565b91506124058261239e565b604082019050919050565b60006020820190508181036000830152612429816123ed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612466602083611e6d565b915061247182612430565b602082019050919050565b6000602082019050818103600083015261249581612459565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124f8602483611e6d565b91506125038261249c565b604082019050919050565b60006020820190508181036000830152612527816124eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061258a602283611e6d565b91506125958261252e565b604082019050919050565b600060208201905081810360008301526125b98161257d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125f6601d83611e6d565b9150612601826125c0565b602082019050919050565b60006020820190508181036000830152612625816125e9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612688602583611e6d565b91506126938261262c565b604082019050919050565b600060208201905081810360008301526126b78161267b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061271a602383611e6d565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127ac602683611e6d565b91506127b782612750565b604082019050919050565b600060208201905081810360008301526127db8161279f565b9050919050565b60006127ed82611dc9565b91506127f883611dc9565b92508282039050818111156128105761280f6121b7565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061284c601283611e6d565b915061285782612816565b602082019050919050565b6000602082019050818103600083015261287b8161283f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006128de603983611e6d565b91506128e982612882565b604082019050919050565b6000602082019050818103600083015261290d816128d1565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612970603683611e6d565b915061297b82612914565b604082019050919050565b6000602082019050818103600083015261299f81612963565b9050919050565b60006129b182611dc9565b91506129bc83611dc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f5576129f46121b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a3a82611dc9565b9150612a4583611dc9565b925082612a5557612a54612a00565b5b828204905092915050565b6000606082019050612a75600083018661202c565b612a82602083018561202c565b612a8f604083018461202c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612b0481611f46565b92915050565b600060208284031215612b2057612b1f611dc4565b5b6000612b2e84828501612af5565b91505092915050565b6000819050919050565b6000612b5c612b57612b5284612b37565b611fb2565b611dc9565b9050919050565b612b6c81612b41565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ba781611f34565b82525050565b6000612bb98383612b9e565b60208301905092915050565b6000602082019050919050565b6000612bdd82612b72565b612be78185612b7d565b9350612bf283612b8e565b8060005b83811015612c23578151612c0a8882612bad565b9750612c1583612bc5565b925050600181019050612bf6565b5085935050505092915050565b600060a082019050612c45600083018861202c565b612c526020830187612b63565b8181036040830152612c648186612bd2565b9050612c7360608301856120e0565b612c80608083018461202c565b9695505050505050565b600060c082019050612c9f60008301896120e0565b612cac602083018861202c565b612cb96040830187612b63565b612cc66060830186612b63565b612cd360808301856120e0565b612ce060a083018461202c565b979650505050505050565b600081519050612cfa81611dd3565b92915050565b600080600060608486031215612d1957612d18611dc4565b5b6000612d2786828701612ceb565b9350506020612d3886828701612ceb565b9250506040612d4986828701612ceb565b915050925092509256fea2646970667358221220641a635d75fcbb34067835139c5bb58f219c75fa93d06ec9da33ed7762610fa864736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c55760003560e01c80637c2f68c5116100f7578063aa4bde2811610095578063dab0c97e11610064578063dab0c97e146106c6578063dd62ed3e146106ef578063f2fde38b1461072c578063f345bd8514610755576101cc565b8063aa4bde28146105f8578063af8af69014610623578063bb85c6d114610660578063c9ed74431461069d576101cc565b80638da5cb5b116100d15780638da5cb5b1461052857806395d89b4114610553578063a457c2d71461057e578063a9059cbb146105bb576101cc565b80637c2f68c51461048357806381bfdcca146104c05780638c0b5e22146104fd576101cc565b80633950935111610164578063677daa571161013e578063677daa57146103c757806370a0823114610404578063715018a61461044157806375f0a87414610458576101cc565b8063395093511461033457806349bd5a5e14610371578063527ffabd1461039c576101cc565b80631694505e116101a05780631694505e1461027657806318160ddd146102a157806323b872dd146102cc578063313ce56714610309576101cc565b806289716a146101d157806306fdde031461020e578063095ea7b314610239576101cc565b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190611dff565b610780565b6040516102059190611e47565b60405180910390f35b34801561021a57600080fd5b506102236107eb565b6040516102309190611ef2565b60405180910390f35b34801561024557600080fd5b50610260600480360381019061025b9190611f72565b61087d565b60405161026d9190611e47565b60405180910390f35b34801561028257600080fd5b5061028b6108a0565b6040516102989190612011565b60405180910390f35b3480156102ad57600080fd5b506102b66108c4565b6040516102c3919061203b565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612056565b6108ce565b6040516103009190611e47565b60405180910390f35b34801561031557600080fd5b5061031e6108fd565b60405161032b91906120c5565b60405180910390f35b34801561034057600080fd5b5061035b60048036038101906103569190611f72565b610906565b6040516103689190611e47565b60405180910390f35b34801561037d57600080fd5b5061038661093d565b60405161039391906120ef565b60405180910390f35b3480156103a857600080fd5b506103b1610961565b6040516103be919061203b565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190611dff565b610967565b6040516103fb9190611e47565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061210a565b610981565b604051610438919061203b565b60405180910390f35b34801561044d57600080fd5b506104566109c9565b005b34801561046457600080fd5b5061046d6109dd565b60405161047a91906120ef565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190611dff565b610a03565b6040516104b79190611e47565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190611dff565b610a6e565b6040516104f49190611e47565b60405180910390f35b34801561050957600080fd5b50610512610a88565b60405161051f919061203b565b60405180910390f35b34801561053457600080fd5b5061053d610a8e565b60405161054a91906120ef565b60405180910390f35b34801561055f57600080fd5b50610568610ab8565b6040516105759190611ef2565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190611f72565b610b4a565b6040516105b29190611e47565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190611f72565b610bc1565b6040516105ef9190611e47565b60405180910390f35b34801561060457600080fd5b5061060d610be4565b60405161061a919061203b565b60405180910390f35b34801561062f57600080fd5b5061064a60048036038101906106459190612137565b610bea565b6040516106579190611e47565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061210a565b610c5b565b6040516106949190611e47565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190611dff565b610caf565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190611dff565b610cc1565b005b3480156106fb57600080fd5b5061071660048036038101906107119190612177565b610cd3565b604051610723919061203b565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e919061210a565b610d5a565b005b34801561076157600080fd5b5061076a610ddd565b604051610777919061203b565b60405180910390f35b600061078a610de3565b600a82600a5461079a91906121e6565b11156107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061228c565b60405180910390fd5b81600b8190555060019050919050565b6060600380546107fa906122db565b80601f0160208091040260200160405190810160405280929190818152602001828054610826906122db565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600080610888610e61565b9050610895818585610e69565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108d9610e61565b90506108e6858285611032565b6108f18585856110be565b60019150509392505050565b60006009905090565b600080610911610e61565b90506109328185856109238589610cd3565b61092d91906121e6565b610e69565b600191505092915050565b7f000000000000000000000000c560a95c5291ff18078a00bc1d307fcf20cdaf9b81565b600b5481565b6000610971610de3565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d1610de3565b6109db6000611646565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a0d610de3565b600a600b5483610a1d91906121e6565b1115610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a559061228c565b60405180910390fd5b81600a8190555060019050919050565b6000610a78610de3565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ac7906122db565b80601f0160208091040260200160405190810160405280929190818152602001828054610af3906122db565b8015610b405780601f10610b1557610100808354040283529160200191610b40565b820191906000526020600020905b815481529060010190602001808311610b2357829003601f168201915b5050505050905090565b600080610b55610e61565b90506000610b638286610cd3565b905083811015610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f9061237e565b60405180910390fd5b610bb58286868403610e69565b60019250505092915050565b600080610bcc610e61565b9050610bd98185856110be565b600191505092915050565b600d5481565b6000610bf4610de3565b600a8284610c0291906121e6565b1115610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a9061228c565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610c65610de3565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610cb7610de3565b8060118190555050565b610cc9610de3565b8060128190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d62610de3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612410565b60405180910390fd5b610dda81611646565b50565b600a5481565b610deb610e61565b73ffffffffffffffffffffffffffffffffffffffff16610e09610a8e565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e569061247c565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061250e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906125a0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611025919061203b565b60405180910390a3505050565b600061103e8484610cd3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110b857818110156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061260c565b60405180910390fd5b6110b78484848403610e69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361112d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111249061269e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390612730565b60405180910390fd5b806111a684610981565b10156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906127c2565b60405180910390fd5b7f000000000000000000000000c560a95c5291ff18078a00bc1d307fcf20cdaf9b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061128c57507f000000000000000000000000c560a95c5291ff18078a00bc1d307fcf20cdaf9b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112a55750601360009054906101000a900460ff16155b15611635577f000000000000000000000000c560a95c5291ff18078a00bc1d307fcf20cdaf9b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113fc576000600f5461130b30610981565b61131591906127e2565b9050601154811061132c5761132b60115461170c565b5b601254600f54106113fa576113426012546117cd565b601254600f600082825461135691906127e2565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612862565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061149f5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114ac57819050611624565b600c548211156114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e8906128f4565b60405180910390fd5b7f000000000000000000000000c560a95c5291ff18078a00bc1d307fcf20cdaf9b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361159d57600d5461155084610981565b8361155b91906121e6565b111561159c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159390612986565b60405180910390fd5b5b60006064600b54846115af91906129a6565b6115b99190612a2f565b905060006064600a54856115cd91906129a6565b6115d79190612a2f565b905080826115e591906121e6565b846115f091906127e2565b925081600f600082825461160491906121e6565b925050819055506116218630838561161c91906121e6565b611a4d565b50505b61162f848483611a4d565b50611641565b611640838383611a4d565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826117369190612a2f565b90506000818361174691906127e2565b90506000479050611756836117cd565b6000814761176491906127e2565b90506117708382611cad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516117a393929190612a60565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561180557611804612a97565b5b6040519080825280602002602001820160405280156118335781602001602082028036833780820191505090505b509050308160008151811061184b5761184a612ac6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119149190612b0a565b8160018151811061192857611927612ac6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061198d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426119dc91906121e6565b6040518663ffffffff1660e01b81526004016119fc959493929190612c30565b600060405180830381600087803b158015611a1657600080fd5b505af1158015611a2a573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab39061269e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290612730565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906127c2565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c9f919061203b565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611cf3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611d3d610a8e565b426040518863ffffffff1660e01b8152600401611d5f96959493929190612c8a565b60606040518083038185885af1158015611d7d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611da29190612d00565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600080fd5b6000819050919050565b611ddc81611dc9565b8114611de757600080fd5b50565b600081359050611df981611dd3565b92915050565b600060208284031215611e1557611e14611dc4565b5b6000611e2384828501611dea565b91505092915050565b60008115159050919050565b611e4181611e2c565b82525050565b6000602082019050611e5c6000830184611e38565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e9c578082015181840152602081019050611e81565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ec482611e62565b611ece8185611e6d565b9350611ede818560208601611e7e565b611ee781611ea8565b840191505092915050565b60006020820190508181036000830152611f0c8184611eb9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f3f82611f14565b9050919050565b611f4f81611f34565b8114611f5a57600080fd5b50565b600081359050611f6c81611f46565b92915050565b60008060408385031215611f8957611f88611dc4565b5b6000611f9785828601611f5d565b9250506020611fa885828601611dea565b9150509250929050565b6000819050919050565b6000611fd7611fd2611fcd84611f14565b611fb2565b611f14565b9050919050565b6000611fe982611fbc565b9050919050565b6000611ffb82611fde565b9050919050565b61200b81611ff0565b82525050565b60006020820190506120266000830184612002565b92915050565b61203581611dc9565b82525050565b6000602082019050612050600083018461202c565b92915050565b60008060006060848603121561206f5761206e611dc4565b5b600061207d86828701611f5d565b935050602061208e86828701611f5d565b925050604061209f86828701611dea565b9150509250925092565b600060ff82169050919050565b6120bf816120a9565b82525050565b60006020820190506120da60008301846120b6565b92915050565b6120e981611f34565b82525050565b600060208201905061210460008301846120e0565b92915050565b6000602082840312156121205761211f611dc4565b5b600061212e84828501611f5d565b91505092915050565b6000806040838503121561214e5761214d611dc4565b5b600061215c85828601611dea565b925050602061216d85828601611dea565b9150509250929050565b6000806040838503121561218e5761218d611dc4565b5b600061219c85828601611f5d565b92505060206121ad85828601611f5d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121f182611dc9565b91506121fc83611dc9565b9250828201905080821115612214576122136121b7565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612276602c83611e6d565b91506122818261221a565b604082019050919050565b600060208201905081810360008301526122a581612269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806122f357607f821691505b602082108103612306576123056122ac565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612368602583611e6d565b91506123738261230c565b604082019050919050565b600060208201905081810360008301526123978161235b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123fa602683611e6d565b91506124058261239e565b604082019050919050565b60006020820190508181036000830152612429816123ed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612466602083611e6d565b915061247182612430565b602082019050919050565b6000602082019050818103600083015261249581612459565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124f8602483611e6d565b91506125038261249c565b604082019050919050565b60006020820190508181036000830152612527816124eb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061258a602283611e6d565b91506125958261252e565b604082019050919050565b600060208201905081810360008301526125b98161257d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125f6601d83611e6d565b9150612601826125c0565b602082019050919050565b60006020820190508181036000830152612625816125e9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612688602583611e6d565b91506126938261262c565b604082019050919050565b600060208201905081810360008301526126b78161267b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061271a602383611e6d565b9150612725826126be565b604082019050919050565b600060208201905081810360008301526127498161270d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127ac602683611e6d565b91506127b782612750565b604082019050919050565b600060208201905081810360008301526127db8161279f565b9050919050565b60006127ed82611dc9565b91506127f883611dc9565b92508282039050818111156128105761280f6121b7565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061284c601283611e6d565b915061285782612816565b602082019050919050565b6000602082019050818103600083015261287b8161283f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006128de603983611e6d565b91506128e982612882565b604082019050919050565b6000602082019050818103600083015261290d816128d1565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612970603683611e6d565b915061297b82612914565b604082019050919050565b6000602082019050818103600083015261299f81612963565b9050919050565b60006129b182611dc9565b91506129bc83611dc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129f5576129f46121b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a3a82611dc9565b9150612a4583611dc9565b925082612a5557612a54612a00565b5b828204905092915050565b6000606082019050612a75600083018661202c565b612a82602083018561202c565b612a8f604083018461202c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612b0481611f46565b92915050565b600060208284031215612b2057612b1f611dc4565b5b6000612b2e84828501612af5565b91505092915050565b6000819050919050565b6000612b5c612b57612b5284612b37565b611fb2565b611dc9565b9050919050565b612b6c81612b41565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ba781611f34565b82525050565b6000612bb98383612b9e565b60208301905092915050565b6000602082019050919050565b6000612bdd82612b72565b612be78185612b7d565b9350612bf283612b8e565b8060005b83811015612c23578151612c0a8882612bad565b9750612c1583612bc5565b925050600181019050612bf6565b5085935050505092915050565b600060a082019050612c45600083018861202c565b612c526020830187612b63565b8181036040830152612c648186612bd2565b9050612c7360608301856120e0565b612c80608083018461202c565b9695505050505050565b600060c082019050612c9f60008301896120e0565b612cac602083018861202c565b612cb96040830187612b63565b612cc66060830186612b63565b612cd360808301856120e0565b612ce060a083018461202c565b979650505050505050565b600081519050612cfa81611dd3565b92915050565b600080600060608486031215612d1957612d18611dc4565b5b6000612d2786828701612ceb565b9350506020612d3886828701612ceb565b9250506040612d4986828701612ceb565b915050925092509256fea2646970667358221220641a635d75fcbb34067835139c5bb58f219c75fa93d06ec9da33ed7762610fa864736f6c63430008100033

Deployed Bytecode Sourcemap

28223:8122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35302:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17942:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20216:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28910:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19080:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21040:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18923:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22756:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28968:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28576:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35917:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18107:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15201:103;;;;;;;;;;;;;:::i;:::-;;28741:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35608:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36107:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28617:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14553:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17766:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21840:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19660:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28677:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34629:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34441:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35027:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35170:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19253:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15459:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28535:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35302:301;35409:4;14439:13;:11;:13::i;:::-;35477:2:::1;35456:16;35440:15;;:32;;;;:::i;:::-;35439:40;;35431:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35557:16;35539:15;:34;;;;35591:4;35584:11;;35302:301:::0;;;:::o;17942:102::-;17998:13;18031:5;18024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17942:102;:::o;20216:244::-;20337:4;20359:13;20375:12;:10;:12::i;:::-;20359:28;;20398:32;20407:5;20414:7;20423:6;20398:8;:32::i;:::-;20448:4;20441:11;;;20216:244;;;;:::o;28910:51::-;;;:::o;19080:110::-;19143:7;19170:12;;19163:19;;19080:110;:::o;21040:297::-;21173:4;21190:15;21208:12;:10;:12::i;:::-;21190:30;;21231:38;21247:4;21253:7;21262:6;21231:15;:38::i;:::-;21280:27;21290:4;21296:2;21300:6;21280:9;:27::i;:::-;21325:4;21318:11;;;21040:297;;;;;:::o;18923:92::-;18981:5;19006:1;18999:8;;18923:92;:::o;22756:272::-;22873:4;22895:13;22911:12;:10;:12::i;:::-;22895:28;;22934:64;22943:5;22950:7;22987:10;22959:25;22969:5;22976:7;22959:9;:25::i;:::-;:38;;;;:::i;:::-;22934:8;:64::i;:::-;23016:4;23009:11;;;22756:272;;;;:::o;28968:38::-;;;:::o;28576:34::-;;;;:::o;35917:182::-;36019:4;14439:13;:11;:13::i;:::-;36055:12:::1;36041:11;:26;;;;36087:4;36080:11;;35917:182:::0;;;:::o;18107:177::-;18226:7;18258:9;:18;18268:7;18258:18;;;;;;;;;;;;;;;;18251:25;;18107:177;;;:::o;15201:103::-;14439:13;:11;:13::i;:::-;15266:30:::1;15293:1;15266:18;:30::i;:::-;15201:103::o:0;28741:75::-;;;;;;;;;;;;;:::o;35608:301::-;35715:4;14439:13;:11;:13::i;:::-;35783:2:::1;35763:15;;35746:16;:32;;;;:::i;:::-;35745:40;;35737:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35863:16;35845:15;:34;;;;35897:4;35890:11;;35608:301:::0;;;:::o;36107:198::-;36217:4;14439:13;:11;:13::i;:::-;36257:16:::1;36239:15;:34;;;;36293:4;36286:11;;36107:198:::0;;;:::o;28617:53::-;;;;:::o;14553:87::-;14599:7;14626:6;;;;;;;;;;;14619:13;;14553:87;:::o;17766:106::-;17824:13;17857:7;17850:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17766:106;:::o;21840:507::-;21962:4;21984:13;22000:12;:10;:12::i;:::-;21984:28;;22023:24;22050:25;22060:5;22067:7;22050:9;:25::i;:::-;22023:52;;22128:15;22108:16;:35;;22086:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22244:60;22253:5;22260:7;22288:15;22269:16;:34;22244:8;:60::i;:::-;22335:4;22328:11;;;;21840:507;;;;:::o;19660:236::-;19777:4;19799:13;19815:12;:10;:12::i;:::-;19799:28;;19838;19848:5;19855:2;19859:6;19838:9;:28::i;:::-;19884:4;19877:11;;;19660:236;;;;:::o;28677:57::-;;;;:::o;34629:390::-;34777:4;14439:13;:11;:13::i;:::-;34846:2:::1;34825:16;34808;:33;;;;:::i;:::-;34807:41;;34799:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;34926:16;34908:15;:34;;;;34971:16;34953:15;:34;;;;35007:4;35000:11;;34629:390:::0;;;;:::o;34441:182::-;34544:4;14439:13;:11;:13::i;:::-;34584:9:::1;34566:15;;:27;;;;;;;;;;;;;;;;;;34611:4;34604:11;;34441:182:::0;;;:::o;35027:139::-;14439:13;:11;:13::i;:::-;35151:6:::1;35118:30;:39;;;;35027:139:::0;:::o;35170:127::-;14439:13;:11;:13::i;:::-;35282:6:::1;35255:24;:33;;;;35170:127:::0;:::o;19253:201::-;19387:7;19419:11;:18;19431:5;19419:18;;;;;;;;;;;;;;;:27;19438:7;19419:27;;;;;;;;;;;;;;;;19412:34;;19253:201;;;;:::o;15459:238::-;14439:13;:11;:13::i;:::-;15582:1:::1;15562:22;;:8;:22;;::::0;15540:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15661:28;15680:8;15661:18;:28::i;:::-;15459:238:::0;:::o;28535:34::-;;;;:::o;14718:132::-;14793:12;:10;:12::i;:::-;14782:23;;:7;:5;:7::i;:::-;:23;;;14774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14718:132::o;13346:98::-;13399:7;13426:10;13419:17;;13346:98;:::o;25063:380::-;25216:1;25199:19;;:5;:19;;;25191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25297:1;25278:21;;:7;:21;;;25270:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25381:6;25351:11;:18;25363:5;25351:18;;;;;;;;;;;;;;;:27;25370:7;25351:27;;;;;;;;;;;;;;;:36;;;;25419:7;25403:32;;25412:5;25403:32;;;25428:6;25403:32;;;;;;:::i;:::-;;;;;;;;25063:380;;;:::o;25734:502::-;25869:24;25896:25;25906:5;25913:7;25896:9;:25::i;:::-;25869:52;;25956:17;25936:16;:37;25932:297;;26036:6;26016:16;:26;;25990:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26151:51;26160:5;26167:7;26195:6;26176:16;:25;26151:8;:51::i;:::-;25932:297;25858:378;25734:502;;;:::o;30892:2149::-;31006:1;30990:18;;:4;:18;;;30982:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31083:1;31069:16;;:2;:16;;;31061:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31163:6;31144:15;31154:4;31144:9;:15::i;:::-;:25;;31136:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31238:13;31230:21;;:4;:21;;;:44;;;;31261:13;31255:19;;:2;:19;;;31230:44;31229:67;;;;;31280:16;;;;;;;;;;;31279:17;31229:67;31225:1809;;;31325:13;31317:21;;:4;:21;;;31313:686;;31359:32;31421:18;;31394:24;31412:4;31394:9;:24::i;:::-;:45;;;;:::i;:::-;31359:80;;31490:30;;31462:24;:58;31458:154;;31545:47;31561:30;;31545:15;:47::i;:::-;31458:154;31658:24;;31635:18;;31634:48;31630:354;;31707:43;31725:24;;31707:17;:43::i;:::-;31795:24;;31773:18;;:46;;;;;;;:::i;:::-;;;;;;;;31842:9;31862:15;;;;;;;;;;;31854:29;;:52;31884:21;31854:52;;;;;;;;;;;;;;;;;;;;;;;31842:64;;31937:4;31929:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31684:300;31630:354;31340:659;31313:686;32015:22;32056:18;:24;32075:4;32056:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32084:18;:22;32103:2;32084:22;;;;;;;;;;;;;;;;;;;;;;;;;32056:50;32052:839;;;32144:6;32127:23;;32052:839;;;32223:11;;32213:6;:21;;32205:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32326:13;32318:21;;:4;:21;;;32315:178;;32399:15;;32381:13;32391:2;32381:9;:13::i;:::-;32372:6;:22;;;;:::i;:::-;32371:43;;32363:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32315:178;32513:22;32568:3;32549:15;;32540:6;:24;;;;:::i;:::-;32539:32;;;;:::i;:::-;32513:59;;32591:22;32646:3;32627:15;;32618:6;:24;;;;:::i;:::-;32617:32;;;;:::i;:::-;32591:59;;32713:14;32696;:31;;;;:::i;:::-;32686:6;:42;;;;:::i;:::-;32669:59;;32769:14;32747:18;;:36;;;;;;;:::i;:::-;;;;;;;;32804:71;32820:4;32834;32859:14;32842;:31;;;;:::i;:::-;32804:15;:71::i;:::-;32186:705;;32052:839;32905:41;32921:4;32927:2;32931:14;32905:15;:41::i;:::-;31298:1660;31225:1809;;;32989:33;33005:4;33011:2;33015:6;32989:15;:33::i;:::-;31225:1809;30892:2149;;;:::o;15857:191::-;15931:16;15950:6;;;;;;;;;;;15931:25;;15976:8;15967:6;;:17;;;;;;;;;;;;;;;;;;16031:8;16000:40;;16021:8;16000:40;;;;;;;;;;;;15920:128;15857:191;:::o;33049:474::-;29488:4;29469:16;;:23;;;;;;;;;;;;;;;;;;33135:12:::1;33174:1;33151:20;:24;;;;:::i;:::-;33135:41;;33187:17;33231:4;33208:20;:27;;;;:::i;:::-;33187:49;;33249:22;33274:21;33249:46;;33308:23;33326:4;33308:17;:23::i;:::-;33344:18;33390:14;33366:21;:38;;;;:::i;:::-;33344:61;;33418:36;33432:9;33443:10;33418:13;:36::i;:::-;33472:43;33487:4;33493:10;33505:9;33472:43;;;;;;;;:::i;:::-;;;;;;;;33124:399;;;;29534:5:::0;29515:16;;:24;;;;;;;;;;;;;;;;;;33049:474;:::o;33531:496::-;29488:4;29469:16;;:23;;;;;;;;;;;;;;;;;;33610:21:::1;33648:1;33634:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33610:40;;33679:4;33661;33666:1;33661:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33705:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33695:4;33700:1;33695:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33740:62;33757:4;33772:15;33790:11;33740:8;:62::i;:::-;33815:15;:66;;;33896:11;33922:1;33938:4;33965;34004:3;33986:15;:21;;;;:::i;:::-;33815:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33599:428;29534:5:::0;29515:16;;:24;;;;;;;;;;;;;;;;;;33531:496;:::o;26244:776::-;26391:1;26375:18;;:4;:18;;;26367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26468:1;26454:16;;:2;:16;;;26446:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26523:19;26545:9;:15;26555:4;26545:15;;;;;;;;;;;;;;;;26523:37;;26608:6;26593:11;:21;;26571:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26748:6;26734:11;:20;26716:9;:15;26726:4;26716:15;;;;;;;;;;;;;;;:38;;;;26951:6;26934:9;:13;26944:2;26934:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27001:2;26986:26;;26995:4;26986:26;;;27005:6;26986:26;;;;;;:::i;:::-;;;;;;;;26356:664;26244:776;;;:::o;34035:398::-;29488:4;29469:16;;:23;;;;;;;;;;;;;;;;;;34152:62:::1;34169:4;34184:15;34202:11;34152:8;:62::i;:::-;34227:15;:31;;;34266:9;34299:4;34319:11;34345:1;34361::::0;34377:7:::1;:5;:7::i;:::-;34399:15;34227:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29534:5:::0;29515:16;;:24;;;;;;;;;;;;;;;;;;34035:398;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:90::-;1059:7;1102:5;1095:13;1088:21;1077:32;;1025:90;;;:::o;1121:109::-;1202:21;1217:5;1202:21;:::i;:::-;1197:3;1190:34;1121:109;;:::o;1236:210::-;1323:4;1361:2;1350:9;1346:18;1338:26;;1374:65;1436:1;1425:9;1421:17;1412:6;1374:65;:::i;:::-;1236:210;;;;:::o;1452:99::-;1504:6;1538:5;1532:12;1522:22;;1452:99;;;:::o;1557:169::-;1641:11;1675:6;1670:3;1663:19;1715:4;1710:3;1706:14;1691:29;;1557:169;;;;:::o;1732:246::-;1813:1;1823:113;1837:6;1834:1;1831:13;1823:113;;;1922:1;1917:3;1913:11;1907:18;1903:1;1898:3;1894:11;1887:39;1859:2;1856:1;1852:10;1847:15;;1823:113;;;1970:1;1961:6;1956:3;1952:16;1945:27;1794:184;1732:246;;;:::o;1984:102::-;2025:6;2076:2;2072:7;2067:2;2060:5;2056:14;2052:28;2042:38;;1984:102;;;:::o;2092:377::-;2180:3;2208:39;2241:5;2208:39;:::i;:::-;2263:71;2327:6;2322:3;2263:71;:::i;:::-;2256:78;;2343:65;2401:6;2396:3;2389:4;2382:5;2378:16;2343:65;:::i;:::-;2433:29;2455:6;2433:29;:::i;:::-;2428:3;2424:39;2417:46;;2184:285;2092:377;;;;:::o;2475:313::-;2588:4;2626:2;2615:9;2611:18;2603:26;;2675:9;2669:4;2665:20;2661:1;2650:9;2646:17;2639:47;2703:78;2776:4;2767:6;2703:78;:::i;:::-;2695:86;;2475:313;;;;:::o;2794:126::-;2831:7;2871:42;2864:5;2860:54;2849:65;;2794:126;;;:::o;2926:96::-;2963:7;2992:24;3010:5;2992:24;:::i;:::-;2981:35;;2926:96;;;:::o;3028:122::-;3101:24;3119:5;3101:24;:::i;:::-;3094:5;3091:35;3081:63;;3140:1;3137;3130:12;3081:63;3028:122;:::o;3156:139::-;3202:5;3240:6;3227:20;3218:29;;3256:33;3283:5;3256:33;:::i;:::-;3156:139;;;;:::o;3301:474::-;3369:6;3377;3426:2;3414:9;3405:7;3401:23;3397:32;3394:119;;;3432:79;;:::i;:::-;3394:119;3552:1;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3523:117;3679:2;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3650:118;3301:474;;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:152::-;4203:9;4236:37;4267:5;4236:37;:::i;:::-;4223:50;;4127:152;;;:::o;4285:183::-;4398:63;4455:5;4398:63;:::i;:::-;4393:3;4386:76;4285:183;;:::o;4474:274::-;4593:4;4631:2;4620:9;4616:18;4608:26;;4644:97;4738:1;4727:9;4723:17;4714:6;4644:97;:::i;:::-;4474:274;;;;:::o;4754:118::-;4841:24;4859:5;4841:24;:::i;:::-;4836:3;4829:37;4754:118;;:::o;4878:222::-;4971:4;5009:2;4998:9;4994:18;4986:26;;5022:71;5090:1;5079:9;5075:17;5066:6;5022:71;:::i;:::-;4878:222;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:86::-;5766:7;5806:4;5799:5;5795:16;5784:27;;5731:86;;;:::o;5823:112::-;5906:22;5922:5;5906:22;:::i;:::-;5901:3;5894:35;5823:112;;:::o;5941:214::-;6030:4;6068:2;6057:9;6053:18;6045:26;;6081:67;6145:1;6134:9;6130:17;6121:6;6081:67;:::i;:::-;5941:214;;;;:::o;6161:118::-;6248:24;6266:5;6248:24;:::i;:::-;6243:3;6236:37;6161:118;;:::o;6285:222::-;6378:4;6416:2;6405:9;6401:18;6393:26;;6429:71;6497:1;6486:9;6482:17;6473:6;6429:71;:::i;:::-;6285:222;;;;:::o;6513:329::-;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:191;8034:3;8053:20;8071:1;8053:20;:::i;:::-;8048:25;;8087:20;8105:1;8087:20;:::i;:::-;8082:25;;8130:1;8127;8123:9;8116:16;;8151:3;8148:1;8145:10;8142:36;;;8158:18;;:::i;:::-;8142:36;7994:191;;;;:::o;8191:231::-;8331:34;8327:1;8319:6;8315:14;8308:58;8400:14;8395:2;8387:6;8383:15;8376:39;8191:231;:::o;8428:366::-;8570:3;8591:67;8655:2;8650:3;8591:67;:::i;:::-;8584:74;;8667:93;8756:3;8667:93;:::i;:::-;8785:2;8780:3;8776:12;8769:19;;8428:366;;;:::o;8800:419::-;8966:4;9004:2;8993:9;8989:18;8981:26;;9053:9;9047:4;9043:20;9039:1;9028:9;9024:17;9017:47;9081:131;9207:4;9081:131;:::i;:::-;9073:139;;8800:419;;;:::o;9225:180::-;9273:77;9270:1;9263:88;9370:4;9367:1;9360:15;9394:4;9391:1;9384:15;9411:320;9455:6;9492:1;9486:4;9482:12;9472:22;;9539:1;9533:4;9529:12;9560:18;9550:81;;9616:4;9608:6;9604:17;9594:27;;9550:81;9678:2;9670:6;9667:14;9647:18;9644:38;9641:84;;9697:18;;:::i;:::-;9641:84;9462:269;9411:320;;;:::o;9737:224::-;9877:34;9873:1;9865:6;9861:14;9854:58;9946:7;9941:2;9933:6;9929:15;9922:32;9737:224;:::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:182::-;11932:34;11928:1;11920:6;11916:14;11909:58;11792:182;:::o;11980:366::-;12122:3;12143:67;12207:2;12202:3;12143:67;:::i;:::-;12136:74;;12219:93;12308:3;12219:93;:::i;:::-;12337:2;12332:3;12328:12;12321:19;;11980:366;;;:::o;12352:419::-;12518:4;12556:2;12545:9;12541:18;12533:26;;12605:9;12599:4;12595:20;12591:1;12580:9;12576:17;12569:47;12633:131;12759:4;12633:131;:::i;:::-;12625:139;;12352:419;;;:::o;12777:223::-;12917:34;12913:1;12905:6;12901:14;12894:58;12986:6;12981:2;12973:6;12969:15;12962:31;12777:223;:::o;13006:366::-;13148:3;13169:67;13233:2;13228:3;13169:67;:::i;:::-;13162:74;;13245:93;13334:3;13245:93;:::i;:::-;13363:2;13358:3;13354:12;13347:19;;13006:366;;;:::o;13378:419::-;13544:4;13582:2;13571:9;13567:18;13559:26;;13631:9;13625:4;13621:20;13617:1;13606:9;13602:17;13595:47;13659:131;13785:4;13659:131;:::i;:::-;13651:139;;13378:419;;;:::o;13803:221::-;13943:34;13939:1;13931:6;13927:14;13920:58;14012:4;14007:2;13999:6;13995:15;13988:29;13803:221;:::o;14030:366::-;14172:3;14193:67;14257:2;14252:3;14193:67;:::i;:::-;14186:74;;14269:93;14358:3;14269:93;:::i;:::-;14387:2;14382:3;14378:12;14371:19;;14030:366;;;:::o;14402:419::-;14568:4;14606:2;14595:9;14591:18;14583:26;;14655:9;14649:4;14645:20;14641:1;14630:9;14626:17;14619:47;14683:131;14809:4;14683:131;:::i;:::-;14675:139;;14402:419;;;:::o;14827:179::-;14967:31;14963:1;14955:6;14951:14;14944:55;14827:179;:::o;15012:366::-;15154:3;15175:67;15239:2;15234:3;15175:67;:::i;:::-;15168:74;;15251:93;15340:3;15251:93;:::i;:::-;15369:2;15364:3;15360:12;15353:19;;15012:366;;;:::o;15384:419::-;15550:4;15588:2;15577:9;15573:18;15565:26;;15637:9;15631:4;15627:20;15623:1;15612:9;15608:17;15601:47;15665:131;15791:4;15665:131;:::i;:::-;15657:139;;15384:419;;;:::o;15809:224::-;15949:34;15945:1;15937:6;15933:14;15926:58;16018:7;16013:2;16005:6;16001:15;15994:32;15809:224;:::o;16039:366::-;16181:3;16202:67;16266:2;16261:3;16202:67;:::i;:::-;16195:74;;16278:93;16367:3;16278:93;:::i;:::-;16396:2;16391:3;16387:12;16380:19;;16039:366;;;:::o;16411:419::-;16577:4;16615:2;16604:9;16600:18;16592:26;;16664:9;16658:4;16654:20;16650:1;16639:9;16635:17;16628:47;16692:131;16818:4;16692:131;:::i;:::-;16684:139;;16411:419;;;:::o;16836:222::-;16976:34;16972:1;16964:6;16960:14;16953:58;17045:5;17040:2;17032:6;17028:15;17021:30;16836:222;:::o;17064:366::-;17206:3;17227:67;17291:2;17286:3;17227:67;:::i;:::-;17220:74;;17303:93;17392:3;17303:93;:::i;:::-;17421:2;17416:3;17412:12;17405:19;;17064:366;;;:::o;17436:419::-;17602:4;17640:2;17629:9;17625:18;17617:26;;17689:9;17683:4;17679:20;17675:1;17664:9;17660:17;17653:47;17717:131;17843:4;17717:131;:::i;:::-;17709:139;;17436:419;;;:::o;17861:225::-;18001:34;17997:1;17989:6;17985:14;17978:58;18070:8;18065:2;18057:6;18053:15;18046:33;17861:225;:::o;18092:366::-;18234:3;18255:67;18319:2;18314:3;18255:67;:::i;:::-;18248:74;;18331:93;18420:3;18331:93;:::i;:::-;18449:2;18444:3;18440:12;18433:19;;18092:366;;;:::o;18464:419::-;18630:4;18668:2;18657:9;18653:18;18645:26;;18717:9;18711:4;18707:20;18703:1;18692:9;18688:17;18681:47;18745:131;18871:4;18745:131;:::i;:::-;18737:139;;18464:419;;;:::o;18889:194::-;18929:4;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19027:1;19024;19020:9;19012:17;;19051:1;19045:4;19042:11;19039:37;;;19056:18;;:::i;:::-;19039:37;18889:194;;;;:::o;19089:168::-;19229:20;19225:1;19217:6;19213:14;19206:44;19089:168;:::o;19263:366::-;19405:3;19426:67;19490:2;19485:3;19426:67;:::i;:::-;19419:74;;19502:93;19591:3;19502:93;:::i;:::-;19620:2;19615:3;19611:12;19604:19;;19263:366;;;:::o;19635:419::-;19801:4;19839:2;19828:9;19824:18;19816:26;;19888:9;19882:4;19878:20;19874:1;19863:9;19859:17;19852:47;19916:131;20042:4;19916:131;:::i;:::-;19908:139;;19635:419;;;:::o;20060:244::-;20200:34;20196:1;20188:6;20184:14;20177:58;20269:27;20264:2;20256:6;20252:15;20245:52;20060:244;:::o;20310:366::-;20452:3;20473:67;20537:2;20532:3;20473:67;:::i;:::-;20466:74;;20549:93;20638:3;20549:93;:::i;:::-;20667:2;20662:3;20658:12;20651:19;;20310:366;;;:::o;20682:419::-;20848:4;20886:2;20875:9;20871:18;20863:26;;20935:9;20929:4;20925:20;20921:1;20910:9;20906:17;20899:47;20963:131;21089:4;20963:131;:::i;:::-;20955:139;;20682:419;;;:::o;21107:241::-;21247:34;21243:1;21235:6;21231:14;21224:58;21316:24;21311:2;21303:6;21299:15;21292:49;21107:241;:::o;21354:366::-;21496:3;21517:67;21581:2;21576:3;21517:67;:::i;:::-;21510:74;;21593:93;21682:3;21593:93;:::i;:::-;21711:2;21706:3;21702:12;21695:19;;21354:366;;;:::o;21726:419::-;21892:4;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21726:419;;;:::o;22151:348::-;22191:7;22214:20;22232:1;22214:20;:::i;:::-;22209:25;;22248:20;22266:1;22248:20;:::i;:::-;22243:25;;22436:1;22368:66;22364:74;22361:1;22358:81;22353:1;22346:9;22339:17;22335:105;22332:131;;;22443:18;;:::i;:::-;22332:131;22491:1;22488;22484:9;22473:20;;22151:348;;;;:::o;22505:180::-;22553:77;22550:1;22543:88;22650:4;22647:1;22640:15;22674:4;22671:1;22664:15;22691:185;22731:1;22748:20;22766:1;22748:20;:::i;:::-;22743:25;;22782:20;22800:1;22782:20;:::i;:::-;22777:25;;22821:1;22811:35;;22826:18;;:::i;:::-;22811:35;22868:1;22865;22861:9;22856:14;;22691:185;;;;:::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://641a635d75fcbb34067835139c5bb58f219c75fa93d06ec9da33ed7762610fa8
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.