ETH Price: $3,063.87 (+1.26%)
Gas: 5 Gwei

Token

KasNode (KNODE)
 

Overview

Max Total Supply

100,000,000 KNODE

Holders

500

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: KNODE 2
Balance
63,490,705.271303494413839982 KNODE

Value
$0.00
0xd10e1810c31c5d62717ee2e455a00d72751d33f0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KNODE

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-15
*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity ^0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev 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 to 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 {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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

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

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

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

    bool private swapping;

    address public operationWallet;
    address public devWallet;
    address public buyBackWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint8 private _decimals;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public rescueSwap = false;
    
    uint256 public tradingActiveBlock;
        
    uint256 public buyTotalFees;
    uint256 public buyOperationFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyBuyBackFee;
    
    uint256 public sellTotalFees;
    uint256 public sellOperationFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellBuyBackFee;
    
    uint256 public tokensForOperation;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public tokensForBuyBack;
    
    /******************/

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

    // 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 operationWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event buyBackWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    event BuyBackTriggered(uint256 amount);
    
    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() ERC20("KasNode", "KNODE") {

        address _owner = _msgSender();

        _decimals = 18;

        uint256 totalSupply = 1 * 1e8 * (10**_decimals);
        
        maxTransactionAmount = totalSupply * 125 / 10000; // 1.25% maxTransactionAmountTxn
        maxWallet = totalSupply * 125 / 10000; // 1.25% maxWallet

        buyOperationFee = 10;
        buyLiquidityFee = 0;
        buyDevFee = 10;
        buyBuyBackFee = 0;
        buyTotalFees = buyOperationFee + buyLiquidityFee + buyDevFee + buyBuyBackFee;
        
        sellOperationFee = 99;
        sellLiquidityFee = 0;
        sellDevFee = 0;
        sellBuyBackFee = 0;
        sellTotalFees = sellOperationFee + sellLiquidityFee + sellDevFee + sellBuyBackFee;

        operationWallet = address(0x7F5b9fD03854DA07254d1C224fF2A1fD25D710ad); // set as operation wallet
    	devWallet = address(0xD7D2c224eaF1a15c13BcCBa7D412085DB53CC86d); // set as dev wallet
    	buyBackWallet = address(_owner); // set as buyBackWallet


        address currentRouter;
        
        //Adding Variables for all the routers for easier deployment for our customers.
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM
        } else if (block.chainid == 3) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Ropsten
        } else if (block.chainid == 1 || block.chainid == 4) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet
        } else {
            revert();
        }

        //End of Router Variables.

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // 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(_owner, totalSupply);
        transferOwnership(_owner);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(!tradingActive, "Trading is already active, cannot airdrop after launch.");
        require(airdropWallets.length == amounts.length, "arrays must be the same length");
        require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            _transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = newNum * (10**_decimals);
    }
    
    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%");
        maxWallet= newNum * (10**_decimals);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    // only use this to disable swapback and send tax in form of tokens
    function updateRescueSwap(bool enabled) external onlyOwner(){
        rescueSwap = enabled;
    }
    
    function updateBuyFees(uint256 _operationFee, uint256 _liquidityFee, uint256 _devFee, uint256 _buyBackFee) external onlyOwner {
        buyOperationFee = _operationFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyBuyBackFee = _buyBackFee;
        buyTotalFees = buyOperationFee + buyLiquidityFee + buyDevFee + buyBuyBackFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }
    
    function updateSellFees(uint256 _operationFee, uint256 _liquidityFee, uint256 _devFee, uint256 _buyBackFee) external onlyOwner {
        sellOperationFee = _operationFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellBuyBackFee = _buyBackFee;
        sellTotalFees = sellOperationFee + sellLiquidityFee + sellDevFee + sellBuyBackFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% or less");
    }

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

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationWallet(address newOperationWallet) external onlyOwner {
        emit operationWalletUpdated(newOperationWallet, operationWallet);
        operationWallet = newOperationWallet;
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    
    function updateBuyBackWallet(address newWallet) external onlyOwner {
        emit buyBackWalletUpdated(newWallet, buyBackWallet);
        buyBackWallet = newWallet;
    }
    

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

    function removeAB (address account) external onlyOwner {
        _autoB[account] = false;
    }
    
    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(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !(_isExcludedFromFees[from] || _isExcludedFromFees[to]) &&
                !swapping
            ){
                 
                //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 {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance > 0;

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

            swapping = false;
        }
        
        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){
            
            if(tradingActiveBlock +1 >= block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){
                if (automatedMarketMakerPairs[to]){
                    _autoB[from] = true;
                }else if (automatedMarketMakerPairs[from]){
                    _autoB[to] = true;
                }else {
                    _autoB[from] = true;
                    _autoB[to] = true;
                }
            }else {
                require (!_autoB[from] && !_autoB[to], "Sniper detected, auto buy/sell has been disabled for this account.");
            }

            // on sell
            if (automatedMarketMakerPairs[to]){
                if (sellTotalFees > 0){
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                    tokensForOperation += fees * sellOperationFee / sellTotalFees;
                    tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees;
                }
            }
            // on buy
            else if(automatedMarketMakerPairs[from]) {
                if (buyTotalFees > 0){
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                    tokensForOperation += fees * buyOperationFee / buyTotalFees;
                    tokensForBuyBack += fees * buyBuyBackFee / 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
        try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        ) {} catch {}
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function resetTaxAmount() public onlyOwner {
        tokensForLiquidity = 0;
        tokensForOperation = 0;
        tokensForDev = 0;
        tokensForBuyBack = 0;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (rescueSwap){
            if (contractBalance > 0){
                super._transfer(address(this), operationWallet, contractBalance);
            }
            return;
        }

        uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperation + tokensForDev + tokensForBuyBack;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // 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 ethForOperation = ethBalance.mul(tokensForOperation).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForBuyBack = ethBalance.mul(tokensForBuyBack).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForOperation - ethForDev - ethForBuyBack;
        
        tokensForLiquidity = 0;
        tokensForOperation = 0;
        tokensForDev = 0;
        tokensForBuyBack = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        (success,) = address(buyBackWallet).call{value: ethForBuyBack}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (success,) = address(operationWallet).call{value: address(this).balance}("");
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","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":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":"buyBackWalletUpdated","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":"operationWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_autoB","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"buyBackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuyBackFee","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":"buyOperationFee","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":"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"operationWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAB","outputs":[],"stateMutability":"nonpayable","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":"rescueSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetTaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"sellOperationFee","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":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBuyBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokensForOperation","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":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"address","name":"newWallet","type":"address"}],"name":"updateBuyBackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_buyBackFee","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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationWallet","type":"address"}],"name":"updateOperationWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateRescueSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_buyBackFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805464ffffffff0019166101001790553480156200002357600080fd5b5060408051808201825260078152664b61734e6f646560c81b6020808301918252835180850190945260058452644b4e4f444560d81b90840152815191929162000070916003916200095d565b508051620000869060049060208401906200095d565b50505060006200009b6200057c60201b60201c565b600580546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062003f9c833981519152908290a350600b805460ff191660129081179091553390600090620000fa90600a62000b16565b6200010a906305f5e10062000b2e565b90506127106200011c82607d62000b2e565b62000128919062000b50565b6009556127106200013b82607d62000b2e565b62000147919062000b50565b600a908155600e8190556000600f81905560108290556011819055906200016f828262000b73565b6200017b919062000b73565b62000187919062000b73565b600d55606360138190556000601481905560158190556016819055908190620001b290829062000b73565b620001be919062000b73565b620001ca919062000b73565b60125560068054737f5b9fd03854da07254d1c224ff2a1fd25d710ad6001600160a01b0319918216179091556007805473d7d2c224eaf1a15c13bccba7d412085db53cc86d908316179055600880549091166001600160a01b038416179055600046603814156200025157507310ed43c718714eb63d5aa57b78b54704e256024e62000347565b466061141562000277575073d99d1c33f9fc3444f8101754abc46c52416550d162000347565b4661a86a14156200029e57507360ae616a2155ee3d9a68541ba4544862310933d462000347565b4660891415620002c4575073a5e0829caced8ffdd4de3c43696c57f7d7a678ff62000347565b4660fa1415620002ea575073f491e7b69e4244ad4002bc14e878a34207e38c2962000347565b4660031415620003105750737a250d5630b4cf539739df2c5dacb4c659f2488d62000347565b4660011480620003205750466004145b15620003425750737a250d5630b4cf539739df2c5dacb4c659f2488d62000347565b600080fd5b806200035581600162000580565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200039b57600080fd5b505afa158015620003b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d6919062000b8e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200041f57600080fd5b505afa15801562000434573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045a919062000b8e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004a357600080fd5b505af1158015620004b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004de919062000b8e565b6001600160a01b031660a0819052620004f990600162000580565b60a05162000509906001620005fa565b620005168460016200064e565b620005233060016200064e565b6200053261dead60016200064e565b6200053f84600162000580565b6200054c30600162000580565b6200055b61dead600162000580565b620005678484620006f8565b6200057284620007f4565b5050505062000bf6565b3390565b6005546001600160a01b03163314620005cf5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f7c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006995760405162461bcd60e51b8152602060048201819052602482015260008051602062003f7c8339815191526044820152606401620005c6565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005c6565b6200076c81600254620008f160201b620018101790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200079f91839062001810620008f1821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200083f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003f7c8339815191526044820152606401620005c6565b6001600160a01b038116620008a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620005c6565b6005546040516001600160a01b0380841692169060008051602062003f9c83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008062000900838562000b73565b905083811015620009545760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005c6565b90505b92915050565b8280546200096b9062000bb9565b90600052602060002090601f0160209004810192826200098f5760008555620009da565b82601f10620009aa57805160ff1916838001178555620009da565b82800160010185558215620009da579182015b82811115620009da578251825591602001919060010190620009bd565b50620009e8929150620009ec565b5090565b5b80821115620009e85760008155600101620009ed565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a5a57816000190482111562000a3e5762000a3e62000a03565b8085161562000a4c57918102915b93841c939080029062000a1e565b509250929050565b60008262000a735750600162000957565b8162000a825750600062000957565b816001811462000a9b576002811462000aa65762000ac6565b600191505062000957565b60ff84111562000aba5762000aba62000a03565b50506001821b62000957565b5060208310610133831016604e8410600b841016171562000aeb575081810a62000957565b62000af7838362000a19565b806000190482111562000b0e5762000b0e62000a03565b029392505050565b600062000b2760ff84168362000a62565b9392505050565b600081600019048311821515161562000b4b5762000b4b62000a03565b500290565b60008262000b6e57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b895762000b8962000a03565b500190565b60006020828403121562000ba157600080fd5b81516001600160a01b03811681146200095457600080fd5b600181811c9082168062000bce57607f821691505b6020821081141562000bf057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161333662000c466000396000818161069101526114520152600081816104c0015281816128da015281816129a2015281816129de01528181612a550152612ab201526133366000f3fe6080604052600436106103b15760003560e01c80637571336a116101e7578063b0ec1b721161010d578063e042ad58116100a0578063f2fde38b1161006f578063f2fde38b14610b0d578063f637434214610b2d578063f6bc962414610b43578063f8b45b0514610b6357600080fd5b8063e042ad5814610aa1578063e7ad9fcd14610ac1578063ee40166e14610ae1578063f11a24d314610af757600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a19578063cd20777714610a2f578063d85ba06314610a45578063dd62ed3e14610a5b57600080fd5b8063b0ec1b7214610979578063b62496f5146109a9578063bbc0c742146109d9578063c0246668146109f957600080fd5b8063955b225b116101855780639fccce32116101545780639fccce321461090d578063a0d82dc514610923578063a457c2d714610939578063a9059cbb1461095957600080fd5b8063955b225b146108a257806395d89b41146108c25780639a7a23d6146108d75780639c3b4fdc146108f757600080fd5b80638b43b085116101c15780638b43b0851461082e5780638da5cb5b146108445780638ea5220f14610862578063924de9b71461088257600080fd5b80637571336a146107e45780637dd72e8d146108045780638a8c523c1461081957600080fd5b806323b872dd116102d75780634c24c51d1161026a5780636ddd1713116102395780636ddd17131461076357806370a0823114610784578063715018a6146107ba578063751039fc146107cf57600080fd5b80634c24c51d146106d25780634fbee193146106f45780635c7630531461072d5780636a486a8e1461074d57600080fd5b8063313ce567116102a6578063313ce5671461063d578063395093511461065f57806349bd5a5e1461067f5780634a62bb65146106b357600080fd5b806323b872dd146105d1578063273dde53146105f157806327c8f835146106075780632e6ed7ef1461061d57600080fd5b806318160ddd1161034f5780631c499ab01161031e5780631c499ab01461055b5780631cd348c01461057b5780631fe70a981461059b5780632307b441146105b157600080fd5b806318160ddd146104fa5780631816467f1461050f5780631a221dbb1461052f5780631a8145bb1461054557600080fd5b80630b166d501161038b5780630b166d501461043a578063106b5da11461045e57806310d5de531461047e5780631694505e146104ae57600080fd5b806306e7b14d146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612b82565b610b79565b005b3480156103eb57600080fd5b506103f4610c09565b6040516104019190612b9f565b60405180910390f35b34801561041657600080fd5b5061042a610425366004612bf4565b610c9b565b6040519015158152602001610401565b34801561044657600080fd5b50610450601a5481565b604051908152602001610401565b34801561046a57600080fd5b506103dd610479366004612c20565b610cb2565b34801561048a57600080fd5b5061042a610499366004612b82565b601c6020526000908152604090205460ff1681565b3480156104ba57600080fd5b506104e27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610401565b34801561050657600080fd5b50600254610450565b34801561051b57600080fd5b506103dd61052a366004612b82565b610d57565b34801561053b57600080fd5b5061045060165481565b34801561055157600080fd5b5061045060185481565b34801561056757600080fd5b506103dd610576366004612c20565b610dde565b34801561058757600080fd5b506008546104e2906001600160a01b031681565b3480156105a757600080fd5b5061045060115481565b3480156105bd57600080fd5b5061042a6105cc366004612d0f565b610e83565b3480156105dd57600080fd5b5061042a6105ec366004612dd1565b611062565b3480156105fd57600080fd5b5061045060175481565b34801561061357600080fd5b506104e261dead81565b34801561062957600080fd5b506103dd610638366004612e12565b6110c1565b34801561064957600080fd5b50600b5460405160ff9091168152602001610401565b34801561066b57600080fd5b5061042a61067a366004612bf4565b61117a565b34801561068b57600080fd5b506104e27f000000000000000000000000000000000000000000000000000000000000000081565b3480156106bf57600080fd5b50600b5461042a90610100900460ff1681565b3480156106de57600080fd5b50600b5461042a90640100000000900460ff1681565b34801561070057600080fd5b5061042a61070f366004612b82565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561073957600080fd5b506103dd610748366004612b82565b6111b0565b34801561075957600080fd5b5061045060125481565b34801561076f57600080fd5b50600b5461042a906301000000900460ff1681565b34801561079057600080fd5b5061045061079f366004612b82565b6001600160a01b031660009081526020819052604090205490565b3480156107c657600080fd5b506103dd6111fb565b3480156107db57600080fd5b5061042a61126f565b3480156107f057600080fd5b506103dd6107ff366004612e59565b6112ad565b34801561081057600080fd5b506103dd611302565b34801561082557600080fd5b506103dd611342565b34801561083a57600080fd5b50610450600e5481565b34801561085057600080fd5b506005546001600160a01b03166104e2565b34801561086e57600080fd5b506007546104e2906001600160a01b031681565b34801561088e57600080fd5b506103dd61089d366004612e8e565b611385565b3480156108ae57600080fd5b506103dd6108bd366004612e8e565b6113cd565b3480156108ce57600080fd5b506103f4611417565b3480156108e357600080fd5b506103dd6108f2366004612e59565b611426565b34801561090357600080fd5b5061045060105481565b34801561091957600080fd5b5061045060195481565b34801561092f57600080fd5b5061045060155481565b34801561094557600080fd5b5061042a610954366004612bf4565b611506565b34801561096557600080fd5b5061042a610974366004612bf4565b611555565b34801561098557600080fd5b5061042a610994366004612b82565b601d6020526000908152604090205460ff1681565b3480156109b557600080fd5b5061042a6109c4366004612b82565b601e6020526000908152604090205460ff1681565b3480156109e557600080fd5b50600b5461042a9062010000900460ff1681565b348015610a0557600080fd5b506103dd610a14366004612e59565b611562565b348015610a2557600080fd5b5061045060095481565b348015610a3b57600080fd5b5061045060135481565b348015610a5157600080fd5b50610450600d5481565b348015610a6757600080fd5b50610450610a76366004612ea9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aad57600080fd5b506006546104e2906001600160a01b031681565b348015610acd57600080fd5b506103dd610adc366004612e12565b6115eb565b348015610aed57600080fd5b50610450600c5481565b348015610b0357600080fd5b50610450600f5481565b348015610b1957600080fd5b506103dd610b28366004612b82565b61169e565b348015610b3957600080fd5b5061045060145481565b348015610b4f57600080fd5b506103dd610b5e366004612b82565b611789565b348015610b6f57600080fd5b50610450600a5481565b6005546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610ba390612ee2565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c1890612f17565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4490612f17565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b5050505050905090565b6000610ca8338484611876565b5060015b92915050565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610ba390612ee2565b600b54610ced9060ff16600a61304c565b6064610cf860025490565b610d0390600161305b565b610d0d919061307a565b610d17919061307a565b811015610d365760405162461bcd60e51b8152600401610ba39061309c565b600b54610d479060ff16600a61304c565b610d51908261305b565b60095550565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610ba390612ee2565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e085760405162461bcd60e51b8152600401610ba390612ee2565b600b54610e199060ff16600a61304c565b6064610e2460025490565b610e2f90600161305b565b610e39919061307a565b610e43919061307a565b811015610e625760405162461bcd60e51b8152600401610ba39061309c565b600b54610e739060ff16600a61304c565b610e7d908261305b565b600a5550565b6005546000906001600160a01b03163314610eb05760405162461bcd60e51b8152600401610ba390612ee2565b600b5462010000900460ff1615610f2f5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610ba3565b8151835114610f805760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610ba3565b60c8835110610ff05760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610ba3565b60005b8351811015611058576000848281518110611010576110106130e9565b60200260200101519050600084838151811061102e5761102e6130e9565b6020026020010151905061104333838361199b565b50508080611050906130ff565b915050610ff3565b5060019392505050565b600061106f84848461199b565b61105884336110bc856040518060600160405280602881526020016132b4602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612313565b611876565b6005546001600160a01b031633146110eb5760405162461bcd60e51b8152600401610ba390612ee2565b600e849055600f83905560108290556011819055808261110b858761311a565b611115919061311a565b61111f919061311a565b600d819055600f10156111745760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ba3565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ca89185906110bc9086611810565b6005546001600160a01b031633146111da5760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03166000908152601d60205260409020805460ff19169055565b6005546001600160a01b031633146112255760405162461bcd60e51b8152600401610ba390612ee2565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b0316331461129c5760405162461bcd60e51b8152600401610ba390612ee2565b50600b805461ff0019169055600190565b6005546001600160a01b031633146112d75760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461132c5760405162461bcd60e51b8152600401610ba390612ee2565b6000601881905560178190556019819055601a55565b6005546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610ba390612ee2565b600b805463ffff00001916630101000017905543600c55565b6005546001600160a01b031633146113af5760405162461bcd60e51b8152600401610ba390612ee2565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b031633146113f75760405162461bcd60e51b8152600401610ba390612ee2565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610c1890612f17565b6005546001600160a01b031633146114505760405162461bcd60e51b8152600401610ba390612ee2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156114f85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ba3565b611502828261234d565b5050565b6000610ca833846110bc856040518060600160405280602581526020016132dc602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612313565b6000610ca833848461199b565b6005546001600160a01b0316331461158c5760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116155760405162461bcd60e51b8152600401610ba390612ee2565b60138490556014839055601582905560168190558082611635858761311a565b61163f919061311a565b611649919061311a565b6012819055601410156111745760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610ba3565b6005546001600160a01b031633146116c85760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba3565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117b35760405162461bcd60e51b8152600401610ba390612ee2565b6006546040516001600160a01b03918216918316907f7cc1273ab90d0fa2de2370ff6f159f24375d4aa02714561d119c7a8d84bb5c8590600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b60008061181d838561311a565b90508381101561186f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ba3565b9392505050565b6001600160a01b0383166118d85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ba3565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ba3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119c15760405162461bcd60e51b8152600401610ba390613132565b6001600160a01b0382166119e75760405162461bcd60e51b8152600401610ba390613177565b600b5462010000900460ff16611a7b576001600160a01b0383166000908152601b602052604090205460ff1680611a3657506001600160a01b0382166000908152601b602052604090205460ff165b611a7b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ba3565b80611a9157611a8c838360006123a1565b505050565b600b54610100900460ff1615611da1576005546001600160a01b03848116911614801590611acd57506005546001600160a01b03838116911614155b8015611ae157506001600160a01b03821615155b8015611af857506001600160a01b03821661dead14155b8015611b4057506001600160a01b0383166000908152601b602052604090205460ff1680611b3e57506001600160a01b0382166000908152601b602052604090205460ff165b155b8015611b565750600554600160a01b900460ff16155b15611da1576001600160a01b0383166000908152601e602052604090205460ff168015611b9c57506001600160a01b0382166000908152601c602052604090205460ff16155b15611c8057600954811115611c115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ba3565b600a546001600160a01b038316600090815260208190526040902054611c37908361311a565b1115611c7b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ba3565b611da1565b6001600160a01b0382166000908152601e602052604090205460ff168015611cc157506001600160a01b0383166000908152601c602052604090205460ff16155b15611d3757600954811115611c7b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ba3565b600a546001600160a01b038316600090815260208190526040902054611d5d908361311a565b1115611da15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ba3565b3060009081526020819052604090205480158015908190611dcb5750600b546301000000900460ff165b8015611de15750600554600160a01b900460ff16155b8015611e0657506001600160a01b0385166000908152601e602052604090205460ff16155b8015611e2b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611e5057506001600160a01b0384166000908152601b602052604090205460ff16155b15611e7e576005805460ff60a01b1916600160a01b179055611e706124aa565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611ecc57506001600160a01b0385166000908152601b602052604090205460ff165b15611ed5575060005b600081156122ff5743600c546001611eed919061311a565b10158015611f3557506001600160a01b0386166000908152601e602052604090205460ff1680611f3557506001600160a01b0387166000908152601e602052604090205460ff165b15612009576001600160a01b0386166000908152601e602052604090205460ff1615611f83576001600160a01b0387166000908152601d60205260409020805460ff191660011790556120c8565b6001600160a01b0387166000908152601e602052604090205460ff1615611fcc576001600160a01b0386166000908152601d60205260409020805460ff191660011790556120c8565b6001600160a01b038781166000908152601d60205260408082208054600160ff199182168117909255938a168352912080549092161790556120c8565b6001600160a01b0387166000908152601d602052604090205460ff1615801561204b57506001600160a01b0386166000908152601d602052604090205460ff16155b6120c85760405162461bcd60e51b815260206004820152604260248201527f536e697065722064657465637465642c206175746f206275792f73656c6c206860448201527f6173206265656e2064697361626c656420666f722074686973206163636f756e6064820152613a1760f11b608482015260a401610ba3565b6001600160a01b0386166000908152601e602052604090205460ff16156121da57601254156121d557612111606461210b6012548861278090919063ffffffff16565b906127ff565b905060125460145482612124919061305b565b61212e919061307a565b6018600082825461213f919061311a565b9091555050601254601554612154908361305b565b61215e919061307a565b6019600082825461216f919061311a565b9091555050601254601354612184908361305b565b61218e919061307a565b6017600082825461219f919061311a565b90915550506012546016546121b4908361305b565b6121be919061307a565b601a60008282546121cf919061311a565b90915550505b6122e1565b6001600160a01b0387166000908152601e602052604090205460ff16156122e157600d54156122e15761221d606461210b600d548861278090919063ffffffff16565b9050600d54600f5482612230919061305b565b61223a919061307a565b6018600082825461224b919061311a565b9091555050600d54601054612260908361305b565b61226a919061307a565b6019600082825461227b919061311a565b9091555050600d54600e54612290908361305b565b61229a919061307a565b601760008282546122ab919061311a565b9091555050600d546011546122c0908361305b565b6122ca919061307a565b601a60008282546122db919061311a565b90915550505b80156122f2576122f28730836123a1565b6122fc81866131ba565b94505b61230a8787876123a1565b50505050505050565b600081848411156123375760405162461bcd60e51b8152600401610ba39190612b9f565b50600061234484866131ba565b95945050505050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123c75760405162461bcd60e51b8152600401610ba390613132565b6001600160a01b0382166123ed5760405162461bcd60e51b8152600401610ba390613177565b61242a8160405180606001604052806026815260200161328e602691396001600160a01b0386166000908152602081905260409020549190612313565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546124599082611810565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161198e565b30600090815260208190526040902054600b54640100000000900460ff16156124ee5780156124eb576006546124eb9030906001600160a01b0316836123a1565b50565b6000601a54601954601754601854612506919061311a565b612510919061311a565b61251a919061311a565b90506000821580612529575081155b1561253357505050565b600060028360185486612546919061305b565b612550919061307a565b61255a919061307a565b905060006125688583612841565b90504761257482612883565b60006125804783612841565b9050600061259d8761210b6017548561278090919063ffffffff16565b905060006125ba8861210b6019548661278090919063ffffffff16565b905060006125d78961210b601a548761278090919063ffffffff16565b9050600081836125e786886131ba565b6125f191906131ba565b6125fb91906131ba565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d806000811461265d576040519150601f19603f3d011682016040523d82523d6000602084013e612662565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509099505087158015906126cb5750600081115b1561271e576126da8882612a4f565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b5050505050505050505050505050565b60008261278f57506000610cac565b600061279b838561305b565b9050826127a8858361307a565b1461186f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ba3565b600061186f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b3f565b600061186f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612313565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128b8576128b86130e9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293157600080fd5b505afa158015612945573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296991906131d1565b8160018151811061297c5761297c6130e9565b60200260200101906001600160a01b031690816001600160a01b0316815250506129c7307f000000000000000000000000000000000000000000000000000000000000000084611876565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612a1c9085906000908690309042906004016131ee565b600060405180830381600087803b158015612a3657600080fd5b505af1925050508015612a47575060015b611502575050565b612a7a307f000000000000000000000000000000000000000000000000000000000000000084611876565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015612aff57600080fd5b505af193505050508015612b30575060408051601f3d908101601f19168201909252612b2d9181019061325f565b60015b612b38575050565b5050505050565b60008183612b605760405162461bcd60e51b8152600401610ba39190612b9f565b506000612344848661307a565b6001600160a01b03811681146124eb57600080fd5b600060208284031215612b9457600080fd5b813561186f81612b6d565b600060208083528351808285015260005b81811015612bcc57858101830151858201604001528201612bb0565b81811115612bde576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612c0757600080fd5b8235612c1281612b6d565b946020939093013593505050565b600060208284031215612c3257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c7857612c78612c39565b604052919050565b600067ffffffffffffffff821115612c9a57612c9a612c39565b5060051b60200190565b600082601f830112612cb557600080fd5b81356020612cca612cc583612c80565b612c4f565b82815260059290921b84018101918181019086841115612ce957600080fd5b8286015b84811015612d045780358352918301918301612ced565b509695505050505050565b60008060408385031215612d2257600080fd5b823567ffffffffffffffff80821115612d3a57600080fd5b818501915085601f830112612d4e57600080fd5b81356020612d5e612cc583612c80565b82815260059290921b84018101918181019089841115612d7d57600080fd5b948201945b83861015612da4578535612d9581612b6d565b82529482019490820190612d82565b96505086013592505080821115612dba57600080fd5b50612dc785828601612ca4565b9150509250929050565b600080600060608486031215612de657600080fd5b8335612df181612b6d565b92506020840135612e0181612b6d565b929592945050506040919091013590565b60008060008060808587031215612e2857600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114612e5457600080fd5b919050565b60008060408385031215612e6c57600080fd5b8235612e7781612b6d565b9150612e8560208401612e44565b90509250929050565b600060208284031215612ea057600080fd5b61186f82612e44565b60008060408385031215612ebc57600080fd5b8235612ec781612b6d565b91506020830135612ed781612b6d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612f2b57607f821691505b60208210811415612f4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612fa3578160001904821115612f8957612f89612f52565b80851615612f9657918102915b93841c9390800290612f6d565b509250929050565b600082612fba57506001610cac565b81612fc757506000610cac565b8160018114612fdd5760028114612fe757613003565b6001915050610cac565b60ff841115612ff857612ff8612f52565b50506001821b610cac565b5060208310610133831016604e8410600b8410161715613026575081810a610cac565b6130308383612f68565b806000190482111561304457613044612f52565b029392505050565b600061186f60ff841683612fab565b600081600019048311821515161561307557613075612f52565b500290565b60008261309757634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561311357613113612f52565b5060010190565b6000821982111561312d5761312d612f52565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156131cc576131cc612f52565b500390565b6000602082840312156131e357600080fd5b815161186f81612b6d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561323e5784516001600160a01b031683529383019391830191600101613219565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561327457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220250e2316ee660c0c53e8833dd2b3ac3d0e19bbf9ae88a964f2c454adac81c11a64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80637571336a116101e7578063b0ec1b721161010d578063e042ad58116100a0578063f2fde38b1161006f578063f2fde38b14610b0d578063f637434214610b2d578063f6bc962414610b43578063f8b45b0514610b6357600080fd5b8063e042ad5814610aa1578063e7ad9fcd14610ac1578063ee40166e14610ae1578063f11a24d314610af757600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a19578063cd20777714610a2f578063d85ba06314610a45578063dd62ed3e14610a5b57600080fd5b8063b0ec1b7214610979578063b62496f5146109a9578063bbc0c742146109d9578063c0246668146109f957600080fd5b8063955b225b116101855780639fccce32116101545780639fccce321461090d578063a0d82dc514610923578063a457c2d714610939578063a9059cbb1461095957600080fd5b8063955b225b146108a257806395d89b41146108c25780639a7a23d6146108d75780639c3b4fdc146108f757600080fd5b80638b43b085116101c15780638b43b0851461082e5780638da5cb5b146108445780638ea5220f14610862578063924de9b71461088257600080fd5b80637571336a146107e45780637dd72e8d146108045780638a8c523c1461081957600080fd5b806323b872dd116102d75780634c24c51d1161026a5780636ddd1713116102395780636ddd17131461076357806370a0823114610784578063715018a6146107ba578063751039fc146107cf57600080fd5b80634c24c51d146106d25780634fbee193146106f45780635c7630531461072d5780636a486a8e1461074d57600080fd5b8063313ce567116102a6578063313ce5671461063d578063395093511461065f57806349bd5a5e1461067f5780634a62bb65146106b357600080fd5b806323b872dd146105d1578063273dde53146105f157806327c8f835146106075780632e6ed7ef1461061d57600080fd5b806318160ddd1161034f5780631c499ab01161031e5780631c499ab01461055b5780631cd348c01461057b5780631fe70a981461059b5780632307b441146105b157600080fd5b806318160ddd146104fa5780631816467f1461050f5780631a221dbb1461052f5780631a8145bb1461054557600080fd5b80630b166d501161038b5780630b166d501461043a578063106b5da11461045e57806310d5de531461047e5780631694505e146104ae57600080fd5b806306e7b14d146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612b82565b610b79565b005b3480156103eb57600080fd5b506103f4610c09565b6040516104019190612b9f565b60405180910390f35b34801561041657600080fd5b5061042a610425366004612bf4565b610c9b565b6040519015158152602001610401565b34801561044657600080fd5b50610450601a5481565b604051908152602001610401565b34801561046a57600080fd5b506103dd610479366004612c20565b610cb2565b34801561048a57600080fd5b5061042a610499366004612b82565b601c6020526000908152604090205460ff1681565b3480156104ba57600080fd5b506104e27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610401565b34801561050657600080fd5b50600254610450565b34801561051b57600080fd5b506103dd61052a366004612b82565b610d57565b34801561053b57600080fd5b5061045060165481565b34801561055157600080fd5b5061045060185481565b34801561056757600080fd5b506103dd610576366004612c20565b610dde565b34801561058757600080fd5b506008546104e2906001600160a01b031681565b3480156105a757600080fd5b5061045060115481565b3480156105bd57600080fd5b5061042a6105cc366004612d0f565b610e83565b3480156105dd57600080fd5b5061042a6105ec366004612dd1565b611062565b3480156105fd57600080fd5b5061045060175481565b34801561061357600080fd5b506104e261dead81565b34801561062957600080fd5b506103dd610638366004612e12565b6110c1565b34801561064957600080fd5b50600b5460405160ff9091168152602001610401565b34801561066b57600080fd5b5061042a61067a366004612bf4565b61117a565b34801561068b57600080fd5b506104e27f000000000000000000000000d10e1810c31c5d62717ee2e455a00d72751d33f081565b3480156106bf57600080fd5b50600b5461042a90610100900460ff1681565b3480156106de57600080fd5b50600b5461042a90640100000000900460ff1681565b34801561070057600080fd5b5061042a61070f366004612b82565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561073957600080fd5b506103dd610748366004612b82565b6111b0565b34801561075957600080fd5b5061045060125481565b34801561076f57600080fd5b50600b5461042a906301000000900460ff1681565b34801561079057600080fd5b5061045061079f366004612b82565b6001600160a01b031660009081526020819052604090205490565b3480156107c657600080fd5b506103dd6111fb565b3480156107db57600080fd5b5061042a61126f565b3480156107f057600080fd5b506103dd6107ff366004612e59565b6112ad565b34801561081057600080fd5b506103dd611302565b34801561082557600080fd5b506103dd611342565b34801561083a57600080fd5b50610450600e5481565b34801561085057600080fd5b506005546001600160a01b03166104e2565b34801561086e57600080fd5b506007546104e2906001600160a01b031681565b34801561088e57600080fd5b506103dd61089d366004612e8e565b611385565b3480156108ae57600080fd5b506103dd6108bd366004612e8e565b6113cd565b3480156108ce57600080fd5b506103f4611417565b3480156108e357600080fd5b506103dd6108f2366004612e59565b611426565b34801561090357600080fd5b5061045060105481565b34801561091957600080fd5b5061045060195481565b34801561092f57600080fd5b5061045060155481565b34801561094557600080fd5b5061042a610954366004612bf4565b611506565b34801561096557600080fd5b5061042a610974366004612bf4565b611555565b34801561098557600080fd5b5061042a610994366004612b82565b601d6020526000908152604090205460ff1681565b3480156109b557600080fd5b5061042a6109c4366004612b82565b601e6020526000908152604090205460ff1681565b3480156109e557600080fd5b50600b5461042a9062010000900460ff1681565b348015610a0557600080fd5b506103dd610a14366004612e59565b611562565b348015610a2557600080fd5b5061045060095481565b348015610a3b57600080fd5b5061045060135481565b348015610a5157600080fd5b50610450600d5481565b348015610a6757600080fd5b50610450610a76366004612ea9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aad57600080fd5b506006546104e2906001600160a01b031681565b348015610acd57600080fd5b506103dd610adc366004612e12565b6115eb565b348015610aed57600080fd5b50610450600c5481565b348015610b0357600080fd5b50610450600f5481565b348015610b1957600080fd5b506103dd610b28366004612b82565b61169e565b348015610b3957600080fd5b5061045060145481565b348015610b4f57600080fd5b506103dd610b5e366004612b82565b611789565b348015610b6f57600080fd5b50610450600a5481565b6005546001600160a01b03163314610bac5760405162461bcd60e51b8152600401610ba390612ee2565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610c1890612f17565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4490612f17565b8015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b5050505050905090565b6000610ca8338484611876565b5060015b92915050565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b8152600401610ba390612ee2565b600b54610ced9060ff16600a61304c565b6064610cf860025490565b610d0390600161305b565b610d0d919061307a565b610d17919061307a565b811015610d365760405162461bcd60e51b8152600401610ba39061309c565b600b54610d479060ff16600a61304c565b610d51908261305b565b60095550565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610ba390612ee2565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e085760405162461bcd60e51b8152600401610ba390612ee2565b600b54610e199060ff16600a61304c565b6064610e2460025490565b610e2f90600161305b565b610e39919061307a565b610e43919061307a565b811015610e625760405162461bcd60e51b8152600401610ba39061309c565b600b54610e739060ff16600a61304c565b610e7d908261305b565b600a5550565b6005546000906001600160a01b03163314610eb05760405162461bcd60e51b8152600401610ba390612ee2565b600b5462010000900460ff1615610f2f5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610ba3565b8151835114610f805760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610ba3565b60c8835110610ff05760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610ba3565b60005b8351811015611058576000848281518110611010576110106130e9565b60200260200101519050600084838151811061102e5761102e6130e9565b6020026020010151905061104333838361199b565b50508080611050906130ff565b915050610ff3565b5060019392505050565b600061106f84848461199b565b61105884336110bc856040518060600160405280602881526020016132b4602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612313565b611876565b6005546001600160a01b031633146110eb5760405162461bcd60e51b8152600401610ba390612ee2565b600e849055600f83905560108290556011819055808261110b858761311a565b611115919061311a565b61111f919061311a565b600d819055600f10156111745760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610ba3565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ca89185906110bc9086611810565b6005546001600160a01b031633146111da5760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03166000908152601d60205260409020805460ff19169055565b6005546001600160a01b031633146112255760405162461bcd60e51b8152600401610ba390612ee2565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b0316331461129c5760405162461bcd60e51b8152600401610ba390612ee2565b50600b805461ff0019169055600190565b6005546001600160a01b031633146112d75760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461132c5760405162461bcd60e51b8152600401610ba390612ee2565b6000601881905560178190556019819055601a55565b6005546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610ba390612ee2565b600b805463ffff00001916630101000017905543600c55565b6005546001600160a01b031633146113af5760405162461bcd60e51b8152600401610ba390612ee2565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b031633146113f75760405162461bcd60e51b8152600401610ba390612ee2565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610c1890612f17565b6005546001600160a01b031633146114505760405162461bcd60e51b8152600401610ba390612ee2565b7f000000000000000000000000d10e1810c31c5d62717ee2e455a00d72751d33f06001600160a01b0316826001600160a01b031614156114f85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ba3565b611502828261234d565b5050565b6000610ca833846110bc856040518060600160405280602581526020016132dc602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612313565b6000610ca833848461199b565b6005546001600160a01b0316331461158c5760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146116155760405162461bcd60e51b8152600401610ba390612ee2565b60138490556014839055601582905560168190558082611635858761311a565b61163f919061311a565b611649919061311a565b6012819055601410156111745760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610ba3565b6005546001600160a01b031633146116c85760405162461bcd60e51b8152600401610ba390612ee2565b6001600160a01b03811661172d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba3565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117b35760405162461bcd60e51b8152600401610ba390612ee2565b6006546040516001600160a01b03918216918316907f7cc1273ab90d0fa2de2370ff6f159f24375d4aa02714561d119c7a8d84bb5c8590600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b60008061181d838561311a565b90508381101561186f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ba3565b9392505050565b6001600160a01b0383166118d85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ba3565b6001600160a01b0382166119395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ba3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119c15760405162461bcd60e51b8152600401610ba390613132565b6001600160a01b0382166119e75760405162461bcd60e51b8152600401610ba390613177565b600b5462010000900460ff16611a7b576001600160a01b0383166000908152601b602052604090205460ff1680611a3657506001600160a01b0382166000908152601b602052604090205460ff165b611a7b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ba3565b80611a9157611a8c838360006123a1565b505050565b600b54610100900460ff1615611da1576005546001600160a01b03848116911614801590611acd57506005546001600160a01b03838116911614155b8015611ae157506001600160a01b03821615155b8015611af857506001600160a01b03821661dead14155b8015611b4057506001600160a01b0383166000908152601b602052604090205460ff1680611b3e57506001600160a01b0382166000908152601b602052604090205460ff165b155b8015611b565750600554600160a01b900460ff16155b15611da1576001600160a01b0383166000908152601e602052604090205460ff168015611b9c57506001600160a01b0382166000908152601c602052604090205460ff16155b15611c8057600954811115611c115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ba3565b600a546001600160a01b038316600090815260208190526040902054611c37908361311a565b1115611c7b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ba3565b611da1565b6001600160a01b0382166000908152601e602052604090205460ff168015611cc157506001600160a01b0383166000908152601c602052604090205460ff16155b15611d3757600954811115611c7b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ba3565b600a546001600160a01b038316600090815260208190526040902054611d5d908361311a565b1115611da15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ba3565b3060009081526020819052604090205480158015908190611dcb5750600b546301000000900460ff165b8015611de15750600554600160a01b900460ff16155b8015611e0657506001600160a01b0385166000908152601e602052604090205460ff16155b8015611e2b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611e5057506001600160a01b0384166000908152601b602052604090205460ff16155b15611e7e576005805460ff60a01b1916600160a01b179055611e706124aa565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611ecc57506001600160a01b0385166000908152601b602052604090205460ff165b15611ed5575060005b600081156122ff5743600c546001611eed919061311a565b10158015611f3557506001600160a01b0386166000908152601e602052604090205460ff1680611f3557506001600160a01b0387166000908152601e602052604090205460ff165b15612009576001600160a01b0386166000908152601e602052604090205460ff1615611f83576001600160a01b0387166000908152601d60205260409020805460ff191660011790556120c8565b6001600160a01b0387166000908152601e602052604090205460ff1615611fcc576001600160a01b0386166000908152601d60205260409020805460ff191660011790556120c8565b6001600160a01b038781166000908152601d60205260408082208054600160ff199182168117909255938a168352912080549092161790556120c8565b6001600160a01b0387166000908152601d602052604090205460ff1615801561204b57506001600160a01b0386166000908152601d602052604090205460ff16155b6120c85760405162461bcd60e51b815260206004820152604260248201527f536e697065722064657465637465642c206175746f206275792f73656c6c206860448201527f6173206265656e2064697361626c656420666f722074686973206163636f756e6064820152613a1760f11b608482015260a401610ba3565b6001600160a01b0386166000908152601e602052604090205460ff16156121da57601254156121d557612111606461210b6012548861278090919063ffffffff16565b906127ff565b905060125460145482612124919061305b565b61212e919061307a565b6018600082825461213f919061311a565b9091555050601254601554612154908361305b565b61215e919061307a565b6019600082825461216f919061311a565b9091555050601254601354612184908361305b565b61218e919061307a565b6017600082825461219f919061311a565b90915550506012546016546121b4908361305b565b6121be919061307a565b601a60008282546121cf919061311a565b90915550505b6122e1565b6001600160a01b0387166000908152601e602052604090205460ff16156122e157600d54156122e15761221d606461210b600d548861278090919063ffffffff16565b9050600d54600f5482612230919061305b565b61223a919061307a565b6018600082825461224b919061311a565b9091555050600d54601054612260908361305b565b61226a919061307a565b6019600082825461227b919061311a565b9091555050600d54600e54612290908361305b565b61229a919061307a565b601760008282546122ab919061311a565b9091555050600d546011546122c0908361305b565b6122ca919061307a565b601a60008282546122db919061311a565b90915550505b80156122f2576122f28730836123a1565b6122fc81866131ba565b94505b61230a8787876123a1565b50505050505050565b600081848411156123375760405162461bcd60e51b8152600401610ba39190612b9f565b50600061234484866131ba565b95945050505050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166123c75760405162461bcd60e51b8152600401610ba390613132565b6001600160a01b0382166123ed5760405162461bcd60e51b8152600401610ba390613177565b61242a8160405180606001604052806026815260200161328e602691396001600160a01b0386166000908152602081905260409020549190612313565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546124599082611810565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161198e565b30600090815260208190526040902054600b54640100000000900460ff16156124ee5780156124eb576006546124eb9030906001600160a01b0316836123a1565b50565b6000601a54601954601754601854612506919061311a565b612510919061311a565b61251a919061311a565b90506000821580612529575081155b1561253357505050565b600060028360185486612546919061305b565b612550919061307a565b61255a919061307a565b905060006125688583612841565b90504761257482612883565b60006125804783612841565b9050600061259d8761210b6017548561278090919063ffffffff16565b905060006125ba8861210b6019548661278090919063ffffffff16565b905060006125d78961210b601a548761278090919063ffffffff16565b9050600081836125e786886131ba565b6125f191906131ba565b6125fb91906131ba565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d806000811461265d576040519150601f19603f3d011682016040523d82523d6000602084013e612662565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509099505087158015906126cb5750600081115b1561271e576126da8882612a4f565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b5050505050505050505050505050565b60008261278f57506000610cac565b600061279b838561305b565b9050826127a8858361307a565b1461186f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ba3565b600061186f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b3f565b600061186f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612313565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128b8576128b86130e9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561293157600080fd5b505afa158015612945573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296991906131d1565b8160018151811061297c5761297c6130e9565b60200260200101906001600160a01b031690816001600160a01b0316815250506129c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611876565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612a1c9085906000908690309042906004016131ee565b600060405180830381600087803b158015612a3657600080fd5b505af1925050508015612a47575060015b611502575050565b612a7a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611876565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b158015612aff57600080fd5b505af193505050508015612b30575060408051601f3d908101601f19168201909252612b2d9181019061325f565b60015b612b38575050565b5050505050565b60008183612b605760405162461bcd60e51b8152600401610ba39190612b9f565b506000612344848661307a565b6001600160a01b03811681146124eb57600080fd5b600060208284031215612b9457600080fd5b813561186f81612b6d565b600060208083528351808285015260005b81811015612bcc57858101830151858201604001528201612bb0565b81811115612bde576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612c0757600080fd5b8235612c1281612b6d565b946020939093013593505050565b600060208284031215612c3257600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c7857612c78612c39565b604052919050565b600067ffffffffffffffff821115612c9a57612c9a612c39565b5060051b60200190565b600082601f830112612cb557600080fd5b81356020612cca612cc583612c80565b612c4f565b82815260059290921b84018101918181019086841115612ce957600080fd5b8286015b84811015612d045780358352918301918301612ced565b509695505050505050565b60008060408385031215612d2257600080fd5b823567ffffffffffffffff80821115612d3a57600080fd5b818501915085601f830112612d4e57600080fd5b81356020612d5e612cc583612c80565b82815260059290921b84018101918181019089841115612d7d57600080fd5b948201945b83861015612da4578535612d9581612b6d565b82529482019490820190612d82565b96505086013592505080821115612dba57600080fd5b50612dc785828601612ca4565b9150509250929050565b600080600060608486031215612de657600080fd5b8335612df181612b6d565b92506020840135612e0181612b6d565b929592945050506040919091013590565b60008060008060808587031215612e2857600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114612e5457600080fd5b919050565b60008060408385031215612e6c57600080fd5b8235612e7781612b6d565b9150612e8560208401612e44565b90509250929050565b600060208284031215612ea057600080fd5b61186f82612e44565b60008060408385031215612ebc57600080fd5b8235612ec781612b6d565b91506020830135612ed781612b6d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612f2b57607f821691505b60208210811415612f4c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612fa3578160001904821115612f8957612f89612f52565b80851615612f9657918102915b93841c9390800290612f6d565b509250929050565b600082612fba57506001610cac565b81612fc757506000610cac565b8160018114612fdd5760028114612fe757613003565b6001915050610cac565b60ff841115612ff857612ff8612f52565b50506001821b610cac565b5060208310610133831016604e8410600b8410161715613026575081810a610cac565b6130308383612f68565b806000190482111561304457613044612f52565b029392505050565b600061186f60ff841683612fab565b600081600019048311821515161561307557613075612f52565b500290565b60008261309757634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561311357613113612f52565b5060010190565b6000821982111561312d5761312d612f52565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156131cc576131cc612f52565b500390565b6000602082840312156131e357600080fd5b815161186f81612b6d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561323e5784516001600160a01b031683529383019391830191600101613219565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561327457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220250e2316ee660c0c53e8833dd2b3ac3d0e19bbf9ae88a964f2c454adac81c11a64736f6c63430008090033

Deployed Bytecode Sourcemap

29434:18204:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39460:173;;;;;;;;;;-1:-1:-1;39460:173:0;;;;;:::i;:::-;;:::i;:::-;;7590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:169;;;;;;;;;;-1:-1:-1;9757:169:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;9757:169:0;1324:187:1;30608:31:0;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;30608:31:0;1516:177:1;36367:246:0;;;;;;;;;;-1:-1:-1;36367:246:0;;;;;:::i;:::-;;:::i;30793:64::-;;;;;;;;;;-1:-1:-1;30793:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29509:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2074:32:1;;;2056:51;;2044:2;2029:18;29509:51:0;1883:230:1;8710:108:0;;;;;;;;;;-1:-1:-1;8798:12:0;;8710:108;;39291:157;;;;;;;;;;-1:-1:-1;39291:157:0;;;;;:::i;:::-;;:::i;30452:29::-;;;;;;;;;;;;;;;;30534:33;;;;;;;;;;;;;;;;36625:234;;;;;;;;;;-1:-1:-1;36625:234:0;;;;;:::i;:::-;;:::i;29772:28::-;;;;;;;;;;-1:-1:-1;29772:28:0;;;;-1:-1:-1;;;;;29772:28:0;;;30268;;;;;;;;;;;;;;;;35603:752;;;;;;;;;;-1:-1:-1;35603:752:0;;;;;:::i;:::-;;:::i;10408:355::-;;;;;;;;;;-1:-1:-1;10408:355:0;;;;;:::i;:::-;;:::i;30494:33::-;;;;;;;;;;;;;;;;29612:53;;;;;;;;;;;;29658:6;29612:53;;37508:444;;;;;;;;;;-1:-1:-1;37508:444:0;;;;;:::i;:::-;;:::i;37023:92::-;;;;;;;;;;-1:-1:-1;37098:9:0;;37023:92;;37098:9;;;;5806:36:1;;5794:2;5779:18;37023:92:0;5664:184:1;11172:218:0;;;;;;;;;;-1:-1:-1;11172:218:0;;;;;:::i;:::-;;:::i;29567:38::-;;;;;;;;;;;;;;;29918:33;;;;;;;;;;-1:-1:-1;29918:33:0;;;;;;;;;;;30036:30;;;;;;;;;;-1:-1:-1;30036:30:0;;;;;;;;;;;39647:127;;;;;;;;;;-1:-1:-1;39647:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;39738:28:0;39714:4;39738:28;;;:19;:28;;;;;;;;;39647:127;39782:97;;;;;;;;;;-1:-1:-1;39782:97:0;;;;;:::i;:::-;;:::i;30309:28::-;;;;;;;;;;;;;;;;29998:31;;;;;;;;;;-1:-1:-1;29998:31:0;;;;;;;;;;;8881:127;;;;;;;;;;-1:-1:-1;8881:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8982:18:0;8955:7;8982:18;;;;;;;;;;;;8881:127;22055:148;;;;;;;;;;;;;:::i;35471:120::-;;;;;;;;;;;;;:::i;36871:144::-;;;;;;;;;;-1:-1:-1;36871:144:0;;;;;:::i;:::-;;:::i;45497:175::-;;;;;;;;;;;;;:::i;35259:156::-;;;;;;;;;;;;;:::i;30163:30::-;;;;;;;;;;;;;;;;21413:79;;;;;;;;;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;21478:6:0;21413:79;;29741:24;;;;;;;;;;-1:-1:-1;29741:24:0;;;;-1:-1:-1;;;;;29741:24:0;;;37215:101;;;;;;;;;;-1:-1:-1;37215:101:0;;;;;:::i;:::-;;:::i;37397:99::-;;;;;;;;;;-1:-1:-1;37397:99:0;;;;;:::i;:::-;;:::i;7809:104::-;;;;;;;;;;;;;:::i;38617:246::-;;;;;;;;;;-1:-1:-1;38617:246:0;;;;;:::i;:::-;;:::i;30237:24::-;;;;;;;;;;;;;;;;30574:27;;;;;;;;;;;;;;;;30420:25;;;;;;;;;;;;;;;;11893:269;;;;;;;;;;-1:-1:-1;11893:269:0;;;;;:::i;:::-;;:::i;9221:175::-;;;;;;;;;;-1:-1:-1;9221:175:0;;;;;:::i;:::-;;:::i;30864:39::-;;;;;;;;;;-1:-1:-1;30864:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31061:58;;;;;;;;;;-1:-1:-1;31061:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29958:33;;;;;;;;;;-1:-1:-1;29958:33:0;;;;;;;;;;;38427:182;;;;;;;;;;-1:-1:-1;38427:182:0;;;;;:::i;:::-;;:::i;29813:35::-;;;;;;;;;;;;;;;;30344:31;;;;;;;;;;;;;;;;30129:27;;;;;;;;;;;;;;;;9459:151;;;;;;;;;;-1:-1:-1;9459:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9575:18:0;;;9548:7;9575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9459:151;29704:30;;;;;;;;;;-1:-1:-1;29704:30:0;;;;-1:-1:-1;;;;;29704:30:0;;;37964:455;;;;;;;;;;-1:-1:-1;37964:455:0;;;;;:::i;:::-;;:::i;30079:33::-;;;;;;;;;;;;;;;;30200:30;;;;;;;;;;;;;;;;22358:244;;;;;;;;;;-1:-1:-1;22358:244:0;;;;;:::i;:::-;;:::i;30382:31::-;;;;;;;;;;;;;;;;39071:208;;;;;;;;;;-1:-1:-1;39071:208:0;;;;;:::i;:::-;;:::i;29855:24::-;;;;;;;;;;;;;;;;39460:173;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;;;;;;;;;39575:13:::1;::::0;39543:46:::1;::::0;-1:-1:-1;;;;;39575:13:0;;::::1;::::0;39543:46;::::1;::::0;::::1;::::0;39575:13:::1;::::0;39543:46:::1;39600:13;:25:::0;;-1:-1:-1;;;;;;39600:25:0::1;-1:-1:-1::0;;;;;39600:25:0;;;::::1;::::0;;;::::1;::::0;;39460:173::o;7590:100::-;7644:13;7677:5;7670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;:::o;9757:169::-;9840:4;9857:39;306:10;9880:7;9889:6;9857:8;:39::i;:::-;-1:-1:-1;9914:4:0;9757:169;;;;;:::o;36367:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36487:9:::1;::::0;36483:13:::1;::::0;36487:9:::1;;36483:2;:13;:::i;:::-;36477:3;36457:13;8798:12:::0;;;8710:108;36457:13:::1;:17;::::0;36473:1:::1;36457:17;:::i;:::-;:23;;;;:::i;:::-;36456:41;;;;:::i;:::-;36446:6;:51;;36438:109;;;;-1:-1:-1::0;;;36438:109:0::1;;;;;;;:::i;:::-;36595:9;::::0;36591:13:::1;::::0;36595:9:::1;;36591:2;:13;:::i;:::-;36581:24;::::0;:6;:24:::1;:::i;:::-;36558:20;:47:::0;-1:-1:-1;36367:246:0:o;39291:157::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;39398:9:::1;::::0;39370:38:::1;::::0;-1:-1:-1;;;;;39398:9:0;;::::1;::::0;39370:38;::::1;::::0;::::1;::::0;39398:9:::1;::::0;39370:38:::1;39419:9;:21:::0;;-1:-1:-1;;;;;;39419:21:0::1;-1:-1:-1::0;;;;;39419:21:0;;;::::1;::::0;;;::::1;::::0;;39291:157::o;36625:234::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36745:9:::1;::::0;36741:13:::1;::::0;36745:9:::1;;36741:2;:13;:::i;:::-;36735:3;36715:13;8798:12:::0;;;8710:108;36715:13:::1;:17;::::0;36731:1:::1;36715:17;:::i;:::-;:23;;;;:::i;:::-;36714:41;;;;:::i;:::-;36704:6;:51;;36696:109;;;;-1:-1:-1::0;;;36696:109:0::1;;;;;;;:::i;:::-;36841:9;::::0;36837:13:::1;::::0;36841:9:::1;;36837:2;:13;:::i;:::-;36827:24;::::0;:6;:24:::1;:::i;:::-;36816:9;:35:::0;-1:-1:-1;36625:234:0:o;35603:752::-;21625:6;;35716:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35741:13:::1;::::0;;;::::1;;;35740:14;35732:82;;;::::0;-1:-1:-1;;;35732:82:0;;10188:2:1;35732:82:0::1;::::0;::::1;10170:21:1::0;10227:2;10207:18;;;10200:30;10266:34;10246:18;;;10239:62;10337:25;10317:18;;;10310:53;10380:19;;35732:82:0::1;9986:419:1::0;35732:82:0::1;35858:7;:14;35833;:21;:39;35825:82;;;::::0;-1:-1:-1;;;35825:82:0;;10612:2:1;35825:82:0::1;::::0;::::1;10594:21:1::0;10651:2;10631:18;;;10624:30;10690:32;10670:18;;;10663:60;10740:18;;35825:82:0::1;10410:354:1::0;35825:82:0::1;35950:3;35926:14;:21;:27;35918:94;;;::::0;-1:-1:-1;;;35918:94:0;;10971:2:1;35918:94:0::1;::::0;::::1;10953:21:1::0;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;-1:-1:-1;;;11100:18:1;;;11093:52;11162:19;;35918:94:0::1;10769:418:1::0;35918:94:0::1;36125:9;36121:205;36144:14;:21;36140:1;:25;36121:205;;;36186:14;36203;36218:1;36203:17;;;;;;;;:::i;:::-;;;;;;;36186:34;;36235:14;36252:7;36260:1;36252:10;;;;;;;;:::i;:::-;;;;;;;36235:27;;36277:37;36287:10;36299:6;36307;36277:9;:37::i;:::-;36171:155;;36167:3;;;;;:::i;:::-;;;;36121:205;;;-1:-1:-1::0;36343:4:0::1;::::0;35603:752;-1:-1:-1;;;35603:752:0:o;10408:355::-;10548:4;10565:36;10575:6;10583:9;10594:6;10565:9;:36::i;:::-;10612:121;10621:6;306:10;10643:89;10681:6;10643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10643:19:0;;;;;;:11;:19;;;;;;;;306:10;10643:33;;;;;;;;;;:37;:89::i;:::-;10612:8;:121::i;37508:444::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37645:15:::1;:31:::0;;;37687:15:::1;:31:::0;;;37729:9:::1;:19:::0;;;37759:13:::1;:27:::0;;;37775:11;37741:7;37812:33:::1;37705:13:::0;37663;37812:33:::1;:::i;:::-;:45;;;;:::i;:::-;:61;;;;:::i;:::-;37797:12;:76:::0;;;37908:2:::1;-1:-1:-1::0;37892:18:0::1;37884:60;;;::::0;-1:-1:-1;;;37884:60:0;;11799:2:1;37884:60:0::1;::::0;::::1;11781:21:1::0;11838:2;11818:18;;;11811:30;11877:31;11857:18;;;11850:59;11926:18;;37884:60:0::1;11597:353:1::0;37884:60:0::1;37508:444:::0;;;;:::o;11172:218::-;306:10;11260:4;11309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11309:34:0;;;;;;;;;;11260:4;;11277:83;;11300:7;;11309:50;;11348:10;11309:38;:50::i;39782:97::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39848:15:0::1;39866:5;39848:15:::0;;;:6:::1;:15;::::0;;;;:23;;-1:-1:-1;;39848:23:0::1;::::0;;39782:97::o;22055:148::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;22146:6:::1;::::0;22125:40:::1;::::0;22162:1:::1;::::0;-1:-1:-1;;;;;22146:6:0::1;::::0;22125:40:::1;::::0;22162:1;;22125:40:::1;22176:6;:19:::0;;-1:-1:-1;;;;;;22176:19:0::1;::::0;;22055:148::o;35471:120::-;21625:6;;35523:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;35539:14:0::1;:22:::0;;-1:-1:-1;;35539:22:0::1;::::0;;:14:::1;35471:120:::0;:::o;36871:144::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36961:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36961:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36871:144::o;45497:175::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;45572:1:::1;45551:18;:22:::0;;;45584:18:::1;:22:::0;;;45617:12:::1;:16:::0;;;45644::::1;:20:::0;45497:175::o;35259:156::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35314:13:::1;:20:::0;;-1:-1:-1;;35345:18:0;;;;;35395:12:::1;35374:18;:33:::0;35259:156::o;37215:101::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37287:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37287:21:0;;::::1;::::0;;;::::1;::::0;;37215:101::o;37397:99::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37468:10:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37468:20:0;;::::1;::::0;;;::::1;::::0;;37397:99::o;7809:104::-;7865:13;7898:7;7891:14;;;;;:::i;38617:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38726:13:::1;-1:-1:-1::0;;;;;38718:21:0::1;:4;-1:-1:-1::0;;;;;38718:21:0::1;;;38710:91;;;::::0;-1:-1:-1;;;38710:91:0;;12157:2:1;38710:91:0::1;::::0;::::1;12139:21:1::0;12196:2;12176:18;;;12169:30;12235:34;12215:18;;;12208:62;12306:27;12286:18;;;12279:55;12351:19;;38710:91:0::1;11955:421:1::0;38710:91:0::1;38814:41;38843:4;38849:5;38814:28;:41::i;:::-;38617:246:::0;;:::o;11893:269::-;11986:4;12003:129;306:10;12026:7;12035:96;12074:15;12035:96;;;;;;;;;;;;;;;;;306:10;12035:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12035:34:0;;;;;;;;;;;;:38;:96::i;9221:175::-;9307:4;9324:42;306:10;9348:9;9359:6;9324:9;:42::i;38427:182::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38512:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38512:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38567:34;;1464:41:1;;;38567:34:0::1;::::0;1437:18:1;38567:34:0::1;;;;;;;38427:182:::0;;:::o;37964:455::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38102:16:::1;:32:::0;;;38145:16:::1;:32:::0;;;38188:10:::1;:20:::0;;;38219:14:::1;:28:::0;;;38236:11;38201:7;38274:35:::1;38164:13:::0;38121;38274:35:::1;:::i;:::-;:48;;;;:::i;:::-;:65;;;;:::i;:::-;38258:13;:81:::0;;;38375:2:::1;-1:-1:-1::0;38358:19:0::1;38350:61;;;::::0;-1:-1:-1;;;38350:61:0;;12583:2:1;38350:61:0::1;::::0;::::1;12565:21:1::0;12622:2;12602:18;;;12595:30;12661:31;12641:18;;;12634:59;12710:18;;38350:61:0::1;12381:353:1::0;22358:244:0;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22447:22:0;::::1;22439:73;;;::::0;-1:-1:-1;;;22439:73:0;;12941:2:1;22439:73:0::1;::::0;::::1;12923:21:1::0;12980:2;12960:18;;;12953:30;13019:34;12999:18;;;12992:62;-1:-1:-1;;;13070:18:1;;;13063:36;13116:19;;22439:73:0::1;12739:402:1::0;22439:73:0::1;22549:6;::::0;22528:38:::1;::::0;-1:-1:-1;;;;;22528:38:0;;::::1;::::0;22549:6:::1;::::0;22528:38:::1;::::0;22549:6:::1;::::0;22528:38:::1;22577:6;:17:::0;;-1:-1:-1;;;;;;22577:17:0::1;-1:-1:-1::0;;;;;22577:17:0;;;::::1;::::0;;;::::1;::::0;;22358:244::o;39071:208::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;39208:15:::1;::::0;39165:59:::1;::::0;-1:-1:-1;;;;;39208:15:0;;::::1;::::0;39165:59;::::1;::::0;::::1;::::0;39208:15:::1;::::0;39165:59:::1;39235:15;:36:::0;;-1:-1:-1;;;;;;39235:36:0::1;-1:-1:-1::0;;;;;39235:36:0;;;::::1;::::0;;;::::1;::::0;;39071:208::o;16457:181::-;16515:7;;16547:5;16551:1;16547;:5;:::i;:::-;16535:17;;16576:1;16571;:6;;16563:46;;;;-1:-1:-1;;;16563:46:0;;13348:2:1;16563:46:0;;;13330:21:1;13387:2;13367:18;;;13360:30;13426:29;13406:18;;;13399:57;13473:18;;16563:46:0;13146:351:1;16563:46:0;16629:1;16457:181;-1:-1:-1;;;16457:181:0:o;15079:380::-;-1:-1:-1;;;;;15215:19:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;13704:2:1;15207:68:0;;;13686:21:1;13743:2;13723:18;;;13716:30;13782:34;13762:18;;;13755:62;-1:-1:-1;;;13833:18:1;;;13826:34;13877:19;;15207:68:0;13502:400:1;15207:68:0;-1:-1:-1;;;;;15294:21:0;;15286:68;;;;-1:-1:-1;;;15286:68:0;;14109:2:1;15286:68:0;;;14091:21:1;14148:2;14128:18;;;14121:30;14187:34;14167:18;;;14160:62;-1:-1:-1;;;14238:18:1;;;14231:32;14280:19;;15286:68:0;13907:398:1;15286:68:0;-1:-1:-1;;;;;15367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15419:32;;1662:25:1;;;15419:32:0;;1635:18:1;15419:32:0;;;;;;;;15079:380;;;:::o;39891:4430::-;-1:-1:-1;;;;;40023:18:0;;40015:68;;;;-1:-1:-1;;;40015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40102:16:0;;40094:64;;;;-1:-1:-1;;;40094:64:0;;;;;;;:::i;:::-;40173:13;;;;;;;40169:132;;-1:-1:-1;;;;;40210:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40239:23:0;;;;;;:19;:23;;;;;;;;40210:52;40202:87;;;;-1:-1:-1;;;40202:87:0;;15322:2:1;40202:87:0;;;15304:21:1;15361:2;15341:18;;;15334:30;-1:-1:-1;;;15380:18:1;;;15373:52;15442:18;;40202:87:0;15120:346:1;40202:87:0;40315:11;40312:92;;40343:28;40359:4;40365:2;40369:1;40343:15;:28::i;:::-;39891:4430;;;:::o;40312:92::-;40427:14;;;;;;;40424:1134;;;21478:6;;-1:-1:-1;;;;;40479:15:0;;;21478:6;;40479:15;;;;:49;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;40515:13:0;;;21478:6;;40515:13;;40479:49;:86;;;;-1:-1:-1;;;;;;40549:16:0;;;;40479:86;:128;;;;-1:-1:-1;;;;;;40586:21:0;;40600:6;40586:21;;40479:128;:204;;;;-1:-1:-1;;;;;;40630:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40659:23:0;;;;;;:19;:23;;;;;;;;40630:52;40628:55;40479:204;:234;;;;-1:-1:-1;40705:8:0;;-1:-1:-1;;;40705:8:0;;;;40704:9;40479:234;40457:1090;;;-1:-1:-1;;;;;40798:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;40834:35:0;;;;;;:31;:35;;;;;;;;40833:36;40798:71;40794:738;;;40916:20;;40906:6;:30;;40898:96;;;;-1:-1:-1;;;40898:96:0;;15673:2:1;40898:96:0;;;15655:21:1;15712:2;15692:18;;;15685:30;15751:34;15731:18;;;15724:62;-1:-1:-1;;;15802:18:1;;;15795:51;15863:19;;40898:96:0;15471:417:1;40898:96:0;41055:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;41029:22;;:6;:22;:::i;:::-;:35;;41021:67;;;;-1:-1:-1;;;41021:67:0;;16095:2:1;41021:67:0;;;16077:21:1;16134:2;16114:18;;;16107:30;-1:-1:-1;;;16153:18:1;;;16146:49;16212:18;;41021:67:0;15893:343:1;41021:67:0;40794:738;;;-1:-1:-1;;;;;41182:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;41216:37:0;;;;;;:31;:37;;;;;;;;41215:38;41182:71;41178:354;;;41300:20;;41290:6;:30;;41282:97;;;;-1:-1:-1;;;41282:97:0;;16443:2:1;41282:97:0;;;16425:21:1;16482:2;16462:18;;;16455:30;16521:34;16501:18;;;16494:62;-1:-1:-1;;;16572:18:1;;;16565:52;16634:19;;41282:97:0;16241:418:1;41178:354:0;41479:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;41453:22;;:6;:22;:::i;:::-;:35;;41445:67;;;;-1:-1:-1;;;41445:67:0;;16095:2:1;41445:67:0;;;16077:21:1;16134:2;16114:18;;;16107:30;-1:-1:-1;;;16153:18:1;;;16146:49;16212:18;;41445:67:0;15893:343:1;41445:67:0;41621:4;41572:28;8982:18;;;;;;;;;;;41663:24;;;;;;;41718:35;;-1:-1:-1;41742:11:0;;;;;;;41718:35;:61;;;;-1:-1:-1;41771:8:0;;-1:-1:-1;;;41771:8:0;;;;41770:9;41718:61;:110;;;;-1:-1:-1;;;;;;41797:31:0;;;;;;:25;:31;;;;;;;;41796:32;41718:110;:153;;;;-1:-1:-1;;;;;;41846:25:0;;;;;;:19;:25;;;;;;;;41845:26;41718:153;:194;;;;-1:-1:-1;;;;;;41889:23:0;;;;;;:19;:23;;;;;;;;41888:24;41718:194;41700:338;;;41939:8;:15;;-1:-1:-1;;;;41939:15:0;-1:-1:-1;;;41939:15:0;;;41983:10;:8;:10::i;:::-;42010:8;:16;;-1:-1:-1;;;;42010:16:0;;;41700:338;42074:8;;-1:-1:-1;;;;;42183:25:0;;42058:12;42183:25;;;:19;:25;;;;;;42074:8;-1:-1:-1;;;42074:8:0;;;;;42073:9;;42183:25;;:52;;-1:-1:-1;;;;;;42212:23:0;;;;;;:19;:23;;;;;;;;42183:52;42180:99;;;-1:-1:-1;42262:5:0;42180:99;42299:12;42403:7;42400:1868;;;42468:12;42443:18;;42463:1;42443:21;;;;:::i;:::-;:37;;:107;;;;-1:-1:-1;;;;;;42485:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;42518:31:0;;;;;;:25;:31;;;;;;;;42485:64;42440:597;;;-1:-1:-1;;;;;42574:29:0;;;;;;:25;:29;;;;;;;;42570:304;;;-1:-1:-1;;;;;42627:12:0;;;;;;:6;:12;;;;;:19;;-1:-1:-1;;42627:19:0;42642:4;42627:19;;;42440:597;;42570:304;-1:-1:-1;;;;;42675:31:0;;;;;;:25;:31;;;;;;;;42671:203;;;-1:-1:-1;;;;;42730:10:0;;;;;;:6;:10;;;;;:17;;-1:-1:-1;;42730:17:0;42743:4;42730:17;;;42440:597;;42671:203;-1:-1:-1;;;;;42795:12:0;;;;;;;:6;:12;;;;;;:19;;42810:4;-1:-1:-1;;42795:19:0;;;;;;;;42837:10;;;;;;;:17;;;;;;;;42440:597;;;-1:-1:-1;;;;;42923:12:0;;;;;;:6;:12;;;;;;;;42922:13;:28;;;;-1:-1:-1;;;;;;42940:10:0;;;;;;:6;:10;;;;;;;;42939:11;42922:28;42913:108;;;;-1:-1:-1;;;42913:108:0;;16866:2:1;42913:108:0;;;16848:21:1;16905:2;16885:18;;;16878:30;16944:34;16924:18;;;16917:62;17015:34;16995:18;;;16988:62;-1:-1:-1;;;17066:19:1;;;17059:33;17109:19;;42913:108:0;16664:470:1;42913:108:0;-1:-1:-1;;;;;43081:29:0;;;;;;:25;:29;;;;;;;;43077:1022;;;43134:13;;:17;43130:426;;43182:34;43212:3;43182:25;43193:13;;43182:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43175:41;;43287:13;;43268:16;;43261:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;43239:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43359:13:0;;43346:10;;43339:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;43323:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43443:13:0;;43424:16;;43417:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;43395:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43523:13:0;;43506:14;;43499:21;;:4;:21;:::i;:::-;:37;;;;:::i;:::-;43479:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;43130:426:0;43077:1022;;;-1:-1:-1;;;;;43616:31:0;;;;;;:25;:31;;;;;;;;43613:486;;;43672:12;;:16;43668:416;;43719:33;43748:3;43719:24;43730:12;;43719:6;:10;;:24;;;;:::i;:33::-;43712:40;;43822:12;;43804:15;;43797:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;43775:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43892:12:0;;43880:9;;43873:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;43857:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;43974:12:0;;43956:15;;43949:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;43927:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;44052:12:0;;44036:13;;44029:20;;:4;:20;:::i;:::-;:35;;;;:::i;:::-;44009:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;43668:416:0;44130:8;;44127:93;;44162:42;44178:4;44192;44199;44162:15;:42::i;:::-;44242:14;44252:4;44242:14;;:::i;:::-;;;42400:1868;44280:33;44296:4;44302:2;44306:6;44280:15;:33::i;:::-;40004:4317;;;;39891:4430;;;:::o;17360:192::-;17446:7;17482:12;17474:6;;;;17466:29;;;;-1:-1:-1;;;17466:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17506:9:0;17518:5;17522:1;17518;:5;:::i;:::-;17506:17;17360:192;-1:-1:-1;;;;;17360:192:0:o;38875:188::-;-1:-1:-1;;;;;38958:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38958:39:0;;;;;;;;;;39015:40;;38958:39;;:31;39015:40;;;38875:188;;:::o;12652:573::-;-1:-1:-1;;;;;12792:20:0;;12784:70;;;;-1:-1:-1;;;12784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12873:23:0;;12865:71;;;;-1:-1:-1;;;12865:71:0;;;;;;;:::i;:::-;13029;13051:6;13029:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13029:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13009:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13134:20;;;;;;;:32;;13159:6;13134:24;:32::i;:::-;-1:-1:-1;;;;;13111:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13182:35;1662:25:1;;;13111:20:0;;13182:35;;;;;;1635:18:1;13182:35:0;1516:177:1;45680:1955:0;45763:4;45719:23;8982:18;;;;;;;;;;;45786:10;;;;;;;45782:185;;;45816:19;;45812:123;;45886:15;;45855:64;;45879:4;;-1:-1:-1;;;;;45886:15:0;45903;45855;:64::i;:::-;45949:7;45680:1955::o;45782:185::-;45979:25;46064:16;;46049:12;;46028:18;;46007;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;:73;;;;:::i;:::-;45979:101;-1:-1:-1;46091:12:0;46127:20;;;:46;;-1:-1:-1;46151:22:0;;46127:46;46124:60;;;46176:7;;;45680:1955::o;46124:60::-;46253:23;46338:1;46318:17;46297:18;;46279:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;46253:86;-1:-1:-1;46350:26:0;46379:36;:15;46253:86;46379:19;:36::i;:::-;46350:65;-1:-1:-1;46464:21:0;46498:36;46350:65;46498:16;:36::i;:::-;46556:18;46577:44;:21;46603:17;46577:25;:44::i;:::-;46556:65;;46642:23;46668:57;46707:17;46668:34;46683:18;;46668:10;:14;;:34;;;;:::i;:57::-;46642:83;;46736:17;46756:51;46789:17;46756:28;46771:12;;46756:10;:14;;:28;;;;:::i;:51::-;46736:71;;46818:21;46842:55;46879:17;46842:32;46857:16;;46842:10;:14;;:32;;;;:::i;:55::-;46818:79;-1:-1:-1;46918:23:0;46818:79;46975:9;46944:28;46957:15;46944:10;:28;:::i;:::-;:40;;;;:::i;:::-;:56;;;;:::i;:::-;47042:1;47021:18;:22;;;47054:18;:22;;;47087:12;:16;;;47114;:20;;;47176:9;;47168:45;;46918:82;;-1:-1:-1;;;;;;47176:9:0;;47199;;47168:45;47042:1;47168:45;47199:9;47176;47168:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47245:13:0;;47237:53;;47155:58;;-1:-1:-1;;;;;;47245:13:0;;47272;;47237:53;;;;47272:13;47245;47237:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47224:66:0;;-1:-1:-1;;47314:19:0;;;;;:42;;;47355:1;47337:15;:19;47314:42;47311:210;;;47372:46;47385:15;47402;47372:12;:46::i;:::-;47490:18;;47438:71;;;17681:25:1;;;17737:2;17722:18;;17715:34;;;17765:18;;;17758:34;;;;47438:71:0;;;;;;17669:2:1;47438:71:0;;;47311:210;47562:15;;47554:63;;-1:-1:-1;;;;;47562:15:0;;;;47591:21;;47554:63;;;;47591:21;47562:15;47554:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;45680:1955:0:o;17811:471::-;17869:7;18114:6;18110:47;;-1:-1:-1;18144:1:0;18137:8;;18110:47;18169:9;18181:5;18185:1;18181;:5;:::i;:::-;18169:17;-1:-1:-1;18214:1:0;18205:5;18209:1;18169:17;18205:5;:::i;:::-;:10;18197:56;;;;-1:-1:-1;;;18197:56:0;;18005:2:1;18197:56:0;;;17987:21:1;18044:2;18024:18;;;18017:30;18083:34;18063:18;;;18056:62;-1:-1:-1;;;18134:18:1;;;18127:31;18175:19;;18197:56:0;17803:397:1;18758:132:0;18816:7;18843:39;18847:1;18850;18843:39;;;;;;;;;;;;;;;;;:3;:39::i;16921:136::-;16979:7;17006:43;17010:1;17013;17006:43;;;;;;;;;;;;;;;;;:3;:43::i;44329:616::-;44481:16;;;44495:1;44481:16;;;;;;;;44457:21;;44481:16;;;;;;;;;;-1:-1:-1;44481:16:0;44457:40;;44526:4;44508;44513:1;44508:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44508:23:0;;;-1:-1:-1;;;;;44508:23:0;;;;;44552:15;-1:-1:-1;;;;;44552:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44542:4;44547:1;44542:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44542:32:0;;;-1:-1:-1;;;;;44542:32:0;;;;;44587:62;44604:4;44619:15;44637:11;44587:8;:62::i;:::-;44692:224;;-1:-1:-1;;;44692:224:0;;-1:-1:-1;;;;;44692:15:0;:66;;;;:224;;44773:11;;44799:1;;44843:4;;44870;;44890:15;;44692:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44688:240;;38617:246;;:::o;44957:532::-;45105:62;45122:4;45137:15;45155:11;45105:8;:62::i;:::-;45214:256;;-1:-1:-1;;;45214:256:0;;45286:4;45214:256;;;19787:34:1;19837:18;;;19830:34;;;45332:1:0;19880:18:1;;;19873:34;;;19923:18;;;19916:34;29658:6:0;19966:19:1;;;19959:44;45444:15:0;20019:19:1;;;20012:35;45214:15:0;-1:-1:-1;;;;;45214:31:0;;;;45253:9;;19721:19:1;;45214:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45214:256:0;;;;;;;;-1:-1:-1;;45214:256:0;;;;;;;;;;;;:::i;:::-;;;45210:272;;38617:246;;:::o;45210:272::-;;;;44957:532;;:::o;19386:278::-;19472:7;19507:12;19500:5;19492:28;;;;-1:-1:-1;;;19492:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19531:9:0;19543:5;19547:1;19543;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:597::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;840:6;837:1;834:13;831:91;;;910:1;905:2;896:6;885:9;881:22;877:31;870:42;831:91;-1:-1:-1;983:2:1;962:15;-1:-1:-1;;958:29:1;943:45;;;;990:2;939:54;;402:597;-1:-1:-1;;;402:597:1:o;1004:315::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1188:9;1175:23;1207:31;1232:5;1207:31;:::i;:::-;1257:5;1309:2;1294:18;;;;1281:32;;-1:-1:-1;;;1004:315:1:o;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2326:127::-;2387:10;2382:3;2378:20;2375:1;2368:31;2418:4;2415:1;2408:15;2442:4;2439:1;2432:15;2458:275;2529:2;2523:9;2594:2;2575:13;;-1:-1:-1;;2571:27:1;2559:40;;2629:18;2614:34;;2650:22;;;2611:62;2608:88;;;2676:18;;:::i;:::-;2712:2;2705:22;2458:275;;-1:-1:-1;2458:275:1:o;2738:183::-;2798:4;2831:18;2823:6;2820:30;2817:56;;;2853:18;;:::i;:::-;-1:-1:-1;2898:1:1;2894:14;2910:4;2890:25;;2738:183::o;2926:662::-;2980:5;3033:3;3026:4;3018:6;3014:17;3010:27;3000:55;;3051:1;3048;3041:12;3000:55;3087:6;3074:20;3113:4;3137:60;3153:43;3193:2;3153:43;:::i;:::-;3137:60;:::i;:::-;3231:15;;;3317:1;3313:10;;;;3301:23;;3297:32;;;3262:12;;;;3341:15;;;3338:35;;;3369:1;3366;3359:12;3338:35;3405:2;3397:6;3393:15;3417:142;3433:6;3428:3;3425:15;3417:142;;;3499:17;;3487:30;;3537:12;;;;3450;;3417:142;;;-1:-1:-1;3577:5:1;2926:662;-1:-1:-1;;;;;;2926:662:1:o;3593:1215::-;3711:6;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3828:9;3815:23;3857:18;3898:2;3890:6;3887:14;3884:34;;;3914:1;3911;3904:12;3884:34;3952:6;3941:9;3937:22;3927:32;;3997:7;3990:4;3986:2;3982:13;3978:27;3968:55;;4019:1;4016;4009:12;3968:55;4055:2;4042:16;4077:4;4101:60;4117:43;4157:2;4117:43;:::i;4101:60::-;4195:15;;;4277:1;4273:10;;;;4265:19;;4261:28;;;4226:12;;;;4301:19;;;4298:39;;;4333:1;4330;4323:12;4298:39;4357:11;;;;4377:217;4393:6;4388:3;4385:15;4377:217;;;4473:3;4460:17;4490:31;4515:5;4490:31;:::i;:::-;4534:18;;4410:12;;;;4572;;;;4377:217;;;4613:5;-1:-1:-1;;4656:18:1;;4643:32;;-1:-1:-1;;4687:16:1;;;4684:36;;;4716:1;4713;4706:12;4684:36;;4739:63;4794:7;4783:8;4772:9;4768:24;4739:63;:::i;:::-;4729:73;;;3593:1215;;;;;:::o;4813:456::-;4890:6;4898;4906;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5014:9;5001:23;5033:31;5058:5;5033:31;:::i;:::-;5083:5;-1:-1:-1;5140:2:1;5125:18;;5112:32;5153:33;5112:32;5153:33;:::i;:::-;4813:456;;5205:7;;-1:-1:-1;;;5259:2:1;5244:18;;;;5231:32;;4813:456::o;5274:385::-;5360:6;5368;5376;5384;5437:3;5425:9;5416:7;5412:23;5408:33;5405:53;;;5454:1;5451;5444:12;5405:53;-1:-1:-1;;5477:23:1;;;5547:2;5532:18;;5519:32;;-1:-1:-1;5598:2:1;5583:18;;5570:32;;5649:2;5634:18;5621:32;;-1:-1:-1;5274:385:1;-1:-1:-1;5274:385:1:o;5853:160::-;5918:20;;5974:13;;5967:21;5957:32;;5947:60;;6003:1;6000;5993:12;5947:60;5853:160;;;:::o;6018:315::-;6083:6;6091;6144:2;6132:9;6123:7;6119:23;6115:32;6112:52;;;6160:1;6157;6150:12;6112:52;6199:9;6186:23;6218:31;6243:5;6218:31;:::i;:::-;6268:5;-1:-1:-1;6292:35:1;6323:2;6308:18;;6292:35;:::i;:::-;6282:45;;6018:315;;;;;:::o;6338:180::-;6394:6;6447:2;6435:9;6426:7;6422:23;6418:32;6415:52;;;6463:1;6460;6453:12;6415:52;6486:26;6502:9;6486:26;:::i;6523:388::-;6591:6;6599;6652:2;6640:9;6631:7;6627:23;6623:32;6620:52;;;6668:1;6665;6658:12;6620:52;6707:9;6694:23;6726:31;6751:5;6726:31;:::i;:::-;6776:5;-1:-1:-1;6833:2:1;6818:18;;6805:32;6846:33;6805:32;6846:33;:::i;:::-;6898:7;6888:17;;;6523:388;;;;;:::o;6916:356::-;7118:2;7100:21;;;7137:18;;;7130:30;7196:34;7191:2;7176:18;;7169:62;7263:2;7248:18;;6916:356::o;7277:380::-;7356:1;7352:12;;;;7399;;;7420:61;;7474:4;7466:6;7462:17;7452:27;;7420:61;7527:2;7519:6;7516:14;7496:18;7493:38;7490:161;;;7573:10;7568:3;7564:20;7561:1;7554:31;7608:4;7605:1;7598:15;7636:4;7633:1;7626:15;7490:161;;7277:380;;;:::o;7662:127::-;7723:10;7718:3;7714:20;7711:1;7704:31;7754:4;7751:1;7744:15;7778:4;7775:1;7768:15;7794:422;7883:1;7926:5;7883:1;7940:270;7961:7;7951:8;7948:21;7940:270;;;8020:4;8016:1;8012:6;8008:17;8002:4;7999:27;7996:53;;;8029:18;;:::i;:::-;8079:7;8069:8;8065:22;8062:55;;;8099:16;;;;8062:55;8178:22;;;;8138:15;;;;7940:270;;;7944:3;7794:422;;;;;:::o;8221:806::-;8270:5;8300:8;8290:80;;-1:-1:-1;8341:1:1;8355:5;;8290:80;8389:4;8379:76;;-1:-1:-1;8426:1:1;8440:5;;8379:76;8471:4;8489:1;8484:59;;;;8557:1;8552:130;;;;8464:218;;8484:59;8514:1;8505:10;;8528:5;;;8552:130;8589:3;8579:8;8576:17;8573:43;;;8596:18;;:::i;:::-;-1:-1:-1;;8652:1:1;8638:16;;8667:5;;8464:218;;8766:2;8756:8;8753:16;8747:3;8741:4;8738:13;8734:36;8728:2;8718:8;8715:16;8710:2;8704:4;8701:12;8697:35;8694:77;8691:159;;;-1:-1:-1;8803:19:1;;;8835:5;;8691:159;8882:34;8907:8;8901:4;8882:34;:::i;:::-;8952:6;8948:1;8944:6;8940:19;8931:7;8928:32;8925:58;;;8963:18;;:::i;:::-;9001:20;;8221:806;-1:-1:-1;;;8221:806:1:o;9032:140::-;9090:5;9119:47;9160:4;9150:8;9146:19;9140:4;9119:47;:::i;9177:168::-;9217:7;9283:1;9279;9275:6;9271:14;9268:1;9265:21;9260:1;9253:9;9246:17;9242:45;9239:71;;;9290:18;;:::i;:::-;-1:-1:-1;9330:9:1;;9177:168::o;9350:217::-;9390:1;9416;9406:132;;9460:10;9455:3;9451:20;9448:1;9441:31;9495:4;9492:1;9485:15;9523:4;9520:1;9513:15;9406:132;-1:-1:-1;9552:9:1;;9350:217::o;9572:409::-;9774:2;9756:21;;;9813:2;9793:18;;;9786:30;9852:34;9847:2;9832:18;;9825:62;-1:-1:-1;;;9918:2:1;9903:18;;9896:43;9971:3;9956:19;;9572:409::o;11192:127::-;11253:10;11248:3;11244:20;11241:1;11234:31;11284:4;11281:1;11274:15;11308:4;11305:1;11298:15;11324:135;11363:3;-1:-1:-1;;11384:17:1;;11381:43;;;11404:18;;:::i;:::-;-1:-1:-1;11451:1:1;11440:13;;11324:135::o;11464:128::-;11504:3;11535:1;11531:6;11528:1;11525:13;11522:39;;;11541:18;;:::i;:::-;-1:-1:-1;11577:9:1;;11464:128::o;14310:401::-;14512:2;14494:21;;;14551:2;14531:18;;;14524:30;14590:34;14585:2;14570:18;;14563:62;-1:-1:-1;;;14656:2:1;14641:18;;14634:35;14701:3;14686:19;;14310:401::o;14716:399::-;14918:2;14900:21;;;14957:2;14937:18;;;14930:30;14996:34;14991:2;14976:18;;14969:62;-1:-1:-1;;;15062:2:1;15047:18;;15040:33;15105:3;15090:19;;14716:399::o;17139:125::-;17179:4;17207:1;17204;17201:8;17198:34;;;17212:18;;:::i;:::-;-1:-1:-1;17249:9:1;;17139:125::o;18205:251::-;18275:6;18328:2;18316:9;18307:7;18303:23;18299:32;18296:52;;;18344:1;18341;18334:12;18296:52;18376:9;18370:16;18395:31;18420:5;18395:31;:::i;18461:980::-;18723:4;18771:3;18760:9;18756:19;18802:6;18791:9;18784:25;18828:2;18866:6;18861:2;18850:9;18846:18;18839:34;18909:3;18904:2;18893:9;18889:18;18882:31;18933:6;18968;18962:13;18999:6;18991;18984:22;19037:3;19026:9;19022:19;19015:26;;19076:2;19068:6;19064:15;19050:29;;19097:1;19107:195;19121:6;19118:1;19115:13;19107:195;;;19186:13;;-1:-1:-1;;;;;19182:39:1;19170:52;;19277:15;;;;19242:12;;;;19218:1;19136:9;19107:195;;;-1:-1:-1;;;;;;;19358:32:1;;;;19353:2;19338:18;;19331:60;-1:-1:-1;;;19422:3:1;19407:19;19400:35;19319:3;18461:980;-1:-1:-1;;;18461:980:1:o;20058:306::-;20146:6;20154;20162;20215:2;20203:9;20194:7;20190:23;20186:32;20183:52;;;20231:1;20228;20221:12;20183:52;20260:9;20254:16;20244:26;;20310:2;20299:9;20295:18;20289:25;20279:35;;20354:2;20343:9;20339:18;20333:25;20323:35;;20058:306;;;;;:::o

Swarm Source

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