ETH Price: $3,515.35 (+0.81%)
Gas: 2 Gwei

Token

Zenith Wallet (ZW)
 

Overview

Max Total Supply

100,000,000 ZW

Holders

178

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cheekykunt.eth
Balance
0 ZW

Value
$0.00
0x72958b8f81e98ccda72f657e904affa8b7540420
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zenith Wallet ($ZW) is the Swiss-army knife of crypto trading with a full portfolio of features.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZenithWallet

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 9999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-18
*/

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: tests/ZenithWallet.sol

//SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;







contract ZenithWallet is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Zenith Wallet", "ZW") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x14086C6D908F59aBc786a26276a20d49944c3bb8); // set as marketing wallet
        devWallet = address(0x4Dd633BDBF175Df2157b5d88AFe1C0F9E9eB2f3d); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 5, "Must keep fees at 5% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 5, "Must keep fees at 5% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function setMainAutomatedMarketMakerPair(address pair)
        public
        onlyOwner
    {
        require(
            address(0) == uniswapV2Pair,
            "The pair can only be set once"
        );
        uniswapV2Pair = pair;
        excludeFromMaxTransaction(pair, true);
        _setAutomatedMarketMakerPair(pair, true);
    }

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

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"tokensIntoLiquidity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setMainAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526019600c55600d805460ff19908116909155610e10600e556107086010556012805462ffffff19166001908117909155601480549092161790553480156200004b57600080fd5b506040518060400160405280600d81526020016c16995b9a5d1a0815d85b1b195d609a1b815250604051806040016040528060028152602001615a5760f01b81525081600390816200009e919062000530565b506004620000ad828262000530565b505050620000ca620000c46200027060201b60201c565b62000274565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ec816001620002c6565b6001600160a01b0381166080526a01a784379d99db420000006009819055600b55600460016000601481806a52b7d2dcc80cd2e40000006127106200013382600562000612565b6200013f919062000632565b600a55601687905560178690556018859055846200015e878962000655565b6200016a919062000655565b601555601a849055601b839055601c8290558162000189848662000655565b62000195919062000655565b601955600780546001600160a01b03199081167314086c6d908f59abc786a26276a20d49944c3bb81790915560088054909116734dd633bdbf175df2157b5d88afe1c0f9e9eb2f3d179055620001ff620001f76005546001600160a01b031690565b6001620002fb565b6200020c306001620002fb565b6200021b61dead6001620002fb565b6200023a620002326005546001600160a01b031690565b6001620002c6565b62000247306001620002c6565b6200025661dead6001620002c6565b62000262338262000362565b50505050505050506200066b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002d062000429565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6200030562000429565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003be5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003d2919062000655565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003b5565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004b757607f821691505b602082108103620004d857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048757600081815260208120601f850160051c81016020861015620005075750805b601f850160051c820191505b81811015620005285782815560010162000513565b505050505050565b81516001600160401b038111156200054c576200054c6200048c565b62000564816200055d8454620004a2565b84620004de565b602080601f8311600181146200059c5760008415620005835750858301515b600019600386901b1c1916600185901b17855562000528565b600085815260208120601f198616915b82811015620005cd57888601518255948401946001909101908401620005ac565b5085821015620005ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200062c576200062c620005fc565b92915050565b6000826200065057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200062c576200062c620005fc565b608051613a62620006b160003960008181610465015281816121f10152818161332c0152818161340c0152818161346e015281816134e8015261355e0152613a626000f3fe6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b48578063f637434214610b68578063f8b45b0514610b7e578063fe72b27a14610b9457600080fd5b8063dd62ed3e14610ab4578063e2f4560514610b07578063e884f26014610b1d578063f11a24d314610b3257600080fd5b8063c876d0b9116100dc578063c876d0b914610a4e578063c8c8ebe414610a68578063d257b34f14610a7e578063d85ba06314610a9e57600080fd5b8063bbc0c742146109cf578063c0246668146109ee578063c17b5b8c14610a0e578063c18bc19514610a2e57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610949578063a9059cbb1461095f578063aacebbe31461097f578063b62496f51461099f57600080fd5b80639ec22c0e146108e75780639fccce32146108fd578063a0d82dc514610913578063a457c2d71461092957600080fd5b8063924de9b7116101c1578063924de9b71461087c57806395d89b411461089c5780639a7a23d6146108b15780639c3b4fdc146108d157600080fd5b80638a8c523c146107f95780638da5cb5b1461080e5780638ea5220f14610839578063921369131461086657600080fd5b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a1461077657806375f0a874146107965780637bce5a04146107c35780638095d564146107d957600080fd5b806370a08231146106e9578063715018a61461072c578063730c188814610741578063751039fc1461076157600080fd5b80634a62bb65116102b15780634a62bb65146106545780634fbee1931461066e5780636a486a8e146106b35780636ddd1713146106c957600080fd5b8063313ce567146105cb57806339509351146105e75780633dae633a1461060757806349bd5a5e1461062757600080fd5b8063199ffc721161035a57806323b872dd1161032957806323b872dd1461056557806327c8f835146105855780632c3e486c1461059b5780632e82f1a0146105b157600080fd5b8063199ffc72146105035780631a8145bb146105195780631f3fed8f1461052f578063203e727e1461054557600080fd5b80631694505e116103965780631694505e1461045357806318160ddd146104ac5780631816467f146104cb578063184c16c5146104ed57600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610bb4565b6040516103ea91906135e9565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004613677565b610c46565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e3660046136a3565b60216020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103ea565b3480156104b857600080fd5b506002545b6040519081526020016103ea565b3480156104d757600080fd5b506104eb6104e63660046136a3565b610c60565b005b3480156104f957600080fd5b506104bd60105481565b34801561050f57600080fd5b506104bd600c5481565b34801561052557600080fd5b506104bd601e5481565b34801561053b57600080fd5b506104bd601d5481565b34801561055157600080fd5b506104eb6105603660046136c0565b610cf7565b34801561057157600080fd5b506104136105803660046136d9565b610ddf565b34801561059157600080fd5b5061048761dead81565b3480156105a757600080fd5b506104bd600e5481565b3480156105bd57600080fd5b50600d546104139060ff1681565b3480156105d757600080fd5b50604051601281526020016103ea565b3480156105f357600080fd5b50610413610602366004613677565b610e03565b34801561061357600080fd5b506104eb6106223660046136a3565b610e4f565b34801561063357600080fd5b506006546104879073ffffffffffffffffffffffffffffffffffffffff1681565b34801561066057600080fd5b506012546104139060ff1681565b34801561067a57600080fd5b506104136106893660046136a3565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b3480156106bf57600080fd5b506104bd60195481565b3480156106d557600080fd5b506012546104139062010000900460ff1681565b3480156106f557600080fd5b506104bd6107043660046136a3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561073857600080fd5b506104eb610f30565b34801561074d57600080fd5b506104eb61075c36600461372a565b610f44565b34801561076d57600080fd5b506104136110b4565b34801561078257600080fd5b506104eb61079136600461375f565b6110ec565b3480156107a257600080fd5b506007546104879073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107cf57600080fd5b506104bd60165481565b3480156107e557600080fd5b506104eb6107f4366004613794565b61114a565b34801561080557600080fd5b506104eb6111ea565b34801561081a57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610487565b34801561084557600080fd5b506008546104879073ffffffffffffffffffffffffffffffffffffffff1681565b34801561087257600080fd5b506104bd601a5481565b34801561088857600080fd5b506104eb6108973660046137c0565b611225565b3480156108a857600080fd5b506103dd611265565b3480156108bd57600080fd5b506104eb6108cc36600461375f565b611274565b3480156108dd57600080fd5b506104bd60185481565b3480156108f357600080fd5b506104bd60115481565b34801561090957600080fd5b506104bd601f5481565b34801561091f57600080fd5b506104bd601c5481565b34801561093557600080fd5b50610413610944366004613677565b611335565b34801561095557600080fd5b506104bd600f5481565b34801561096b57600080fd5b5061041361097a366004613677565b611406565b34801561098b57600080fd5b506104eb61099a3660046136a3565b611414565b3480156109ab57600080fd5b506104136109ba3660046136a3565b60226020526000908152604090205460ff1681565b3480156109db57600080fd5b5060125461041390610100900460ff1681565b3480156109fa57600080fd5b506104eb610a0936600461375f565b6114ab565b348015610a1a57600080fd5b506104eb610a29366004613794565b61153b565b348015610a3a57600080fd5b506104eb610a493660046136c0565b6115d6565b348015610a5a57600080fd5b506014546104139060ff1681565b348015610a7457600080fd5b506104bd60095481565b348015610a8a57600080fd5b50610413610a993660046136c0565b6116b8565b348015610aaa57600080fd5b506104bd60155481565b348015610ac057600080fd5b506104bd610acf3660046137db565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1357600080fd5b506104bd600a5481565b348015610b2957600080fd5b50610413611831565b348015610b3e57600080fd5b506104bd60175481565b348015610b5457600080fd5b506104eb610b633660046136a3565b611869565b348015610b7457600080fd5b506104bd601b5481565b348015610b8a57600080fd5b506104bd600b5481565b348015610ba057600080fd5b50610413610baf3660046136c0565b61191d565b606060038054610bc390613814565b80601f0160208091040260200160405190810160405280929190818152602001828054610bef90613814565b8015610c3c5780601f10610c1157610100808354040283529160200191610c3c565b820191906000526020600020905b815481529060010190602001808311610c1f57829003601f168201915b5050505050905090565b600033610c54818585611bcb565b60019150505b92915050565b610c68611d7e565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610cff611d7e565b670de0b6b3a76400006103e8610d1460025490565b610d1f906001613896565b610d2991906138ad565b610d3391906138ad565b811015610dc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3125000000000000000000000000000000000060648201526084015b60405180910390fd5b610dd981670de0b6b3a7640000613896565b60095550565b600033610ded858285611dff565b610df8858585611ed6565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c549082908690610e4a9087906138e8565b611bcb565b610e57611d7e565b60065473ffffffffffffffffffffffffffffffffffffffff1615610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f54686520706169722063616e206f6e6c7920626520736574206f6e63650000006044820152606401610dbe565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610f228160016110ec565b610f2d816001612b37565b50565b610f38611d7e565b610f426000612bb6565b565b610f4c611d7e565b610258831015610fde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610dbe565b6103e88211158015610fee575060015b61107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610dbe565b600e92909255600c55600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006110be611d7e565b50601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6110f4611d7e565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611152611d7e565b6016839055601782905560188190558061116c83856138e8565b61117691906138e8565b6015819055600510156111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610dbe565b505050565b6111f2611d7e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600f55565b61122d611d7e565b6012805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bc390613814565b61127c611d7e565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dbe565b6113318282612b37565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dbe565b610df88286868403611bcb565b600033610c54818585611ed6565b61141c611d7e565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6114b3611d7e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611543611d7e565b601a839055601b829055601c8190558061155d83856138e8565b61156791906138e8565b6019819055600510156111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610dbe565b6115de611d7e565b670de0b6b3a76400006103e86115f360025490565b6115fe906005613896565b61160891906138ad565b61161291906138ad565b8110156116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b6116b281670de0b6b3a7640000613896565b600b5550565b60006116c2611d7e565b620186a06116cf60025490565b6116da906001613896565b6116e491906138ad565b821015611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dbe565b6103e861177f60025490565b61178a906005613896565b61179491906138ad565b821115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dbe565b50600a81905560015b919050565b600061183b611d7e565b50601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b611871611d7e565b73ffffffffffffffffffffffffffffffffffffffff8116611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dbe565b610f2d81612bb6565b6000611927611d7e565b60105460115461193791906138e8565b421161199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610dbe565b6103e8821115611a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610dbe565b426011556006546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260009030906370a0823190602401602060405180830381865afa158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aca91906138fb565b90506000611ae4612710611ade8487612c2d565b90612c40565b90508015611b1257600654611b129073ffffffffffffffffffffffffffffffffffffffff1661dead83612c4c565b600654604080517ffff6cae9000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff90921691829163fff6cae991600480830192600092919082900301818387803b158015611b7f57600080fd5b505af1158015611b93573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8216611d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ed05781811015611ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dbe565b611ed08484848403611bcb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611f79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff821661201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b80600003612030576111e583836000612c4c565b60125460ff161561268f5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612081575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156120a2575073ffffffffffffffffffffffffffffffffffffffff821615155b80156120c6575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156120ed575060065474010000000000000000000000000000000000000000900460ff16155b1561268f57601254610100900460ff166121be5773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff1680612158575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6121be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dbe565b60145460ff16156123435760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061224057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612267575060065473ffffffffffffffffffffffffffffffffffffffff838116911614155b1561234357326000908152601360205260409020544311612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610dbe565b3260009081526013602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff16801561239e575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b156124d557600954811115612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dbe565b600b5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461246890836138e8565b11156124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dbe565b61268f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612530575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b156125c7576009548111156124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff1661268f57600b5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461262790836138e8565b111561268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dbe565b30600090815260208190526040902054600a54811080159081906126bb575060125462010000900460ff165b80156126e2575060065474010000000000000000000000000000000000000000900460ff16155b8015612714575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612745575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612776575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b156127eb57600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556127c2612ebb565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065474010000000000000000000000000000000000000000900460ff1615801561283b575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b80156128495750600d5460ff165b80156128645750600e54600f5461286091906138e8565b4210155b8015612895575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b156128a4576128a261310f565b505b60065473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7401000000000000000000000000000000000000000090920482161591168061291b575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612924575060005b60008115612b235773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff16801561296357506000601954115b15612a1b576129826064611ade60195488612c2d90919063ffffffff16565b9050601954601b54826129959190613896565b61299f91906138ad565b601e60008282546129b091906138e8565b9091555050601954601c546129c59083613896565b6129cf91906138ad565b601f60008282546129e091906138e8565b9091555050601954601a546129f59083613896565b6129ff91906138ad565b601d6000828254612a1091906138e8565b90915550612b059050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612a5257506000601554115b15612b0557612a716064611ade60155488612c2d90919063ffffffff16565b905060155460175482612a849190613896565b612a8e91906138ad565b601e6000828254612a9f91906138e8565b9091555050601554601854612ab49083613896565b612abe91906138ad565b601f6000828254612acf91906138e8565b9091555050601554601654612ae49083613896565b612aee91906138ad565b601d6000828254612aff91906138e8565b90915550505b8015612b1657612b16873083612c4c565b612b208186613914565b94505b612b2e878787612c4c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612c398284613896565b9392505050565b6000612c3982846138ad565b73ffffffffffffffffffffffffffffffffffffffff8316612cef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8216612d92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ed0565b3060009081526020819052604081205490506000601f54601d54601e54612ee291906138e8565b612eec91906138e8565b90506000821580612efb575081155b15612f0557505050565b600a54612f13906014613896565b831115612f2b57600a54612f28906014613896565b92505b6000600283601e5486612f3e9190613896565b612f4891906138ad565b612f5291906138ad565b90506000612f6085836132af565b905047612f6c826132bb565b6000612f7847836132af565b90506000612f9587611ade601d5485612c2d90919063ffffffff16565b90506000612fb288611ade601f5486612c2d90919063ffffffff16565b9050600081612fc18486613914565b612fcb9190613914565b6000601e819055601d819055601f81905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613035576040519150601f19603f3d011682016040523d82523d6000602084013e61303a565b606091505b5090985050861580159061304e5750600081115b156130a15761305d87826134e2565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60075460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146130fb576040519150601f19603f3d011682016040523d82523d6000602084013e613100565b606091505b50505050505050505050505050565b42600f556006546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152600090819030906370a0823190602401602060405180830381865afa158015613186573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131aa91906138fb565b905060006131c9612710611ade600c5485612c2d90919063ffffffff16565b905080156131f7576006546131f79073ffffffffffffffffffffffffffffffffffffffff1661dead83612c4c565b600654604080517ffff6cae9000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff90921691829163fff6cae991600480830192600092919082900301818387803b15801561326457600080fd5b505af1158015613278573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612c398284613914565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132f0576132f0613927565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b99190613956565b816001815181106133cc576133cc613927565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613431307f000000000000000000000000000000000000000000000000000000000000000084611bcb565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906134ac908590600090869030904290600401613973565b600060405180830381600087803b1580156134c657600080fd5b505af11580156134da573d6000803e3d6000fd5b505050505050565b61350d307f000000000000000000000000000000000000000000000000000000000000000084611bcb565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156135bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135e291906139fe565b5050505050565b600060208083528351808285015260005b81811015613616578581018301518582016040015282016135fa565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610f2d57600080fd5b6000806040838503121561368a57600080fd5b823561369581613655565b946020939093013593505050565b6000602082840312156136b557600080fd5b8135612c3981613655565b6000602082840312156136d257600080fd5b5035919050565b6000806000606084860312156136ee57600080fd5b83356136f981613655565b9250602084013561370981613655565b929592945050506040919091013590565b8035801515811461182c57600080fd5b60008060006060848603121561373f57600080fd5b83359250602084013591506137566040850161371a565b90509250925092565b6000806040838503121561377257600080fd5b823561377d81613655565b915061378b6020840161371a565b90509250929050565b6000806000606084860312156137a957600080fd5b505081359360208301359350604090920135919050565b6000602082840312156137d257600080fd5b612c398261371a565b600080604083850312156137ee57600080fd5b82356137f981613655565b9150602083013561380981613655565b809150509250929050565b600181811c9082168061382857607f821691505b602082108103613861577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610c5a57610c5a613867565b6000826138e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610c5a57610c5a613867565b60006020828403121561390d57600080fd5b5051919050565b81810381811115610c5a57610c5a613867565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561396857600080fd5b8151612c3981613655565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139d057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161399e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215613a1357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f5560847de1f5447db1c32de7be2467bafa528616a29d5b82cbd61ba025aa48b64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b48578063f637434214610b68578063f8b45b0514610b7e578063fe72b27a14610b9457600080fd5b8063dd62ed3e14610ab4578063e2f4560514610b07578063e884f26014610b1d578063f11a24d314610b3257600080fd5b8063c876d0b9116100dc578063c876d0b914610a4e578063c8c8ebe414610a68578063d257b34f14610a7e578063d85ba06314610a9e57600080fd5b8063bbc0c742146109cf578063c0246668146109ee578063c17b5b8c14610a0e578063c18bc19514610a2e57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610949578063a9059cbb1461095f578063aacebbe31461097f578063b62496f51461099f57600080fd5b80639ec22c0e146108e75780639fccce32146108fd578063a0d82dc514610913578063a457c2d71461092957600080fd5b8063924de9b7116101c1578063924de9b71461087c57806395d89b411461089c5780639a7a23d6146108b15780639c3b4fdc146108d157600080fd5b80638a8c523c146107f95780638da5cb5b1461080e5780638ea5220f14610839578063921369131461086657600080fd5b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a1461077657806375f0a874146107965780637bce5a04146107c35780638095d564146107d957600080fd5b806370a08231146106e9578063715018a61461072c578063730c188814610741578063751039fc1461076157600080fd5b80634a62bb65116102b15780634a62bb65146106545780634fbee1931461066e5780636a486a8e146106b35780636ddd1713146106c957600080fd5b8063313ce567146105cb57806339509351146105e75780633dae633a1461060757806349bd5a5e1461062757600080fd5b8063199ffc721161035a57806323b872dd1161032957806323b872dd1461056557806327c8f835146105855780632c3e486c1461059b5780632e82f1a0146105b157600080fd5b8063199ffc72146105035780631a8145bb146105195780631f3fed8f1461052f578063203e727e1461054557600080fd5b80631694505e116103965780631694505e1461045357806318160ddd146104ac5780631816467f146104cb578063184c16c5146104ed57600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610bb4565b6040516103ea91906135e9565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004613677565b610c46565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e3660046136a3565b60216020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103ea565b3480156104b857600080fd5b506002545b6040519081526020016103ea565b3480156104d757600080fd5b506104eb6104e63660046136a3565b610c60565b005b3480156104f957600080fd5b506104bd60105481565b34801561050f57600080fd5b506104bd600c5481565b34801561052557600080fd5b506104bd601e5481565b34801561053b57600080fd5b506104bd601d5481565b34801561055157600080fd5b506104eb6105603660046136c0565b610cf7565b34801561057157600080fd5b506104136105803660046136d9565b610ddf565b34801561059157600080fd5b5061048761dead81565b3480156105a757600080fd5b506104bd600e5481565b3480156105bd57600080fd5b50600d546104139060ff1681565b3480156105d757600080fd5b50604051601281526020016103ea565b3480156105f357600080fd5b50610413610602366004613677565b610e03565b34801561061357600080fd5b506104eb6106223660046136a3565b610e4f565b34801561063357600080fd5b506006546104879073ffffffffffffffffffffffffffffffffffffffff1681565b34801561066057600080fd5b506012546104139060ff1681565b34801561067a57600080fd5b506104136106893660046136a3565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b3480156106bf57600080fd5b506104bd60195481565b3480156106d557600080fd5b506012546104139062010000900460ff1681565b3480156106f557600080fd5b506104bd6107043660046136a3565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561073857600080fd5b506104eb610f30565b34801561074d57600080fd5b506104eb61075c36600461372a565b610f44565b34801561076d57600080fd5b506104136110b4565b34801561078257600080fd5b506104eb61079136600461375f565b6110ec565b3480156107a257600080fd5b506007546104879073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107cf57600080fd5b506104bd60165481565b3480156107e557600080fd5b506104eb6107f4366004613794565b61114a565b34801561080557600080fd5b506104eb6111ea565b34801561081a57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610487565b34801561084557600080fd5b506008546104879073ffffffffffffffffffffffffffffffffffffffff1681565b34801561087257600080fd5b506104bd601a5481565b34801561088857600080fd5b506104eb6108973660046137c0565b611225565b3480156108a857600080fd5b506103dd611265565b3480156108bd57600080fd5b506104eb6108cc36600461375f565b611274565b3480156108dd57600080fd5b506104bd60185481565b3480156108f357600080fd5b506104bd60115481565b34801561090957600080fd5b506104bd601f5481565b34801561091f57600080fd5b506104bd601c5481565b34801561093557600080fd5b50610413610944366004613677565b611335565b34801561095557600080fd5b506104bd600f5481565b34801561096b57600080fd5b5061041361097a366004613677565b611406565b34801561098b57600080fd5b506104eb61099a3660046136a3565b611414565b3480156109ab57600080fd5b506104136109ba3660046136a3565b60226020526000908152604090205460ff1681565b3480156109db57600080fd5b5060125461041390610100900460ff1681565b3480156109fa57600080fd5b506104eb610a0936600461375f565b6114ab565b348015610a1a57600080fd5b506104eb610a29366004613794565b61153b565b348015610a3a57600080fd5b506104eb610a493660046136c0565b6115d6565b348015610a5a57600080fd5b506014546104139060ff1681565b348015610a7457600080fd5b506104bd60095481565b348015610a8a57600080fd5b50610413610a993660046136c0565b6116b8565b348015610aaa57600080fd5b506104bd60155481565b348015610ac057600080fd5b506104bd610acf3660046137db565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610b1357600080fd5b506104bd600a5481565b348015610b2957600080fd5b50610413611831565b348015610b3e57600080fd5b506104bd60175481565b348015610b5457600080fd5b506104eb610b633660046136a3565b611869565b348015610b7457600080fd5b506104bd601b5481565b348015610b8a57600080fd5b506104bd600b5481565b348015610ba057600080fd5b50610413610baf3660046136c0565b61191d565b606060038054610bc390613814565b80601f0160208091040260200160405190810160405280929190818152602001828054610bef90613814565b8015610c3c5780601f10610c1157610100808354040283529160200191610c3c565b820191906000526020600020905b815481529060010190602001808311610c1f57829003601f168201915b5050505050905090565b600033610c54818585611bcb565b60019150505b92915050565b610c68611d7e565b60085460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b610cff611d7e565b670de0b6b3a76400006103e8610d1460025490565b610d1f906001613896565b610d2991906138ad565b610d3391906138ad565b811015610dc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3125000000000000000000000000000000000060648201526084015b60405180910390fd5b610dd981670de0b6b3a7640000613896565b60095550565b600033610ded858285611dff565b610df8858585611ed6565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610c549082908690610e4a9087906138e8565b611bcb565b610e57611d7e565b60065473ffffffffffffffffffffffffffffffffffffffff1615610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f54686520706169722063616e206f6e6c7920626520736574206f6e63650000006044820152606401610dbe565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316179055610f228160016110ec565b610f2d816001612b37565b50565b610f38611d7e565b610f426000612bb6565b565b610f4c611d7e565b610258831015610fde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610dbe565b6103e88211158015610fee575060015b61107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610dbe565b600e92909255600c55600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006110be611d7e565b50601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b6110f4611d7e565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260216020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611152611d7e565b6016839055601782905560188190558061116c83856138e8565b61117691906138e8565b6015819055600510156111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610dbe565b505050565b6111f2611d7e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600f55565b61122d611d7e565b6012805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bc390613814565b61127c611d7e565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610dbe565b6113318282612b37565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156113f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610dbe565b610df88286868403611bcb565b600033610c54818585611ed6565b61141c611d7e565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6114b3611d7e565b73ffffffffffffffffffffffffffffffffffffffff82166000818152602080805260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611543611d7e565b601a839055601b829055601c8190558061155d83856138e8565b61156791906138e8565b6019819055600510156111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610dbe565b6115de611d7e565b670de0b6b3a76400006103e86115f360025490565b6115fe906005613896565b61160891906138ad565b61161291906138ad565b8110156116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b6116b281670de0b6b3a7640000613896565b600b5550565b60006116c2611d7e565b620186a06116cf60025490565b6116da906001613896565b6116e491906138ad565b821015611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610dbe565b6103e861177f60025490565b61178a906005613896565b61179491906138ad565b821115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610dbe565b50600a81905560015b919050565b600061183b611d7e565b50601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b611871611d7e565b73ffffffffffffffffffffffffffffffffffffffff8116611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dbe565b610f2d81612bb6565b6000611927611d7e565b60105460115461193791906138e8565b421161199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610dbe565b6103e8821115611a31576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610dbe565b426011556006546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260009030906370a0823190602401602060405180830381865afa158015611aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aca91906138fb565b90506000611ae4612710611ade8487612c2d565b90612c40565b90508015611b1257600654611b129073ffffffffffffffffffffffffffffffffffffffff1661dead83612c4c565b600654604080517ffff6cae9000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff90921691829163fff6cae991600480830192600092919082900301818387803b158015611b7f57600080fd5b505af1158015611b93573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8216611d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ed05781811015611ec3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610dbe565b611ed08484848403611bcb565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611f79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff821661201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b80600003612030576111e583836000612c4c565b60125460ff161561268f5760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612081575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156120a2575073ffffffffffffffffffffffffffffffffffffffff821615155b80156120c6575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156120ed575060065474010000000000000000000000000000000000000000900460ff16155b1561268f57601254610100900460ff166121be5773ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff1680612158575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff165b6121be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610dbe565b60145460ff16156123435760055473ffffffffffffffffffffffffffffffffffffffff83811691161480159061224057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612267575060065473ffffffffffffffffffffffffffffffffffffffff838116911614155b1561234357326000908152601360205260409020544311612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610dbe565b3260009081526013602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526022602052604090205460ff16801561239e575073ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff16155b156124d557600954811115612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610dbe565b600b5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461246890836138e8565b11156124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dbe565b61268f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526022602052604090205460ff168015612530575073ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff16155b156125c7576009548111156124d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff1661268f57600b5473ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205461262790836138e8565b111561268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610dbe565b30600090815260208190526040902054600a54811080159081906126bb575060125462010000900460ff165b80156126e2575060065474010000000000000000000000000000000000000000900460ff16155b8015612714575073ffffffffffffffffffffffffffffffffffffffff851660009081526022602052604090205460ff16155b8015612745575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b8015612776575073ffffffffffffffffffffffffffffffffffffffff8416600090815260208052604090205460ff16155b156127eb57600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556127c2612ebb565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065474010000000000000000000000000000000000000000900460ff1615801561283b575073ffffffffffffffffffffffffffffffffffffffff841660009081526022602052604090205460ff165b80156128495750600d5460ff165b80156128645750600e54600f5461286091906138e8565b4210155b8015612895575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff16155b156128a4576128a261310f565b505b60065473ffffffffffffffffffffffffffffffffffffffff8616600090815260208052604090205460ff7401000000000000000000000000000000000000000090920482161591168061291b575073ffffffffffffffffffffffffffffffffffffffff8516600090815260208052604090205460ff165b15612924575060005b60008115612b235773ffffffffffffffffffffffffffffffffffffffff861660009081526022602052604090205460ff16801561296357506000601954115b15612a1b576129826064611ade60195488612c2d90919063ffffffff16565b9050601954601b54826129959190613896565b61299f91906138ad565b601e60008282546129b091906138e8565b9091555050601954601c546129c59083613896565b6129cf91906138ad565b601f60008282546129e091906138e8565b9091555050601954601a546129f59083613896565b6129ff91906138ad565b601d6000828254612a1091906138e8565b90915550612b059050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526022602052604090205460ff168015612a5257506000601554115b15612b0557612a716064611ade60155488612c2d90919063ffffffff16565b905060155460175482612a849190613896565b612a8e91906138ad565b601e6000828254612a9f91906138e8565b9091555050601554601854612ab49083613896565b612abe91906138ad565b601f6000828254612acf91906138e8565b9091555050601554601654612ae49083613896565b612aee91906138ad565b601d6000828254612aff91906138e8565b90915550505b8015612b1657612b16873083612c4c565b612b208186613914565b94505b612b2e878787612c4c565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526022602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612c398284613896565b9392505050565b6000612c3982846138ad565b73ffffffffffffffffffffffffffffffffffffffff8316612cef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff8216612d92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610dbe565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ed0565b3060009081526020819052604081205490506000601f54601d54601e54612ee291906138e8565b612eec91906138e8565b90506000821580612efb575081155b15612f0557505050565b600a54612f13906014613896565b831115612f2b57600a54612f28906014613896565b92505b6000600283601e5486612f3e9190613896565b612f4891906138ad565b612f5291906138ad565b90506000612f6085836132af565b905047612f6c826132bb565b6000612f7847836132af565b90506000612f9587611ade601d5485612c2d90919063ffffffff16565b90506000612fb288611ade601f5486612c2d90919063ffffffff16565b9050600081612fc18486613914565b612fcb9190613914565b6000601e819055601d819055601f81905560085460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613035576040519150601f19603f3d011682016040523d82523d6000602084013e61303a565b606091505b5090985050861580159061304e5750600081115b156130a15761305d87826134e2565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60075460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146130fb576040519150601f19603f3d011682016040523d82523d6000602084013e613100565b606091505b50505050505050505050505050565b42600f556006546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152600090819030906370a0823190602401602060405180830381865afa158015613186573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131aa91906138fb565b905060006131c9612710611ade600c5485612c2d90919063ffffffff16565b905080156131f7576006546131f79073ffffffffffffffffffffffffffffffffffffffff1661dead83612c4c565b600654604080517ffff6cae9000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff90921691829163fff6cae991600480830192600092919082900301818387803b15801561326457600080fd5b505af1158015613278573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b6000612c398284613914565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132f0576132f0613927565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133b99190613956565b816001815181106133cc576133cc613927565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613431307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611bcb565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906134ac908590600090869030904290600401613973565b600060405180830381600087803b1580156134c657600080fd5b505af11580156134da573d6000803e3d6000fd5b505050505050565b61350d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611bcb565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af11580156135bd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135e291906139fe565b5050505050565b600060208083528351808285015260005b81811015613616578581018301518582016040015282016135fa565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610f2d57600080fd5b6000806040838503121561368a57600080fd5b823561369581613655565b946020939093013593505050565b6000602082840312156136b557600080fd5b8135612c3981613655565b6000602082840312156136d257600080fd5b5035919050565b6000806000606084860312156136ee57600080fd5b83356136f981613655565b9250602084013561370981613655565b929592945050506040919091013590565b8035801515811461182c57600080fd5b60008060006060848603121561373f57600080fd5b83359250602084013591506137566040850161371a565b90509250925092565b6000806040838503121561377257600080fd5b823561377d81613655565b915061378b6020840161371a565b90509250929050565b6000806000606084860312156137a957600080fd5b505081359360208301359350604090920135919050565b6000602082840312156137d257600080fd5b612c398261371a565b600080604083850312156137ee57600080fd5b82356137f981613655565b9150602083013561380981613655565b809150509250929050565b600181811c9082168061382857607f821691505b602082108103613861577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610c5a57610c5a613867565b6000826138e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115610c5a57610c5a613867565b60006020828403121561390d57600080fd5b5051919050565b81810381811115610c5a57610c5a613867565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561396857600080fd5b8151612c3981613655565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139d057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161399e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215613a1357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f5560847de1f5447db1c32de7be2467bafa528616a29d5b82cbd61ba025aa48b64736f6c63430008120033

Deployed Bytecode Sourcemap

36083:19516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24766:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27117:201;;;;;;;;;;-1:-1:-1;27117:201:0;;;;;:::i;:::-;;:::i;:::-;;;1270:14:1;;1263:22;1245:41;;1233:2;1218:18;27117:201:0;1105:187:1;37707:63:0;;;;;;;;;;-1:-1:-1;37707:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36165:51;;;;;;;;;;;;;;;;;;1751:42:1;1739:55;;;1721:74;;1709:2;1694:18;36165:51:0;1549:252:1;25886:108:0;;;;;;;;;;-1:-1:-1;25974:12:0;;25886:108;;;1952:25:1;;;1940:2;1925:18;25886:108:0;1806:177:1;44927:157:0;;;;;;;;;;-1:-1:-1;44927:157:0;;;;;:::i;:::-;;:::i;:::-;;36721:47;;;;;;;;;;;;;;;;36535:36;;;;;;;;;;;;;;;;37491:33;;;;;;;;;;;;;;;;37451;;;;;;;;;;;;;;;;41889:275;;;;;;;;;;-1:-1:-1;41889:275:0;;;;;:::i;:::-;;:::i;27898:295::-;;;;;;;;;;-1:-1:-1;27898:295:0;;;;;:::i;:::-;;:::i;36258:53::-;;;;;;;;;;;;36304:6;36258:53;;36631:45;;;;;;;;;;;;;;;;36591:33;;;;;;;;;;-1:-1:-1;36591:33:0;;;;;;;;25728:93;;;;;;;;;;-1:-1:-1;25728:93:0;;25811:2;3007:36:1;;2995:2;2980:18;25728:93:0;2865:184:1;28602:238:0;;;;;;;;;;-1:-1:-1;28602:238:0;;;;;:::i;:::-;;:::i;44136:350::-;;;;;;;;;;-1:-1:-1;44136:350:0;;;;;:::i;:::-;;:::i;36223:28::-;;;;;;;;;;-1:-1:-1;36223:28:0;;;;;;;;36819:33;;;;;;;;;;-1:-1:-1;36819:33:0;;;;;;;;45092:126;;;;;;;;;;-1:-1:-1;45092:126:0;;;;;:::i;:::-;45182:28;;45158:4;45182:28;;;:19;:28;;;;;;;;;45092:126;37306:28;;;;;;;;;;;;;;;;36899:31;;;;;;;;;;-1:-1:-1;36899:31:0;;;;;;;;;;;26057:127;;;;;;;;;;-1:-1:-1;26057:127:0;;;;;:::i;:::-;26158:18;;26131:7;26158:18;;;;;;;;;;;;26057:127;18191:103;;;;;;;;;;;;;:::i;53181:555::-;;;;;;;;;;-1:-1:-1;53181:555:0;;;;;:::i;:::-;;:::i;40997:121::-;;;;;;;;;;;;;:::i;42436:167::-;;;;;;;;;;-1:-1:-1;42436:167:0;;;;;:::i;:::-;;:::i;36350:30::-;;;;;;;;;;-1:-1:-1;36350:30:0;;;;;;;;37199;;;;;;;;;;;;;;;;42807:401;;;;;;;;;;-1:-1:-1;42807:401:0;;;;;:::i;:::-;;:::i;40790:155::-;;;;;;;;;;;;;:::i;17543:87::-;;;;;;;;;;-1:-1:-1;17616:6:0;;;;17543:87;;36387:24;;;;;;;;;;-1:-1:-1;36387:24:0;;;;;;;;37341:31;;;;;;;;;;;;;;;;42699:100;;;;;;;;;;-1:-1:-1;42699:100:0;;;;;:::i;:::-;;:::i;24985:104::-;;;;;;;;;;;;;:::i;43824:304::-;;;;;;;;;;-1:-1:-1;43824:304:0;;;;;:::i;:::-;;:::i;37273:24::-;;;;;;;;;;;;;;;;36775:35;;;;;;;;;;;;;;;;37531:27;;;;;;;;;;;;;;;;37417:25;;;;;;;;;;;;;;;;29343:436;;;;;;;;;;-1:-1:-1;29343:436:0;;;;;:::i;:::-;;:::i;36683:29::-;;;;;;;;;;;;;;;;26390:193;;;;;;;;;;-1:-1:-1;26390:193:0;;;;;:::i;:::-;;:::i;44688:231::-;;;;;;;;;;-1:-1:-1;44688:231:0;;;;;:::i;:::-;;:::i;37928:57::-;;;;;;;;;;-1:-1:-1;37928:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36859:33;;;;;;;;;;-1:-1:-1;36859:33:0;;;;;;;;;;;43634:182;;;;;;;;;;-1:-1:-1;43634:182:0;;;;;:::i;:::-;;:::i;43216:410::-;;;;;;;;;;-1:-1:-1;43216:410:0;;;;;:::i;:::-;;:::i;42172:256::-;;;;;;;;;;-1:-1:-1;42172:256:0;;;;;:::i;:::-;;:::i;37117:39::-;;;;;;;;;;-1:-1:-1;37117:39:0;;;;;;;;36420:35;;;;;;;;;;;;;;;;41384:497;;;;;;;;;;-1:-1:-1;41384:497:0;;;;;:::i;:::-;;:::i;37165:27::-;;;;;;;;;;;;;;;;26646:151;;;;;;;;;;-1:-1:-1;26646:151:0;;;;;:::i;:::-;26762:18;;;;26735:7;26762:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26646:151;36462:33;;;;;;;;;;;;;;;;41179:135;;;;;;;;;;;;;:::i;37236:30::-;;;;;;;;;;;;;;;;18449:201;;;;;;;;;;-1:-1:-1;18449:201:0;;;;;:::i;:::-;;:::i;37379:31::-;;;;;;;;;;;;;;;;36502:24;;;;;;;;;;;;;;;;54540:1056;;;;;;;;;;-1:-1:-1;54540:1056:0;;;;;:::i;:::-;;:::i;24766:100::-;24820:13;24853:5;24846:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24766:100;:::o;27117:201::-;27200:4;16174:10;27256:32;16174:10;27272:7;27281:6;27256:8;:32::i;:::-;27306:4;27299:11;;;27117:201;;;;;:::o;44927:157::-;17429:13;:11;:13::i;:::-;45034:9:::1;::::0;45006:38:::1;::::0;45034:9:::1;::::0;;::::1;::::0;45006:38;::::1;::::0;::::1;::::0;45034:9:::1;::::0;45006:38:::1;45055:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44927:157::o;41889:275::-;17429:13;:11;:13::i;:::-;42026:4:::1;42018;41997:13;25974:12:::0;;;25886:108;41997:13:::1;:17;::::0;42013:1:::1;41997:17;:::i;:::-;41996:26;;;;:::i;:::-;41995:35;;;;:::i;:::-;41985:6;:45;;41963:142;;;::::0;::::1;::::0;;6044:2:1;41963:142:0::1;::::0;::::1;6026:21:1::0;6083:2;6063:18;;;6056:30;6122:34;6102:18;;;6095:62;6193:17;6173:18;;;6166:45;6228:19;;41963:142:0::1;;;;;;;;;42139:17;:6:::0;42149::::1;42139:17;:::i;:::-;42116:20;:40:::0;-1:-1:-1;41889:275:0:o;27898:295::-;28029:4;16174:10;28087:38;28103:4;16174:10;28118:6;28087:15;:38::i;:::-;28136:27;28146:4;28152:2;28156:6;28136:9;:27::i;:::-;-1:-1:-1;28181:4:0;;27898:295;-1:-1:-1;;;;27898:295:0:o;28602:238::-;16174:10;28690:4;26762:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;28690:4;;16174:10;28746:64;;16174:10;;26762:27;;28771:38;;28799:10;;28771:38;:::i;:::-;28746:8;:64::i;44136:350::-;17429:13;:11;:13::i;:::-;44278::::1;::::0;::::1;;44264:27:::0;44242:106:::1;;;::::0;::::1;::::0;;6590:2:1;44242:106:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;6668:31;6648:18;;;6641:59;6717:18;;44242:106:0::1;6388:353:1::0;44242:106:0::1;44359:13;:20:::0;;;::::1;;::::0;::::1;;::::0;;44390:37:::1;44359:20:::0;-1:-1:-1;44390:25:0::1;:37::i;:::-;44438:40;44467:4;44473;44438:28;:40::i;:::-;44136:350:::0;:::o;18191:103::-;17429:13;:11;:13::i;:::-;18256:30:::1;18283:1;18256:18;:30::i;:::-;18191:103::o:0;53181:555::-;17429:13;:11;:13::i;:::-;53383:3:::1;53360:19;:26;;53338:127;;;::::0;::::1;::::0;;6948:2:1;53338:127:0::1;::::0;::::1;6930:21:1::0;6987:2;6967:18;;;6960:30;7026:34;7006:18;;;6999:62;7097:21;7077:18;;;7070:49;7136:19;;53338:127:0::1;6746:415:1::0;53338:127:0::1;53510:4;53498:8;:16;;:33;;;;-1:-1:-1::0;53518:13:0;53498:33:::1;53476:131;;;::::0;::::1;::::0;;7368:2:1;53476:131:0::1;::::0;::::1;7350:21:1::0;7407:2;7387:18;;;7380:30;7446:34;7426:18;;;7419:62;7517:18;7497;;;7490:46;7553:19;;53476:131:0::1;7166:412:1::0;53476:131:0::1;53618:15;:37:::0;;;;53666:16:::1;:27:::0;53704:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;53181:555::o;40997:121::-;41049:4;17429:13;:11;:13::i;:::-;-1:-1:-1;41066:14:0::1;:22:::0;;;::::1;::::0;;;40997:121;:::o;42436:167::-;17429:13;:11;:13::i;:::-;42549:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;42436:167::o;42807:401::-;17429:13;:11;:13::i;:::-;42957:15:::1;:31:::0;;;42999:15:::1;:31:::0;;;43041:9:::1;:19:::0;;;43053:7;43086:33:::1;43017:13:::0;42975;43086:33:::1;:::i;:::-;:45;;;;:::i;:::-;43071:12;:60:::0;;;43166:1:::1;-1:-1:-1::0;43150:17:0::1;43142:58;;;::::0;::::1;::::0;;7785:2:1;43142:58:0::1;::::0;::::1;7767:21:1::0;7824:2;7804:18;;;7797:30;7863;7843:18;;;7836:58;7911:18;;43142:58:0::1;7583:352:1::0;43142:58:0::1;42807:401:::0;;;:::o;40790:155::-;17429:13;:11;:13::i;:::-;40845::::1;:20:::0;;40876:18;;;;;;40922:15:::1;40905:14;:32:::0;40790:155::o;42699:100::-;17429:13;:11;:13::i;:::-;42770:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;42699:100::o;24985:104::-;25041:13;25074:7;25067:14;;;;;:::i;43824:304::-;17429:13;:11;:13::i;:::-;43968::::1;::::0;::::1;::::0;;::::1;43960:21:::0;;::::1;::::0;43938:128:::1;;;::::0;::::1;::::0;;8142:2:1;43938:128:0::1;::::0;::::1;8124:21:1::0;8181:2;8161:18;;;8154:30;8220:34;8200:18;;;8193:62;8291:27;8271:18;;;8264:55;8336:19;;43938:128:0::1;7940:421:1::0;43938:128:0::1;44079:41;44108:4;44114:5;44079:28;:41::i;:::-;43824:304:::0;;:::o;29343:436::-;16174:10;29436:4;26762:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;29436:4;;16174:10;29583:15;29563:16;:35;;29555:85;;;;;;;8568:2:1;29555:85:0;;;8550:21:1;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;8717:7;8697:18;;;8690:35;8742:19;;29555:85:0;8366:401:1;29555:85:0;29676:60;29685:5;29692:7;29720:15;29701:16;:34;29676:8;:60::i;26390:193::-;26469:4;16174:10;26525:28;16174:10;26542:2;26546:6;26525:9;:28::i;44688:231::-;17429:13;:11;:13::i;:::-;44848:15:::1;::::0;44805:59:::1;::::0;44848:15:::1;::::0;;::::1;::::0;44805:59;::::1;::::0;::::1;::::0;44848:15:::1;::::0;44805:59:::1;44875:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44688:231::o;43634:182::-;17429:13;:11;:13::i;:::-;43719:28:::1;::::0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;43774:34;;1245:41:1;;;43774:34:0::1;::::0;1218:18:1;43774:34:0::1;;;;;;;43634:182:::0;;:::o;43216:410::-;17429:13;:11;:13::i;:::-;43367:16:::1;:32:::0;;;43410:16:::1;:32:::0;;;43453:10:::1;:20:::0;;;43466:7;43500:35:::1;43429:13:::0;43386;43500:35:::1;:::i;:::-;:48;;;;:::i;:::-;43484:13;:64:::0;;;43584:1:::1;-1:-1:-1::0;43567:18:0::1;43559:59;;;::::0;::::1;::::0;;7785:2:1;43559:59:0::1;::::0;::::1;7767:21:1::0;7824:2;7804:18;;;7797:30;7863;7843:18;;;7836:58;7911:18;;43559:59:0::1;7583:352:1::0;42172:256:0;17429:13;:11;:13::i;:::-;42312:4:::1;42304;42283:13;25974:12:::0;;;25886:108;42283:13:::1;:17;::::0;42299:1:::1;42283:17;:::i;:::-;42282:26;;;;:::i;:::-;42281:35;;;;:::i;:::-;42271:6;:45;;42249:131;;;::::0;::::1;::::0;;8974:2:1;42249:131:0::1;::::0;::::1;8956:21:1::0;9013:2;8993:18;;;8986:30;9052:34;9032:18;;;9025:62;9123:6;9103:18;;;9096:34;9147:19;;42249:131:0::1;8772:400:1::0;42249:131:0::1;42403:17;:6:::0;42413::::1;42403:17;:::i;:::-;42391:9;:29:::0;-1:-1:-1;42172:256:0:o;41384:497::-;41492:4;17429:13;:11;:13::i;:::-;41571:6:::1;41550:13;25974:12:::0;;;25886:108;41550:13:::1;:17;::::0;41566:1:::1;41550:17;:::i;:::-;41549:28;;;;:::i;:::-;41536:9;:41;;41514:144;;;::::0;::::1;::::0;;9379:2:1;41514:144:0::1;::::0;::::1;9361:21:1::0;9418:2;9398:18;;;9391:30;9457:34;9437:18;;;9430:62;9528:23;9508:18;;;9501:51;9569:19;;41514:144:0::1;9177:417:1::0;41514:144:0::1;41726:4;41705:13;25974:12:::0;;;25886:108;41705:13:::1;:17;::::0;41721:1:::1;41705:17;:::i;:::-;41704:26;;;;:::i;:::-;41691:9;:39;;41669:141;;;::::0;::::1;::::0;;9801:2:1;41669:141:0::1;::::0;::::1;9783:21:1::0;9840:2;9820:18;;;9813:30;9879:34;9859:18;;;9852:62;9950:22;9930:18;;;9923:50;9990:19;;41669:141:0::1;9599:416:1::0;41669:141:0::1;-1:-1:-1::0;41821:18:0::1;:30:::0;;;41869:4:::1;17453:1;41384:497:::0;;;:::o;41179:135::-;41239:4;17429:13;:11;:13::i;:::-;-1:-1:-1;41256:20:0::1;:28:::0;;;::::1;::::0;;;41179:135;:::o;18449:201::-;17429:13;:11;:13::i;:::-;18538:22:::1;::::0;::::1;18530:73;;;::::0;::::1;::::0;;10222:2:1;18530:73:0::1;::::0;::::1;10204:21:1::0;10261:2;10241:18;;;10234:30;10300:34;10280:18;;;10273:62;10371:8;10351:18;;;10344:36;10397:19;;18530:73:0::1;10020:402:1::0;18530:73:0::1;18614:28;18633:8;18614:18;:28::i;54540:1056::-:0;54651:4;17429:13;:11;:13::i;:::-;54736:19:::1;;54713:20;;:42;;;;:::i;:::-;54695:15;:60;54673:142;;;::::0;::::1;::::0;;10629:2:1;54673:142:0::1;::::0;::::1;10611:21:1::0;;;10648:18;;;10641:30;10707:34;10687:18;;;10680:62;10759:18;;54673:142:0::1;10427:356:1::0;54673:142:0::1;54845:4;54834:7;:15;;54826:70;;;::::0;::::1;::::0;;10990:2:1;54826:70:0::1;::::0;::::1;10972:21:1::0;11029:2;11009:18;;;11002:30;11068:34;11048:18;;;11041:62;11139:12;11119:18;;;11112:40;11169:19;;54826:70:0::1;10788:406:1::0;54826:70:0::1;54930:15;54907:20;:38:::0;55046:13:::1;::::0;55031:29:::1;::::0;;;;:14:::1;55046:13:::0;;::::1;55031:29;::::0;::::1;1721:74:1::0;55000:28:0::1;::::0;55031:4:::1;::::0;:14:::1;::::0;1694:18:1;;55031:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55000:60:::0;-1:-1:-1;55110:20:0::1;55133:44;55171:5;55133:33;55000:60:::0;55158:7;55133:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;55110:67:::0;-1:-1:-1;55282:16:0;;55278:110:::1;;55331:13;::::0;55315:61:::1;::::0;55331:13:::1;;55354:6;55363:12:::0;55315:15:::1;:61::i;:::-;55500:13;::::0;55525:11:::1;::::0;;;;;;;55500:13:::1;::::0;;::::1;::::0;;;55525:9:::1;::::0;:11:::1;::::0;;::::1;::::0;55463:19:::1;::::0;55525:11;;;;;;;55463:19;55500:13;55525:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;55552:14:0::1;::::0;::::1;::::0;-1:-1:-1;55552:14:0;;-1:-1:-1;55552:14:0::1;-1:-1:-1::0;55584:4:0::1;::::0;54540:1056;-1:-1:-1;;;;54540:1056:0:o;33370:380::-;33506:19;;;33498:68;;;;;;;11590:2:1;33498:68:0;;;11572:21:1;11629:2;11609:18;;;11602:30;11668:34;11648:18;;;11641:62;11739:6;11719:18;;;11712:34;11763:19;;33498:68:0;11388:400:1;33498:68:0;33585:21;;;33577:68;;;;;;;11995:2:1;33577:68:0;;;11977:21:1;12034:2;12014:18;;;12007:30;12073:34;12053:18;;;12046:62;12144:4;12124:18;;;12117:32;12166:19;;33577:68:0;11793:398:1;33577:68:0;33658:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33710:32;;1952:25:1;;;33710:32:0;;1925:18:1;33710:32:0;;;;;;;33370:380;;;:::o;17708:132::-;17616:6;;17772:23;17616:6;16174:10;17772:23;17764:68;;;;;;;12398:2:1;17764:68:0;;;12380:21:1;;;12417:18;;;12410:30;12476:34;12456:18;;;12449:62;12528:18;;17764:68:0;12196:356:1;34041:453:0;26762:18;;;;34176:24;26762:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;34263:17;34243:37;;34239:248;;34325:6;34305:16;:26;;34297:68;;;;;;;12759:2:1;34297:68:0;;;12741:21:1;12798:2;12778:18;;;12771:30;12837:31;12817:18;;;12810:59;12886:18;;34297:68:0;12557:353:1;34297:68:0;34409:51;34418:5;34425:7;34453:6;34434:16;:25;34409:8;:51::i;:::-;34165:329;34041:453;;;:::o;45276:5011::-;45408:18;;;45400:68;;;;;;;13117:2:1;45400:68:0;;;13099:21:1;13156:2;13136:18;;;13129:30;13195:34;13175:18;;;13168:62;13266:7;13246:18;;;13239:35;13291:19;;45400:68:0;12915:401:1;45400:68:0;45487:16;;;45479:64;;;;;;;13523:2:1;45479:64:0;;;13505:21:1;13562:2;13542:18;;;13535:30;13601:34;13581:18;;;13574:62;13672:5;13652:18;;;13645:33;13695:19;;45479:64:0;13321:399:1;45479:64:0;45560:6;45570:1;45560:11;45556:93;;45588:28;45604:4;45610:2;45614:1;45588:15;:28::i;45556:93::-;45665:14;;;;45661:2487;;;17616:6;;;45718:15;;;17616:6;;45718:15;;;;:49;;-1:-1:-1;17616:6:0;;;45754:13;;;17616:6;;45754:13;;45718:49;:86;;;;-1:-1:-1;45788:16:0;;;;;45718:86;:128;;;;-1:-1:-1;45825:21:0;;;45839:6;45825:21;;45718:128;:158;;;;-1:-1:-1;45868:8:0;;;;;;;45867:9;45718:158;45696:2441;;;45916:13;;;;;;;45911:223;;45988:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;46017:23:0;;;;;;;:19;:23;;;;;;;;45988:52;45954:160;;;;;;;13927:2:1;45954:160:0;;;13909:21:1;13966:2;13946:18;;;13939:30;14005:24;13985:18;;;13978:52;14047:18;;45954:160:0;13725:346:1;45954:160:0;46290:20;;;;46286:641;;;17616:6;;;46365:13;;;17616:6;;46365:13;;;;:72;;;46421:15;46407:30;;:2;:30;;;;46365:72;:129;;;;-1:-1:-1;46480:13:0;;;46466:28;;;46480:13;;46466:28;;46365:129;46335:573;;;46612:9;46583:39;;;;:28;:39;;;;;;46658:12;-1:-1:-1;46545:258:0;;;;;;;14278:2:1;46545:258:0;;;14260:21:1;14317:2;14297:18;;;14290:30;14356:34;14336:18;;;14329:62;14427:34;14407:18;;;14400:62;14499:11;14478:19;;;14471:40;14528:19;;46545:258:0;14076:477:1;46545:258:0;46859:9;46830:39;;;;:28;:39;;;;;46872:12;46830:54;;46335:573;47001:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;47058:35:0;;;;;;;:31;:35;;;;;;;;47057:36;47001:92;46975:1147;;;47180:20;;47170:6;:30;;47136:169;;;;;;;14760:2:1;47136:169:0;;;14742:21:1;14799:2;14779:18;;;14772:30;14838:34;14818:18;;;14811:62;14909:23;14889:18;;;14882:51;14950:19;;47136:169:0;14558:417:1;47136:169:0;47388:9;;26158:18;;;26131:7;26158:18;;;;;;;;;;;47362:22;;:6;:22;:::i;:::-;:35;;47328:140;;;;;;;15182:2:1;47328:140:0;;;15164:21:1;15221:2;15201:18;;;15194:30;15260:21;15240:18;;;15233:49;15299:18;;47328:140:0;14980:343:1;47328:140:0;46975:1147;;;47566:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;47621:37:0;;;;;;;:31;:37;;;;;;;;47620:38;47566:92;47540:582;;;47745:20;;47735:6;:30;;47701:170;;;;;;;15530:2:1;47701:170:0;;;15512:21:1;15569:2;15549:18;;;15542:30;15608:34;15588:18;;;15581:62;15679:24;15659:18;;;15652:52;15721:19;;47701:170:0;15328:418:1;47540:582:0;47902:35;;;;;;;:31;:35;;;;;;;;47897:225;;48022:9;;26158:18;;;26131:7;26158:18;;;;;;;;;;;47996:22;;:6;:22;:::i;:::-;:35;;47962:140;;;;;;;15182:2:1;47962:140:0;;;15164:21:1;15221:2;15201:18;;;15194:30;15260:21;15240:18;;;15233:49;15299:18;;47962:140:0;14980:343:1;47962:140:0;48209:4;48160:28;26158:18;;;;;;;;;;;48267;;48243:42;;;;;;;48316:35;;-1:-1:-1;48340:11:0;;;;;;;48316:35;:61;;;;-1:-1:-1;48369:8:0;;;;;;;48368:9;48316:61;:110;;;;-1:-1:-1;48395:31:0;;;;;;;:25;:31;;;;;;;;48394:32;48316:110;:153;;;;-1:-1:-1;48444:25:0;;;;;;;:19;:25;;;;;;;;48443:26;48316:153;:194;;;;-1:-1:-1;48487:23:0;;;;;;;:19;:23;;;;;;;;48486:24;48316:194;48298:326;;;48537:8;:15;;;;;;;;48569:10;:8;:10::i;:::-;48596:8;:16;;;;;;48298:326;48655:8;;;;;;;48654:9;:55;;;;-1:-1:-1;48680:29:0;;;;;;;:25;:29;;;;;;;;48654:55;:85;;;;-1:-1:-1;48726:13:0;;;;48654:85;:153;;;;;48792:15;;48775:14;;:32;;;;:::i;:::-;48756:15;:51;;48654:153;:196;;;;-1:-1:-1;48825:25:0;;;;;;;:19;:25;;;;;;;;48824:26;48654:196;48636:282;;;48877:29;:27;:29::i;:::-;;48636:282;48946:8;;49056:25;;;48930:12;49056:25;;;:19;:25;;;;;;48946:8;;;;;;;48945:9;;49056:25;;:52;;-1:-1:-1;49085:23:0;;;;;;;:19;:23;;;;;;;;49056:52;49052:100;;;-1:-1:-1;49135:5:0;49052:100;49164:12;49269:7;49265:969;;;49321:29;;;;;;;:25;:29;;;;;;;;:50;;;;;49370:1;49354:13;;:17;49321:50;49317:768;;;49399:34;49429:3;49399:25;49410:13;;49399:6;:10;;:25;;;;:::i;:34::-;49392:41;;49502:13;;49482:16;;49475:4;:23;;;;:::i;:::-;49474:41;;;;:::i;:::-;49452:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49572:13:0;;49558:10;;49551:17;;:4;:17;:::i;:::-;49550:35;;;;:::i;:::-;49534:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;49654:13:0;;49634:16;;49627:23;;:4;:23;:::i;:::-;49626:41;;;;:::i;:::-;49604:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;49317:768:0;;-1:-1:-1;49317:768:0;;49729:31;;;;;;;:25;:31;;;;;;;;:51;;;;;49779:1;49764:12;;:16;49729:51;49725:360;;;49808:33;49837:3;49808:24;49819:12;;49808:6;:10;;:24;;;;:::i;:33::-;49801:40;;49909:12;;49890:15;;49883:4;:22;;;;:::i;:::-;49882:39;;;;:::i;:::-;49860:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49977:12:0;;49964:9;;49957:16;;:4;:16;:::i;:::-;49956:33;;;;:::i;:::-;49940:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;50057:12:0;;50038:15;;50031:22;;:4;:22;:::i;:::-;50030:39;;;;:::i;:::-;50008:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49725:360:0;50105:8;;50101:91;;50134:42;50150:4;50164;50171;50134:15;:42::i;:::-;50208:14;50218:4;50208:14;;:::i;:::-;;;49265:969;50246:33;50262:4;50268:2;50272:6;50246:15;:33::i;:::-;45389:4898;;;;45276:5011;;;:::o;44494:186::-;44577:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;44632:40;;44577:39;;:31;44632:40;;;44494:186;;:::o;18810:191::-;18903:6;;;;18920:17;;;;;;;;;;;18953:40;;18903:6;;;18920:17;18903:6;;18953:40;;18884:16;;18953:40;18873:128;18810:191;:::o;11988:98::-;12046:7;12073:5;12077:1;12073;:5;:::i;:::-;12066:12;11988:98;-1:-1:-1;;;11988:98:0:o;12387:::-;12445:7;12472:5;12476:1;12472;:5;:::i;30249:840::-;30380:18;;;30372:68;;;;;;;13117:2:1;30372:68:0;;;13099:21:1;13156:2;13136:18;;;13129:30;13195:34;13175:18;;;13168:62;13266:7;13246:18;;;13239:35;13291:19;;30372:68:0;12915:401:1;30372:68:0;30459:16;;;30451:64;;;;;;;13523:2:1;30451:64:0;;;13505:21:1;13562:2;13542:18;;;13535:30;13601:34;13581:18;;;13574:62;13672:5;13652:18;;;13645:33;13695:19;;30451:64:0;13321:399:1;30451:64:0;30601:15;;;30579:19;30601:15;;;;;;;;;;;30635:21;;;;30627:72;;;;;;;16086:2:1;30627:72:0;;;16068:21:1;16125:2;16105:18;;;16098:30;16164:34;16144:18;;;16137:62;16235:8;16215:18;;;16208:36;16261:19;;30627:72:0;15884:402:1;30627:72:0;30735:15;;;;:9;:15;;;;;;;;;;;30753:20;;;30735:38;;30953:13;;;;;;;;;;:23;;;;;;31005:26;;1952:25:1;;;30953:13:0;;31005:26;;1925:18:1;31005:26:0;;;;;;;31044:37;42807:401;51417:1756;51500:4;51456:23;26158:18;;;;;;;;;;;51456:50;;51517:25;51613:12;;51579:18;;51545;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;51517:108;-1:-1:-1;51636:12:0;51665:20;;;:46;;-1:-1:-1;51689:22:0;;51665:46;51661:85;;;51728:7;;;51417:1756::o;51661:85::-;51780:18;;:23;;51801:2;51780:23;:::i;:::-;51762:15;:41;51758:115;;;51838:18;;:23;;51859:2;51838:23;:::i;:::-;51820:41;;51758:115;51934:23;52047:1;52014:17;51979:18;;51961:15;:36;;;;:::i;:::-;51960:71;;;;:::i;:::-;:88;;;;:::i;:::-;51934:114;-1:-1:-1;52059:26:0;52088:36;:15;51934:114;52088:19;:36::i;:::-;52059:65;-1:-1:-1;52165:21:0;52199:36;52059:65;52199:16;:36::i;:::-;52248:18;52269:44;:21;52295:17;52269:25;:44::i;:::-;52248:65;;52326:23;52352:81;52405:17;52352:34;52367:18;;52352:10;:14;;:34;;;;:::i;:81::-;52326:107;;52444:17;52464:51;52497:17;52464:28;52479:12;;52464:10;:14;;:28;;;;:::i;:51::-;52444:71;-1:-1:-1;52528:23:0;52444:71;52554:28;52567:15;52554:10;:28;:::i;:::-;:40;;;;:::i;:::-;52628:1;52607:18;:22;;;52640:18;:22;;;52673:12;:16;;;52724:9;;52716:45;;52528:66;;-1:-1:-1;52724:9:0;;;52747;;52716:45;52628:1;52716:45;52747:9;52724;52716:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52702:59:0;;-1:-1:-1;;52778:19:0;;;;;:42;;;52819:1;52801:15;:19;52778:42;52774:278;;;52837:46;52850:15;52867;52837:12;:46::i;:::-;53007:18;;52903:137;;;16703:25:1;;;16759:2;16744:18;;16737:34;;;16787:18;;;16780:34;;;;52903:137:0;;;;;;16691:2:1;52903:137:0;;;52774:278;53086:15;;53078:87;;53086:15;;;;;53129:21;;53078:87;;;;53129:21;53086:15;53078:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;51417:1756:0:o;53744:788::-;53835:15;53818:14;:32;53951:13;;53936:29;;;;;:14;53951:13;;;53936:29;;;1721:74:1;53801:4:0;;;;53936;;:14;;1694:18:1;;53936:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53905:60;;54015:20;54038:77;54099:5;54038:42;54063:16;;54038:20;:24;;:42;;;;:::i;:77::-;54015:100;-1:-1:-1;54220:16:0;;54216:110;;54269:13;;54253:61;;54269:13;;54292:6;54301:12;54253:15;:61::i;:::-;54438:13;;54463:11;;;;;;;;54438:13;;;;;;;54463:9;;:11;;;;;54401:19;;54463:11;;;;;;;54401:19;54438:13;54463:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54490:12:0;;;;-1:-1:-1;54490:12:0;;-1:-1:-1;54490:12:0;54520:4;54513:11;;;;;53744:788;:::o;11631:98::-;11689:7;11716:5;11720:1;11716;:5;:::i;50295:589::-;50445:16;;;50459:1;50445:16;;;;;;;;50421:21;;50445:16;;;;;;;;;;-1:-1:-1;50445:16:0;50421:40;;50490:4;50472;50477:1;50472:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;50516:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50506:4;50511:1;50506:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;50551:62;50568:4;50583:15;50601:11;50551:8;:62::i;:::-;50652:224;;;;;:66;:15;:66;;;;:224;;50733:11;;50759:1;;50803:4;;50830;;50850:15;;50652:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50350:534;50295:589;:::o;50892:517::-;51040:62;51057:4;51072:15;51090:11;51040:8;:62::i;:::-;51145:256;;;;;51217:4;51145:256;;;18854:34:1;18904:18;;;18897:34;;;51263:1:0;18947:18:1;;;18940:34;;;18990:18;;;18983:34;36304:6:0;19033:19:1;;;19026:44;51375:15:0;19086:19:1;;;19079:35;51145:15:0;:31;;;;;51184:9;;18765:19:1;;51145:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50892:517;;:::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;712:42;705:5;701:54;694:5;691:65;681:93;;770:1;767;760:12;785:315;853:6;861;914:2;902:9;893:7;889:23;885:32;882:52;;;930:1;927;920:12;882:52;969:9;956:23;988:31;1013:5;988:31;:::i;:::-;1038:5;1090:2;1075:18;;;;1062:32;;-1:-1:-1;;;785:315:1:o;1297:247::-;1356:6;1409:2;1397:9;1388:7;1384:23;1380:32;1377:52;;;1425:1;1422;1415:12;1377:52;1464:9;1451:23;1483:31;1508:5;1483:31;:::i;1988:180::-;2047:6;2100:2;2088:9;2079:7;2075:23;2071:32;2068:52;;;2116:1;2113;2106:12;2068:52;-1:-1:-1;2139:23:1;;1988:180;-1:-1:-1;1988:180:1:o;2173:456::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2374:9;2361:23;2393:31;2418:5;2393:31;:::i;:::-;2443:5;-1:-1:-1;2500:2:1;2485:18;;2472:32;2513:33;2472:32;2513:33;:::i;:::-;2173:456;;2565:7;;-1:-1:-1;;;2619:2:1;2604:18;;;;2591:32;;2173:456::o;3054:160::-;3119:20;;3175:13;;3168:21;3158:32;;3148:60;;3204:1;3201;3194:12;3219:316;3293:6;3301;3309;3362:2;3350:9;3341:7;3337:23;3333:32;3330:52;;;3378:1;3375;3368:12;3330:52;3414:9;3401:23;3391:33;;3471:2;3460:9;3456:18;3443:32;3433:42;;3494:35;3525:2;3514:9;3510:18;3494:35;:::i;:::-;3484:45;;3219:316;;;;;:::o;3540:315::-;3605:6;3613;3666:2;3654:9;3645:7;3641:23;3637:32;3634:52;;;3682:1;3679;3672:12;3634:52;3721:9;3708:23;3740:31;3765:5;3740:31;:::i;:::-;3790:5;-1:-1:-1;3814:35:1;3845:2;3830:18;;3814:35;:::i;:::-;3804:45;;3540:315;;;;;:::o;3860:316::-;3937:6;3945;3953;4006:2;3994:9;3985:7;3981:23;3977:32;3974:52;;;4022:1;4019;4012:12;3974:52;-1:-1:-1;;4045:23:1;;;4115:2;4100:18;;4087:32;;-1:-1:-1;4166:2:1;4151:18;;;4138:32;;3860:316;-1:-1:-1;3860:316:1:o;4181:180::-;4237:6;4290:2;4278:9;4269:7;4265:23;4261:32;4258:52;;;4306:1;4303;4296:12;4258:52;4329:26;4345:9;4329:26;:::i;4366:388::-;4434:6;4442;4495:2;4483:9;4474:7;4470:23;4466:32;4463:52;;;4511:1;4508;4501:12;4463:52;4550:9;4537:23;4569:31;4594:5;4569:31;:::i;:::-;4619:5;-1:-1:-1;4676:2:1;4661:18;;4648:32;4689:33;4648:32;4689:33;:::i;:::-;4741:7;4731:17;;;4366:388;;;;;:::o;4759:437::-;4838:1;4834:12;;;;4881;;;4902:61;;4956:4;4948:6;4944:17;4934:27;;4902:61;5009:2;5001:6;4998:14;4978:18;4975:38;4972:218;;5046:77;5043:1;5036:88;5147:4;5144:1;5137:15;5175:4;5172:1;5165:15;4972:218;;4759:437;;;:::o;5201:184::-;5253:77;5250:1;5243:88;5350:4;5347:1;5340:15;5374:4;5371:1;5364:15;5390:168;5463:9;;;5494;;5511:15;;;5505:22;;5491:37;5481:71;;5532:18;;:::i;5563:274::-;5603:1;5629;5619:189;;5664:77;5661:1;5654:88;5765:4;5762:1;5755:15;5793:4;5790:1;5783:15;5619:189;-1:-1:-1;5822:9:1;;5563:274::o;6258:125::-;6323:9;;;6344:10;;;6341:36;;;6357:18;;:::i;11199:184::-;11269:6;11322:2;11310:9;11301:7;11297:23;11293:32;11290:52;;;11338:1;11335;11328:12;11290:52;-1:-1:-1;11361:16:1;;11199:184;-1:-1:-1;11199:184:1:o;15751:128::-;15818:9;;;15839:11;;;15836:37;;;15853:18;;:::i;17014:184::-;17066:77;17063:1;17056:88;17163:4;17160:1;17153:15;17187:4;17184:1;17177:15;17203:251;17273:6;17326:2;17314:9;17305:7;17301:23;17297:32;17294:52;;;17342:1;17339;17332:12;17294:52;17374:9;17368:16;17393:31;17418:5;17393:31;:::i;17459:1026::-;17721:4;17769:3;17758:9;17754:19;17800:6;17789:9;17782:25;17826:2;17864:6;17859:2;17848:9;17844:18;17837:34;17907:3;17902:2;17891:9;17887:18;17880:31;17931:6;17966;17960:13;17997:6;17989;17982:22;18035:3;18024:9;18020:19;18013:26;;18074:2;18066:6;18062:15;18048:29;;18095:1;18105:218;18119:6;18116:1;18113:13;18105:218;;;18184:13;;18199:42;18180:62;18168:75;;18298:15;;;;18263:12;;;;18141:1;18134:9;18105:218;;;-1:-1:-1;;18391:42:1;18379:55;;;;18374:2;18359:18;;18352:83;-1:-1:-1;;;18466:3:1;18451:19;18444:35;18340:3;17459:1026;-1:-1:-1;;;17459:1026:1:o;19125:306::-;19213:6;19221;19229;19282:2;19270:9;19261:7;19257:23;19253:32;19250:52;;;19298:1;19295;19288:12;19250:52;19327:9;19321:16;19311:26;;19377:2;19366:9;19362:18;19356:25;19346:35;;19421:2;19410:9;19406:18;19400:25;19390:35;;19125:306;;;;;:::o

Swarm Source

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