ETH Price: $3,395.59 (-1.84%)
Gas: 6 Gwei

Token

Baby VLaunch (BABYVPAD)
 

Overview

Max Total Supply

1,000,000,000 BABYVPAD

Holders

332

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1.55706104 BABYVPAD

Value
$0.00
0xd0563f930bfb434a1bbddf84ae39986efd8f3d86
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:
BabyVLaunch

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-28
*/

pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed 0x7b527bd019E9f745497F2cB51C658cb10E2C914F
interface IERC20 {

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
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;
    }
}

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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

// pragma solidity >=0.6.2;

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

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

/*
To be modified before deploying this contract for a project:
- Uniswap Router address if not on ETH
- Dev address
*/

contract BabyVLaunch is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcludedFromMax;
    mapping (address => bool) private _isExcluded;
    mapping (address => bool) isBlacklisted;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address private _devAddress = 0x2D8D7F4C547051a0434fC44AA20e63535F09Ef79;
    address private _burnAddress = 0x0000000000000000000000000000000000000001;

    string private _name = "Baby VLaunch";
    string private _symbol = "BABYVPAD";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _devFee = 10;
    uint256 private _previousDevFee = _devFee;

    uint256 public _burnFee = 2;
    uint256 private _previousBurnFee = _burnFee;

    uint256 private _beforeLaunchFee = 99;
    uint256 private _previousBeforeLaunchFee = _beforeLaunchFee;


    uint256 public launchedAt;
    uint256 public launchedAtTimestamp;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
        
    uint256 public _maxTxAmount = _tTotal.div(200).mul(1);
    uint256 public _maxWalletToken = _tTotal.div(100).mul(1);
        
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_devAddress] = true;

        _isExcludedFromMax[owner()] = true;
        _isExcludedFromMax[address(this)] = true;
        _isExcludedFromMax[_devAddress] = true;
        _isExcludedFromMax[uniswapV2Pair] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function setIsBlacklisted(address account, bool blacklisted) external onlyOwner() {
        isBlacklisted[account] = blacklisted;
    }

    function blacklistMultipleAccounts(address[] calldata accounts, bool blacklisted) external onlyOwner() {
        for (uint256 i = 0; i < accounts.length; i++) {
            isBlacklisted[accounts[i]] = blacklisted;
        }
    }

    function isAccountBlacklisted(address account) external view returns (bool) {
        return isBlacklisted[account];
    }

    function isExcludedFromMax(address holder, bool exempt) external onlyOwner() {
        _isExcludedFromMax[holder] = exempt;
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function burnAddress() public view returns (address) {
        return _burnAddress;
    }

    function devAddress() public view returns (address) {
        return _devAddress;
    }

    function launch() public onlyOwner() {
        require(launchedAt == 0, "Already launched.");
        launchedAt = block.number;
        launchedAtTimestamp = block.timestamp;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");

        (,uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount,,) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        
        (,uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount,) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());

        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeDevFee(tDev);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
        
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setMaxWalletPercent(uint256 maxWalletToken) external onlyOwner() {
        _maxWalletToken = _tTotal.mul(maxWalletToken).div(
            10**2
        );
    }
    
     //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tDev = calculateDevFee(tAmount);
        uint256 tBurn = calculateBurnFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tDev);
                tTransferAmount = tTransferAmount.sub(tBurn);

        return (tTransferAmount, tFee, tDev, tBurn);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tDev, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rDev = tDev.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rDev).sub(rBurn);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeDevFee(uint256 tDev) private {
        uint256 currentRate =  _getRate();
        uint256 rDev = tDev.mul(currentRate);
        _rOwned[_devAddress] = _rOwned[_devAddress].add(rDev);
        if(_isExcluded[_devAddress])
            _tOwned[_devAddress] = _tOwned[_devAddress].add(tDev);
    }

    function _takeBurnFee(uint256 tBurn) private {
        uint256 currentRate =  _getRate();
        uint256 rBurn = tBurn.mul(currentRate);
        _rOwned[_burnAddress] = _rOwned[_burnAddress].add(rBurn);
        if(_isExcluded[_burnAddress])
            _tOwned[_burnAddress] = _tOwned[_burnAddress].add(tBurn);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        uint256 fee = launchedAt == 0 ? 0 : _taxFee;
        return _amount.mul(fee).div(
            10**2
        );
    }

    function calculateDevFee(uint256 _amount) private view returns (uint256) {
        uint256 fee = launchedAt == 0 ? 0 : _devFee;
        return _amount.mul(fee).div(
            10**2
        );
    }

    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        uint256 fee = launchedAt == 0 ? _beforeLaunchFee : _burnFee;
        return _amount.mul(fee).div(
            10**2
        );
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _devFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousDevFee = _devFee;
        _previousBurnFee = _burnFee;
        _previousBeforeLaunchFee = _beforeLaunchFee;
        
        _taxFee = 0;
        _devFee = 0;
        _burnFee = 0;
        _beforeLaunchFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _devFee = _previousDevFee;
        _burnFee = _previousBurnFee;
        _beforeLaunchFee = _previousBeforeLaunchFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!isBlacklisted[from], "Blacklisted address");

        if(!_isExcludedFromMax[from] || !_isExcludedFromMax[to]) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            uint256 heldTokens = balanceOf(to);
            require((heldTokens + amount) <= _maxWalletToken, "Total Holding is currently limited, you can not buy that much.");
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn fee
        _tokenTransfer(from,to,amount,takeFee);
    }

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());
        
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeDevFee(tDev);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeDevFee(tDev);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 tTransferAmount, uint256 tFee, uint256 tDev, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tDev, tBurn, _getRate());

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeDevFee(tDev);
        _takeBurnFee(tBurn);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"blacklistMultipleAccounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isAccountBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"isExcludedFromMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setIsBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletToken","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052670de0b6b3a7640000600b55600b54600019816200001e57fe5b0660001903600c55732d8d7f4c547051a0434fc44aa20e63535f09ef79600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600c81526020017f4261627920564c61756e63680000000000000000000000000000000000000000815250601090805190602001906200010a92919062000ac6565b506040518060400160405280600881526020017f4241425956504144000000000000000000000000000000000000000000000000815250601190805190602001906200015892919062000ac6565b506009601260006101000a81548160ff021916908360ff1602179055506002601355601354601455600a60155560155460165560026017556017546018556063601955601954601a55620001d86001620001c460c8600b54620008ed60201b620032f81790919060201c565b6200093f60201b620033421790919060201c565b601e55620002126001620001fe6064600b54620008ed60201b620032f81790919060201c565b6200093f60201b620033421790919060201c565b601f553480156200022257600080fd5b50600062000235620009ca60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600c5460036000620002ea620009ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200038857600080fd5b505afa1580156200039d573d6000803e3d6000fd5b505050506040513d6020811015620003b457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042857600080fd5b505afa1580156200043d573d6000803e3d6000fd5b505050506040513d60208110156200045457600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004cf57600080fd5b505af1158015620004e4573d6000803e3d6000fd5b505050506040513d6020811015620004fb57600080fd5b8101908080519060200190929190505050601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016006600062000599620009d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000620006d2620009d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200087f620009ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000b6c565b60006200093783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620009fb60201b60201c565b905092915050565b600080831415620009545760009050620009c4565b60008284029050828482816200096657fe5b0414620009bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620061a76021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000808311829062000aab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000a6f57808201518184015260208101905062000a52565b50505050905090810190601f16801562000a9d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000ab857fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b0957805160ff191683800117855562000b3a565b8280016001018555821562000b3a579182015b8281111562000b3957825182559160200191906001019062000b1c565b5b50905062000b49919062000b4d565b5090565b5b8082111562000b6857600081600090555060010162000b4e565b5090565b60805160601c61561d62000b8a6000398061137d525061561d6000f3fe6080604052600436106102815760003560e01c8063715018a61161014f578063a7b97fa9116100c1578063c6d2577d1161007a578063c6d2577d14610e71578063d543dbeb14610e9c578063dd46706414610ed7578063dd62ed3e14610f12578063ea2f0b3714610f97578063f2fde38b14610fe857610288565b8063a7b97fa914610cc2578063a9059cbb14610d54578063aa45026b14610dc5578063b6c5232414610df0578063bf56b37114610e1b578063c0b0fda214610e4657610288565b806388f820201161011357806388f8202014610aa55780638da5cb5b14610b0c57806395d89b4114610b4d578063a0e3849214610bdd578063a457c2d714610c3a578063a69df4b514610cab57610288565b8063715018a6146109a057806378109e54146109b75780637d1db4a5146109e25780637fef359414610a0d57806382bf293c14610a6a57610288565b80633685d419116101f35780634549b039116101ac5780634549b039146107a657806349bd5a5e1461080157806352390c02146108425780635342acb41461089357806370a08231146108fa57806370d5ae051461095f57610288565b80633685d419146105ec578063395093511461063d5780633ad10ef6146106ae5780633b124fe7146106ef5780633bd5d1731461071a578063437823ec1461075557610288565b806313114a9d1161024557806313114a9d146104475780631694505e1461047257806318160ddd146104b357806323b872dd146104de5780632d8381191461056f578063313ce567146105be57610288565b806301339c211461028d578063061c82d0146102a457806306fdde03146102df578063095ea7b31461036f5780630f1d76c1146103e057610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2611039565b005b3480156102b057600080fd5b506102dd600480360360208110156102c757600080fd5b8101908080359060200190929190505050611189565b005b3480156102eb57600080fd5b506102f461125b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610334578082015181840152602081019050610319565b50505050905090810190601f1680156103615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561037b57600080fd5b506103c86004803603604081101561039257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112fd565b60405180821515815260200191505060405180910390f35b3480156103ec57600080fd5b5061042f6004803603602081101561040357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061131b565b60405180821515815260200191505060405180910390f35b34801561045357600080fd5b5061045c611371565b6040518082815260200191505060405180910390f35b34801561047e57600080fd5b5061048761137b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104bf57600080fd5b506104c861139f565b6040518082815260200191505060405180910390f35b3480156104ea57600080fd5b506105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113a9565b60405180821515815260200191505060405180910390f35b34801561057b57600080fd5b506105a86004803603602081101561059257600080fd5b8101908080359060200190929190505050611482565b6040518082815260200191505060405180910390f35b3480156105ca57600080fd5b506105d3611506565b604051808260ff16815260200191505060405180910390f35b3480156105f857600080fd5b5061063b6004803603602081101561060f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151d565b005b34801561064957600080fd5b506106966004803603604081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a7565b60405180821515815260200191505060405180910390f35b3480156106ba57600080fd5b506106c361195a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106fb57600080fd5b50610704611984565b6040518082815260200191505060405180910390f35b34801561072657600080fd5b506107536004803603602081101561073d57600080fd5b810190808035906020019092919050505061198a565b005b34801561076157600080fd5b506107a46004803603602081101561077857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b3b565b005b3480156107b257600080fd5b506107eb600480360360408110156107c957600080fd5b8101908080359060200190929190803515159060200190929190505050611c5e565b6040518082815260200191505060405180910390f35b34801561080d57600080fd5b50610816611d2a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084e57600080fd5b506108916004803603602081101561086557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d50565b005b34801561089f57600080fd5b506108e2600480360360208110156108b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206a565b60405180821515815260200191505060405180910390f35b34801561090657600080fd5b506109496004803603602081101561091d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120c0565b6040518082815260200191505060405180910390f35b34801561096b57600080fd5b506109746121ab565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ac57600080fd5b506109b56121d5565b005b3480156109c357600080fd5b506109cc61235b565b6040518082815260200191505060405180910390f35b3480156109ee57600080fd5b506109f7612361565b6040518082815260200191505060405180910390f35b348015610a1957600080fd5b50610a6860048036036040811015610a3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612367565b005b348015610a7657600080fd5b50610aa360048036036020811015610a8d57600080fd5b810190808035906020019092919050505061248a565b005b348015610ab157600080fd5b50610af460048036036020811015610ac857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612583565b60405180821515815260200191505060405180910390f35b348015610b1857600080fd5b50610b216125d9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5957600080fd5b50610b62612602565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba2578082015181840152602081019050610b87565b50505050905090810190601f168015610bcf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610be957600080fd5b50610c3860048036036040811015610c0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506126a4565b005b348015610c4657600080fd5b50610c9360048036036040811015610c5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127c7565b60405180821515815260200191505060405180910390f35b348015610cb757600080fd5b50610cc0612894565b005b348015610cce57600080fd5b50610d5260048036036040811015610ce557600080fd5b8101908080359060200190640100000000811115610d0257600080fd5b820183602082011115610d1457600080fd5b80359060200191846020830284011164010000000083111715610d3657600080fd5b9091929391929390803515159060200190929190505050612ab1565b005b348015610d6057600080fd5b50610dad60048036036040811015610d7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c19565b60405180821515815260200191505060405180910390f35b348015610dd157600080fd5b50610dda612c37565b6040518082815260200191505060405180910390f35b348015610dfc57600080fd5b50610e05612c3d565b6040518082815260200191505060405180910390f35b348015610e2757600080fd5b50610e30612c47565b6040518082815260200191505060405180910390f35b348015610e5257600080fd5b50610e5b612c4d565b6040518082815260200191505060405180910390f35b348015610e7d57600080fd5b50610e86612c53565b6040518082815260200191505060405180910390f35b348015610ea857600080fd5b50610ed560048036036020811015610ebf57600080fd5b8101908080359060200190929190505050612c59565b005b348015610ee357600080fd5b50610f1060048036036020811015610efa57600080fd5b8101908080359060200190929190505050612d52565b005b348015610f1e57600080fd5b50610f8160048036036040811015610f3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f43565b6040518082815260200191505060405180910390f35b348015610fa357600080fd5b50610fe660048036036020811015610fba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fca565b005b348015610ff457600080fd5b506110376004803603602081101561100b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130ed565b005b6110416133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601b5414611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f416c7265616479206c61756e636865642e00000000000000000000000000000081525060200191505060405180910390fd5b43601b8190555042601c81905550565b6111916133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b606060108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b5050505050905090565b600061131161130a6133c8565b84846133d0565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b60006113b68484846135c7565b611477846113c26133c8565b6114728560405180606001604052806028815260200161549c60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114286133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1e9092919063ffffffff16565b6133d0565b600190509392505050565b6000600c548211156114df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153e1602a913960400191505060405180910390fd5b60006114e9613ade565b90506114fe81846132f890919063ffffffff16565b915050919050565b6000601260009054906101000a900460ff16905090565b6115256133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b600a805490508110156118a3578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106116d857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189657600a6001600a80549050038154811061173457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061176c57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061185c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118a3565b80806001019150506116a7565b5050565b60006119506118b46133c8565b8461194b85600560006118c56133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b6133d0565b6001905092915050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b60006119946133c8565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615574602c913960400191505060405180910390fd5b6000806000611a4785613b91565b935093509350506000611a6486858585611a5f613ade565b613c13565b50509050611aba81600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1281600c54613cc790919063ffffffff16565b600c81905550611b2d86600d54613b0990919063ffffffff16565b600d81905550505050505050565b611b436133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b54831115611cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b6000806000611ce686613b91565b93509350935050600080611d0488868686611cff613ade565b613c13565b509150915086611d1b578195505050505050611d24565b80955050505050505b92915050565b601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d586133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ed8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fac57611f68600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611482565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215b57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a6565b6121a3600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611482565b90505b919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121dd6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601f5481565b601e5481565b61236f6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6124926133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61257a606461256c83600b5461334290919063ffffffff16565b6132f890919063ffffffff16565b601f8190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060118054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561269a5780601f1061266f5761010080835404028352916020019161269a565b820191906000526020600020905b81548152906001019060200180831161267d57829003601f168201915b5050505050905090565b6126ac6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461276c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061288a6127d46133c8565b84612885856040518060600160405280602581526020016155c360259139600560006127fe6133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1e9092919063ffffffff16565b6133d0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155a06023913960400191505060405180910390fd5b60025442116129b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612ab96133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015612c13578160096000868685818110612b9857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050612b7c565b50505050565b6000612c2d612c266133c8565b84846135c7565b6001905092915050565b60155481565b6000600254905090565b601b5481565b60175481565b601c5481565b612c616133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612d496064612d3b83600b5461334290919063ffffffff16565b6132f890919063ffffffff16565b601e8190555050565b612d5a6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612fd26133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6130f56133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561323b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061540b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061333a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d11565b905092915050565b60008083141561335557600090506133c2565b600082840290508284828161336657fe5b04146133bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061547b6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155506024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154316022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061552b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b6000811161372c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154c46029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f426c61636b6c697374656420616464726573730000000000000000000000000081525060200191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158061388f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561395b57601e548111156138ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154536028913960400191505060405180910390fd5b60006138fa836120c0565b9050601f548282011115613959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806154ed603e913960400191505060405180910390fd5b505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a025750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a0c57600090505b613a1884848484613dd7565b50505050565b6000838311158290613acb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a90578082015181840152602081019050613a75565b50505050905090810190601f168015613abd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613aeb6140e8565b91509150613b0281836132f890919063ffffffff16565b9250505090565b600080828401905083811015613b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000613ba286614379565b90506000613baf876143c1565b90506000613bbc88614409565b90506000613be583613bd7868c613cc790919063ffffffff16565b613cc790919063ffffffff16565b9050613bfa8282613cc790919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613c2c858a61334290919063ffffffff16565b90506000613c43868a61334290919063ffffffff16565b90506000613c5a878a61334290919063ffffffff16565b90506000613c71888a61334290919063ffffffff16565b90506000613cac82613c9e85613c90888a613cc790919063ffffffff16565b613cc790919063ffffffff16565b613cc790919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000613d0983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a1e565b905092915050565b60008083118290613dbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d82578082015181840152602081019050613d67565b50505050905090810190601f168015613daf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613dc957fe5b049050809150509392505050565b80613de557613de4614452565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613e885750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613e9d57613e988484846144b7565b6140d4565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f405750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613f5557613f50848484614739565b6140d3565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ff95750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561400e576140098484846149bb565b6140d2565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156140b05750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156140c5576140c0848484614ba8565b6140d1565b6140d08484846149bb565b5b5b5b5b806140e2576140e1614ebf565b5b50505050565b6000806000600c5490506000600b54905060005b600a8054905081101561433c578260036000600a848154811061411b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061420257508160046000600a848154811061419a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561421957600c54600b5494509450505050614375565b6142a260036000600a848154811061422d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613cc790919063ffffffff16565b925061432d60046000600a84815481106142b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613cc790919063ffffffff16565b915080806001019150506140fc565b50614354600b54600c546132f890919063ffffffff16565b82101561436c57600c54600b54935093505050614375565b81819350935050505b9091565b6000806000601b541461438e57601354614391565b60005b90506143b960646143ab838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b6000806000601b54146143d6576015546143d9565b60005b905061440160646143f3838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b6000806000601b541461441e57601754614422565b6019545b905061444a606461443c838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b600060135414801561446657506000601554145b15614470576144b5565b601354601481905550601554601681905550601754601881905550601954601a8190555060006013819055506000601581905550600060178190555060006019819055505b565b6000806000806144c685613b91565b935093509350935060008060006144e7888787876144e2613ade565b613c13565b92509250925061453f88600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145d483600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466982600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b585614ee5565b6146be84615134565b6146c88187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b60008060008061474885613b91565b9350935093509350600080600061476988878787614764613ade565b613c13565b9250925092506147c183600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485687600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148eb82600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061493785614ee5565b61494084615134565b61494a8187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b6000806000806149ca85613b91565b935093509350935060008060006149eb888787876149e6613ade565b613c13565b925092509250614a4383600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ad882600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2485614ee5565b614b2d84615134565b614b378187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080614bb785613b91565b93509350935093506000806000614bd888878787614bd3613ade565b613c13565b925092509250614c3088600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc583600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5a87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614def82600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3b85614ee5565b614e4484615134565b614e4e8187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b601454601381905550601654601581905550601854601781905550601a54601981905550565b6000614eef613ade565b90506000614f06828461334290919063ffffffff16565b9050614f7c8160036000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60036000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561512f576150c98360046000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60046000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061513e613ade565b90506000615155828461334290919063ffffffff16565b90506151cb8160036000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60036000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561537e576153188360046000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60046000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61539882600c54613cc790919063ffffffff16565b600c819055506153b381600d54613b0990919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b28b54d60ae24d3296604781b2fafb88e1fba4ee80c966071baba04264184e5264736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063715018a61161014f578063a7b97fa9116100c1578063c6d2577d1161007a578063c6d2577d14610e71578063d543dbeb14610e9c578063dd46706414610ed7578063dd62ed3e14610f12578063ea2f0b3714610f97578063f2fde38b14610fe857610288565b8063a7b97fa914610cc2578063a9059cbb14610d54578063aa45026b14610dc5578063b6c5232414610df0578063bf56b37114610e1b578063c0b0fda214610e4657610288565b806388f820201161011357806388f8202014610aa55780638da5cb5b14610b0c57806395d89b4114610b4d578063a0e3849214610bdd578063a457c2d714610c3a578063a69df4b514610cab57610288565b8063715018a6146109a057806378109e54146109b75780637d1db4a5146109e25780637fef359414610a0d57806382bf293c14610a6a57610288565b80633685d419116101f35780634549b039116101ac5780634549b039146107a657806349bd5a5e1461080157806352390c02146108425780635342acb41461089357806370a08231146108fa57806370d5ae051461095f57610288565b80633685d419146105ec578063395093511461063d5780633ad10ef6146106ae5780633b124fe7146106ef5780633bd5d1731461071a578063437823ec1461075557610288565b806313114a9d1161024557806313114a9d146104475780631694505e1461047257806318160ddd146104b357806323b872dd146104de5780632d8381191461056f578063313ce567146105be57610288565b806301339c211461028d578063061c82d0146102a457806306fdde03146102df578063095ea7b31461036f5780630f1d76c1146103e057610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2611039565b005b3480156102b057600080fd5b506102dd600480360360208110156102c757600080fd5b8101908080359060200190929190505050611189565b005b3480156102eb57600080fd5b506102f461125b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610334578082015181840152602081019050610319565b50505050905090810190601f1680156103615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561037b57600080fd5b506103c86004803603604081101561039257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112fd565b60405180821515815260200191505060405180910390f35b3480156103ec57600080fd5b5061042f6004803603602081101561040357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061131b565b60405180821515815260200191505060405180910390f35b34801561045357600080fd5b5061045c611371565b6040518082815260200191505060405180910390f35b34801561047e57600080fd5b5061048761137b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104bf57600080fd5b506104c861139f565b6040518082815260200191505060405180910390f35b3480156104ea57600080fd5b506105576004803603606081101561050157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113a9565b60405180821515815260200191505060405180910390f35b34801561057b57600080fd5b506105a86004803603602081101561059257600080fd5b8101908080359060200190929190505050611482565b6040518082815260200191505060405180910390f35b3480156105ca57600080fd5b506105d3611506565b604051808260ff16815260200191505060405180910390f35b3480156105f857600080fd5b5061063b6004803603602081101561060f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151d565b005b34801561064957600080fd5b506106966004803603604081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a7565b60405180821515815260200191505060405180910390f35b3480156106ba57600080fd5b506106c361195a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106fb57600080fd5b50610704611984565b6040518082815260200191505060405180910390f35b34801561072657600080fd5b506107536004803603602081101561073d57600080fd5b810190808035906020019092919050505061198a565b005b34801561076157600080fd5b506107a46004803603602081101561077857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b3b565b005b3480156107b257600080fd5b506107eb600480360360408110156107c957600080fd5b8101908080359060200190929190803515159060200190929190505050611c5e565b6040518082815260200191505060405180910390f35b34801561080d57600080fd5b50610816611d2a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084e57600080fd5b506108916004803603602081101561086557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d50565b005b34801561089f57600080fd5b506108e2600480360360208110156108b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206a565b60405180821515815260200191505060405180910390f35b34801561090657600080fd5b506109496004803603602081101561091d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120c0565b6040518082815260200191505060405180910390f35b34801561096b57600080fd5b506109746121ab565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ac57600080fd5b506109b56121d5565b005b3480156109c357600080fd5b506109cc61235b565b6040518082815260200191505060405180910390f35b3480156109ee57600080fd5b506109f7612361565b6040518082815260200191505060405180910390f35b348015610a1957600080fd5b50610a6860048036036040811015610a3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612367565b005b348015610a7657600080fd5b50610aa360048036036020811015610a8d57600080fd5b810190808035906020019092919050505061248a565b005b348015610ab157600080fd5b50610af460048036036020811015610ac857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612583565b60405180821515815260200191505060405180910390f35b348015610b1857600080fd5b50610b216125d9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b5957600080fd5b50610b62612602565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ba2578082015181840152602081019050610b87565b50505050905090810190601f168015610bcf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610be957600080fd5b50610c3860048036036040811015610c0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506126a4565b005b348015610c4657600080fd5b50610c9360048036036040811015610c5d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506127c7565b60405180821515815260200191505060405180910390f35b348015610cb757600080fd5b50610cc0612894565b005b348015610cce57600080fd5b50610d5260048036036040811015610ce557600080fd5b8101908080359060200190640100000000811115610d0257600080fd5b820183602082011115610d1457600080fd5b80359060200191846020830284011164010000000083111715610d3657600080fd5b9091929391929390803515159060200190929190505050612ab1565b005b348015610d6057600080fd5b50610dad60048036036040811015610d7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c19565b60405180821515815260200191505060405180910390f35b348015610dd157600080fd5b50610dda612c37565b6040518082815260200191505060405180910390f35b348015610dfc57600080fd5b50610e05612c3d565b6040518082815260200191505060405180910390f35b348015610e2757600080fd5b50610e30612c47565b6040518082815260200191505060405180910390f35b348015610e5257600080fd5b50610e5b612c4d565b6040518082815260200191505060405180910390f35b348015610e7d57600080fd5b50610e86612c53565b6040518082815260200191505060405180910390f35b348015610ea857600080fd5b50610ed560048036036020811015610ebf57600080fd5b8101908080359060200190929190505050612c59565b005b348015610ee357600080fd5b50610f1060048036036020811015610efa57600080fd5b8101908080359060200190929190505050612d52565b005b348015610f1e57600080fd5b50610f8160048036036040811015610f3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f43565b6040518082815260200191505060405180910390f35b348015610fa357600080fd5b50610fe660048036036020811015610fba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fca565b005b348015610ff457600080fd5b506110376004803603602081101561100b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130ed565b005b6110416133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601b5414611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f416c7265616479206c61756e636865642e00000000000000000000000000000081525060200191505060405180910390fd5b43601b8190555042601c81905550565b6111916133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b606060108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b5050505050905090565b600061131161130a6133c8565b84846133d0565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b60006113b68484846135c7565b611477846113c26133c8565b6114728560405180606001604052806028815260200161549c60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006114286133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1e9092919063ffffffff16565b6133d0565b600190509392505050565b6000600c548211156114df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806153e1602a913960400191505060405180910390fd5b60006114e9613ade565b90506114fe81846132f890919063ffffffff16565b915050919050565b6000601260009054906101000a900460ff16905090565b6115256133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4163636f756e74206973206e6f74206578636c7564656400000000000000000081525060200191505060405180910390fd5b60005b600a805490508110156118a3578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106116d857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561189657600a6001600a80549050038154811061173457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a828154811061176c57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061185c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556118a3565b80806001019150506116a7565b5050565b60006119506118b46133c8565b8461194b85600560006118c56133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b6133d0565b6001905092915050565b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b60006119946133c8565b9050600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615574602c913960400191505060405180910390fd5b6000806000611a4785613b91565b935093509350506000611a6486858585611a5f613ade565b613c13565b50509050611aba81600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b1281600c54613cc790919063ffffffff16565b600c81905550611b2d86600d54613b0990919063ffffffff16565b600d81905550505050505050565b611b436133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b54831115611cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b6000806000611ce686613b91565b93509350935050600080611d0488868686611cff613ade565b613c13565b509150915086611d1b578195505050505050611d24565b80955050505050505b92915050565b601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d586133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ed8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fac57611f68600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611482565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561215b57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506121a6565b6121a3600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611482565b90505b919050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121dd6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461229d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601f5481565b601e5481565b61236f6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461242f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6124926133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61257a606461256c83600b5461334290919063ffffffff16565b6132f890919063ffffffff16565b601f8190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060118054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561269a5780601f1061266f5761010080835404028352916020019161269a565b820191906000526020600020905b81548152906001019060200180831161267d57829003601f168201915b5050505050905090565b6126ac6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461276c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061288a6127d46133c8565b84612885856040518060600160405280602581526020016155c360259139600560006127fe6133c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a1e9092919063ffffffff16565b6133d0565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806155a06023913960400191505060405180910390fd5b60025442116129b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612ab96133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b83839050811015612c13578160096000868685818110612b9857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050612b7c565b50505050565b6000612c2d612c266133c8565b84846135c7565b6001905092915050565b60155481565b6000600254905090565b601b5481565b60175481565b601c5481565b612c616133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612d496064612d3b83600b5461334290919063ffffffff16565b6132f890919063ffffffff16565b601e8190555050565b612d5a6133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e1a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612fd26133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6130f56133c8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561323b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061540b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061333a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613d11565b905092915050565b60008083141561335557600090506133c2565b600082840290508284828161336657fe5b04146133bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061547b6021913960400191505060405180910390fd5b809150505b92915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806155506024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806154316022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061552b6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153be6023913960400191505060405180910390fd5b6000811161372c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806154c46029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f426c61636b6c697374656420616464726573730000000000000000000000000081525060200191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158061388f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561395b57601e548111156138ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806154536028913960400191505060405180910390fd5b60006138fa836120c0565b9050601f548282011115613959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806154ed603e913960400191505060405180910390fd5b505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a025750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a0c57600090505b613a1884848484613dd7565b50505050565b6000838311158290613acb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a90578082015181840152602081019050613a75565b50505050905090810190601f168015613abd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613aeb6140e8565b91509150613b0281836132f890919063ffffffff16565b9250505090565b600080828401905083811015613b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000613ba286614379565b90506000613baf876143c1565b90506000613bbc88614409565b90506000613be583613bd7868c613cc790919063ffffffff16565b613cc790919063ffffffff16565b9050613bfa8282613cc790919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613c2c858a61334290919063ffffffff16565b90506000613c43868a61334290919063ffffffff16565b90506000613c5a878a61334290919063ffffffff16565b90506000613c71888a61334290919063ffffffff16565b90506000613cac82613c9e85613c90888a613cc790919063ffffffff16565b613cc790919063ffffffff16565b613cc790919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000613d0983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a1e565b905092915050565b60008083118290613dbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d82578082015181840152602081019050613d67565b50505050905090810190601f168015613daf5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613dc957fe5b049050809150509392505050565b80613de557613de4614452565b5b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613e885750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613e9d57613e988484846144b7565b6140d4565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613f405750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613f5557613f50848484614739565b6140d3565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613ff95750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561400e576140098484846149bb565b6140d2565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156140b05750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156140c5576140c0848484614ba8565b6140d1565b6140d08484846149bb565b5b5b5b5b806140e2576140e1614ebf565b5b50505050565b6000806000600c5490506000600b54905060005b600a8054905081101561433c578260036000600a848154811061411b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061420257508160046000600a848154811061419a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561421957600c54600b5494509450505050614375565b6142a260036000600a848154811061422d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613cc790919063ffffffff16565b925061432d60046000600a84815481106142b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613cc790919063ffffffff16565b915080806001019150506140fc565b50614354600b54600c546132f890919063ffffffff16565b82101561436c57600c54600b54935093505050614375565b81819350935050505b9091565b6000806000601b541461438e57601354614391565b60005b90506143b960646143ab838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b6000806000601b54146143d6576015546143d9565b60005b905061440160646143f3838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b6000806000601b541461441e57601754614422565b6019545b905061444a606461443c838661334290919063ffffffff16565b6132f890919063ffffffff16565b915050919050565b600060135414801561446657506000601554145b15614470576144b5565b601354601481905550601554601681905550601754601881905550601954601a8190555060006013819055506000601581905550600060178190555060006019819055505b565b6000806000806144c685613b91565b935093509350935060008060006144e7888787876144e2613ade565b613c13565b92509250925061453f88600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145d483600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466982600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146b585614ee5565b6146be84615134565b6146c88187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b60008060008061474885613b91565b9350935093509350600080600061476988878787614764613ade565b613c13565b9250925092506147c183600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485687600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148eb82600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061493785614ee5565b61494084615134565b61494a8187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b6000806000806149ca85613b91565b935093509350935060008060006149eb888787876149e6613ade565b613c13565b925092509250614a4383600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ad882600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2485614ee5565b614b2d84615134565b614b378187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b600080600080614bb785613b91565b93509350935093506000806000614bd888878787614bd3613ade565b613c13565b925092509250614c3088600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cc583600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613cc790919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d5a87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614def82600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3b85614ee5565b614e4484615134565b614e4e8187615383565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef896040518082815260200191505060405180910390a350505050505050505050565b601454601381905550601654601581905550601854601781905550601a54601981905550565b6000614eef613ade565b90506000614f06828461334290919063ffffffff16565b9050614f7c8160036000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60036000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561512f576150c98360046000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60046000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061513e613ade565b90506000615155828461334290919063ffffffff16565b90506151cb8160036000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60036000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060086000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561537e576153188360046000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b0990919063ffffffff16565b60046000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61539882600c54613cc790919063ffffffff16565b600c819055506153b381600d54613b0990919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697465642c20796f752063616e206e6f74206275792074686174206d7563682e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b28b54d60ae24d3296604781b2fafb88e1fba4ee80c966071baba04264184e5264736f6c634300060c0033

Deployed Bytecode Sourcemap

25777:18382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31434:185;;;;;;;;;;;;;:::i;:::-;;34733:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28452:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29364:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30872:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31143:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27254:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28729:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29533:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32647:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28638:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33249:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29854:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31337:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26812:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31627:496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34488:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32131:508;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27312:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32908:333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39020:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28832:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31238:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16251:148;;;;;;;;;;;;;:::i;:::-;;27417:56;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27357:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31004:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35013:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30357:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15608:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28543:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30485:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30080:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17261:293;;;;;;;;;;;;;:::i;:::-;;30630:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29038:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26895:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16806:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27179:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26979:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27211:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34843:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16971:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29213:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34611:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16554:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31434:185;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31504:1:::1;31490:10;;:15;31482:45;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31551:12;31538:10;:25;;;;31596:15;31574:19;:37;;;;31434:185::o:0;34733:98::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34817:6:::1;34807:7;:16;;;;34733:98:::0;:::o;28452:83::-;28489:13;28522:5;28515:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28452:83;:::o;29364:161::-;29439:4;29456:39;29465:12;:10;:12::i;:::-;29479:7;29488:6;29456:8;:39::i;:::-;29513:4;29506:11;;29364:161;;;;:::o;30872:124::-;30942:4;30966:13;:22;30980:7;30966:22;;;;;;;;;;;;;;;;;;;;;;;;;30959:29;;30872:124;;;:::o;31143:87::-;31185:7;31212:10;;31205:17;;31143:87;:::o;27254:51::-;;;:::o;28729:95::-;28782:7;28809;;28802:14;;28729:95;:::o;29533:313::-;29631:4;29648:36;29658:6;29666:9;29677:6;29648:9;:36::i;:::-;29695:121;29704:6;29712:12;:10;:12::i;:::-;29726:89;29764:6;29726:89;;;;;;;;;;;;;;;;;:11;:19;29738:6;29726:19;;;;;;;;;;;;;;;:33;29746:12;:10;:12::i;:::-;29726:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29695:8;:121::i;:::-;29834:4;29827:11;;29533:313;;;;;:::o;32647:253::-;32713:7;32752;;32741;:18;;32733:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32817:19;32840:10;:8;:10::i;:::-;32817:33;;32868:24;32880:11;32868:7;:11;;:24;;;;:::i;:::-;32861:31;;;32647:253;;;:::o;28638:83::-;28679:5;28704:9;;;;;;;;;;;28697:16;;28638:83;:::o;33249:475::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33331:11:::1;:20;33343:7;33331:20;;;;;;;;;;;;;;;;;;;;;;;;;33323:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33395:9;33390:327;33414:9;:16;;;;33410:1;:20;33390:327;;;33472:7;33456:23;;:9;33466:1;33456:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33452:254;;;33515:9;33544:1;33525:9;:16;;;;:20;33515:31;;;;;;;;;;;;;;;;;;;;;;;;;33500:9;33510:1;33500:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33584:1;33565:7;:16;33573:7;33565:16;;;;;;;;;;;;;;;:20;;;;33627:5;33604:11;:20;33616:7;33604:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33651:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33685:5;;33452:254;33432:3;;;;;;;33390:327;;;;33249:475:::0;:::o;29854:218::-;29942:4;29959:83;29968:12;:10;:12::i;:::-;29982:7;29991:50;30030:10;29991:11;:25;30003:12;:10;:12::i;:::-;29991:25;;;;;;;;;;;;;;;:34;30017:7;29991:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29959:8;:83::i;:::-;30060:4;30053:11;;29854:218;;;;:::o;31337:89::-;31380:7;31407:11;;;;;;;;;;;31400:18;;31337:89;:::o;26812:26::-;;;;:::o;31627:496::-;31679:14;31696:12;:10;:12::i;:::-;31679:29;;31728:11;:19;31740:6;31728:19;;;;;;;;;;;;;;;;;;;;;;;;;31727:20;31719:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31811:12;31825;31839:13;31856:20;31868:7;31856:11;:20::i;:::-;31809:67;;;;;;;31888:15;31909:51;31921:7;31930:4;31936;31942:5;31949:10;:8;:10::i;:::-;31909:11;:51::i;:::-;31887:73;;;;31999:28;32019:7;31999;:15;32007:6;31999:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31981:7;:15;31989:6;31981:15;;;;;;;;;;;;;;;:46;;;;32048:20;32060:7;32048;;:11;;:20;;;;:::i;:::-;32038:7;:30;;;;32092:23;32107:7;32092:10;;:14;;:23;;;;:::i;:::-;32079:10;:36;;;;31627:496;;;;;;:::o;34488:111::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34587:4:::1;34557:18;:27;34576:7;34557:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;34488:111:::0;:::o;32131:508::-;32221:7;32260;;32249;:18;;32241:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32326:12;32340;32354:13;32371:20;32383:7;32371:11;:20::i;:::-;32324:67;;;;;;;32403:15;32420:23;32448:51;32460:7;32469:4;32475;32481:5;32488:10;:8;:10::i;:::-;32448:11;:51::i;:::-;32402:97;;;;;32517:17;32512:120;;32558:7;32551:14;;;;;;;;;32512:120;32605:15;32598:22;;;;;;;32131:508;;;;;:::o;27312:28::-;;;;;;;;;;;;;:::o;32908:333::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32991:11:::1;:20;33003:7;32991:20;;;;;;;;;;;;;;;;;;;;;;;;;32990:21;32982:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33076:1;33057:7;:16;33065:7;33057:16;;;;;;;;;;;;;;;;:20;33054:108;;;33113:37;33133:7;:16;33141:7;33133:16;;;;;;;;;;;;;;;;33113:19;:37::i;:::-;33094:7;:16;33102:7;33094:16;;;;;;;;;;;;;;;:56;;;;33054:108;33195:4;33172:11;:20;33184:7;33172:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33210:9;33225:7;33210:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32908:333:::0;:::o;39020:123::-;39084:4;39108:18;:27;39127:7;39108:27;;;;;;;;;;;;;;;;;;;;;;;;;39101:34;;39020:123;;;:::o;28832:198::-;28898:7;28922:11;:20;28934:7;28922:20;;;;;;;;;;;;;;;;;;;;;;;;;28918:49;;;28951:7;:16;28959:7;28951:16;;;;;;;;;;;;;;;;28944:23;;;;28918:49;28985:37;29005:7;:16;29013:7;29005:16;;;;;;;;;;;;;;;;28985:19;:37::i;:::-;28978:44;;28832:198;;;;:::o;31238:91::-;31282:7;31309:12;;;;;;;;;;;31302:19;;31238:91;:::o;16251:148::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16358:1:::1;16321:40;;16342:6;::::0;::::1;;;;;;;;16321:40;;;;;;;;;;;;16389:1;16372:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16251:148::o:0;27417:56::-;;;;:::o;27357:53::-;;;;:::o;31004:131::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31121:6:::1;31092:18;:26;31111:6;31092:26;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;31004:131:::0;;:::o;35013:173::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35116:62:::1;35162:5;35116:27;35128:14;35116:7;;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;35098:15;:80;;;;35013:173:::0;:::o;30357:120::-;30425:4;30449:11;:20;30461:7;30449:20;;;;;;;;;;;;;;;;;;;;;;;;;30442:27;;30357:120;;;:::o;15608:79::-;15646:7;15673:6;;;;;;;;;;;15666:13;;15608:79;:::o;28543:87::-;28582:13;28615:7;28608:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28543:87;:::o;30485:137::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30603:11:::1;30578:13;:22;30592:7;30578:22;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30485:137:::0;;:::o;30080:269::-;30173:4;30190:129;30199:12;:10;:12::i;:::-;30213:7;30222:96;30261:15;30222:96;;;;;;;;;;;;;;;;;:11;:25;30234:12;:10;:12::i;:::-;30222:25;;;;;;;;;;;;;;;:34;30248:7;30222:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30190:8;:129::i;:::-;30337:4;30330:11;;30080:269;;;;:::o;17261:293::-;17331:10;17313:28;;:14;;;;;;;;;;;:28;;;17305:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17406:9;;17400:3;:15;17392:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17497:14;;;;;;;;;;;17468:44;;17489:6;;;;;;;;;;17468:44;;;;;;;;;;;;17532:14;;;;;;;;;;;17523:6;;:23;;;;;;;;;;;;;;;;;;17261:293::o;30630:234::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30749:9:::1;30744:113;30768:8;;:15;;30764:1;:19;30744:113;;;30834:11;30805:13;:26;30819:8;;30828:1;30819:11;;;;;;;;;;;;;;;30805:26;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30785:3;;;;;;;30744:113;;;;30630:234:::0;;;:::o;29038:167::-;29116:4;29133:42;29143:12;:10;:12::i;:::-;29157:9;29168:6;29133:9;:42::i;:::-;29193:4;29186:11;;29038:167;;;;:::o;26895:27::-;;;;:::o;16806:89::-;16851:7;16878:9;;16871:16;;16806:89;:::o;27179:25::-;;;;:::o;26979:27::-;;;;:::o;27211:34::-;;;;:::o;34843:162::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34937:60:::1;34981:5;34937:25;34949:12;34937:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;34922:12;:75;;;;34843:162:::0;:::o;16971:214::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17052:6:::1;::::0;::::1;;;;;;;;17035:14;;:23;;;;;;;;;;;;;;;;;;17086:1;17069:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17117:4;17111:3;:10;17099:9;:22;;;;17174:1;17137:40;;17158:6;::::0;::::1;;;;;;;;17137:40;;;;;;;;;;;;16971:214:::0;:::o;29213:143::-;29294:7;29321:11;:18;29333:5;29321:18;;;;;;;;;;;;;;;:27;29340:7;29321:27;;;;;;;;;;;;;;;;29314:34;;29213:143;;;;:::o;34611:110::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34708:5:::1;34678:18;:27;34697:7;34678:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;34611:110:::0;:::o;16554:244::-;15830:12;:10;:12::i;:::-;15820:22;;:6;;;;;;;;;;:22;;;15812:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16663:1:::1;16643:22;;:8;:22;;;;16635:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16753:8;16724:38;;16745:6;::::0;::::1;;;;;;;;16724:38;;;;;;;;;;;;16782:8;16773:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16554:244:::0;:::o;5824:132::-;5882:7;5909:39;5913:1;5916;5909:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5902:46;;5824:132;;;;:::o;4877:471::-;4935:7;5185:1;5180;:6;5176:47;;;5210:1;5203:8;;;;5176:47;5235:9;5251:1;5247;:5;5235:17;;5280:1;5275;5271;:5;;;;;;:10;5263:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339:1;5332:8;;;4877:471;;;;;:::o;8016:106::-;8069:15;8104:10;8097:17;;8016:106;:::o;39151:337::-;39261:1;39244:19;;:5;:19;;;;39236:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39342:1;39323:21;;:7;:21;;;;39315:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39426:6;39396:11;:18;39408:5;39396:18;;;;;;;;;;;;;;;:27;39415:7;39396:27;;;;;;;;;;;;;;;:36;;;;39464:7;39448:32;;39457:5;39448:32;;;39473:6;39448:32;;;;;;;;;;;;;;;;;;39151:337;;;:::o;39496:1168::-;39634:1;39618:18;;:4;:18;;;;39610:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39711:1;39697:16;;:2;:16;;;;39689:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39781:1;39772:6;:10;39764:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39848:13;:19;39862:4;39848:19;;;;;;;;;;;;;;;;;;;;;;;;;39847:20;39839:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39908:18;:24;39927:4;39908:24;;;;;;;;;;;;;;;;;;;;;;;;;39907:25;:52;;;;39937:18;:22;39956:2;39937:22;;;;;;;;;;;;;;;;;;;;;;;;;39936:23;39907:52;39904:338;;;39994:12;;39984:6;:22;;39976:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40066:18;40087:13;40097:2;40087:9;:13::i;:::-;40066:34;;40148:15;;40137:6;40124:10;:19;40123:40;;40115:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39904:338;;40323:12;40338:4;40323:19;;40450:18;:24;40469:4;40450:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40478:18;:22;40497:2;40478:22;;;;;;;;;;;;;;;;;;;;;;;;;40450:50;40447:96;;;40526:5;40516:15;;40447:96;40618:38;40633:4;40638:2;40641:6;40648:7;40618:14;:38::i;:::-;39496:1168;;;;:::o;4426:192::-;4512:7;4545:1;4540;:6;;4548:12;4532:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4572:9;4588:1;4584;:5;4572:17;;4609:1;4602:8;;;4426:192;;;;;:::o;36383:163::-;36424:7;36445:15;36462;36481:19;:17;:19::i;:::-;36444:56;;;;36518:20;36530:7;36518;:11;;:20;;;;:::i;:::-;36511:27;;;;36383:163;:::o;3523:181::-;3581:7;3601:9;3617:1;3613;:5;3601:17;;3642:1;3637;:6;;3629:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3695:1;3688:8;;;3523:181;;;;:::o;35448:439::-;35508:7;35517;35526;35535;35555:12;35570:24;35586:7;35570:15;:24::i;:::-;35555:39;;35605:12;35620:24;35636:7;35620:15;:24::i;:::-;35605:39;;35655:13;35671:25;35688:7;35671:16;:25::i;:::-;35655:41;;35707:23;35733:27;35755:4;35733:17;35745:4;35733:7;:11;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;35707:53;;35797:26;35817:5;35797:15;:19;;:26;;;;:::i;:::-;35779:44;;35844:15;35861:4;35867;35873:5;35836:43;;;;;;;;;;;;35448:439;;;;;:::o;35895:480::-;36019:7;36028;36037;36057:15;36075:24;36087:11;36075:7;:11;;:24;;;;:::i;:::-;36057:42;;36110:12;36125:21;36134:11;36125:4;:8;;:21;;;;:::i;:::-;36110:36;;36157:12;36172:21;36181:11;36172:4;:8;;:21;;;;:::i;:::-;36157:36;;36204:13;36220:22;36230:11;36220:5;:9;;:22;;;;:::i;:::-;36204:38;;36253:23;36279:38;36311:5;36279:27;36301:4;36279:17;36291:4;36279:7;:11;;:17;;;;:::i;:::-;:21;;:27;;;;:::i;:::-;:31;;:38;;;;:::i;:::-;36253:64;;36336:7;36345:15;36362:4;36328:39;;;;;;;;;;;35895:480;;;;;;;;;:::o;3987:136::-;4045:7;4072:43;4076:1;4079;4072:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4065:50;;3987:136;;;;:::o;6452:278::-;6538:7;6570:1;6566;:5;6573:12;6558:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6597:9;6613:1;6609;:5;;;;;;6597:17;;6721:1;6714:8;;;6452:278;;;;;:::o;41342:834::-;41453:7;41449:40;;41475:14;:12;:14::i;:::-;41449:40;41514:11;:19;41526:6;41514:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;41538:11;:22;41550:9;41538:22;;;;;;;;;;;;;;;;;;;;;;;;;41537:23;41514:46;41510:597;;;41577:48;41599:6;41607:9;41618:6;41577:21;:48::i;:::-;41510:597;;;41648:11;:19;41660:6;41648:19;;;;;;;;;;;;;;;;;;;;;;;;;41647:20;:46;;;;;41671:11;:22;41683:9;41671:22;;;;;;;;;;;;;;;;;;;;;;;;;41647:46;41643:464;;;41710:46;41730:6;41738:9;41749:6;41710:19;:46::i;:::-;41643:464;;;41779:11;:19;41791:6;41779:19;;;;;;;;;;;;;;;;;;;;;;;;;41778:20;:47;;;;;41803:11;:22;41815:9;41803:22;;;;;;;;;;;;;;;;;;;;;;;;;41802:23;41778:47;41774:333;;;41842:44;41860:6;41868:9;41879:6;41842:17;:44::i;:::-;41774:333;;;41908:11;:19;41920:6;41908:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;41931:11;:22;41943:9;41931:22;;;;;;;;;;;;;;;;;;;;;;;;;41908:45;41904:203;;;41970:48;41992:6;42000:9;42011:6;41970:21;:48::i;:::-;41904:203;;;42051:44;42069:6;42077:9;42088:6;42051:17;:44::i;:::-;41904:203;41774:333;41643:464;41510:597;42131:7;42127:41;;42153:15;:13;:15::i;:::-;42127:41;41342:834;;;;:::o;36554:561::-;36604:7;36613;36633:15;36651:7;;36633:25;;36669:15;36687:7;;36669:25;;36716:9;36711:289;36735:9;:16;;;;36731:1;:20;36711:289;;;36801:7;36777;:21;36785:9;36795:1;36785:12;;;;;;;;;;;;;;;;;;;;;;;;;36777:21;;;;;;;;;;;;;;;;:31;:66;;;;36836:7;36812;:21;36820:9;36830:1;36820:12;;;;;;;;;;;;;;;;;;;;;;;;;36812:21;;;;;;;;;;;;;;;;:31;36777:66;36773:97;;;36853:7;;36862;;36845:25;;;;;;;;;36773:97;36895:34;36907:7;:21;36915:9;36925:1;36915:12;;;;;;;;;;;;;;;;;;;;;;;;;36907:21;;;;;;;;;;;;;;;;36895:7;:11;;:34;;;;:::i;:::-;36885:44;;36954:34;36966:7;:21;36974:9;36984:1;36974:12;;;;;;;;;;;;;;;;;;;;;;;;;36966:21;;;;;;;;;;;;;;;;36954:7;:11;;:34;;;;:::i;:::-;36944:44;;36753:3;;;;;;;36711:289;;;;37024:20;37036:7;;37024;;:11;;:20;;;;:::i;:::-;37014:7;:30;37010:61;;;37054:7;;37063;;37046:25;;;;;;;;37010:61;37090:7;37099;37082:25;;;;;;36554:561;;;:::o;37774:204::-;37838:7;37858:11;37886:1;37872:10;;:15;:29;;37894:7;;37872:29;;;37890:1;37872:29;37858:43;;37919:51;37954:5;37919:16;37931:3;37919:7;:11;;:16;;;;:::i;:::-;:20;;:51;;;;:::i;:::-;37912:58;;;37774:204;;;:::o;37986:::-;38050:7;38070:11;38098:1;38084:10;;:15;:29;;38106:7;;38084:29;;;38102:1;38084:29;38070:43;;38131:51;38166:5;38131:16;38143:3;38131:7;:11;;:16;;;;:::i;:::-;:20;;:51;;;;:::i;:::-;38124:58;;;37986:204;;;:::o;38198:221::-;38263:7;38283:11;38311:1;38297:10;;:15;:45;;38334:8;;38297:45;;;38315:16;;38297:45;38283:59;;38360:51;38395:5;38360:16;38372:3;38360:7;:11;;:16;;;;:::i;:::-;:20;;:51;;;;:::i;:::-;38353:58;;;38198:221;;;:::o;38427:372::-;38484:1;38473:7;;:12;:28;;;;;38500:1;38489:7;;:12;38473:28;38470:40;;;38503:7;;38470:40;38548:7;;38530:15;:25;;;;38584:7;;38566:15;:25;;;;38621:8;;38602:16;:27;;;;38667:16;;38640:24;:43;;;;38714:1;38704:7;:11;;;;38736:1;38726:7;:11;;;;38759:1;38748:8;:12;;;;38790:1;38771:16;:20;;;;38427:372;:::o;43492:664::-;43595:23;43620:12;43634;43648:13;43665:20;43677:7;43665:11;:20::i;:::-;43594:91;;;;;;;;43697:15;43714:23;43739:12;43755:51;43767:7;43776:4;43782;43788:5;43795:10;:8;:10::i;:::-;43755:11;:51::i;:::-;43696:110;;;;;;43837:28;43857:7;43837;:15;43845:6;43837:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43819:7;:15;43827:6;43819:15;;;;;;;;;;;;;;;:46;;;;43894:28;43914:7;43894;:15;43902:6;43894:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43876:7;:15;43884:6;43876:15;;;;;;;;;;;;;;;:46;;;;43954:39;43977:15;43954:7;:18;43962:9;43954:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43933:7;:18;43941:9;43933:18;;;;;;;;;;;;;;;:60;;;;44007:17;44019:4;44007:11;:17::i;:::-;44035:19;44048:5;44035:12;:19::i;:::-;44065:23;44077:4;44083;44065:11;:23::i;:::-;44121:9;44104:44;;44113:6;44104:44;;;44132:15;44104:44;;;;;;;;;;;;;;;;;;43492:664;;;;;;;;;;:::o;42800:684::-;42901:23;42926:12;42940;42954:13;42971:20;42983:7;42971:11;:20::i;:::-;42900:91;;;;;;;;43003:15;43020:23;43045:12;43061:51;43073:7;43082:4;43088;43094:5;43101:10;:8;:10::i;:::-;43061:11;:51::i;:::-;43002:110;;;;;;43143:28;43163:7;43143;:15;43151:6;43143:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43125:7;:15;43133:6;43125:15;;;;;;;;;;;;;;;:46;;;;43203:39;43226:15;43203:7;:18;43211:9;43203:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43182:7;:18;43190:9;43182:18;;;;;;;;;;;;;;;:60;;;;43274:39;43297:15;43274:7;:18;43282:9;43274:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43253:7;:18;43261:9;43253:18;;;;;;;;;;;;;;;:60;;;;43335:17;43347:4;43335:11;:17::i;:::-;43363:19;43376:5;43363:12;:19::i;:::-;43393:23;43405:4;43411;43393:11;:23::i;:::-;43449:9;43432:44;;43441:6;43432:44;;;43460:15;43432:44;;;;;;;;;;;;;;;;;;42800:684;;;;;;;;;;:::o;42184:608::-;42283:23;42308:12;42322;42336:13;42353:20;42365:7;42353:11;:20::i;:::-;42282:91;;;;;;;;42385:15;42402:23;42427:12;42443:51;42455:7;42464:4;42470;42476:5;42483:10;:8;:10::i;:::-;42443:11;:51::i;:::-;42384:110;;;;;;42533:28;42553:7;42533;:15;42541:6;42533:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42515:7;:15;42523:6;42515:15;;;;;;;;;;;;;;;:46;;;;42593:39;42616:15;42593:7;:18;42601:9;42593:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42572:7;:18;42580:9;42572:18;;;;;;;;;;;;;;;:60;;;;42643:17;42655:4;42643:11;:17::i;:::-;42671:19;42684:5;42671:12;:19::i;:::-;42701:23;42713:4;42719;42701:11;:23::i;:::-;42757:9;42740:44;;42749:6;42740:44;;;42768:15;42740:44;;;;;;;;;;;;;;;;;;42184:608;;;;;;;;;;:::o;33740:732::-;33843:23;33868:12;33882;33896:13;33913:20;33925:7;33913:11;:20::i;:::-;33842:91;;;;;;;;33945:15;33962:23;33987:12;34003:51;34015:7;34024:4;34030;34036:5;34043:10;:8;:10::i;:::-;34003:11;:51::i;:::-;33944:110;;;;;;34085:28;34105:7;34085;:15;34093:6;34085:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;34067:7;:15;34075:6;34067:15;;;;;;;;;;;;;;;:46;;;;34142:28;34162:7;34142;:15;34150:6;34142:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;34124:7;:15;34132:6;34124:15;;;;;;;;;;;;;;;:46;;;;34202:39;34225:15;34202:7;:18;34210:9;34202:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;34181:7;:18;34189:9;34181:18;;;;;;;;;;;;;;;:60;;;;34273:39;34296:15;34273:7;:18;34281:9;34273:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;34252:7;:18;34260:9;34252:18;;;;;;;;;;;;;;;:60;;;;34323:17;34335:4;34323:11;:17::i;:::-;34351:19;34364:5;34351:12;:19::i;:::-;34381:23;34393:4;34399;34381:11;:23::i;:::-;34437:9;34420:44;;34429:6;34420:44;;;34448:15;34420:44;;;;;;;;;;;;;;;;;;33740:732;;;;;;;;;;:::o;38807:205::-;38861:15;;38851:7;:25;;;;38897:15;;38887:7;:25;;;;38934:16;;38923:8;:27;;;;38980:24;;38961:16;:43;;;;38807:205::o;37123:312::-;37177:19;37200:10;:8;:10::i;:::-;37177:33;;37221:12;37236:21;37245:11;37236:4;:8;;:21;;;;:::i;:::-;37221:36;;37291:30;37316:4;37291:7;:20;37299:11;;;;;;;;;;;37291:20;;;;;;;;;;;;;;;;:24;;:30;;;;:::i;:::-;37268:7;:20;37276:11;;;;;;;;;;;37268:20;;;;;;;;;;;;;;;:53;;;;37335:11;:24;37347:11;;;;;;;;;;;37335:24;;;;;;;;;;;;;;;;;;;;;;;;;37332:95;;;37397:30;37422:4;37397:7;:20;37405:11;;;;;;;;;;;37397:20;;;;;;;;;;;;;;;;:24;;:30;;;;:::i;:::-;37374:7;:20;37382:11;;;;;;;;;;;37374:20;;;;;;;;;;;;;;;:53;;;;37332:95;37123:312;;;:::o;37443:323::-;37499:19;37522:10;:8;:10::i;:::-;37499:33;;37543:13;37559:22;37569:11;37559:5;:9;;:22;;;;:::i;:::-;37543:38;;37616:32;37642:5;37616:7;:21;37624:12;;;;;;;;;;;37616:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;37592:7;:21;37600:12;;;;;;;;;;;37592:21;;;;;;;;;;;;;;;:56;;;;37662:11;:25;37674:12;;;;;;;;;;;37662:25;;;;;;;;;;;;;;;;;;;;;;;;;37659:99;;;37726:32;37752:5;37726:7;:21;37734:12;;;;;;;;;;;37726:21;;;;;;;;;;;;;;;;:25;;:32;;;;:::i;:::-;37702:7;:21;37710:12;;;;;;;;;;;37702:21;;;;;;;;;;;;;;;:56;;;;37659:99;37443:323;;;:::o;35293:147::-;35371:17;35383:4;35371:7;;:11;;:17;;;;:::i;:::-;35361:7;:27;;;;35412:20;35427:4;35412:10;;:14;;:20;;;;:::i;:::-;35399:10;:33;;;;35293:147;;:::o

Swarm Source

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