ETH Price: $3,104.50 (-6.03%)
Gas: 7 Gwei

Token

JPMorgan Inu (JPMI)
 

Overview

Max Total Supply

1,000,000,000,000 JPMI

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
intoodeep.eth
Balance
24,251,478,551.022301030651969639 JPMI

Value
$0.00
0x0ff62862437c0492a6680150f6877b02b2f22515
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:
JPMorganInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-03
*/

// SPDX-License-Identifier: Unlicensed


pragma solidity 0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event 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 JPMorganInu is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("JPMorgan Inu", "JPMI") {
 
        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 = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;
        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 0;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
        maxTransactionAmount = totalSupply * 40 / 1000; // 4% maxTransactionAmountTxn
        maxWallet = totalSupply * 40 / 1000; // 4% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.1% swap wallet
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            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);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600c81526020017f4a504d6f7267616e20496e7500000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a504d490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bb9565b5080600490805190602001906200011b92919062000bb9565b5050506000620001306200068560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cd3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cd3565b6040518363ffffffff1660e01b81526004016200036e92919062000d16565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cd3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068d60201b60201c565b6200042160a05160016200078a60201b60201c565b600060019050600060019050600080600390506000600290506000806c0c9f2c9cd04674edea4000000090506103e86028826200045f919062000d7c565b6200046b919062000e0c565b6008819055506103e860288262000483919062000d7c565b6200048f919062000e0c565b600a81905550612710600582620004a7919062000d7c565b620004b3919062000e0c565b600981905550866011819055508560128190555084601381905550601354601254601154620004e3919062000e44565b620004ef919062000e44565b6010819055508360158190555082601681905550816017819055506017546016546015546200051f919062000e44565b6200052b919062000e44565b601481905550620005416200082b60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005916200082b60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005f3620005e56200082b60201b60201c565b60016200085560201b60201c565b620006063060016200085560201b60201c565b6200061b61dead60016200085560201b60201c565b6200063d6200062f6200082b60201b60201c565b60016200068d60201b60201c565b620006503060016200068d60201b60201c565b6200066561dead60016200068d60201b60201c565b620006773382620009a260201b60201c565b5050505050505050620010d5565b600033905090565b6200069d6200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200072f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007269062000f02565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008656200068560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ee9062000f02565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000996919062000f41565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0c9062000fae565b60405180910390fd5b62000a296000838362000b5160201b60201c565b62000a458160025462000b5660201b620022091790919060201c565b60028190555062000aa3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b5660201b620022091790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b45919062000fe1565b60405180910390a35050565b505050565b600080828462000b67919062000e44565b90508381101562000baf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ba6906200104e565b60405180910390fd5b8091505092915050565b82805462000bc7906200109f565b90600052602060002090601f01602090048101928262000beb576000855562000c37565b82601f1062000c0657805160ff191683800117855562000c37565b8280016001018555821562000c37579182015b8281111562000c3657825182559160200191906001019062000c19565b5b50905062000c46919062000c4a565b5090565b5b8082111562000c6557600081600090555060010162000c4b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c9b8262000c6e565b9050919050565b62000cad8162000c8e565b811462000cb957600080fd5b50565b60008151905062000ccd8162000ca2565b92915050565b60006020828403121562000cec5762000ceb62000c69565b5b600062000cfc8482850162000cbc565b91505092915050565b62000d108162000c8e565b82525050565b600060408201905062000d2d600083018562000d05565b62000d3c602083018462000d05565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d898262000d43565b915062000d968362000d43565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dd25762000dd162000d4d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e198262000d43565b915062000e268362000d43565b92508262000e395762000e3862000ddd565b5b828204905092915050565b600062000e518262000d43565b915062000e5e8362000d43565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e965762000e9562000d4d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eea60208362000ea1565b915062000ef78262000eb2565b602082019050919050565b6000602082019050818103600083015262000f1d8162000edb565b9050919050565b60008115159050919050565b62000f3b8162000f24565b82525050565b600060208201905062000f58600083018462000f30565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f96601f8362000ea1565b915062000fa38262000f5e565b602082019050919050565b6000602082019050818103600083015262000fc98162000f87565b9050919050565b62000fdb8162000d43565b82525050565b600060208201905062000ff8600083018462000fd0565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001036601b8362000ea1565b9150620010438262000ffe565b602082019050919050565b60006020820190508181036000830152620010698162001027565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010b857607f821691505b60208210811415620010cf57620010ce62001070565b5b50919050565b60805160a05161502f62001133600039600081816111670152818161184301526128d5015260008181610c9b0152818161287d015281816139eb01528181613adb01528181613b0201528181613b9e0152613bc5015261502f6000f3fe6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613d7d565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613e38565b610c5b565b6040516103389190613e93565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613eae565b610c79565b6040516103759190613e93565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190613f3a565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190613f64565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613eae565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190613f64565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190613f64565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f7f565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613fac565b610ede565b6040516104b09190613e93565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061402b565b610fb7565b005b3480156104ee57600080fd5b506104f76110a9565b6040516105049190614087565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613e38565b6110b2565b6040516105419190613e93565b60405180910390f35b34801561055657600080fd5b5061055f611165565b60405161056c91906140b1565b60405180910390f35b34801561058157600080fd5b5061058a611189565b6040516105979190613e93565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613eae565b61119c565b6040516105d49190613e93565b60405180910390f35b3480156105e957600080fd5b506105f26111f2565b6040516105ff9190613f64565b60405180910390f35b34801561061457600080fd5b5061061d6111f8565b60405161062a9190613e93565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613eae565b61120b565b6040516106679190613f64565b60405180910390f35b34801561067c57600080fd5b50610685611253565b005b34801561069357600080fd5b5061069c6113ab565b6040516106a99190613e93565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061402b565b611466565b005b3480156106e757600080fd5b506106f0611558565b6040516106fd9190613f64565b60405180910390f35b34801561071257600080fd5b5061071b61155e565b005b34801561072957600080fd5b50610732611634565b60405161073f91906140b1565b60405180910390f35b34801561075457600080fd5b5061075d61165e565b60405161076a9190613f64565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906140cc565b611664565b005b3480156107a857600080fd5b506107b1611718565b6040516107be9190613d7d565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e9919061402b565b6117aa565b005b3480156107fc57600080fd5b506108056118de565b6040516108129190613f64565b60405180910390f35b34801561082757600080fd5b506108306118e4565b60405161083d9190613f64565b60405180910390f35b34801561085257600080fd5b5061085b6118ea565b6040516108689190613f64565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613e38565b6118f0565b6040516108a59190613e93565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613e38565b6119bd565b6040516108e29190613e93565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613eae565b6119db565b005b34801561092057600080fd5b5061093b60048036038101906109369190613eae565b611b32565b6040516109489190613e93565b60405180910390f35b34801561095d57600080fd5b50610966611b52565b6040516109739190613e93565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061402b565b611b65565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613f7f565b611ca5565b005b3480156109da57600080fd5b506109e3611d59565b6040516109f09190613e93565b60405180910390f35b348015610a0557600080fd5b50610a0e611d6c565b604051610a1b9190613f64565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613f7f565b611d72565b604051610a589190613e93565b60405180910390f35b348015610a6d57600080fd5b50610a76611ee2565b604051610a839190613f64565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906140f9565b611ee8565b604051610ac09190613f64565b60405180910390f35b348015610ad557600080fd5b50610ade611f6f565b604051610aeb9190613f64565b60405180910390f35b348015610b0057600080fd5b50610b09611f75565b604051610b169190613e93565b60405180910390f35b348015610b2b57600080fd5b50610b34612030565b604051610b419190613f64565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613eae565b612036565b005b348015610b7f57600080fd5b50610b886121fd565b604051610b959190613f64565b60405180910390f35b348015610baa57600080fd5b50610bb3612203565b604051610bc09190613f64565b60405180910390f35b606060038054610bd890614168565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614168565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612267565b848461226f565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ccf612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906141e6565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906141e6565b60405180910390fd5b670de0b6b3a764000081610ed59190614235565b60088190555050565b6000610eeb84848461243a565b610fac84610ef7612267565b610fa785604051806060016040528060288152602001614fad60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f5d612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b61226f565b600190509392505050565b610fbf612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611045906141e6565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600061115b6110bf612267565b8461115685600160006110d0612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220990919063ffffffff16565b61226f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125b612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e1906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b5612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906141e6565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61146e612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906141e6565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b611566612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906141e6565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61166c612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906141e6565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461172790614168565b80601f016020809104026020016040519081016040528092919081815260200182805461175390614168565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b6117b2612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906141e6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790614301565b60405180910390fd5b6118da828261321b565b5050565b60135481565b601a5481565b60175481565b60006119b36118fd612267565b846119ae85604051806060016040528060258152602001614fd56025913960016000611927612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b61226f565b6001905092915050565b60006119d16119ca612267565b848461243a565b6001905092915050565b6119e3612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906141e6565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b6d612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906141e6565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c999190613e93565b60405180910390a25050565b611cad612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906141e6565b60405180910390fd5b670de0b6b3a764000081611d509190614235565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611d7c612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e02906141e6565b60405180910390fd5b620186a06001611e19610cbd565b611e239190614235565b611e2d9190614350565b821015611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906143f3565b60405180910390fd5b6103e86005611e7c610cbd565b611e869190614235565b611e909190614350565b821115611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614485565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611f7f612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461200e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612005906141e6565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61203e612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614517565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846122189190614537565b90508381101561225d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612254906145d9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d69061466b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612346906146fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161242d9190613f64565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a19061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190614821565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125be5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f4906148b3565b60405180910390fd5b600081141561261757612612838360006132bc565b6131b2565b600b60009054906101000a900460ff1615612cda57612634611634565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a25750612672611634565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126db5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612715575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272e5750600560149054906101000a900460ff16155b15612cd957600b60019054906101000a900460ff1661282857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127e85750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e9061491f565b60405180910390fd5b5b600f60009054906101000a900460ff16156129f057612845611634565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128cc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129ef5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a1906149d7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a935750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3a57600854811115612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490614a69565b60405180910390fd5b600a54612ae98361120b565b82612af49190614537565b1115612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c90614ad5565b60405180910390fd5b612cd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bdd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2c57600854811115612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614b67565b60405180910390fd5b612cd7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cd657600a54612c898361120b565b82612c949190614537565b1115612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90614ad5565b60405180910390fd5b5b5b5b5b5b6000612ce53061120b565b905060006009548210159050808015612d0a5750600b60029054906101000a900460ff165b8015612d235750600560149054906101000a900460ff16155b8015612d795750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dcf5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e255750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e69576001600560146101000a81548160ff021916908315150217905550612e4d613551565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f1f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f2957600090505b600081156131a257601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8c57506000601454115b1561305957612fb96064612fab6014548861383890919063ffffffff16565b6138b390919063ffffffff16565b905060145460165482612fcc9190614235565b612fd69190614350565b60196000828254612fe79190614537565b9250508190555060145460175482612fff9190614235565b6130099190614350565b601a600082825461301a9190614537565b92505081905550601454601554826130329190614235565b61303c9190614350565b6018600082825461304d9190614537565b9250508190555061317e565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130b457506000601054115b1561317d576130e160646130d36010548861383890919063ffffffff16565b6138b390919063ffffffff16565b9050601054601254826130f49190614235565b6130fe9190614350565b6019600082825461310f9190614537565b92505081905550601054601354826131279190614235565b6131319190614350565b601a60008282546131429190614537565b925050819055506010546011548261315a9190614235565b6131649190614350565b601860008282546131759190614537565b925050819055505b5b6000811115613193576131928730836132bc565b5b808561319f9190614b87565b94505b6131ad8787876132bc565b505050505b505050565b60008383111582906131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f69190613d7d565b60405180910390fd5b506000838561320e9190614b87565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561332c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133239061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561339c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339390614821565b60405180910390fd5b6133a78383836138fd565b61341281604051806060016040528060268152602001614f87602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134a5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135449190613f64565b60405180910390a3505050565b600061355c3061120b565b90506000601a546018546019546135739190614537565b61357d9190614537565b905060008083148061358f5750600082145b1561359c57505050613836565b60146009546135ab9190614235565b8311156135c45760146009546135c19190614235565b92505b6000600283601954866135d79190614235565b6135e19190614350565b6135eb9190614350565b90506000613602828661390290919063ffffffff16565b905060004790506136128261394c565b6000613627824761390290919063ffffffff16565b90506000613652876136446018548561383890919063ffffffff16565b6138b390919063ffffffff16565b9050600061367d8861366f601a548661383890919063ffffffff16565b6138b390919063ffffffff16565b9050600081838561368e9190614b87565b6136989190614b87565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136f890614bec565b60006040518083038185875af1925050503d8060008114613735576040519150601f19603f3d011682016040523d82523d6000602084013e61373a565b606091505b5050809850506000871180156137505750600081115b1561379d5761375f8782613b98565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161379493929190614c01565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e390614bec565b60006040518083038185875af1925050503d8060008114613820576040519150601f19603f3d011682016040523d82523d6000602084013e613825565b606091505b505080985050505050505050505050505b565b60008083141561384b57600090506138ad565b600082846138599190614235565b90508284826138689190614350565b146138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90614caa565b60405180910390fd5b809150505b92915050565b60006138f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c81565b905092915050565b505050565b600061394483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b7565b905092915050565b6000600267ffffffffffffffff81111561396957613968614cca565b5b6040519080825280602002602001820160405280156139975781602001602082028036833780820191505090505b50905030816000815181106139af576139ae614cf9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a4f57600080fd5b505afa158015613a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a879190614d3d565b81600181518110613a9b57613a9a614cf9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b00307f00000000000000000000000000000000000000000000000000000000000000008461226f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b62959493929190614e63565b600060405180830381600087803b158015613b7c57600080fd5b505af1158015613b90573d6000803e3d6000fd5b505050505050565b613bc3307f00000000000000000000000000000000000000000000000000000000000000008461226f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613c2896959493929190614ebd565b6060604051808303818588803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c7a9190614f33565b5050505050565b60008083118290613cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cbf9190613d7d565b60405180910390fd5b5060008385613cd79190614350565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d1e578082015181840152602081019050613d03565b83811115613d2d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4f82613ce4565b613d598185613cef565b9350613d69818560208601613d00565b613d7281613d33565b840191505092915050565b60006020820190508181036000830152613d978184613d44565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dcf82613da4565b9050919050565b613ddf81613dc4565b8114613dea57600080fd5b50565b600081359050613dfc81613dd6565b92915050565b6000819050919050565b613e1581613e02565b8114613e2057600080fd5b50565b600081359050613e3281613e0c565b92915050565b60008060408385031215613e4f57613e4e613d9f565b5b6000613e5d85828601613ded565b9250506020613e6e85828601613e23565b9150509250929050565b60008115159050919050565b613e8d81613e78565b82525050565b6000602082019050613ea86000830184613e84565b92915050565b600060208284031215613ec457613ec3613d9f565b5b6000613ed284828501613ded565b91505092915050565b6000819050919050565b6000613f00613efb613ef684613da4565b613edb565b613da4565b9050919050565b6000613f1282613ee5565b9050919050565b6000613f2482613f07565b9050919050565b613f3481613f19565b82525050565b6000602082019050613f4f6000830184613f2b565b92915050565b613f5e81613e02565b82525050565b6000602082019050613f796000830184613f55565b92915050565b600060208284031215613f9557613f94613d9f565b5b6000613fa384828501613e23565b91505092915050565b600080600060608486031215613fc557613fc4613d9f565b5b6000613fd386828701613ded565b9350506020613fe486828701613ded565b9250506040613ff586828701613e23565b9150509250925092565b61400881613e78565b811461401357600080fd5b50565b60008135905061402581613fff565b92915050565b6000806040838503121561404257614041613d9f565b5b600061405085828601613ded565b925050602061406185828601614016565b9150509250929050565b600060ff82169050919050565b6140818161406b565b82525050565b600060208201905061409c6000830184614078565b92915050565b6140ab81613dc4565b82525050565b60006020820190506140c660008301846140a2565b92915050565b6000602082840312156140e2576140e1613d9f565b5b60006140f084828501614016565b91505092915050565b600080604083850312156141105761410f613d9f565b5b600061411e85828601613ded565b925050602061412f85828601613ded565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061418057607f821691505b6020821081141561419457614193614139565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141d0602083613cef565b91506141db8261419a565b602082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424082613e02565b915061424b83613e02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428457614283614206565b5b828202905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142eb603983613cef565b91506142f68261428f565b604082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061435b82613e02565b915061436683613e02565b92508261437657614375614321565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143dd603583613cef565b91506143e882614381565b604082019050919050565b6000602082019050818103600083015261440c816143d0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446f603483613cef565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614501602683613cef565b915061450c826144a5565b604082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b600061454282613e02565b915061454d83613e02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458257614581614206565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006145c3601b83613cef565b91506145ce8261458d565b602082019050919050565b600060208201905081810360008301526145f2816145b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614655602483613cef565b9150614660826145f9565b604082019050919050565b6000602082019050818103600083015261468481614648565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146e7602283613cef565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614779602583613cef565b91506147848261471d565b604082019050919050565b600060208201905081810360008301526147a88161476c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480b602383613cef565b9150614816826147af565b604082019050919050565b6000602082019050818103600083015261483a816147fe565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061489d603183613cef565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614909601683613cef565b9150614914826148d3565b602082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149c1604983613cef565b91506149cc8261493f565b606082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a53603583613cef565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614abf601383613cef565b9150614aca82614a89565b602082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b51603683613cef565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b6000614b9282613e02565b9150614b9d83613e02565b925082821015614bb057614baf614206565b5b828203905092915050565b600081905092915050565b50565b6000614bd6600083614bbb565b9150614be182614bc6565b600082019050919050565b6000614bf782614bc9565b9150819050919050565b6000606082019050614c166000830186613f55565b614c236020830185613f55565b614c306040830184613f55565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c94602183613cef565b9150614c9f82614c38565b604082019050919050565b60006020820190508181036000830152614cc381614c87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d3781613dd6565b92915050565b600060208284031215614d5357614d52613d9f565b5b6000614d6184828501614d28565b91505092915050565b6000819050919050565b6000614d8f614d8a614d8584614d6a565b613edb565b613e02565b9050919050565b614d9f81614d74565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dda81613dc4565b82525050565b6000614dec8383614dd1565b60208301905092915050565b6000602082019050919050565b6000614e1082614da5565b614e1a8185614db0565b9350614e2583614dc1565b8060005b83811015614e56578151614e3d8882614de0565b9750614e4883614df8565b925050600181019050614e29565b5085935050505092915050565b600060a082019050614e786000830188613f55565b614e856020830187614d96565b8181036040830152614e978186614e05565b9050614ea660608301856140a2565b614eb36080830184613f55565b9695505050505050565b600060c082019050614ed260008301896140a2565b614edf6020830188613f55565b614eec6040830187614d96565b614ef96060830186614d96565b614f0660808301856140a2565b614f1360a0830184613f55565b979650505050505050565b600081519050614f2d81613e0c565b92915050565b600080600060608486031215614f4c57614f4b613d9f565b5b6000614f5a86828701614f1e565b9350506020614f6b86828701614f1e565b9250506040614f7c86828701614f1e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122069c62d7d79a82d501165b985d6190309159e03808a1230291ed7155ef4f267d564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613d7d565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613e38565b610c5b565b6040516103389190613e93565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613eae565b610c79565b6040516103759190613e93565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190613f3a565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190613f64565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613eae565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190613f64565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190613f64565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f7f565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613fac565b610ede565b6040516104b09190613e93565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061402b565b610fb7565b005b3480156104ee57600080fd5b506104f76110a9565b6040516105049190614087565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613e38565b6110b2565b6040516105419190613e93565b60405180910390f35b34801561055657600080fd5b5061055f611165565b60405161056c91906140b1565b60405180910390f35b34801561058157600080fd5b5061058a611189565b6040516105979190613e93565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613eae565b61119c565b6040516105d49190613e93565b60405180910390f35b3480156105e957600080fd5b506105f26111f2565b6040516105ff9190613f64565b60405180910390f35b34801561061457600080fd5b5061061d6111f8565b60405161062a9190613e93565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613eae565b61120b565b6040516106679190613f64565b60405180910390f35b34801561067c57600080fd5b50610685611253565b005b34801561069357600080fd5b5061069c6113ab565b6040516106a99190613e93565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061402b565b611466565b005b3480156106e757600080fd5b506106f0611558565b6040516106fd9190613f64565b60405180910390f35b34801561071257600080fd5b5061071b61155e565b005b34801561072957600080fd5b50610732611634565b60405161073f91906140b1565b60405180910390f35b34801561075457600080fd5b5061075d61165e565b60405161076a9190613f64565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906140cc565b611664565b005b3480156107a857600080fd5b506107b1611718565b6040516107be9190613d7d565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e9919061402b565b6117aa565b005b3480156107fc57600080fd5b506108056118de565b6040516108129190613f64565b60405180910390f35b34801561082757600080fd5b506108306118e4565b60405161083d9190613f64565b60405180910390f35b34801561085257600080fd5b5061085b6118ea565b6040516108689190613f64565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613e38565b6118f0565b6040516108a59190613e93565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613e38565b6119bd565b6040516108e29190613e93565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613eae565b6119db565b005b34801561092057600080fd5b5061093b60048036038101906109369190613eae565b611b32565b6040516109489190613e93565b60405180910390f35b34801561095d57600080fd5b50610966611b52565b6040516109739190613e93565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061402b565b611b65565b005b3480156109b157600080fd5b506109cc60048036038101906109c79190613f7f565b611ca5565b005b3480156109da57600080fd5b506109e3611d59565b6040516109f09190613e93565b60405180910390f35b348015610a0557600080fd5b50610a0e611d6c565b604051610a1b9190613f64565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a469190613f7f565b611d72565b604051610a589190613e93565b60405180910390f35b348015610a6d57600080fd5b50610a76611ee2565b604051610a839190613f64565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906140f9565b611ee8565b604051610ac09190613f64565b60405180910390f35b348015610ad557600080fd5b50610ade611f6f565b604051610aeb9190613f64565b60405180910390f35b348015610b0057600080fd5b50610b09611f75565b604051610b169190613e93565b60405180910390f35b348015610b2b57600080fd5b50610b34612030565b604051610b419190613f64565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613eae565b612036565b005b348015610b7f57600080fd5b50610b886121fd565b604051610b959190613f64565b60405180910390f35b348015610baa57600080fd5b50610bb3612203565b604051610bc09190613f64565b60405180910390f35b606060038054610bd890614168565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614168565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612267565b848461226f565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ccf612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906141e6565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906141e6565b60405180910390fd5b670de0b6b3a764000081610ed59190614235565b60088190555050565b6000610eeb84848461243a565b610fac84610ef7612267565b610fa785604051806060016040528060288152602001614fad60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f5d612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b61226f565b600190509392505050565b610fbf612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611045906141e6565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600061115b6110bf612267565b8461115685600160006110d0612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220990919063ffffffff16565b61226f565b6001905092915050565b7f000000000000000000000000a151d5285ebbb747f7ba823bf28ea3e9c447219c81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125b612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e1906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b5612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906141e6565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61146e612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f4906141e6565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b611566612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906141e6565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b61166c612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906141e6565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461172790614168565b80601f016020809104026020016040519081016040528092919081815260200182805461175390614168565b80156117a05780601f10611775576101008083540402835291602001916117a0565b820191906000526020600020905b81548152906001019060200180831161178357829003601f168201915b5050505050905090565b6117b2612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611838906141e6565b60405180910390fd5b7f000000000000000000000000a151d5285ebbb747f7ba823bf28ea3e9c447219c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c790614301565b60405180910390fd5b6118da828261321b565b5050565b60135481565b601a5481565b60175481565b60006119b36118fd612267565b846119ae85604051806060016040528060258152602001614fd56025913960016000611927612267565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b61226f565b6001905092915050565b60006119d16119ca612267565b848461243a565b6001905092915050565b6119e3612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906141e6565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b6d612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906141e6565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c999190613e93565b60405180910390a25050565b611cad612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d33906141e6565b60405180910390fd5b670de0b6b3a764000081611d509190614235565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611d7c612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e02906141e6565b60405180910390fd5b620186a06001611e19610cbd565b611e239190614235565b611e2d9190614350565b821015611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906143f3565b60405180910390fd5b6103e86005611e7c610cbd565b611e869190614235565b611e909190614350565b821115611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614485565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611f7f612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461200e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612005906141e6565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61203e612267565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614517565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846122189190614537565b90508381101561225d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612254906145d9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d69061466b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561234f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612346906146fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161242d9190613f64565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a19061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190614821565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125be5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f4906148b3565b60405180910390fd5b600081141561261757612612838360006132bc565b6131b2565b600b60009054906101000a900460ff1615612cda57612634611634565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a25750612672611634565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126db5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612715575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272e5750600560149054906101000a900460ff16155b15612cd957600b60019054906101000a900460ff1661282857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127e85750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e9061491f565b60405180910390fd5b5b600f60009054906101000a900460ff16156129f057612845611634565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128cc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292457507f000000000000000000000000a151d5285ebbb747f7ba823bf28ea3e9c447219c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129ef5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a1906149d7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a935750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3a57600854811115612add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad490614a69565b60405180910390fd5b600a54612ae98361120b565b82612af49190614537565b1115612b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2c90614ad5565b60405180910390fd5b612cd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bdd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2c57600854811115612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614b67565b60405180910390fd5b612cd7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cd657600a54612c898361120b565b82612c949190614537565b1115612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90614ad5565b60405180910390fd5b5b5b5b5b5b6000612ce53061120b565b905060006009548210159050808015612d0a5750600b60029054906101000a900460ff165b8015612d235750600560149054906101000a900460ff16155b8015612d795750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dcf5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e255750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e69576001600560146101000a81548160ff021916908315150217905550612e4d613551565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f1f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f2957600090505b600081156131a257601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8c57506000601454115b1561305957612fb96064612fab6014548861383890919063ffffffff16565b6138b390919063ffffffff16565b905060145460165482612fcc9190614235565b612fd69190614350565b60196000828254612fe79190614537565b9250508190555060145460175482612fff9190614235565b6130099190614350565b601a600082825461301a9190614537565b92505081905550601454601554826130329190614235565b61303c9190614350565b6018600082825461304d9190614537565b9250508190555061317e565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130b457506000601054115b1561317d576130e160646130d36010548861383890919063ffffffff16565b6138b390919063ffffffff16565b9050601054601254826130f49190614235565b6130fe9190614350565b6019600082825461310f9190614537565b92505081905550601054601354826131279190614235565b6131319190614350565b601a60008282546131429190614537565b925050819055506010546011548261315a9190614235565b6131649190614350565b601860008282546131759190614537565b925050819055505b5b6000811115613193576131928730836132bc565b5b808561319f9190614b87565b94505b6131ad8787876132bc565b505050505b505050565b60008383111582906131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f69190613d7d565b60405180910390fd5b506000838561320e9190614b87565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561332c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133239061478f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561339c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339390614821565b60405180910390fd5b6133a78383836138fd565b61341281604051806060016040528060268152602001614f87602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131b79092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134a5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135449190613f64565b60405180910390a3505050565b600061355c3061120b565b90506000601a546018546019546135739190614537565b61357d9190614537565b905060008083148061358f5750600082145b1561359c57505050613836565b60146009546135ab9190614235565b8311156135c45760146009546135c19190614235565b92505b6000600283601954866135d79190614235565b6135e19190614350565b6135eb9190614350565b90506000613602828661390290919063ffffffff16565b905060004790506136128261394c565b6000613627824761390290919063ffffffff16565b90506000613652876136446018548561383890919063ffffffff16565b6138b390919063ffffffff16565b9050600061367d8861366f601a548661383890919063ffffffff16565b6138b390919063ffffffff16565b9050600081838561368e9190614b87565b6136989190614b87565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136f890614bec565b60006040518083038185875af1925050503d8060008114613735576040519150601f19603f3d011682016040523d82523d6000602084013e61373a565b606091505b5050809850506000871180156137505750600081115b1561379d5761375f8782613b98565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161379493929190614c01565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e390614bec565b60006040518083038185875af1925050503d8060008114613820576040519150601f19603f3d011682016040523d82523d6000602084013e613825565b606091505b505080985050505050505050505050505b565b60008083141561384b57600090506138ad565b600082846138599190614235565b90508284826138689190614350565b146138a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161389f90614caa565b60405180910390fd5b809150505b92915050565b60006138f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c81565b905092915050565b505050565b600061394483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b7565b905092915050565b6000600267ffffffffffffffff81111561396957613968614cca565b5b6040519080825280602002602001820160405280156139975781602001602082028036833780820191505090505b50905030816000815181106139af576139ae614cf9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a4f57600080fd5b505afa158015613a63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a879190614d3d565b81600181518110613a9b57613a9a614cf9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b00307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461226f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b62959493929190614e63565b600060405180830381600087803b158015613b7c57600080fd5b505af1158015613b90573d6000803e3d6000fd5b505050505050565b613bc3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461226f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613c2896959493929190614ebd565b6060604051808303818588803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c7a9190614f33565b5050505050565b60008083118290613cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cbf9190613d7d565b60405180910390fd5b5060008385613cd79190614350565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d1e578082015181840152602081019050613d03565b83811115613d2d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4f82613ce4565b613d598185613cef565b9350613d69818560208601613d00565b613d7281613d33565b840191505092915050565b60006020820190508181036000830152613d978184613d44565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dcf82613da4565b9050919050565b613ddf81613dc4565b8114613dea57600080fd5b50565b600081359050613dfc81613dd6565b92915050565b6000819050919050565b613e1581613e02565b8114613e2057600080fd5b50565b600081359050613e3281613e0c565b92915050565b60008060408385031215613e4f57613e4e613d9f565b5b6000613e5d85828601613ded565b9250506020613e6e85828601613e23565b9150509250929050565b60008115159050919050565b613e8d81613e78565b82525050565b6000602082019050613ea86000830184613e84565b92915050565b600060208284031215613ec457613ec3613d9f565b5b6000613ed284828501613ded565b91505092915050565b6000819050919050565b6000613f00613efb613ef684613da4565b613edb565b613da4565b9050919050565b6000613f1282613ee5565b9050919050565b6000613f2482613f07565b9050919050565b613f3481613f19565b82525050565b6000602082019050613f4f6000830184613f2b565b92915050565b613f5e81613e02565b82525050565b6000602082019050613f796000830184613f55565b92915050565b600060208284031215613f9557613f94613d9f565b5b6000613fa384828501613e23565b91505092915050565b600080600060608486031215613fc557613fc4613d9f565b5b6000613fd386828701613ded565b9350506020613fe486828701613ded565b9250506040613ff586828701613e23565b9150509250925092565b61400881613e78565b811461401357600080fd5b50565b60008135905061402581613fff565b92915050565b6000806040838503121561404257614041613d9f565b5b600061405085828601613ded565b925050602061406185828601614016565b9150509250929050565b600060ff82169050919050565b6140818161406b565b82525050565b600060208201905061409c6000830184614078565b92915050565b6140ab81613dc4565b82525050565b60006020820190506140c660008301846140a2565b92915050565b6000602082840312156140e2576140e1613d9f565b5b60006140f084828501614016565b91505092915050565b600080604083850312156141105761410f613d9f565b5b600061411e85828601613ded565b925050602061412f85828601613ded565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061418057607f821691505b6020821081141561419457614193614139565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141d0602083613cef565b91506141db8261419a565b602082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061424082613e02565b915061424b83613e02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428457614283614206565b5b828202905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142eb603983613cef565b91506142f68261428f565b604082019050919050565b6000602082019050818103600083015261431a816142de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061435b82613e02565b915061436683613e02565b92508261437657614375614321565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143dd603583613cef565b91506143e882614381565b604082019050919050565b6000602082019050818103600083015261440c816143d0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446f603483613cef565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614501602683613cef565b915061450c826144a5565b604082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b600061454282613e02565b915061454d83613e02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561458257614581614206565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006145c3601b83613cef565b91506145ce8261458d565b602082019050919050565b600060208201905081810360008301526145f2816145b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614655602483613cef565b9150614660826145f9565b604082019050919050565b6000602082019050818103600083015261468481614648565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146e7602283613cef565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614779602583613cef565b91506147848261471d565b604082019050919050565b600060208201905081810360008301526147a88161476c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480b602383613cef565b9150614816826147af565b604082019050919050565b6000602082019050818103600083015261483a816147fe565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061489d603183613cef565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614909601683613cef565b9150614914826148d3565b602082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149c1604983613cef565b91506149cc8261493f565b606082019050919050565b600060208201905081810360008301526149f0816149b4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a53603583613cef565b9150614a5e826149f7565b604082019050919050565b60006020820190508181036000830152614a8281614a46565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614abf601383613cef565b9150614aca82614a89565b602082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b51603683613cef565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b6000614b9282613e02565b9150614b9d83613e02565b925082821015614bb057614baf614206565b5b828203905092915050565b600081905092915050565b50565b6000614bd6600083614bbb565b9150614be182614bc6565b600082019050919050565b6000614bf782614bc9565b9150819050919050565b6000606082019050614c166000830186613f55565b614c236020830185613f55565b614c306040830184613f55565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c94602183613cef565b9150614c9f82614c38565b604082019050919050565b60006020820190508181036000830152614cc381614c87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d3781613dd6565b92915050565b600060208284031215614d5357614d52613d9f565b5b6000614d6184828501614d28565b91505092915050565b6000819050919050565b6000614d8f614d8a614d8584614d6a565b613edb565b613e02565b9050919050565b614d9f81614d74565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614dda81613dc4565b82525050565b6000614dec8383614dd1565b60208301905092915050565b6000602082019050919050565b6000614e1082614da5565b614e1a8185614db0565b9350614e2583614dc1565b8060005b83811015614e56578151614e3d8882614de0565b9750614e4883614df8565b925050600181019050614e29565b5085935050505092915050565b600060a082019050614e786000830188613f55565b614e856020830187614d96565b8181036040830152614e978186614e05565b9050614ea660608301856140a2565b614eb36080830184613f55565b9695505050505050565b600060c082019050614ed260008301896140a2565b614edf6020830188613f55565b614eec6040830187614d96565b614ef96060830186614d96565b614f0660808301856140a2565b614f1360a0830184613f55565b979650505050505050565b600081519050614f2d81613e0c565b92915050565b600080600060608486031215614f4c57614f4b613d9f565b5b6000614f5a86828701614f1e565b9350506020614f6b86828701614f1e565b9250506040614f7c86828701614f1e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122069c62d7d79a82d501165b985d6190309159e03808a1230291ed7155ef4f267d564736f6c63430008090033

Deployed Bytecode Sourcemap

29315:14463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7413:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9587:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30852:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29397:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8536:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36615:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30566:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30526;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35006:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10239:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35802:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8377:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11004:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29455:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29723:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36784:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30380:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29803:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8708:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21915:148;;;;;;;;;;;;;:::i;:::-;;34223:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35260:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30272:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34022:148;;;;;;;;;;;;;:::i;:::-;;21271:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30415:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35501:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7633:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35946:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30346:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30606:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30491:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11726:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9049:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36398:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31075:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29763:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35611:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35137:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30189:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29607:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34611:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30238:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9288:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29649:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34405:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30309:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22219:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30453:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29689:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7413:100;7467:13;7500:5;7493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7413:100;:::o;9587:169::-;9670:4;9687:39;9696:12;:10;:12::i;:::-;9710:7;9719:6;9687:8;:39::i;:::-;9744:4;9737:11;;9587:169;;;;:::o;30852:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29397:51::-;;;:::o;8536:108::-;8597:7;8624:12;;8617:19;;8536:108;:::o;36615:157::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36722:9:::1;;;;;;;;;;;36694:38;;36711:9;36694:38;;;;;;;;;;;;36755:9;36743;;:21;;;;;;;;;;;;;;;;;;36615:157:::0;:::o;30566:33::-;;;;:::o;30526:::-;;;;:::o;35006:122::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35113:6:::1;35103;:17;;;;:::i;:::-;35080:20;:40;;;;35006:122:::0;:::o;10239:355::-;10379:4;10396:36;10406:6;10414:9;10425:6;10396:9;:36::i;:::-;10443:121;10452:6;10460:12;:10;:12::i;:::-;10474:89;10512:6;10474:89;;;;;;;;;;;;;;;;;:11;:19;10486:6;10474:19;;;;;;;;;;;;;;;:33;10494:12;:10;:12::i;:::-;10474:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10443:8;:121::i;:::-;10582:4;10575:11;;10239:355;;;;;:::o;35802:135::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35916:13:::1;35894:10;:19;35905:7;35894:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;35802:135:::0;;:::o;8377:93::-;8435:5;8460:2;8453:9;;8377:93;:::o;11004:218::-;11092:4;11109:83;11118:12;:10;:12::i;:::-;11132:7;11141:50;11180:10;11141:11;:25;11153:12;:10;:12::i;:::-;11141:25;;;;;;;;;;;;;;;:34;11167:7;11141:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11109:8;:83::i;:::-;11210:4;11203:11;;11004:218;;;;:::o;29455:38::-;;;:::o;29723:33::-;;;;;;;;;;;;;:::o;36784:125::-;36849:4;36873:19;:28;36893:7;36873:28;;;;;;;;;;;;;;;;;;;;;;;;;36866:35;;36784:125;;;:::o;30380:28::-;;;;:::o;29803:31::-;;;;;;;;;;;;;:::o;8708:127::-;8782:7;8809:9;:18;8819:7;8809:18;;;;;;;;;;;;;;;;8802:25;;8708:127;;;:::o;21915:148::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22022:1:::1;21985:40;;22006:6;;;;;;;;;;;21985:40;;;;;;;;;;;;22053:1;22036:6;;:19;;;;;;;;;;;;;;;;;;21915:148::o:0;34223:120::-;34275:4;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34308:5:::1;34291:14;;:22;;;;;;;;;;;;;;;;;;34331:4;34324:11;;34223:120:::0;:::o;35260:144::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35392:4:::1;35350:31;:39;35382:6;35350:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35260:144:::0;;:::o;30272:30::-;;;;:::o;34022:148::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34093:4:::1;34077:13;;:20;;;;;;;;;;;;;;;;;;34122:4;34108:11;;:18;;;;;;;;;;;;;;;;;;34150:12;34137:10;:25;;;;34022:148::o:0;21271:79::-;21309:7;21336:6;;;;;;;;;;;21329:13;;21271:79;:::o;30415:31::-;;;;:::o;35501:101::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35587:7:::1;35573:11;;:21;;;;;;;;;;;;;;;;;;35501:101:::0;:::o;7633:104::-;7689:13;7722:7;7715:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7633:104;:::o;35946:245::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36053:13:::1;36045:21;;:4;:21;;;;36037:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36142:41;36171:4;36177:5;36142:28;:41::i;:::-;35946:245:::0;;:::o;30346:24::-;;;;:::o;30606:27::-;;;;:::o;30491:25::-;;;;:::o;11726:269::-;11819:4;11836:129;11845:12;:10;:12::i;:::-;11859:7;11868:96;11907:15;11868:96;;;;;;;;;;;;;;;;;:11;:25;11880:12;:10;:12::i;:::-;11868:25;;;;;;;;;;;;;;;:34;11894:7;11868:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11836:8;:129::i;:::-;11983:4;11976:11;;11726:269;;;;:::o;9049:175::-;9135:4;9152:42;9162:12;:10;:12::i;:::-;9176:9;9187:6;9152:9;:42::i;:::-;9212:4;9205:11;;9049:175;;;;:::o;36398:208::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36535:15:::1;;;;;;;;;;;36492:59;;36515:18;36492:59;;;;;;;;;;;;36580:18;36562:15;;:36;;;;;;;;;;;;;;;;;;36398:208:::0;:::o;31075:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29763:33::-;;;;;;;;;;;;;:::o;35611:182::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35727:8:::1;35696:19;:28;35716:7;35696:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35767:7;35751:34;;;35776:8;35751:34;;;;;;:::i;:::-;;;;;;;;35611:182:::0;;:::o;35137:114::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35236:6:::1;35226;:17;;;;:::i;:::-;35214:9;:29;;;;35137:114:::0;:::o;30189:39::-;;;;;;;;;;;;;:::o;29607:35::-;;;;:::o;34611:386::-;34692:4;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34749:6:::1;34745:1;34729:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34716:9;:39;;34708:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34865:4;34861:1;34845:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34832:9;:37;;34824:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34958:9;34937:18;:30;;;;34985:4;34978:11;;34611:386:::0;;;:::o;30238:27::-;;;;:::o;9288:151::-;9377:7;9404:11;:18;9416:5;9404:18;;;;;;;;;;;;;;;:27;9423:7;9404:27;;;;;;;;;;;;;;;;9397:34;;9288:151;;;;:::o;29649:33::-;;;;:::o;34405:134::-;34465:4;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34504:5:::1;34481:20;;:28;;;;;;;;;;;;;;;;;;34527:4;34520:11;;34405:134:::0;:::o;30309:30::-;;;;:::o;22219:244::-;21494:12;:10;:12::i;:::-;21484:22;;:6;;;;;;;;;;;:22;;;21476:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22328:1:::1;22308:22;;:8;:22;;;;22300:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22418:8;22389:38;;22410:6;;;;;;;;;;;22389:38;;;;;;;;;;;;22447:8;22438:6;;:17;;;;;;;;;;;;;;;;;;22219:244:::0;:::o;30453:31::-;;;;:::o;29689:24::-;;;;:::o;16303:182::-;16361:7;16381:9;16397:1;16393;:5;;;;:::i;:::-;16381:17;;16422:1;16417;:6;;16409:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16476:1;16469:8;;;16303:182;;;;:::o;104:98::-;157:7;184:10;177:17;;104:98;:::o;14922:381::-;15075:1;15058:19;;:5;:19;;;;15050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15156:1;15137:21;;:7;:21;;;;15129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15241:6;15211:11;:18;15223:5;15211:18;;;;;;;;;;;;;;;:27;15230:7;15211:27;;;;;;;;;;;;;;;:36;;;;15279:7;15263:32;;15272:5;15263:32;;;15288:6;15263:32;;;;;;:::i;:::-;;;;;;;;14922:381;;;:::o;36918:4145::-;37066:1;37050:18;;:4;:18;;;;37042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37143:1;37129:16;;:2;:16;;;;37121:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37205:10;:14;37216:2;37205:14;;;;;;;;;;;;;;;;;;;;;;;;;37204:15;:36;;;;;37224:10;:16;37235:4;37224:16;;;;;;;;;;;;;;;;;;;;;;;;;37223:17;37204:36;37196:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;37319:1;37309:6;:11;37306:92;;;37337:28;37353:4;37359:2;37363:1;37337:15;:28::i;:::-;37380:7;;37306:92;37414:14;;;;;;;;;;;37411:1811;;;37474:7;:5;:7::i;:::-;37466:15;;:4;:15;;;;:49;;;;;37508:7;:5;:7::i;:::-;37502:13;;:2;:13;;;;37466:49;:86;;;;;37550:1;37536:16;;:2;:16;;;;37466:86;:128;;;;;37587:6;37573:21;;:2;:21;;;;37466:128;:158;;;;;37616:8;;;;;;;;;;;37615:9;37466:158;37444:1767;;;37662:13;;;;;;;;;;;37658:148;;37707:19;:25;37727:4;37707:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37736:19;:23;37756:2;37736:23;;;;;;;;;;;;;;;;;;;;;;;;;37707:52;37699:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37658:148;37965:20;;;;;;;;;;;37961:423;;;38019:7;:5;:7::i;:::-;38013:13;;:2;:13;;;;:47;;;;;38044:15;38030:30;;:2;:30;;;;38013:47;:79;;;;;38078:13;38064:28;;:2;:28;;;;38013:79;38009:356;;;38170:12;38128:28;:39;38157:9;38128:39;;;;;;;;;;;;;;;;:54;38120:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38329:12;38287:28;:39;38316:9;38287:39;;;;;;;;;;;;;;;:54;;;;38009:356;37961:423;38437:25;:31;38463:4;38437:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38473:31;:35;38505:2;38473:35;;;;;;;;;;;;;;;;;;;;;;;;;38472:36;38437:71;38433:763;;;38555:20;;38545:6;:30;;38537:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38694:9;;38677:13;38687:2;38677:9;:13::i;:::-;38668:6;:22;;;;:::i;:::-;:35;;38660:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38433:763;;;38806:25;:29;38832:2;38806:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38840:31;:37;38872:4;38840:37;;;;;;;;;;;;;;;;;;;;;;;;;38839:38;38806:71;38802:394;;;38924:20;;38914:6;:30;;38906:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;38802:394;;;39050:31;:35;39082:2;39050:35;;;;;;;;;;;;;;;;;;;;;;;;;39046:150;;39143:9;;39126:13;39136:2;39126:9;:13::i;:::-;39117:6;:22;;;;:::i;:::-;:35;;39109:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39046:150;38802:394;38433:763;37444:1767;37411:1811;39235:28;39266:24;39284:4;39266:9;:24::i;:::-;39235:55;;39304:12;39343:18;;39319:20;:42;;39304:57;;39393:7;:35;;;;;39417:11;;;;;;;;;;;39393:35;:61;;;;;39446:8;;;;;;;;;;;39445:9;39393:61;:110;;;;;39472:25;:31;39498:4;39472:31;;;;;;;;;;;;;;;;;;;;;;;;;39471:32;39393:110;:153;;;;;39521:19;:25;39541:4;39521:25;;;;;;;;;;;;;;;;;;;;;;;;;39520:26;39393:153;:194;;;;;39564:19;:23;39584:2;39564:23;;;;;;;;;;;;;;;;;;;;;;;;;39563:24;39393:194;39375:328;;;39625:4;39614:8;;:15;;;;;;;;;;;;;;;;;;39647:10;:8;:10::i;:::-;39686:5;39675:8;;:16;;;;;;;;;;;;;;;;;;39375:328;39716:12;39732:8;;;;;;;;;;;39731:9;39716:24;;39842:19;:25;39862:4;39842:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39871:19;:23;39891:2;39871:23;;;;;;;;;;;;;;;;;;;;;;;;;39842:52;39839:99;;;39921:5;39911:15;;39839:99;39951:12;40055:7;40052:957;;;40106:25;:29;40132:2;40106:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40155:1;40139:13;;:17;40106:50;40102:754;;;40183:34;40213:3;40183:25;40194:13;;40183:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40176:41;;40284:13;;40265:16;;40258:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40236:18;;:61;;;;;;;:::i;:::-;;;;;;;;40352:13;;40339:10;;40332:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40316:12;;:49;;;;;;;:::i;:::-;;;;;;;;40432:13;;40413:16;;40406:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40384:18;;:61;;;;;;;:::i;:::-;;;;;;;;40102:754;;;40506:25;:31;40532:4;40506:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40556:1;40541:12;;:16;40506:51;40503:353;;;40585:33;40614:3;40585:24;40596:12;;40585:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40578:40;;40684:12;;40666:15;;40659:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40637:18;;:59;;;;;;;:::i;:::-;;;;;;;;40750:12;;40738:9;;40731:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40715:12;;:47;;;;;;;:::i;:::-;;;;;;;;40828:12;;40810:15;;40803:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40781:18;;:59;;;;;;;:::i;:::-;;;;;;;;40503:353;40102:754;40883:1;40876:4;:8;40873:93;;;40908:42;40924:4;40938;40945;40908:15;:42::i;:::-;40873:93;40993:4;40983:14;;;;;:::i;:::-;;;40052:957;41022:33;41038:4;41044:2;41048:6;41022:15;:33::i;:::-;37031:4032;;;;36918:4145;;;;:::o;17209:193::-;17295:7;17328:1;17323;:6;;17331:12;17315:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17355:9;17371:1;17367;:5;;;;:::i;:::-;17355:17;;17393:1;17386:8;;;17209:193;;;;;:::o;36200:189::-;36317:5;36283:25;:31;36309:4;36283:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36375:5;36341:40;;36369:4;36341:40;;;;;;;;;;;;36200:189;;:::o;12486:575::-;12644:1;12626:20;;:6;:20;;;;12618:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12728:1;12707:23;;:9;:23;;;;12699:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12784:47;12805:6;12813:9;12824:6;12784:20;:47::i;:::-;12865:71;12887:6;12865:71;;;;;;;;;;;;;;;;;:9;:17;12875:6;12865:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12845:9;:17;12855:6;12845:17;;;;;;;;;;;;;;;:91;;;;12970:32;12995:6;12970:9;:20;12980:9;12970:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12947:9;:20;12957:9;12947:20;;;;;;;;;;;;;;;:55;;;;13035:9;13018:35;;13027:6;13018:35;;;13046:6;13018:35;;;;;;:::i;:::-;;;;;;;;12486:575;;;:::o;42207:1568::-;42246:23;42272:24;42290:4;42272:9;:24::i;:::-;42246:50;;42307:25;42377:12;;42356:18;;42335;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42307:82;;42400:12;42448:1;42429:15;:20;:46;;;;42474:1;42453:17;:22;42429:46;42426:60;;;42478:7;;;;;42426:60;42541:2;42520:18;;:23;;;;:::i;:::-;42502:15;:41;42499:111;;;42596:2;42575:18;;:23;;;;:::i;:::-;42557:41;;42499:111;42672:23;42757:1;42737:17;42716:18;;42698:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42672:86;;42769:26;42798:36;42818:15;42798;:19;;:36;;;;:::i;:::-;42769:65;;42848:25;42876:21;42848:49;;42911:36;42928:18;42911:16;:36::i;:::-;42962:18;42983:44;43009:17;42983:21;:25;;:44;;;;:::i;:::-;42962:65;;43041:23;43067:57;43106:17;43067:34;43082:18;;43067:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43041:83;;43135:17;43155:51;43188:17;43155:28;43170:12;;43155:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43135:71;;43217:23;43274:9;43256:15;43243:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43217:66;;43321:1;43300:18;:22;;;;43354:1;43333:18;:22;;;;43381:1;43366:12;:16;;;;43417:9;;;;;;;;;;;43409:23;;43440:9;43409:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43396:58;;;;;43489:1;43471:15;:19;:42;;;;;43512:1;43494:15;:19;43471:42;43468:210;;;43529:46;43542:15;43559;43529:12;:46::i;:::-;43595:71;43610:18;43630:15;43647:18;;43595:71;;;;;;;;:::i;:::-;;;;;;;;43468:210;43712:15;;;;;;;;;;;43704:29;;43741:21;43704:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43691:76;;;;;42235:1540;;;;;;;;;;42207:1568;:::o;17662:473::-;17720:7;17970:1;17965;:6;17961:47;;;17995:1;17988:8;;;;17961:47;18021:9;18037:1;18033;:5;;;;:::i;:::-;18021:17;;18066:1;18061;18057;:5;;;;:::i;:::-;:10;18049:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18126:1;18119:8;;;17662:473;;;;;:::o;18612:132::-;18670:7;18697:39;18701:1;18704;18697:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18690:46;;18612:132;;;;:::o;15907:125::-;;;;:::o;16769:136::-;16827:7;16854:43;16858:1;16861;16854:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16847:50;;16769:136;;;;:::o;41072:597::-;41201:21;41239:1;41225:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41201:40;;41270:4;41252;41257:1;41252:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41296:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41286:4;41291:1;41286:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41332:62;41349:4;41364:15;41382:11;41332:8;:62::i;:::-;41434:15;:66;;;41515:11;41541:1;41585:4;41612;41632:15;41434:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41127:542;41072:597;:::o;41678:520::-;41826:62;41843:4;41858:15;41876:11;41826:8;:62::i;:::-;41932:15;:31;;;41971:9;42004:4;42024:11;42050:1;42093;42144:4;42164:15;41932:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41678:520;;:::o;19241:279::-;19327:7;19359:1;19355;:5;19362:12;19347:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19386:9;19402:1;19398;:5;;;;:::i;:::-;19386:17;;19511:1;19504:8;;;19241:279;;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:116::-;6189:21;6204:5;6189:21;:::i;:::-;6182:5;6179:32;6169:60;;6225:1;6222;6215:12;6169:60;6119:116;:::o;6241:133::-;6284:5;6322:6;6309:20;6300:29;;6338:30;6362:5;6338:30;:::i;:::-;6241:133;;;;:::o;6380:468::-;6445:6;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:50;6823:7;6814:6;6803:9;6799:22;6781:50;:::i;:::-;6771:60;;6726:115;6380:468;;;;;:::o;6854:86::-;6889:7;6929:4;6922:5;6918:16;6907:27;;6854:86;;;:::o;6946:112::-;7029:22;7045:5;7029:22;:::i;:::-;7024:3;7017:35;6946:112;;:::o;7064:214::-;7153:4;7191:2;7180:9;7176:18;7168:26;;7204:67;7268:1;7257:9;7253:17;7244:6;7204:67;:::i;:::-;7064:214;;;;:::o;7284:118::-;7371:24;7389:5;7371:24;:::i;:::-;7366:3;7359:37;7284:118;;:::o;7408:222::-;7501:4;7539:2;7528:9;7524:18;7516:26;;7552:71;7620:1;7609:9;7605:17;7596:6;7552:71;:::i;:::-;7408:222;;;;:::o;7636:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:244::-;10622:34;10618:1;10610:6;10606:14;10599:58;10691:27;10686:2;10678:6;10674:15;10667:52;10482:244;:::o;10732:366::-;10874:3;10895:67;10959:2;10954:3;10895:67;:::i;:::-;10888:74;;10971:93;11060:3;10971:93;:::i;:::-;11089:2;11084:3;11080:12;11073:19;;10732:366;;;:::o;11104:419::-;11270:4;11308:2;11297:9;11293:18;11285:26;;11357:9;11351:4;11347:20;11343:1;11332:9;11328:17;11321:47;11385:131;11511:4;11385:131;:::i;:::-;11377:139;;11104:419;;;:::o;11529:180::-;11577:77;11574:1;11567:88;11674:4;11671:1;11664:15;11698:4;11695:1;11688:15;11715:185;11755:1;11772:20;11790:1;11772:20;:::i;:::-;11767:25;;11806:20;11824:1;11806:20;:::i;:::-;11801:25;;11845:1;11835:35;;11850:18;;:::i;:::-;11835:35;11892:1;11889;11885:9;11880:14;;11715:185;;;;:::o;11906:240::-;12046:34;12042:1;12034:6;12030:14;12023:58;12115:23;12110:2;12102:6;12098:15;12091:48;11906:240;:::o;12152:366::-;12294:3;12315:67;12379:2;12374:3;12315:67;:::i;:::-;12308:74;;12391:93;12480:3;12391:93;:::i;:::-;12509:2;12504:3;12500:12;12493:19;;12152:366;;;:::o;12524:419::-;12690:4;12728:2;12717:9;12713:18;12705:26;;12777:9;12771:4;12767:20;12763:1;12752:9;12748:17;12741:47;12805:131;12931:4;12805:131;:::i;:::-;12797:139;;12524:419;;;:::o;12949:239::-;13089:34;13085:1;13077:6;13073:14;13066:58;13158:22;13153:2;13145:6;13141:15;13134:47;12949:239;:::o;13194:366::-;13336:3;13357:67;13421:2;13416:3;13357:67;:::i;:::-;13350:74;;13433:93;13522:3;13433:93;:::i;:::-;13551:2;13546:3;13542:12;13535:19;;13194:366;;;:::o;13566:419::-;13732:4;13770:2;13759:9;13755:18;13747:26;;13819:9;13813:4;13809:20;13805:1;13794:9;13790:17;13783:47;13847:131;13973:4;13847:131;:::i;:::-;13839:139;;13566:419;;;:::o;13991:225::-;14131:34;14127:1;14119:6;14115:14;14108:58;14200:8;14195:2;14187:6;14183:15;14176:33;13991:225;:::o;14222:366::-;14364:3;14385:67;14449:2;14444:3;14385:67;:::i;:::-;14378:74;;14461:93;14550:3;14461:93;:::i;:::-;14579:2;14574:3;14570:12;14563:19;;14222:366;;;:::o;14594:419::-;14760:4;14798:2;14787:9;14783:18;14775:26;;14847:9;14841:4;14837:20;14833:1;14822:9;14818:17;14811:47;14875:131;15001:4;14875:131;:::i;:::-;14867:139;;14594:419;;;:::o;15019:305::-;15059:3;15078:20;15096:1;15078:20;:::i;:::-;15073:25;;15112:20;15130:1;15112:20;:::i;:::-;15107:25;;15266:1;15198:66;15194:74;15191:1;15188:81;15185:107;;;15272:18;;:::i;:::-;15185:107;15316:1;15313;15309:9;15302:16;;15019:305;;;;:::o;15330:177::-;15470:29;15466:1;15458:6;15454:14;15447:53;15330:177;:::o;15513:366::-;15655:3;15676:67;15740:2;15735:3;15676:67;:::i;:::-;15669:74;;15752:93;15841:3;15752:93;:::i;:::-;15870:2;15865:3;15861:12;15854:19;;15513:366;;;:::o;15885:419::-;16051:4;16089:2;16078:9;16074:18;16066:26;;16138:9;16132:4;16128:20;16124:1;16113:9;16109:17;16102:47;16166:131;16292:4;16166:131;:::i;:::-;16158:139;;15885:419;;;:::o;16310:223::-;16450:34;16446:1;16438:6;16434:14;16427:58;16519:6;16514:2;16506:6;16502:15;16495:31;16310:223;:::o;16539:366::-;16681:3;16702:67;16766:2;16761:3;16702:67;:::i;:::-;16695:74;;16778:93;16867:3;16778:93;:::i;:::-;16896:2;16891:3;16887:12;16880:19;;16539:366;;;:::o;16911:419::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17164:9;17158:4;17154:20;17150:1;17139:9;17135:17;17128:47;17192:131;17318:4;17192:131;:::i;:::-;17184:139;;16911:419;;;:::o;17336:221::-;17476:34;17472:1;17464:6;17460:14;17453:58;17545:4;17540:2;17532:6;17528:15;17521:29;17336:221;:::o;17563:366::-;17705:3;17726:67;17790:2;17785:3;17726:67;:::i;:::-;17719:74;;17802:93;17891:3;17802:93;:::i;:::-;17920:2;17915:3;17911:12;17904:19;;17563:366;;;:::o;17935:419::-;18101:4;18139:2;18128:9;18124:18;18116:26;;18188:9;18182:4;18178:20;18174:1;18163:9;18159:17;18152:47;18216:131;18342:4;18216:131;:::i;:::-;18208:139;;17935:419;;;:::o;18360:224::-;18500:34;18496:1;18488:6;18484:14;18477:58;18569:7;18564:2;18556:6;18552:15;18545:32;18360:224;:::o;18590:366::-;18732:3;18753:67;18817:2;18812:3;18753:67;:::i;:::-;18746:74;;18829:93;18918:3;18829:93;:::i;:::-;18947:2;18942:3;18938:12;18931:19;;18590:366;;;:::o;18962:419::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:222::-;19527:34;19523:1;19515:6;19511:14;19504:58;19596:5;19591:2;19583:6;19579:15;19572:30;19387:222;:::o;19615:366::-;19757:3;19778:67;19842:2;19837:3;19778:67;:::i;:::-;19771:74;;19854:93;19943:3;19854:93;:::i;:::-;19972:2;19967:3;19963:12;19956:19;;19615:366;;;:::o;19987:419::-;20153:4;20191:2;20180:9;20176:18;20168:26;;20240:9;20234:4;20230:20;20226:1;20215:9;20211:17;20204:47;20268:131;20394:4;20268:131;:::i;:::-;20260:139;;19987:419;;;:::o;20412:236::-;20552:34;20548:1;20540:6;20536:14;20529:58;20621:19;20616:2;20608:6;20604:15;20597:44;20412:236;:::o;20654:366::-;20796:3;20817:67;20881:2;20876:3;20817:67;:::i;:::-;20810:74;;20893:93;20982:3;20893:93;:::i;:::-;21011:2;21006:3;21002:12;20995:19;;20654:366;;;:::o;21026:419::-;21192:4;21230:2;21219:9;21215:18;21207:26;;21279:9;21273:4;21269:20;21265:1;21254:9;21250:17;21243:47;21307:131;21433:4;21307:131;:::i;:::-;21299:139;;21026:419;;;:::o;21451:172::-;21591:24;21587:1;21579:6;21575:14;21568:48;21451:172;:::o;21629:366::-;21771:3;21792:67;21856:2;21851:3;21792:67;:::i;:::-;21785:74;;21868:93;21957:3;21868:93;:::i;:::-;21986:2;21981:3;21977:12;21970:19;;21629:366;;;:::o;22001:419::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:297::-;22566:34;22562:1;22554:6;22550:14;22543:58;22635:34;22630:2;22622:6;22618:15;22611:59;22704:11;22699:2;22691:6;22687:15;22680:36;22426:297;:::o;22729:366::-;22871:3;22892:67;22956:2;22951:3;22892:67;:::i;:::-;22885:74;;22968:93;23057:3;22968:93;:::i;:::-;23086:2;23081:3;23077:12;23070:19;;22729:366;;;:::o;23101:419::-;23267:4;23305:2;23294:9;23290:18;23282:26;;23354:9;23348:4;23344:20;23340:1;23329:9;23325:17;23318:47;23382:131;23508:4;23382:131;:::i;:::-;23374:139;;23101:419;;;:::o;23526:240::-;23666:34;23662:1;23654:6;23650:14;23643:58;23735:23;23730:2;23722:6;23718:15;23711:48;23526:240;:::o;23772:366::-;23914:3;23935:67;23999:2;23994:3;23935:67;:::i;:::-;23928:74;;24011:93;24100:3;24011:93;:::i;:::-;24129:2;24124:3;24120:12;24113:19;;23772:366;;;:::o;24144:419::-;24310:4;24348:2;24337:9;24333:18;24325:26;;24397:9;24391:4;24387:20;24383:1;24372:9;24368:17;24361:47;24425:131;24551:4;24425:131;:::i;:::-;24417:139;;24144:419;;;:::o;24569:169::-;24709:21;24705:1;24697:6;24693:14;24686:45;24569:169;:::o;24744:366::-;24886:3;24907:67;24971:2;24966:3;24907:67;:::i;:::-;24900:74;;24983:93;25072:3;24983:93;:::i;:::-;25101:2;25096:3;25092:12;25085:19;;24744:366;;;:::o;25116:419::-;25282:4;25320:2;25309:9;25305:18;25297:26;;25369:9;25363:4;25359:20;25355:1;25344:9;25340:17;25333:47;25397:131;25523:4;25397:131;:::i;:::-;25389:139;;25116:419;;;:::o;25541:241::-;25681:34;25677:1;25669:6;25665:14;25658:58;25750:24;25745:2;25737:6;25733:15;25726:49;25541:241;:::o;25788:366::-;25930:3;25951:67;26015:2;26010:3;25951:67;:::i;:::-;25944:74;;26027:93;26116:3;26027:93;:::i;:::-;26145:2;26140:3;26136:12;26129:19;;25788:366;;;:::o;26160:419::-;26326:4;26364:2;26353:9;26349:18;26341:26;;26413:9;26407:4;26403:20;26399:1;26388:9;26384:17;26377:47;26441:131;26567:4;26441:131;:::i;:::-;26433:139;;26160:419;;;:::o;26585:191::-;26625:4;26645:20;26663:1;26645:20;:::i;:::-;26640:25;;26679:20;26697:1;26679:20;:::i;:::-;26674:25;;26718:1;26715;26712:8;26709:34;;;26723:18;;:::i;:::-;26709:34;26768:1;26765;26761:9;26753:17;;26585:191;;;;:::o;26782:147::-;26883:11;26920:3;26905:18;;26782:147;;;;:::o;26935:114::-;;:::o;27055:398::-;27214:3;27235:83;27316:1;27311:3;27235:83;:::i;:::-;27228:90;;27327:93;27416:3;27327:93;:::i;:::-;27445:1;27440:3;27436:11;27429:18;;27055:398;;;:::o;27459:379::-;27643:3;27665:147;27808:3;27665:147;:::i;:::-;27658:154;;27829:3;27822:10;;27459:379;;;:::o;27844:442::-;27993:4;28031:2;28020:9;28016:18;28008:26;;28044:71;28112:1;28101:9;28097:17;28088:6;28044:71;:::i;:::-;28125:72;28193:2;28182:9;28178:18;28169:6;28125:72;:::i;:::-;28207;28275:2;28264:9;28260:18;28251:6;28207:72;:::i;:::-;27844:442;;;;;;:::o;28292:220::-;28432:34;28428:1;28420:6;28416:14;28409:58;28501:3;28496:2;28488:6;28484:15;28477:28;28292:220;:::o;28518:366::-;28660:3;28681:67;28745:2;28740:3;28681:67;:::i;:::-;28674:74;;28757:93;28846:3;28757:93;:::i;:::-;28875:2;28870:3;28866:12;28859:19;;28518:366;;;:::o;28890:419::-;29056:4;29094:2;29083:9;29079:18;29071:26;;29143:9;29137:4;29133:20;29129:1;29118:9;29114:17;29107:47;29171:131;29297:4;29171:131;:::i;:::-;29163:139;;28890:419;;;:::o;29315:180::-;29363:77;29360:1;29353:88;29460:4;29457:1;29450:15;29484:4;29481:1;29474:15;29501:180;29549:77;29546:1;29539:88;29646:4;29643:1;29636:15;29670:4;29667:1;29660:15;29687:143;29744:5;29775:6;29769:13;29760:22;;29791:33;29818:5;29791:33;:::i;:::-;29687:143;;;;:::o;29836:351::-;29906:6;29955:2;29943:9;29934:7;29930:23;29926:32;29923:119;;;29961:79;;:::i;:::-;29923:119;30081:1;30106:64;30162:7;30153:6;30142:9;30138:22;30106:64;:::i;:::-;30096:74;;30052:128;29836:351;;;;:::o;30193:85::-;30238:7;30267:5;30256:16;;30193:85;;;:::o;30284:158::-;30342:9;30375:61;30393:42;30402:32;30428:5;30402:32;:::i;:::-;30393:42;:::i;:::-;30375:61;:::i;:::-;30362:74;;30284:158;;;:::o;30448:147::-;30543:45;30582:5;30543:45;:::i;:::-;30538:3;30531:58;30448:147;;:::o;30601:114::-;30668:6;30702:5;30696:12;30686:22;;30601:114;;;:::o;30721:184::-;30820:11;30854:6;30849:3;30842:19;30894:4;30889:3;30885:14;30870:29;;30721:184;;;;:::o;30911:132::-;30978:4;31001:3;30993:11;;31031:4;31026:3;31022:14;31014:22;;30911:132;;;:::o;31049:108::-;31126:24;31144:5;31126:24;:::i;:::-;31121:3;31114:37;31049:108;;:::o;31163:179::-;31232:10;31253:46;31295:3;31287:6;31253:46;:::i;:::-;31331:4;31326:3;31322:14;31308:28;;31163:179;;;;:::o;31348:113::-;31418:4;31450;31445:3;31441:14;31433:22;;31348:113;;;:::o;31497:732::-;31616:3;31645:54;31693:5;31645:54;:::i;:::-;31715:86;31794:6;31789:3;31715:86;:::i;:::-;31708:93;;31825:56;31875:5;31825:56;:::i;:::-;31904:7;31935:1;31920:284;31945:6;31942:1;31939:13;31920:284;;;32021:6;32015:13;32048:63;32107:3;32092:13;32048:63;:::i;:::-;32041:70;;32134:60;32187:6;32134:60;:::i;:::-;32124:70;;31980:224;31967:1;31964;31960:9;31955:14;;31920:284;;;31924:14;32220:3;32213:10;;31621:608;;;31497:732;;;;:::o;32235:831::-;32498:4;32536:3;32525:9;32521:19;32513:27;;32550:71;32618:1;32607:9;32603:17;32594:6;32550:71;:::i;:::-;32631:80;32707:2;32696:9;32692:18;32683:6;32631:80;:::i;:::-;32758:9;32752:4;32748:20;32743:2;32732:9;32728:18;32721:48;32786:108;32889:4;32880:6;32786:108;:::i;:::-;32778:116;;32904:72;32972:2;32961:9;32957:18;32948:6;32904:72;:::i;:::-;32986:73;33054:3;33043:9;33039:19;33030:6;32986:73;:::i;:::-;32235:831;;;;;;;;:::o;33072:807::-;33321:4;33359:3;33348:9;33344:19;33336:27;;33373:71;33441:1;33430:9;33426:17;33417:6;33373:71;:::i;:::-;33454:72;33522:2;33511:9;33507:18;33498:6;33454:72;:::i;:::-;33536:80;33612:2;33601:9;33597:18;33588:6;33536:80;:::i;:::-;33626;33702:2;33691:9;33687:18;33678:6;33626:80;:::i;:::-;33716:73;33784:3;33773:9;33769:19;33760:6;33716:73;:::i;:::-;33799;33867:3;33856:9;33852:19;33843:6;33799:73;:::i;:::-;33072:807;;;;;;;;;:::o;33885:143::-;33942:5;33973:6;33967:13;33958:22;;33989:33;34016:5;33989:33;:::i;:::-;33885:143;;;;:::o;34034:663::-;34122:6;34130;34138;34187:2;34175:9;34166:7;34162:23;34158:32;34155:119;;;34193:79;;:::i;:::-;34155:119;34313:1;34338:64;34394:7;34385:6;34374:9;34370:22;34338:64;:::i;:::-;34328:74;;34284:128;34451:2;34477:64;34533:7;34524:6;34513:9;34509:22;34477:64;:::i;:::-;34467:74;;34422:129;34590:2;34616:64;34672:7;34663:6;34652:9;34648:22;34616:64;:::i;:::-;34606:74;;34561:129;34034:663;;;;;:::o

Swarm Source

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