ETH Price: $3,352.76 (-1.07%)

Token

This is ME (THIS)
 

Overview

Max Total Supply

1,000,000,000,000 THIS

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sopoor.eth
Balance
82,631,987.549989643090930259 THIS

Value
$0.00
0x000000006533ecb269f92a09d8541e84e485332f
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:
THISISME

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-27
*/

/**
Based on Elon Musks first tweet ever.
https://twitter.com/elonmusk/status/15434727182


Delivered to you by MSN team
*/
/**
// 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 THISISME 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 = true;
    bool public swapEnabled = true;
 
     // 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("This is ME", "THIS") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 15;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 10 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 30 / 1000; // 2% 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 {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function 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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f54686973206973204d45000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544849530000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bac565b5080600490805190602001906200011b92919062000bac565b5050506000620001306200067860201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cc6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cc6565b6040518363ffffffff1660e01b81526004016200036e92919062000d09565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cc6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068060201b60201c565b6200042160a05160016200077d60201b60201c565b600080600080600080600f905060006c0c9f2c9cd04674edea4000000090506103e8600a8262000452919062000d6f565b6200045e919062000dff565b6008819055506103e8601e8262000476919062000d6f565b62000482919062000dff565b600a819055506127106005826200049a919062000d6f565b620004a6919062000dff565b600981905550866011819055508560128190555084601381905550601354601254601154620004d6919062000e37565b620004e2919062000e37565b60108190555083601581905550826016819055508160178190555060175460165460155462000512919062000e37565b6200051e919062000e37565b601481905550620005346200081e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005846200081e60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005e6620005d86200081e60201b60201c565b60016200084860201b60201c565b620005f93060016200084860201b60201c565b6200060e61dead60016200084860201b60201c565b62000630620006226200081e60201b60201c565b60016200068060201b60201c565b620006433060016200068060201b60201c565b6200065861dead60016200068060201b60201c565b6200066a33826200099560201b60201c565b5050505050505050620010c8565b600033905090565b620006906200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007199062000ef5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008586200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e19062000ef5565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000989919062000f34565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ff9062000fa1565b60405180910390fd5b62000a1c6000838362000b4460201b60201c565b62000a388160025462000b4960201b620022f51790919060201c565b60028190555062000a96816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b4960201b620022f51790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b38919062000fd4565b60405180910390a35050565b505050565b600080828462000b5a919062000e37565b90508381101562000ba2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b999062001041565b60405180910390fd5b8091505092915050565b82805462000bba9062001092565b90600052602060002090601f01602090048101928262000bde576000855562000c2a565b82601f1062000bf957805160ff191683800117855562000c2a565b8280016001018555821562000c2a579182015b8281111562000c2957825182559160200191906001019062000c0c565b5b50905062000c39919062000c3d565b5090565b5b8082111562000c5857600081600090555060010162000c3e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c8e8262000c61565b9050919050565b62000ca08162000c81565b811462000cac57600080fd5b50565b60008151905062000cc08162000c95565b92915050565b60006020828403121562000cdf5762000cde62000c5c565b5b600062000cef8482850162000caf565b91505092915050565b62000d038162000c81565b82525050565b600060408201905062000d20600083018562000cf8565b62000d2f602083018462000cf8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d7c8262000d36565b915062000d898362000d36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dc55762000dc462000d40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e0c8262000d36565b915062000e198362000d36565b92508262000e2c5762000e2b62000dd0565b5b828204905092915050565b600062000e448262000d36565b915062000e518362000d36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e895762000e8862000d40565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000edd60208362000e94565b915062000eea8262000ea5565b602082019050919050565b6000602082019050818103600083015262000f108162000ece565b9050919050565b60008115159050919050565b62000f2e8162000f17565b82525050565b600060208201905062000f4b600083018462000f23565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f89601f8362000e94565b915062000f968262000f51565b602082019050919050565b6000602082019050818103600083015262000fbc8162000f7a565b9050919050565b62000fce8162000d36565b82525050565b600060208201905062000feb600083018462000fc3565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001029601b8362000e94565b9150620010368262000ff1565b602082019050919050565b600060208201905081810360008301526200105c816200101a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010ab57607f821691505b60208210811415620010c257620010c162001063565b5b50919050565b60805160a05161523f62001126600039600081816111dd015281816118b901526129c1015260008181610c9b0152818161296901528181613ad701528181613bc701528181613bee01528181613c8a0152613cb1015261523f6000f3fe6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613e69565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613f24565b610c5b565b6040516103389190613f7f565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613f9a565b610c79565b6040516103759190613f7f565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190614026565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190614050565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613f9a565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190614050565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190614050565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061406b565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190614098565b610f54565b6040516104b09190613f7f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614117565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b6040516105049190614173565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613f24565b611128565b6040516105419190613f7f565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c919061419d565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613f7f565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613f9a565b611212565b6040516105d49190613f7f565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190614050565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613f7f565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613f9a565b611281565b6040516106679190614050565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c611421565b6040516106a99190613f7f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614117565b6114dc565b005b3480156106e757600080fd5b506106f06115ce565b6040516106fd9190614050565b60405180910390f35b34801561071257600080fd5b5061071b6115d4565b005b34801561072957600080fd5b506107326116aa565b60405161073f919061419d565b60405180910390f35b34801561075457600080fd5b5061075d6116d4565b60405161076a9190614050565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906141b8565b6116da565b005b3480156107a857600080fd5b506107b161178e565b6040516107be9190613e69565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614117565b611820565b005b3480156107fc57600080fd5b50610805611954565b6040516108129190614050565b60405180910390f35b34801561082757600080fd5b5061083061195a565b60405161083d9190614050565b60405180910390f35b34801561085257600080fd5b5061085b611960565b6040516108689190614050565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613f24565b611966565b6040516108a59190613f7f565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613f24565b611a33565b6040516108e29190613f7f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613f9a565b611a51565b005b34801561092057600080fd5b5061093b60048036038101906109369190613f9a565b611ba8565b6040516109489190613f7f565b60405180910390f35b34801561095d57600080fd5b50610966611bc8565b6040516109739190613f7f565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614117565b611bdb565b005b3480156109b157600080fd5b506109cc60048036038101906109c7919061406b565b611d1b565b005b3480156109da57600080fd5b506109e3611e45565b6040516109f09190613f7f565b60405180910390f35b348015610a0557600080fd5b50610a0e611e58565b604051610a1b9190614050565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a46919061406b565b611e5e565b604051610a589190613f7f565b60405180910390f35b348015610a6d57600080fd5b50610a76611fce565b604051610a839190614050565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906141e5565b611fd4565b604051610ac09190614050565b60405180910390f35b348015610ad557600080fd5b50610ade61205b565b604051610aeb9190614050565b60405180910390f35b348015610b0057600080fd5b50610b09612061565b604051610b169190613f7f565b60405180910390f35b348015610b2b57600080fd5b50610b3461211c565b604051610b419190614050565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613f9a565b612122565b005b348015610b7f57600080fd5b50610b886122e9565b604051610b959190614050565b60405180910390f35b348015610baa57600080fd5b50610bb36122ef565b604051610bc09190614050565b60405180910390f35b606060038054610bd890614254565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614254565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612353565b848461235b565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ccf612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906142d2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906142d2565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee19190614321565b610eeb91906143aa565b610ef591906143aa565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e9061444d565b60405180910390fd5b670de0b6b3a764000081610f4b9190614321565b60088190555050565b6000610f61848484612526565b61102284610f6d612353565b61101d856040518060600160405280602881526020016151bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd3612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b600190509392505050565b611035612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906142d2565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d1611135612353565b846111cc8560016000611146612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b61235b565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d1612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061142b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b1906142d2565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114e4612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a906142d2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6115dc612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906142d2565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6116e2612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906142d2565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461179d90614254565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990614254565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b611828612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906142d2565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d906144df565b60405180910390fd5b6119508282613307565b5050565b60135481565b601a5481565b60175481565b6000611a29611973612353565b84611a24856040518060600160405280602581526020016151e5602591396001600061199d612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b6001905092915050565b6000611a47611a40612353565b8484612526565b6001905092915050565b611a59612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906142d2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be3612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906142d2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d0f9190613f7f565b60405180910390a25050565b611d23612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906142d2565b60405180910390fd5b670de0b6b3a76400006103e86005611dc8610cbd565b611dd29190614321565b611ddc91906143aa565b611de691906143aa565b811015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614571565b60405180910390fd5b670de0b6b3a764000081611e3c9190614321565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611e68612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906142d2565b60405180910390fd5b620186a06001611f05610cbd565b611f0f9190614321565b611f1991906143aa565b821015611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614603565b60405180910390fd5b6103e86005611f68610cbd565b611f729190614321565b611f7c91906143aa565b821115611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614695565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061206b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906142d2565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61212a612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614727565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846123049190614747565b905083811015612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906147e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124329061490d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125199190614050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90614a31565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126aa5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614ac3565b60405180910390fd5b6000811415612703576126fe838360006133a8565b61329e565b600b60009054906101000a900460ff1615612dc6576127206116aa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561278e575061275e6116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612801575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a5750600560149054906101000a900460ff16155b15612dc557600b60019054906101000a900460ff1661291457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128d45750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b2f565b60405180910390fd5b5b600f60009054906101000a900460ff1615612adc576129316116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129b857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a1057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612adb5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90614be7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b7f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2657600854811115612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614c79565b60405180910390fd5b600a54612bd583611281565b82612be09190614747565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614ce5565b60405180910390fd5b612dc4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc95750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d1857600854811115612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a90614d77565b60405180910390fd5b612dc3565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dc257600a54612d7583611281565b82612d809190614747565b1115612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614ce5565b60405180910390fd5b5b5b5b5b5b6000612dd130611281565b905060006009548210159050808015612df65750600b60029054906101000a900460ff165b8015612e0f5750600560149054906101000a900460ff16155b8015612e655750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f115750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f55576001600560146101000a81548160ff021916908315150217905550612f3961363d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061300b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561301557600090505b6000811561328e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307857506000601454115b15613145576130a560646130976014548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601454601654826130b89190614321565b6130c291906143aa565b601960008282546130d39190614747565b92505081905550601454601754826130eb9190614321565b6130f591906143aa565b601a60008282546131069190614747565b925050819055506014546015548261311e9190614321565b61312891906143aa565b601860008282546131399190614747565b9250508190555061326a565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a057506000601054115b15613269576131cd60646131bf6010548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601054601254826131e09190614321565b6131ea91906143aa565b601960008282546131fb9190614747565b92505081905550601054601354826132139190614321565b61321d91906143aa565b601a600082825461322e9190614747565b92505081905550601054601154826132469190614321565b61325091906143aa565b601860008282546132619190614747565b925050819055505b5b600081111561327f5761327e8730836133a8565b5b808561328b9190614d97565b94505b6132998787876133a8565b505050505b505050565b60008383111582906132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29190613e69565b60405180910390fd5b50600083856132fa9190614d97565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340f9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614a31565b60405180910390fd5b6134938383836139e9565b6134fe81604051806060016040528060268152602001615197602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613591816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136309190614050565b60405180910390a3505050565b600061364830611281565b90506000601a5460185460195461365f9190614747565b6136699190614747565b905060008083148061367b5750600082145b1561368857505050613922565b60146009546136979190614321565b8311156136b05760146009546136ad9190614321565b92505b6000600283601954866136c39190614321565b6136cd91906143aa565b6136d791906143aa565b905060006136ee82866139ee90919063ffffffff16565b905060004790506136fe82613a38565b600061371382476139ee90919063ffffffff16565b9050600061373e876137306018548561392490919063ffffffff16565b61399f90919063ffffffff16565b905060006137698861375b601a548661392490919063ffffffff16565b61399f90919063ffffffff16565b9050600081838561377a9190614d97565b6137849190614d97565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614dfc565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508098505060008711801561383c5750600081115b156138895761384b8782613c84565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161388093929190614e11565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138cf90614dfc565b60006040518083038185875af1925050503d806000811461390c576040519150601f19603f3d011682016040523d82523d6000602084013e613911565b606091505b505080985050505050505050505050505b565b6000808314156139375760009050613999565b600082846139459190614321565b905082848261395491906143aa565b14613994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398b90614eba565b60405180910390fd5b809150505b92915050565b60006139e183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d6d565b905092915050565b505050565b6000613a3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132a3565b905092915050565b6000600267ffffffffffffffff811115613a5557613a54614eda565b5b604051908082528060200260200182016040528015613a835781602001602082028036833780820191505090505b5090503081600081518110613a9b57613a9a614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b3b57600080fd5b505afa158015613b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b739190614f4d565b81600181518110613b8757613b86614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bec307f00000000000000000000000000000000000000000000000000000000000000008461235b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c4e959493929190615073565b600060405180830381600087803b158015613c6857600080fd5b505af1158015613c7c573d6000803e3d6000fd5b505050505050565b613caf307f00000000000000000000000000000000000000000000000000000000000000008461235b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613d14969594939291906150cd565b6060604051808303818588803b158015613d2d57600080fd5b505af1158015613d41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d669190615143565b5050505050565b60008083118290613db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dab9190613e69565b60405180910390fd5b5060008385613dc391906143aa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e0a578082015181840152602081019050613def565b83811115613e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3b82613dd0565b613e458185613ddb565b9350613e55818560208601613dec565b613e5e81613e1f565b840191505092915050565b60006020820190508181036000830152613e838184613e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebb82613e90565b9050919050565b613ecb81613eb0565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b6000819050919050565b613f0181613eee565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a613e8b565b5b6000613f4985828601613ed9565b9250506020613f5a85828601613f0f565b9150509250929050565b60008115159050919050565b613f7981613f64565b82525050565b6000602082019050613f946000830184613f70565b92915050565b600060208284031215613fb057613faf613e8b565b5b6000613fbe84828501613ed9565b91505092915050565b6000819050919050565b6000613fec613fe7613fe284613e90565b613fc7565b613e90565b9050919050565b6000613ffe82613fd1565b9050919050565b600061401082613ff3565b9050919050565b61402081614005565b82525050565b600060208201905061403b6000830184614017565b92915050565b61404a81613eee565b82525050565b60006020820190506140656000830184614041565b92915050565b60006020828403121561408157614080613e8b565b5b600061408f84828501613f0f565b91505092915050565b6000806000606084860312156140b1576140b0613e8b565b5b60006140bf86828701613ed9565b93505060206140d086828701613ed9565b92505060406140e186828701613f0f565b9150509250925092565b6140f481613f64565b81146140ff57600080fd5b50565b600081359050614111816140eb565b92915050565b6000806040838503121561412e5761412d613e8b565b5b600061413c85828601613ed9565b925050602061414d85828601614102565b9150509250929050565b600060ff82169050919050565b61416d81614157565b82525050565b60006020820190506141886000830184614164565b92915050565b61419781613eb0565b82525050565b60006020820190506141b2600083018461418e565b92915050565b6000602082840312156141ce576141cd613e8b565b5b60006141dc84828501614102565b91505092915050565b600080604083850312156141fc576141fb613e8b565b5b600061420a85828601613ed9565b925050602061421b85828601613ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426c57607f821691505b602082108114156142805761427f614225565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613ddb565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061432c82613eee565b915061433783613eee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f6142f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b582613eee565b91506143c083613eee565b9250826143d0576143cf61437b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614437602f83613ddb565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c9603983613ddb565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061455b602483613ddb565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ed603583613ddb565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061467f603483613ddb565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614711602683613ddb565b915061471c826146b5565b604082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b600061475282613eee565b915061475d83613eee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614792576147916142f2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147d3601b83613ddb565b91506147de8261479d565b602082019050919050565b60006020820190508181036000830152614802816147c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614865602483613ddb565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148f7602283613ddb565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614989602583613ddb565b91506149948261492d565b604082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a1b602383613ddb565b9150614a26826149bf565b604082019050919050565b60006020820190508181036000830152614a4a81614a0e565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614aad603183613ddb565b9150614ab882614a51565b604082019050919050565b60006020820190508181036000830152614adc81614aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b19601683613ddb565b9150614b2482614ae3565b602082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd1604983613ddb565b9150614bdc82614b4f565b606082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c63603583613ddb565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ccf601383613ddb565b9150614cda82614c99565b602082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d61603683613ddb565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b6000614da282613eee565b9150614dad83613eee565b925082821015614dc057614dbf6142f2565b5b828203905092915050565b600081905092915050565b50565b6000614de6600083614dcb565b9150614df182614dd6565b600082019050919050565b6000614e0782614dd9565b9150819050919050565b6000606082019050614e266000830186614041565b614e336020830185614041565b614e406040830184614041565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea4602183613ddb565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4781613ec2565b92915050565b600060208284031215614f6357614f62613e8b565b5b6000614f7184828501614f38565b91505092915050565b6000819050919050565b6000614f9f614f9a614f9584614f7a565b613fc7565b613eee565b9050919050565b614faf81614f84565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fea81613eb0565b82525050565b6000614ffc8383614fe1565b60208301905092915050565b6000602082019050919050565b600061502082614fb5565b61502a8185614fc0565b935061503583614fd1565b8060005b8381101561506657815161504d8882614ff0565b975061505883615008565b925050600181019050615039565b5085935050505092915050565b600060a0820190506150886000830188614041565b6150956020830187614fa6565b81810360408301526150a78186615015565b90506150b6606083018561418e565b6150c36080830184614041565b9695505050505050565b600060c0820190506150e2600083018961418e565b6150ef6020830188614041565b6150fc6040830187614fa6565b6151096060830186614fa6565b615116608083018561418e565b61512360a0830184614041565b979650505050505050565b60008151905061513d81613ef8565b92915050565b60008060006060848603121561515c5761515b613e8b565b5b600061516a8682870161512e565b935050602061517b8682870161512e565b925050604061518c8682870161512e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220101d1e9a8795fc4509c082d5cc9b3309b9006a63ab0beaf625aa609889a9fa8f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb9190613e69565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613f24565b610c5b565b6040516103389190613f7f565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613f9a565b610c79565b6040516103759190613f7f565b60405180910390f35b34801561038a57600080fd5b50610393610c99565b6040516103a09190614026565b60405180910390f35b3480156103b557600080fd5b506103be610cbd565b6040516103cb9190614050565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613f9a565b610cc7565b005b34801561040957600080fd5b50610412610e1e565b60405161041f9190614050565b60405180910390f35b34801561043457600080fd5b5061043d610e24565b60405161044a9190614050565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061406b565b610e2a565b005b34801561048857600080fd5b506104a3600480360381019061049e9190614098565b610f54565b6040516104b09190613f7f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190614117565b61102d565b005b3480156104ee57600080fd5b506104f761111f565b6040516105049190614173565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613f24565b611128565b6040516105419190613f7f565b60405180910390f35b34801561055657600080fd5b5061055f6111db565b60405161056c919061419d565b60405180910390f35b34801561058157600080fd5b5061058a6111ff565b6040516105979190613f7f565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190613f9a565b611212565b6040516105d49190613f7f565b60405180910390f35b3480156105e957600080fd5b506105f2611268565b6040516105ff9190614050565b60405180910390f35b34801561061457600080fd5b5061061d61126e565b60405161062a9190613f7f565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613f9a565b611281565b6040516106679190614050565b60405180910390f35b34801561067c57600080fd5b506106856112c9565b005b34801561069357600080fd5b5061069c611421565b6040516106a99190613f7f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614117565b6114dc565b005b3480156106e757600080fd5b506106f06115ce565b6040516106fd9190614050565b60405180910390f35b34801561071257600080fd5b5061071b6115d4565b005b34801561072957600080fd5b506107326116aa565b60405161073f919061419d565b60405180910390f35b34801561075457600080fd5b5061075d6116d4565b60405161076a9190614050565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906141b8565b6116da565b005b3480156107a857600080fd5b506107b161178e565b6040516107be9190613e69565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614117565b611820565b005b3480156107fc57600080fd5b50610805611954565b6040516108129190614050565b60405180910390f35b34801561082757600080fd5b5061083061195a565b60405161083d9190614050565b60405180910390f35b34801561085257600080fd5b5061085b611960565b6040516108689190614050565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613f24565b611966565b6040516108a59190613f7f565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613f24565b611a33565b6040516108e29190613f7f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613f9a565b611a51565b005b34801561092057600080fd5b5061093b60048036038101906109369190613f9a565b611ba8565b6040516109489190613f7f565b60405180910390f35b34801561095d57600080fd5b50610966611bc8565b6040516109739190613f7f565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614117565b611bdb565b005b3480156109b157600080fd5b506109cc60048036038101906109c7919061406b565b611d1b565b005b3480156109da57600080fd5b506109e3611e45565b6040516109f09190613f7f565b60405180910390f35b348015610a0557600080fd5b50610a0e611e58565b604051610a1b9190614050565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a46919061406b565b611e5e565b604051610a589190613f7f565b60405180910390f35b348015610a6d57600080fd5b50610a76611fce565b604051610a839190614050565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906141e5565b611fd4565b604051610ac09190614050565b60405180910390f35b348015610ad557600080fd5b50610ade61205b565b604051610aeb9190614050565b60405180910390f35b348015610b0057600080fd5b50610b09612061565b604051610b169190613f7f565b60405180910390f35b348015610b2b57600080fd5b50610b3461211c565b604051610b419190614050565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c9190613f9a565b612122565b005b348015610b7f57600080fd5b50610b886122e9565b604051610b959190614050565b60405180910390f35b348015610baa57600080fd5b50610bb36122ef565b604051610bc09190614050565b60405180910390f35b606060038054610bd890614254565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0490614254565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b6000610c6f610c68612353565b848461235b565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ccf612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906142d2565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e32612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906142d2565b60405180910390fd5b670de0b6b3a76400006103e86001610ed7610cbd565b610ee19190614321565b610eeb91906143aa565b610ef591906143aa565b811015610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e9061444d565b60405180910390fd5b670de0b6b3a764000081610f4b9190614321565b60088190555050565b6000610f61848484612526565b61102284610f6d612353565b61101d856040518060600160405280602881526020016151bd60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd3612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b600190509392505050565b611035612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906142d2565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006111d1611135612353565b846111cc8560016000611146612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b61235b565b6001905092915050565b7f00000000000000000000000011d69d176daa3ec25e0cf7462b6030a637e689ee81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d1612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611357906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061142b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b1906142d2565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114e4612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a906142d2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6115dc612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906142d2565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6116e2612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611771576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611768906142d2565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461179d90614254565b80601f01602080910402602001604051908101604052809291908181526020018280546117c990614254565b80156118165780601f106117eb57610100808354040283529160200191611816565b820191906000526020600020905b8154815290600101906020018083116117f957829003601f168201915b5050505050905090565b611828612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906142d2565b60405180910390fd5b7f00000000000000000000000011d69d176daa3ec25e0cf7462b6030a637e689ee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d906144df565b60405180910390fd5b6119508282613307565b5050565b60135481565b601a5481565b60175481565b6000611a29611973612353565b84611a24856040518060600160405280602581526020016151e5602591396001600061199d612353565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b61235b565b6001905092915050565b6000611a47611a40612353565b8484612526565b6001905092915050565b611a59612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf906142d2565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be3612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c69906142d2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d0f9190613f7f565b60405180910390a25050565b611d23612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da9906142d2565b60405180910390fd5b670de0b6b3a76400006103e86005611dc8610cbd565b611dd29190614321565b611ddc91906143aa565b611de691906143aa565b811015611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90614571565b60405180910390fd5b670de0b6b3a764000081611e3c9190614321565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611e68612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee906142d2565b60405180910390fd5b620186a06001611f05610cbd565b611f0f9190614321565b611f1991906143aa565b821015611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5290614603565b60405180910390fd5b6103e86005611f68610cbd565b611f729190614321565b611f7c91906143aa565b821115611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb590614695565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061206b612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906142d2565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61212a612353565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b0906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614727565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846123049190614747565b905083811015612349576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612340906147e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124329061490d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516125199190614050565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90614a31565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126aa5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614ac3565b60405180910390fd5b6000811415612703576126fe838360006133a8565b61329e565b600b60009054906101000a900460ff1615612dc6576127206116aa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561278e575061275e6116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612801575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a5750600560149054906101000a900460ff16155b15612dc557600b60019054906101000a900460ff1661291457601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128d45750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290a90614b2f565b60405180910390fd5b5b600f60009054906101000a900460ff1615612adc576129316116aa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129b857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a1057507f00000000000000000000000011d69d176daa3ec25e0cf7462b6030a637e689ee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612adb5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8d90614be7565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b7f5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c2657600854811115612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090614c79565b60405180910390fd5b600a54612bd583611281565b82612be09190614747565b1115612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1890614ce5565b60405180910390fd5b612dc4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc95750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d1857600854811115612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a90614d77565b60405180910390fd5b612dc3565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dc257600a54612d7583611281565b82612d809190614747565b1115612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614ce5565b60405180910390fd5b5b5b5b5b5b6000612dd130611281565b905060006009548210159050808015612df65750600b60029054906101000a900460ff165b8015612e0f5750600560149054906101000a900460ff16155b8015612e655750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebb5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f115750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f55576001600560146101000a81548160ff021916908315150217905550612f3961363d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061300b5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561301557600090505b6000811561328e57601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561307857506000601454115b15613145576130a560646130976014548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601454601654826130b89190614321565b6130c291906143aa565b601960008282546130d39190614747565b92505081905550601454601754826130eb9190614321565b6130f591906143aa565b601a60008282546131069190614747565b925050819055506014546015548261311e9190614321565b61312891906143aa565b601860008282546131399190614747565b9250508190555061326a565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131a057506000601054115b15613269576131cd60646131bf6010548861392490919063ffffffff16565b61399f90919063ffffffff16565b9050601054601254826131e09190614321565b6131ea91906143aa565b601960008282546131fb9190614747565b92505081905550601054601354826132139190614321565b61321d91906143aa565b601a600082825461322e9190614747565b92505081905550601054601154826132469190614321565b61325091906143aa565b601860008282546132619190614747565b925050819055505b5b600081111561327f5761327e8730836133a8565b5b808561328b9190614d97565b94505b6132998787876133a8565b505050505b505050565b60008383111582906132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29190613e69565b60405180910390fd5b50600083856132fa9190614d97565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340f9061499f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347f90614a31565b60405180910390fd5b6134938383836139e9565b6134fe81604051806060016040528060268152602001615197602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132a39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613591816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136309190614050565b60405180910390a3505050565b600061364830611281565b90506000601a5460185460195461365f9190614747565b6136699190614747565b905060008083148061367b5750600082145b1561368857505050613922565b60146009546136979190614321565b8311156136b05760146009546136ad9190614321565b92505b6000600283601954866136c39190614321565b6136cd91906143aa565b6136d791906143aa565b905060006136ee82866139ee90919063ffffffff16565b905060004790506136fe82613a38565b600061371382476139ee90919063ffffffff16565b9050600061373e876137306018548561392490919063ffffffff16565b61399f90919063ffffffff16565b905060006137698861375b601a548661392490919063ffffffff16565b61399f90919063ffffffff16565b9050600081838561377a9190614d97565b6137849190614d97565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614dfc565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508098505060008711801561383c5750600081115b156138895761384b8782613c84565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161388093929190614e11565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138cf90614dfc565b60006040518083038185875af1925050503d806000811461390c576040519150601f19603f3d011682016040523d82523d6000602084013e613911565b606091505b505080985050505050505050505050505b565b6000808314156139375760009050613999565b600082846139459190614321565b905082848261395491906143aa565b14613994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398b90614eba565b60405180910390fd5b809150505b92915050565b60006139e183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d6d565b905092915050565b505050565b6000613a3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132a3565b905092915050565b6000600267ffffffffffffffff811115613a5557613a54614eda565b5b604051908082528060200260200182016040528015613a835781602001602082028036833780820191505090505b5090503081600081518110613a9b57613a9a614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b3b57600080fd5b505afa158015613b4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b739190614f4d565b81600181518110613b8757613b86614f09565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461235b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c4e959493929190615073565b600060405180830381600087803b158015613c6857600080fd5b505af1158015613c7c573d6000803e3d6000fd5b505050505050565b613caf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461235b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613d14969594939291906150cd565b6060604051808303818588803b158015613d2d57600080fd5b505af1158015613d41573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d669190615143565b5050505050565b60008083118290613db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dab9190613e69565b60405180910390fd5b5060008385613dc391906143aa565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e0a578082015181840152602081019050613def565b83811115613e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e3b82613dd0565b613e458185613ddb565b9350613e55818560208601613dec565b613e5e81613e1f565b840191505092915050565b60006020820190508181036000830152613e838184613e30565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebb82613e90565b9050919050565b613ecb81613eb0565b8114613ed657600080fd5b50565b600081359050613ee881613ec2565b92915050565b6000819050919050565b613f0181613eee565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a613e8b565b5b6000613f4985828601613ed9565b9250506020613f5a85828601613f0f565b9150509250929050565b60008115159050919050565b613f7981613f64565b82525050565b6000602082019050613f946000830184613f70565b92915050565b600060208284031215613fb057613faf613e8b565b5b6000613fbe84828501613ed9565b91505092915050565b6000819050919050565b6000613fec613fe7613fe284613e90565b613fc7565b613e90565b9050919050565b6000613ffe82613fd1565b9050919050565b600061401082613ff3565b9050919050565b61402081614005565b82525050565b600060208201905061403b6000830184614017565b92915050565b61404a81613eee565b82525050565b60006020820190506140656000830184614041565b92915050565b60006020828403121561408157614080613e8b565b5b600061408f84828501613f0f565b91505092915050565b6000806000606084860312156140b1576140b0613e8b565b5b60006140bf86828701613ed9565b93505060206140d086828701613ed9565b92505060406140e186828701613f0f565b9150509250925092565b6140f481613f64565b81146140ff57600080fd5b50565b600081359050614111816140eb565b92915050565b6000806040838503121561412e5761412d613e8b565b5b600061413c85828601613ed9565b925050602061414d85828601614102565b9150509250929050565b600060ff82169050919050565b61416d81614157565b82525050565b60006020820190506141886000830184614164565b92915050565b61419781613eb0565b82525050565b60006020820190506141b2600083018461418e565b92915050565b6000602082840312156141ce576141cd613e8b565b5b60006141dc84828501614102565b91505092915050565b600080604083850312156141fc576141fb613e8b565b5b600061420a85828601613ed9565b925050602061421b85828601613ed9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061426c57607f821691505b602082108114156142805761427f614225565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613ddb565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061432c82613eee565b915061433783613eee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143705761436f6142f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b582613eee565b91506143c083613eee565b9250826143d0576143cf61437b565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614437602f83613ddb565b9150614442826143db565b604082019050919050565b600060208201905081810360008301526144668161442a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006144c9603983613ddb565b91506144d48261446d565b604082019050919050565b600060208201905081810360008301526144f8816144bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061455b602483613ddb565b9150614566826144ff565b604082019050919050565b6000602082019050818103600083015261458a8161454e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ed603583613ddb565b91506145f882614591565b604082019050919050565b6000602082019050818103600083015261461c816145e0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061467f603483613ddb565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614711602683613ddb565b915061471c826146b5565b604082019050919050565b6000602082019050818103600083015261474081614704565b9050919050565b600061475282613eee565b915061475d83613eee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614792576147916142f2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006147d3601b83613ddb565b91506147de8261479d565b602082019050919050565b60006020820190508181036000830152614802816147c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614865602483613ddb565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148f7602283613ddb565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614989602583613ddb565b91506149948261492d565b604082019050919050565b600060208201905081810360008301526149b88161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a1b602383613ddb565b9150614a26826149bf565b604082019050919050565b60006020820190508181036000830152614a4a81614a0e565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614aad603183613ddb565b9150614ab882614a51565b604082019050919050565b60006020820190508181036000830152614adc81614aa0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b19601683613ddb565b9150614b2482614ae3565b602082019050919050565b60006020820190508181036000830152614b4881614b0c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614bd1604983613ddb565b9150614bdc82614b4f565b606082019050919050565b60006020820190508181036000830152614c0081614bc4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c63603583613ddb565b9150614c6e82614c07565b604082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ccf601383613ddb565b9150614cda82614c99565b602082019050919050565b60006020820190508181036000830152614cfe81614cc2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614d61603683613ddb565b9150614d6c82614d05565b604082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b6000614da282613eee565b9150614dad83613eee565b925082821015614dc057614dbf6142f2565b5b828203905092915050565b600081905092915050565b50565b6000614de6600083614dcb565b9150614df182614dd6565b600082019050919050565b6000614e0782614dd9565b9150819050919050565b6000606082019050614e266000830186614041565b614e336020830185614041565b614e406040830184614041565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ea4602183613ddb565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614f4781613ec2565b92915050565b600060208284031215614f6357614f62613e8b565b5b6000614f7184828501614f38565b91505092915050565b6000819050919050565b6000614f9f614f9a614f9584614f7a565b613fc7565b613eee565b9050919050565b614faf81614f84565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614fea81613eb0565b82525050565b6000614ffc8383614fe1565b60208301905092915050565b6000602082019050919050565b600061502082614fb5565b61502a8185614fc0565b935061503583614fd1565b8060005b8381101561506657815161504d8882614ff0565b975061505883615008565b925050600181019050615039565b5085935050505092915050565b600060a0820190506150886000830188614041565b6150956020830187614fa6565b81810360408301526150a78186615015565b90506150b6606083018561418e565b6150c36080830184614041565b9695505050505050565b600060c0820190506150e2600083018961418e565b6150ef6020830188614041565b6150fc6040830187614fa6565b6151096060830186614fa6565b615116608083018561418e565b61512360a0830184614041565b979650505050505050565b60008151905061513d81613ef8565b92915050565b60008060006060848603121561515c5761515b613e8b565b5b600061516a8682870161512e565b935050602061517b8682870161512e565b925050604061518c8682870161512e565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220101d1e9a8795fc4509c082d5cc9b3309b9006a63ab0beaf625aa609889a9fa8f64736f6c63430008090033

Deployed Bytecode Sourcemap

29451:14684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9723:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30983:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29530:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8672:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36972:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30697:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30657;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35150:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10375:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36159:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8513:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11140:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29588:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29856:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37141:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30511:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29935:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8844:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22051:148;;;;;;;;;;;;;:::i;:::-;;34367:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30403:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34166:148;;;;;;;;;;;;;:::i;:::-;;21407:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30546:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35858:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7769:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36303:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30477:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30737:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30622:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11862:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9185:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36755:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31206:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29896:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35968:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35393:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30320:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29740:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34755:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30369:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29782:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34549:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30440:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22355:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30584:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29822:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7549:100;7603:13;7636:5;7629:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549:100;:::o;9723:169::-;9806:4;9823:39;9832:12;:10;:12::i;:::-;9846:7;9855:6;9823:8;:39::i;:::-;9880:4;9873:11;;9723:169;;;;:::o;30983:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29530:51::-;;;:::o;8672:108::-;8733:7;8760:12;;8753:19;;8672:108;:::o;36972:157::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37079:9:::1;;;;;;;;;;;37051:38;;37068:9;37051:38;;;;;;;;;;;;37112:9;37100;;:21;;;;;;;;;;;;;;;;;;36972:157:::0;:::o;30697:33::-;;;;:::o;30657:::-;;;;:::o;35150:234::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35269:4:::1;35263;35259:1;35243:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35242:31;;;;:::i;:::-;35232:6;:41;;35224:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35369:6;35359;:17;;;;:::i;:::-;35336:20;:40;;;;35150:234:::0;:::o;10375:355::-;10515:4;10532:36;10542:6;10550:9;10561:6;10532:9;:36::i;:::-;10579:121;10588:6;10596:12;:10;:12::i;:::-;10610:89;10648:6;10610:89;;;;;;;;;;;;;;;;;:11;:19;10622:6;10610:19;;;;;;;;;;;;;;;:33;10630:12;:10;:12::i;:::-;10610:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10579:8;:121::i;:::-;10718:4;10711:11;;10375:355;;;;;:::o;36159:135::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36273:13:::1;36251:10;:19;36262:7;36251:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36159:135:::0;;:::o;8513:93::-;8571:5;8596:2;8589:9;;8513:93;:::o;11140:218::-;11228:4;11245:83;11254:12;:10;:12::i;:::-;11268:7;11277:50;11316:10;11277:11;:25;11289:12;:10;:12::i;:::-;11277:25;;;;;;;;;;;;;;;:34;11303:7;11277:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11245:8;:83::i;:::-;11346:4;11339:11;;11140:218;;;;:::o;29588:38::-;;;:::o;29856:33::-;;;;;;;;;;;;;:::o;37141:125::-;37206:4;37230:19;:28;37250:7;37230:28;;;;;;;;;;;;;;;;;;;;;;;;;37223:35;;37141:125;;;:::o;30511:28::-;;;;:::o;29935:30::-;;;;;;;;;;;;;:::o;8844:127::-;8918:7;8945:9;:18;8955:7;8945:18;;;;;;;;;;;;;;;;8938:25;;8844:127;;;:::o;22051:148::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22158:1:::1;22121:40;;22142:6;;;;;;;;;;;22121:40;;;;;;;;;;;;22189:1;22172:6;;:19;;;;;;;;;;;;;;;;;;22051:148::o:0;34367:120::-;34419:4;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34452:5:::1;34435:14;;:22;;;;;;;;;;;;;;;;;;34475:4;34468:11;;34367:120:::0;:::o;35617:144::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35749:4:::1;35707:31;:39;35739:6;35707:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35617:144:::0;;:::o;30403:30::-;;;;:::o;34166:148::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34237:4:::1;34221:13;;:20;;;;;;;;;;;;;;;;;;34266:4;34252:11;;:18;;;;;;;;;;;;;;;;;;34294:12;34281:10;:25;;;;34166:148::o:0;21407:79::-;21445:7;21472:6;;;;;;;;;;;21465:13;;21407:79;:::o;30546:31::-;;;;:::o;35858:101::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35944:7:::1;35930:11;;:21;;;;;;;;;;;;;;;;;;35858:101:::0;:::o;7769:104::-;7825:13;7858:7;7851:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7769:104;:::o;36303:245::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36410:13:::1;36402:21;;:4;:21;;;;36394:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36499:41;36528:4;36534:5;36499:28;:41::i;:::-;36303:245:::0;;:::o;30477:24::-;;;;:::o;30737:27::-;;;;:::o;30622:25::-;;;;:::o;11862:269::-;11955:4;11972:129;11981:12;:10;:12::i;:::-;11995:7;12004:96;12043:15;12004:96;;;;;;;;;;;;;;;;;:11;:25;12016:12;:10;:12::i;:::-;12004:25;;;;;;;;;;;;;;;:34;12030:7;12004:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11972:8;:129::i;:::-;12119:4;12112:11;;11862:269;;;;:::o;9185:175::-;9271:4;9288:42;9298:12;:10;:12::i;:::-;9312:9;9323:6;9288:9;:42::i;:::-;9348:4;9341:11;;9185:175;;;;:::o;36755:208::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36892:15:::1;;;;;;;;;;;36849:59;;36872:18;36849:59;;;;;;;;;;;;36937:18;36919:15;;:36;;;;;;;;;;;;;;;;;;36755:208:::0;:::o;31206:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29896:32::-;;;;;;;;;;;;;:::o;35968:182::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36084:8:::1;36053:19;:28;36073:7;36053:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36124:7;36108:34;;;36133:8;36108:34;;;;;;:::i;:::-;;;;;;;;35968:182:::0;;:::o;35393:215::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35515:4:::1;35509;35505:1;35489:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35488:31;;;;:::i;:::-;35478:6;:41;;35470:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35593:6;35583;:17;;;;:::i;:::-;35571:9;:29;;;;35393:215:::0;:::o;30320:39::-;;;;;;;;;;;;;:::o;29740:35::-;;;;:::o;34755:386::-;34836:4;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34893:6:::1;34889:1;34873:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34860:9;:39;;34852:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35009:4;35005:1;34989:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34976:9;:37;;34968:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35102:9;35081:18;:30;;;;35129:4;35122:11;;34755:386:::0;;;:::o;30369:27::-;;;;:::o;9424:151::-;9513:7;9540:11;:18;9552:5;9540:18;;;;;;;;;;;;;;;:27;9559:7;9540:27;;;;;;;;;;;;;;;;9533:34;;9424:151;;;;:::o;29782:33::-;;;;:::o;34549:134::-;34609:4;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34648:5:::1;34625:20;;:28;;;;;;;;;;;;;;;;;;34671:4;34664:11;;34549:134:::0;:::o;30440:30::-;;;;:::o;22355:244::-;21630:12;:10;:12::i;:::-;21620:22;;:6;;;;;;;;;;;:22;;;21612:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22464:1:::1;22444:22;;:8;:22;;;;22436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22554:8;22525:38;;22546:6;;;;;;;;;;;22525:38;;;;;;;;;;;;22583:8;22574:6;;:17;;;;;;;;;;;;;;;;;;22355:244:::0;:::o;30584:31::-;;;;:::o;29822:24::-;;;;:::o;16439:182::-;16497:7;16517:9;16533:1;16529;:5;;;;:::i;:::-;16517:17;;16558:1;16553;:6;;16545:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16612:1;16605:8;;;16439:182;;;;:::o;240:98::-;293:7;320:10;313:17;;240:98;:::o;15058:381::-;15211:1;15194:19;;:5;:19;;;;15186:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15292:1;15273:21;;:7;:21;;;;15265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15377:6;15347:11;:18;15359:5;15347:18;;;;;;;;;;;;;;;:27;15366:7;15347:27;;;;;;;;;;;;;;;:36;;;;15415:7;15399:32;;15408:5;15399:32;;;15424:6;15399:32;;;;;;:::i;:::-;;;;;;;;15058:381;;;:::o;37275:4145::-;37423:1;37407:18;;:4;:18;;;;37399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37500:1;37486:16;;:2;:16;;;;37478:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37562:10;:14;37573:2;37562:14;;;;;;;;;;;;;;;;;;;;;;;;;37561:15;:36;;;;;37581:10;:16;37592:4;37581:16;;;;;;;;;;;;;;;;;;;;;;;;;37580:17;37561:36;37553:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;37676:1;37666:6;:11;37663:92;;;37694:28;37710:4;37716:2;37720:1;37694:15;:28::i;:::-;37737:7;;37663:92;37771:14;;;;;;;;;;;37768:1811;;;37831:7;:5;:7::i;:::-;37823:15;;:4;:15;;;;:49;;;;;37865:7;:5;:7::i;:::-;37859:13;;:2;:13;;;;37823:49;:86;;;;;37907:1;37893:16;;:2;:16;;;;37823:86;:128;;;;;37944:6;37930:21;;:2;:21;;;;37823:128;:158;;;;;37973:8;;;;;;;;;;;37972:9;37823:158;37801:1767;;;38019:13;;;;;;;;;;;38015:148;;38064:19;:25;38084:4;38064:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38093:19;:23;38113:2;38093:23;;;;;;;;;;;;;;;;;;;;;;;;;38064:52;38056:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38015:148;38322:20;;;;;;;;;;;38318:423;;;38376:7;:5;:7::i;:::-;38370:13;;:2;:13;;;;:47;;;;;38401:15;38387:30;;:2;:30;;;;38370:47;:79;;;;;38435:13;38421:28;;:2;:28;;;;38370:79;38366:356;;;38527:12;38485:28;:39;38514:9;38485:39;;;;;;;;;;;;;;;;:54;38477:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38686:12;38644:28;:39;38673:9;38644:39;;;;;;;;;;;;;;;:54;;;;38366:356;38318:423;38794:25;:31;38820:4;38794:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38830:31;:35;38862:2;38830:35;;;;;;;;;;;;;;;;;;;;;;;;;38829:36;38794:71;38790:763;;;38912:20;;38902:6;:30;;38894:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;39051:9;;39034:13;39044:2;39034:9;:13::i;:::-;39025:6;:22;;;;:::i;:::-;:35;;39017:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38790:763;;;39163:25;:29;39189:2;39163:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39197:31;:37;39229:4;39197:37;;;;;;;;;;;;;;;;;;;;;;;;;39196:38;39163:71;39159:394;;;39281:20;;39271:6;:30;;39263:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39159:394;;;39407:31;:35;39439:2;39407:35;;;;;;;;;;;;;;;;;;;;;;;;;39403:150;;39500:9;;39483:13;39493:2;39483:9;:13::i;:::-;39474:6;:22;;;;:::i;:::-;:35;;39466:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39403:150;39159:394;38790:763;37801:1767;37768:1811;39592:28;39623:24;39641:4;39623:9;:24::i;:::-;39592:55;;39661:12;39700:18;;39676:20;:42;;39661:57;;39750:7;:35;;;;;39774:11;;;;;;;;;;;39750:35;:61;;;;;39803:8;;;;;;;;;;;39802:9;39750:61;:110;;;;;39829:25;:31;39855:4;39829:31;;;;;;;;;;;;;;;;;;;;;;;;;39828:32;39750:110;:153;;;;;39878:19;:25;39898:4;39878:25;;;;;;;;;;;;;;;;;;;;;;;;;39877:26;39750:153;:194;;;;;39921:19;:23;39941:2;39921:23;;;;;;;;;;;;;;;;;;;;;;;;;39920:24;39750:194;39732:328;;;39982:4;39971:8;;:15;;;;;;;;;;;;;;;;;;40004:10;:8;:10::i;:::-;40043:5;40032:8;;:16;;;;;;;;;;;;;;;;;;39732:328;40073:12;40089:8;;;;;;;;;;;40088:9;40073:24;;40199:19;:25;40219:4;40199:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40228:19;:23;40248:2;40228:23;;;;;;;;;;;;;;;;;;;;;;;;;40199:52;40196:99;;;40278:5;40268:15;;40196:99;40308:12;40412:7;40409:957;;;40463:25;:29;40489:2;40463:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40512:1;40496:13;;:17;40463:50;40459:754;;;40540:34;40570:3;40540:25;40551:13;;40540:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40533:41;;40641:13;;40622:16;;40615:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40593:18;;:61;;;;;;;:::i;:::-;;;;;;;;40709:13;;40696:10;;40689:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40673:12;;:49;;;;;;;:::i;:::-;;;;;;;;40789:13;;40770:16;;40763:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40741:18;;:61;;;;;;;:::i;:::-;;;;;;;;40459:754;;;40863:25;:31;40889:4;40863:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40913:1;40898:12;;:16;40863:51;40860:353;;;40942:33;40971:3;40942:24;40953:12;;40942:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40935:40;;41041:12;;41023:15;;41016:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40994:18;;:59;;;;;;;:::i;:::-;;;;;;;;41107:12;;41095:9;;41088:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41072:12;;:47;;;;;;;:::i;:::-;;;;;;;;41185:12;;41167:15;;41160:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41138:18;;:59;;;;;;;:::i;:::-;;;;;;;;40860:353;40459:754;41240:1;41233:4;:8;41230:93;;;41265:42;41281:4;41295;41302;41265:15;:42::i;:::-;41230:93;41350:4;41340:14;;;;;:::i;:::-;;;40409:957;41379:33;41395:4;41401:2;41405:6;41379:15;:33::i;:::-;37388:4032;;;;37275:4145;;;;:::o;17345:193::-;17431:7;17464:1;17459;:6;;17467:12;17451:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17491:9;17507:1;17503;:5;;;;:::i;:::-;17491:17;;17529:1;17522:8;;;17345:193;;;;;:::o;36557:189::-;36674:5;36640:25;:31;36666:4;36640:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36732:5;36698:40;;36726:4;36698:40;;;;;;;;;;;;36557:189;;:::o;12622:575::-;12780:1;12762:20;;:6;:20;;;;12754:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12864:1;12843:23;;:9;:23;;;;12835:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12920:47;12941:6;12949:9;12960:6;12920:20;:47::i;:::-;13001:71;13023:6;13001:71;;;;;;;;;;;;;;;;;:9;:17;13011:6;13001:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12981:9;:17;12991:6;12981:17;;;;;;;;;;;;;;;:91;;;;13106:32;13131:6;13106:9;:20;13116:9;13106:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13083:9;:20;13093:9;13083:20;;;;;;;;;;;;;;;:55;;;;13171:9;13154:35;;13163:6;13154:35;;;13182:6;13154:35;;;;;;:::i;:::-;;;;;;;;12622:575;;;:::o;42564:1568::-;42603:23;42629:24;42647:4;42629:9;:24::i;:::-;42603:50;;42664:25;42734:12;;42713:18;;42692;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42664:82;;42757:12;42805:1;42786:15;:20;:46;;;;42831:1;42810:17;:22;42786:46;42783:60;;;42835:7;;;;;42783:60;42898:2;42877:18;;:23;;;;:::i;:::-;42859:15;:41;42856:111;;;42953:2;42932:18;;:23;;;;:::i;:::-;42914:41;;42856:111;43029:23;43114:1;43094:17;43073:18;;43055:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43029:86;;43126:26;43155:36;43175:15;43155;:19;;:36;;;;:::i;:::-;43126:65;;43205:25;43233:21;43205:49;;43268:36;43285:18;43268:16;:36::i;:::-;43319:18;43340:44;43366:17;43340:21;:25;;:44;;;;:::i;:::-;43319:65;;43398:23;43424:57;43463:17;43424:34;43439:18;;43424:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43398:83;;43492:17;43512:51;43545:17;43512:28;43527:12;;43512:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43492:71;;43574:23;43631:9;43613:15;43600:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43574:66;;43678:1;43657:18;:22;;;;43711:1;43690:18;:22;;;;43738:1;43723:12;:16;;;;43774:9;;;;;;;;;;;43766:23;;43797:9;43766:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43753:58;;;;;43846:1;43828:15;:19;:42;;;;;43869:1;43851:15;:19;43828:42;43825:210;;;43886:46;43899:15;43916;43886:12;:46::i;:::-;43952:71;43967:18;43987:15;44004:18;;43952:71;;;;;;;;:::i;:::-;;;;;;;;43825:210;44069:15;;;;;;;;;;;44061:29;;44098:21;44061:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44048:76;;;;;42592:1540;;;;;;;;;;42564:1568;:::o;17798:473::-;17856:7;18106:1;18101;:6;18097:47;;;18131:1;18124:8;;;;18097:47;18157:9;18173:1;18169;:5;;;;:::i;:::-;18157:17;;18202:1;18197;18193;:5;;;;:::i;:::-;:10;18185:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18262:1;18255:8;;;17798:473;;;;;:::o;18748:132::-;18806:7;18833:39;18837:1;18840;18833:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18826:46;;18748:132;;;;:::o;16043:125::-;;;;:::o;16905:136::-;16963:7;16990:43;16994:1;16997;16990:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16983:50;;16905:136;;;;:::o;41429:597::-;41558:21;41596:1;41582:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41558:40;;41627:4;41609;41614:1;41609:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41653:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41643:4;41648:1;41643:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41689:62;41706:4;41721:15;41739:11;41689:8;:62::i;:::-;41791:15;:66;;;41872:11;41898:1;41942:4;41969;41989:15;41791:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41484:542;41429:597;:::o;42035:520::-;42183:62;42200:4;42215:15;42233:11;42183:8;:62::i;:::-;42289:15;:31;;;42328:9;42361:4;42381:11;42407:1;42450;42501:4;42521:15;42289:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42035:520;;:::o;19377:279::-;19463:7;19495:1;19491;:5;19498:12;19483:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19522:9;19538:1;19534;:5;;;;:::i;:::-;19522:17;;19647:1;19640:8;;;19377: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:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:244::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:27;12100:2;12092:6;12088:15;12081:52;11896:244;:::o;12146:366::-;12288:3;12309:67;12373:2;12368:3;12309:67;:::i;:::-;12302:74;;12385:93;12474:3;12385:93;:::i;:::-;12503:2;12498:3;12494:12;12487:19;;12146:366;;;:::o;12518:419::-;12684:4;12722:2;12711:9;12707:18;12699:26;;12771:9;12765:4;12761:20;12757:1;12746:9;12742:17;12735:47;12799:131;12925:4;12799:131;:::i;:::-;12791:139;;12518:419;;;:::o;12943:223::-;13083:34;13079:1;13071:6;13067:14;13060:58;13152:6;13147:2;13139:6;13135:15;13128:31;12943:223;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:240::-;14109:34;14105:1;14097:6;14093:14;14086:58;14178:23;14173:2;14165:6;14161:15;14154:48;13969:240;:::o;14215:366::-;14357:3;14378:67;14442:2;14437:3;14378:67;:::i;:::-;14371:74;;14454:93;14543:3;14454:93;:::i;:::-;14572:2;14567:3;14563:12;14556:19;;14215:366;;;:::o;14587:419::-;14753:4;14791:2;14780:9;14776:18;14768:26;;14840:9;14834:4;14830:20;14826:1;14815:9;14811:17;14804:47;14868:131;14994:4;14868:131;:::i;:::-;14860:139;;14587:419;;;:::o;15012:239::-;15152:34;15148:1;15140:6;15136:14;15129:58;15221:22;15216:2;15208:6;15204:15;15197:47;15012:239;:::o;15257:366::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15629:419::-;15795:4;15833:2;15822:9;15818:18;15810:26;;15882:9;15876:4;15872:20;15868:1;15857:9;15853:17;15846:47;15910:131;16036:4;15910:131;:::i;:::-;15902:139;;15629:419;;;:::o;16054:225::-;16194:34;16190:1;16182:6;16178:14;16171:58;16263:8;16258:2;16250:6;16246:15;16239:33;16054:225;:::o;16285:366::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:419::-;16823:4;16861:2;16850:9;16846:18;16838:26;;16910:9;16904:4;16900:20;16896:1;16885:9;16881:17;16874:47;16938:131;17064:4;16938:131;:::i;:::-;16930:139;;16657:419;;;:::o;17082:305::-;17122:3;17141:20;17159:1;17141:20;:::i;:::-;17136:25;;17175:20;17193:1;17175:20;:::i;:::-;17170:25;;17329:1;17261:66;17257:74;17254:1;17251:81;17248:107;;;17335:18;;:::i;:::-;17248:107;17379:1;17376;17372:9;17365:16;;17082:305;;;;:::o;17393:177::-;17533:29;17529:1;17521:6;17517:14;17510:53;17393:177;:::o;17576:366::-;17718:3;17739:67;17803:2;17798:3;17739:67;:::i;:::-;17732:74;;17815:93;17904:3;17815:93;:::i;:::-;17933:2;17928:3;17924:12;17917:19;;17576:366;;;:::o;17948:419::-;18114:4;18152:2;18141:9;18137:18;18129:26;;18201:9;18195:4;18191:20;18187:1;18176:9;18172:17;18165:47;18229:131;18355:4;18229:131;:::i;:::-;18221:139;;17948:419;;;:::o;18373:223::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:6;18577:2;18569:6;18565:15;18558:31;18373:223;:::o;18602:366::-;18744:3;18765:67;18829:2;18824:3;18765:67;:::i;:::-;18758:74;;18841:93;18930:3;18841:93;:::i;:::-;18959:2;18954:3;18950:12;18943:19;;18602:366;;;:::o;18974:419::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19227:9;19221:4;19217:20;19213:1;19202:9;19198:17;19191:47;19255:131;19381:4;19255:131;:::i;:::-;19247:139;;18974:419;;;:::o;19399:221::-;19539:34;19535:1;19527:6;19523:14;19516:58;19608:4;19603:2;19595:6;19591:15;19584:29;19399:221;:::o;19626:366::-;19768:3;19789:67;19853:2;19848:3;19789:67;:::i;:::-;19782:74;;19865:93;19954:3;19865:93;:::i;:::-;19983:2;19978:3;19974:12;19967:19;;19626:366;;;:::o;19998:419::-;20164:4;20202:2;20191:9;20187:18;20179:26;;20251:9;20245:4;20241:20;20237:1;20226:9;20222:17;20215:47;20279:131;20405:4;20279:131;:::i;:::-;20271:139;;19998:419;;;:::o;20423:224::-;20563:34;20559:1;20551:6;20547:14;20540:58;20632:7;20627:2;20619:6;20615:15;20608:32;20423:224;:::o;20653:366::-;20795:3;20816:67;20880:2;20875:3;20816:67;:::i;:::-;20809:74;;20892:93;20981:3;20892:93;:::i;:::-;21010:2;21005:3;21001:12;20994:19;;20653:366;;;:::o;21025:419::-;21191:4;21229:2;21218:9;21214:18;21206:26;;21278:9;21272:4;21268:20;21264:1;21253:9;21249:17;21242:47;21306:131;21432:4;21306:131;:::i;:::-;21298:139;;21025:419;;;:::o;21450:222::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:5;21654:2;21646:6;21642:15;21635:30;21450:222;:::o;21678:366::-;21820:3;21841:67;21905:2;21900:3;21841:67;:::i;:::-;21834:74;;21917:93;22006:3;21917:93;:::i;:::-;22035:2;22030:3;22026:12;22019:19;;21678:366;;;:::o;22050:419::-;22216:4;22254:2;22243:9;22239:18;22231:26;;22303:9;22297:4;22293:20;22289:1;22278:9;22274:17;22267:47;22331:131;22457:4;22331:131;:::i;:::-;22323:139;;22050:419;;;:::o;22475:236::-;22615:34;22611:1;22603:6;22599:14;22592:58;22684:19;22679:2;22671:6;22667:15;22660:44;22475:236;:::o;22717:366::-;22859:3;22880:67;22944:2;22939:3;22880:67;:::i;:::-;22873:74;;22956:93;23045:3;22956:93;:::i;:::-;23074:2;23069:3;23065:12;23058:19;;22717:366;;;:::o;23089:419::-;23255:4;23293:2;23282:9;23278:18;23270:26;;23342:9;23336:4;23332:20;23328:1;23317:9;23313:17;23306:47;23370:131;23496:4;23370:131;:::i;:::-;23362:139;;23089:419;;;:::o;23514:172::-;23654:24;23650:1;23642:6;23638:14;23631:48;23514:172;:::o;23692:366::-;23834:3;23855:67;23919:2;23914:3;23855:67;:::i;:::-;23848:74;;23931:93;24020:3;23931:93;:::i;:::-;24049:2;24044:3;24040:12;24033:19;;23692:366;;;:::o;24064:419::-;24230:4;24268:2;24257:9;24253:18;24245:26;;24317:9;24311:4;24307:20;24303:1;24292:9;24288:17;24281:47;24345:131;24471:4;24345:131;:::i;:::-;24337:139;;24064:419;;;:::o;24489:297::-;24629:34;24625:1;24617:6;24613:14;24606:58;24698:34;24693:2;24685:6;24681:15;24674:59;24767:11;24762:2;24754:6;24750:15;24743:36;24489:297;:::o;24792:366::-;24934:3;24955:67;25019:2;25014:3;24955:67;:::i;:::-;24948:74;;25031:93;25120:3;25031:93;:::i;:::-;25149:2;25144:3;25140:12;25133:19;;24792:366;;;:::o;25164:419::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:240::-;25729:34;25725:1;25717:6;25713:14;25706:58;25798:23;25793:2;25785:6;25781:15;25774:48;25589:240;:::o;25835:366::-;25977:3;25998:67;26062:2;26057:3;25998:67;:::i;:::-;25991:74;;26074:93;26163:3;26074:93;:::i;:::-;26192:2;26187:3;26183:12;26176:19;;25835:366;;;:::o;26207:419::-;26373:4;26411:2;26400:9;26396:18;26388:26;;26460:9;26454:4;26450:20;26446:1;26435:9;26431:17;26424:47;26488:131;26614:4;26488:131;:::i;:::-;26480:139;;26207:419;;;:::o;26632:169::-;26772:21;26768:1;26760:6;26756:14;26749:45;26632:169;:::o;26807:366::-;26949:3;26970:67;27034:2;27029:3;26970:67;:::i;:::-;26963:74;;27046:93;27135:3;27046:93;:::i;:::-;27164:2;27159:3;27155:12;27148:19;;26807:366;;;:::o;27179:419::-;27345:4;27383:2;27372:9;27368:18;27360:26;;27432:9;27426:4;27422:20;27418:1;27407:9;27403:17;27396:47;27460:131;27586:4;27460:131;:::i;:::-;27452:139;;27179:419;;;:::o;27604:241::-;27744:34;27740:1;27732:6;27728:14;27721:58;27813:24;27808:2;27800:6;27796:15;27789:49;27604:241;:::o;27851:366::-;27993:3;28014:67;28078:2;28073:3;28014:67;:::i;:::-;28007:74;;28090:93;28179:3;28090:93;:::i;:::-;28208:2;28203:3;28199:12;28192:19;;27851:366;;;:::o;28223:419::-;28389:4;28427:2;28416:9;28412:18;28404:26;;28476:9;28470:4;28466:20;28462:1;28451:9;28447:17;28440:47;28504:131;28630:4;28504:131;:::i;:::-;28496:139;;28223:419;;;:::o;28648:191::-;28688:4;28708:20;28726:1;28708:20;:::i;:::-;28703:25;;28742:20;28760:1;28742:20;:::i;:::-;28737:25;;28781:1;28778;28775:8;28772:34;;;28786:18;;:::i;:::-;28772:34;28831:1;28828;28824:9;28816:17;;28648:191;;;;:::o;28845:147::-;28946:11;28983:3;28968:18;;28845:147;;;;:::o;28998:114::-;;:::o;29118:398::-;29277:3;29298:83;29379:1;29374:3;29298:83;:::i;:::-;29291:90;;29390:93;29479:3;29390:93;:::i;:::-;29508:1;29503:3;29499:11;29492:18;;29118:398;;;:::o;29522:379::-;29706:3;29728:147;29871:3;29728:147;:::i;:::-;29721:154;;29892:3;29885:10;;29522:379;;;:::o;29907:442::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30107:71;30175:1;30164:9;30160:17;30151:6;30107:71;:::i;:::-;30188:72;30256:2;30245:9;30241:18;30232:6;30188:72;:::i;:::-;30270;30338:2;30327:9;30323:18;30314:6;30270:72;:::i;:::-;29907:442;;;;;;:::o;30355:220::-;30495:34;30491:1;30483:6;30479:14;30472:58;30564:3;30559:2;30551:6;30547:15;30540:28;30355:220;:::o;30581:366::-;30723:3;30744:67;30808:2;30803:3;30744:67;:::i;:::-;30737:74;;30820:93;30909:3;30820:93;:::i;:::-;30938:2;30933:3;30929:12;30922:19;;30581:366;;;:::o;30953:419::-;31119:4;31157:2;31146:9;31142:18;31134:26;;31206:9;31200:4;31196:20;31192:1;31181:9;31177:17;31170:47;31234:131;31360:4;31234:131;:::i;:::-;31226:139;;30953:419;;;:::o;31378:180::-;31426:77;31423:1;31416:88;31523:4;31520:1;31513:15;31547:4;31544:1;31537:15;31564:180;31612:77;31609:1;31602:88;31709:4;31706:1;31699:15;31733:4;31730:1;31723:15;31750:143;31807:5;31838:6;31832:13;31823:22;;31854:33;31881:5;31854:33;:::i;:::-;31750:143;;;;:::o;31899:351::-;31969:6;32018:2;32006:9;31997:7;31993:23;31989:32;31986:119;;;32024:79;;:::i;:::-;31986:119;32144:1;32169:64;32225:7;32216:6;32205:9;32201:22;32169:64;:::i;:::-;32159:74;;32115:128;31899:351;;;;:::o;32256:85::-;32301:7;32330:5;32319:16;;32256:85;;;:::o;32347:158::-;32405:9;32438:61;32456:42;32465:32;32491:5;32465:32;:::i;:::-;32456:42;:::i;:::-;32438:61;:::i;:::-;32425:74;;32347:158;;;:::o;32511:147::-;32606:45;32645:5;32606:45;:::i;:::-;32601:3;32594:58;32511:147;;:::o;32664:114::-;32731:6;32765:5;32759:12;32749:22;;32664:114;;;:::o;32784:184::-;32883:11;32917:6;32912:3;32905:19;32957:4;32952:3;32948:14;32933:29;;32784:184;;;;:::o;32974:132::-;33041:4;33064:3;33056:11;;33094:4;33089:3;33085:14;33077:22;;32974:132;;;:::o;33112:108::-;33189:24;33207:5;33189:24;:::i;:::-;33184:3;33177:37;33112:108;;:::o;33226:179::-;33295:10;33316:46;33358:3;33350:6;33316:46;:::i;:::-;33394:4;33389:3;33385:14;33371:28;;33226:179;;;;:::o;33411:113::-;33481:4;33513;33508:3;33504:14;33496:22;;33411:113;;;:::o;33560:732::-;33679:3;33708:54;33756:5;33708:54;:::i;:::-;33778:86;33857:6;33852:3;33778:86;:::i;:::-;33771:93;;33888:56;33938:5;33888:56;:::i;:::-;33967:7;33998:1;33983:284;34008:6;34005:1;34002:13;33983:284;;;34084:6;34078:13;34111:63;34170:3;34155:13;34111:63;:::i;:::-;34104:70;;34197:60;34250:6;34197:60;:::i;:::-;34187:70;;34043:224;34030:1;34027;34023:9;34018:14;;33983:284;;;33987:14;34283:3;34276:10;;33684:608;;;33560:732;;;;:::o;34298:831::-;34561:4;34599:3;34588:9;34584:19;34576:27;;34613:71;34681:1;34670:9;34666:17;34657:6;34613:71;:::i;:::-;34694:80;34770:2;34759:9;34755:18;34746:6;34694:80;:::i;:::-;34821:9;34815:4;34811:20;34806:2;34795:9;34791:18;34784:48;34849:108;34952:4;34943:6;34849:108;:::i;:::-;34841:116;;34967:72;35035:2;35024:9;35020:18;35011:6;34967:72;:::i;:::-;35049:73;35117:3;35106:9;35102:19;35093:6;35049:73;:::i;:::-;34298:831;;;;;;;;:::o;35135:807::-;35384:4;35422:3;35411:9;35407:19;35399:27;;35436:71;35504:1;35493:9;35489:17;35480:6;35436:71;:::i;:::-;35517:72;35585:2;35574:9;35570:18;35561:6;35517:72;:::i;:::-;35599:80;35675:2;35664:9;35660:18;35651:6;35599:80;:::i;:::-;35689;35765:2;35754:9;35750:18;35741:6;35689:80;:::i;:::-;35779:73;35847:3;35836:9;35832:19;35823:6;35779:73;:::i;:::-;35862;35930:3;35919:9;35915:19;35906:6;35862:73;:::i;:::-;35135:807;;;;;;;;;:::o;35948:143::-;36005:5;36036:6;36030:13;36021:22;;36052:33;36079:5;36052:33;:::i;:::-;35948:143;;;;:::o;36097:663::-;36185:6;36193;36201;36250:2;36238:9;36229:7;36225:23;36221:32;36218:119;;;36256:79;;:::i;:::-;36218:119;36376:1;36401:64;36457:7;36448:6;36437:9;36433:22;36401:64;:::i;:::-;36391:74;;36347:128;36514:2;36540:64;36596:7;36587:6;36576:9;36572:22;36540:64;:::i;:::-;36530:74;;36485:129;36653:2;36679:64;36735:7;36726:6;36715:9;36711:22;36679:64;:::i;:::-;36669:74;;36624:129;36097:663;;;;;:::o

Swarm Source

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