ETH Price: $3,312.98 (+0.16%)
Gas: 24 Gwei

Token

pcatv2.finance (pcatv2)
 

Overview

Max Total Supply

20,000 pcatv2

Holders

224

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
34.902241459081202681 pcatv2

Value
$0.00
0x9bd199396bec5d6d76ae062b290bf5e2b5fa6f4d
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:
PCATV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-01-06
*/

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

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 Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}



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

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


contract PCATV2 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 _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 20000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "pcatv2.finance";
    string private _symbol = "pcatv2";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    address [] public tokenHolder;
    uint256 public numberOfTokenHolders = 0;
    mapping(address => bool) public exist;
    uint256 private ethFees;

    //No limit
    uint256 public _maxTxAmount = _tTotal;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 8;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    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 and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = 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 totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _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");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            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(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        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 already 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 _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);
    }

    bool public limit = true;
    function changeLimit() public onlyOwner(){
        require(limit == true, 'limit is already false');
            limit = false;
    }
    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");
        if(limit ==  true && from != owner() && to != owner()){
            if(to != uniswapV2Pair){
                require(((balanceOf(to).add(amount)) <= 200 ether));
            }
            require(amount <= 200 ether, 'Transfer amount must be less than 200 tokens');
            }
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        if(!exist[to]){
            tokenHolder.push(to);
            numberOfTokenHolders++;
            exist[to] = true;
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //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, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }
    mapping(address => uint256) public myRewards;
    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 fees = contractTokenBalance.div(2);
        uint256 liquidity = contractTokenBalance.sub(fees);
        uint256 half = liquidity.div(2);
        uint256 otherHalf = liquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half.add(fees)); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 Balance = address(this).balance.sub(initialBalance);
        uint256 newBalance = Balance.mul(2).div(3);
        ethFees = ethFees.add(Balance.div(3));

        for(uint256 i = 0; i < numberOfTokenHolders; i++){
            uint256 share = (balanceOf(tokenHolder[i]).mul(ethFees)).div(totalSupply());
            myRewards[tokenHolder[i]] = myRewards[tokenHolder[i]].add(share);
        }
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }
    function seeRewards() public view returns(uint256){
        return myRewards[msg.sender];
    }
    function getRewards() public returns(bool){
        require(myRewards[msg.sender] > 0, 'You have zero rewards right now');
        uint256 _rewards = myRewards[msg.sender];
        myRewards[msg.sender] = myRewards[msg.sender].sub(_rewards);
        msg.sender.transfer(_rewards);
        return true;
    }
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        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 _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    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 setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_liquidityFee","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":"_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":[],"name":"changeLimit","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"exist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"myRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"seeRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60c060405269043c33c1937564800000600955600954600019816200002057fe5b0660001903600a556040518060400160405280600e81526020017f7063617476322e66696e616e6365000000000000000000000000000000000000815250600c9080519060200190620000759291906200061d565b506040518060400160405280600681526020017f7063617476320000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200061d565b506012600e60006101000a81548160ff021916908360ff1602179055506002600f55600f54601055600360115560115460125560006014556009546017556000601860016101000a81548160ff02191690831515021790555060086019556001601a60006101000a81548160ff0219169083151502179055503480156200014957600080fd5b5060006200015c620005ec60201b60201c565b90506200016e620005ec60201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a546003600062000220620005ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002be57600080fd5b505afa158015620002d3573d6000803e3d6000fd5b505050506040513d6020811015620002ea57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200035e57600080fd5b505afa15801562000373573d6000803e3d6000fd5b505050506040513d60208110156200038a57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200040557600080fd5b505af11580156200041a573d6000803e3d6000fd5b505050506040513d60208110156200043157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004c5620005f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200057e620005ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350620006c3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200066057805160ff191683800117855562000691565b8280016001018555821562000691579182015b828111156200069057825182559160200191906001019062000673565b5b509050620006a09190620006a4565b5090565b5b80821115620006bf576000816000905550600101620006a5565b5090565b60805160601c60a05160601c6159826200071060003980611df052806135d452806138e952508061131452806147b3528061489f52806148c652806149d152806149f852506159826000f3fe6080604052600436106102765760003560e01c806352390c021161014f578063a457c2d7116100c1578063c9ef05791161007a578063c9ef057914610dd0578063d543dbeb14610dfb578063dd46706414610e36578063dd62ed3e14610e71578063ea2f0b3714610ef6578063f2fde38b14610f475761027d565b8063a457c2d714610c42578063a4d66daf14610cb3578063a69df4b514610ce0578063a9059cbb14610cf7578063b6c5232414610d68578063c49b9a8014610d935761027d565b80637d1db4a5116101135780637d1db4a514610a3f578063862a4bf214610a6a57806388f8202014610acf5780638da5cb5b14610b365780638ee88c5314610b7757806395d89b4114610bb25761027d565b806352390c02146108e05780635342acb4146109315780636bc87c3a1461099857806370a08231146109c3578063715018a614610a285761027d565b80632d838119116101e85780633bd5d173116101ac5780633bd5d17314610724578063437823ec1461075f5780634549b039146107b057806349bd5a5e1461080b5780634a74bb021461084c5780634dfefc4b146108795761027d565b80632d838119146105ba578063313ce567146106095780633685d4191461063757806339509351146106885780633b124fe7146106f95761027d565b80631694505e1161023a5780631694505e14610416578063178ef3071461045757806318160ddd1461048257806320b9588c146104ad57806323b872dd146105125780632cde6081146105a35761027d565b80630572b0cc14610282578063061c82d0146102af57806306fdde03146102ea578063095ea7b31461037a57806313114a9d146103eb5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610f98565b60405180821515815260200191505060405180910390f35b3480156102bb57600080fd5b506102e8600480360360208110156102d257600080fd5b8101908080359060200190929190505050611176565b005b3480156102f657600080fd5b506102ff611248565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033f578082015181840152602081019050610324565b50505050905090810190601f16801561036c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038657600080fd5b506103d36004803603604081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ea565b60405180821515815260200191505060405180910390f35b3480156103f757600080fd5b50610400611308565b6040518082815260200191505060405180910390f35b34801561042257600080fd5b5061042b611312565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046357600080fd5b5061046c611336565b6040518082815260200191505060405180910390f35b34801561048e57600080fd5b5061049761133c565b6040518082815260200191505060405180910390f35b3480156104b957600080fd5b506104fc600480360360208110156104d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611346565b6040518082815260200191505060405180910390f35b34801561051e57600080fd5b5061058b6004803603606081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061135e565b60405180821515815260200191505060405180910390f35b3480156105af57600080fd5b506105b8611437565b005b3480156105c657600080fd5b506105f3600480360360208110156105dd57600080fd5b81019080803590602001909291905050506115a5565b6040518082815260200191505060405180910390f35b34801561061557600080fd5b5061061e611629565b604051808260ff16815260200191505060405180910390f35b34801561064357600080fd5b506106866004803603602081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611640565b005b34801561069457600080fd5b506106e1600480360360408110156106ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119ca565b60405180821515815260200191505060405180910390f35b34801561070557600080fd5b5061070e611a7d565b6040518082815260200191505060405180910390f35b34801561073057600080fd5b5061075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611a83565b005b34801561076b57600080fd5b506107ae6004803603602081101561078257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c14565b005b3480156107bc57600080fd5b506107f5600480360360408110156107d357600080fd5b8101908080359060200190929190803515159060200190929190505050611d37565b6040518082815260200191505060405180910390f35b34801561081757600080fd5b50610820611dee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085857600080fd5b50610861611e12565b60405180821515815260200191505060405180910390f35b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e25565b60405180821515815260200191505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e45565b005b34801561093d57600080fd5b506109806004803603602081101561095457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061215f565b60405180821515815260200191505060405180910390f35b3480156109a457600080fd5b506109ad6121b5565b6040518082815260200191505060405180910390f35b3480156109cf57600080fd5b50610a12600480360360208110156109e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121bb565b6040518082815260200191505060405180910390f35b348015610a3457600080fd5b50610a3d6122a6565b005b348015610a4b57600080fd5b50610a5461242c565b6040518082815260200191505060405180910390f35b348015610a7657600080fd5b50610aa360048036036020811015610a8d57600080fd5b8101908080359060200190929190505050612432565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610adb57600080fd5b50610b1e60048036036020811015610af257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061246e565b60405180821515815260200191505060405180910390f35b348015610b4257600080fd5b50610b4b6124c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b8357600080fd5b50610bb060048036036020811015610b9a57600080fd5b81019080803590602001909291905050506124ed565b005b348015610bbe57600080fd5b50610bc76125bf565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c07578082015181840152602081019050610bec565b50505050905090810190601f168015610c345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c4e57600080fd5b50610c9b60048036036040811015610c6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612661565b60405180821515815260200191505060405180910390f35b348015610cbf57600080fd5b50610cc861272e565b60405180821515815260200191505060405180910390f35b348015610cec57600080fd5b50610cf5612741565b005b348015610d0357600080fd5b50610d5060048036036040811015610d1a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061295e565b60405180821515815260200191505060405180910390f35b348015610d7457600080fd5b50610d7d61297c565b6040518082815260200191505060405180910390f35b348015610d9f57600080fd5b50610dce60048036036020811015610db657600080fd5b81019080803515159060200190929190505050612986565b005b348015610ddc57600080fd5b50610de5612aa4565b6040518082815260200191505060405180910390f35b348015610e0757600080fd5b50610e3460048036036020811015610e1e57600080fd5b8101908080359060200190929190505050612aeb565b005b348015610e4257600080fd5b50610e6f60048036036020811015610e5957600080fd5b8101908080359060200190929190505050612be4565b005b348015610e7d57600080fd5b50610ee060048036036040811015610e9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dd5565b6040518082815260200191505060405180910390f35b348015610f0257600080fd5b50610f4560048036036020811015610f1957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e5c565b005b348015610f5357600080fd5b50610f9660048036036020811015610f6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f7f565b005b600080601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f596f752068617665207a65726f2072657761726473207269676874206e6f770081525060200191505060405180910390fd5b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506110e481601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561116d573d6000803e3d6000fd5b50600191505090565b61117e6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e05780601f106112b5576101008083540402835291602001916112e0565b820191906000526020600020905b8154815290600101906020018083116112c357829003601f168201915b5050505050905090565b60006112fe6112f76131d4565b84846131dc565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60145481565b6000600954905090565b601b6020528060005260406000206000915090505481565b600061136b8484846133d3565b61142c846113776131d4565b6114278560405180606001604052806028815260200161583f60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113dd6131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a249092919063ffffffff16565b6131dc565b600190509392505050565b61143f6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515601a60009054906101000a900460ff16151514611588576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6c696d697420697320616c72656164792066616c73650000000000000000000081525060200191505060405180910390fd5b6000601a60006101000a81548160ff021916908315150217905550565b6000600a54821115611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615758602a913960400191505060405180910390fd5b600061160c613ae4565b90506116218184613b0f90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6116486131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156119c6578173ffffffffffffffffffffffffffffffffffffffff16600882815481106117fb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119b95760086001600880549050038154811061185757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061188f57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061197f57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556119c6565b80806001019150506117ca565b5050565b6000611a736119d76131d4565b84611a6e85600560006119e86131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b6131dc565b6001905092915050565b600f5481565b6000611a8d6131d4565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806158d9602c913960400191505060405180910390fd5b6000611b3d83613be1565b50505050509050611b9681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bee81600a5461318a90919063ffffffff16565b600a81905550611c0983600b54613b5990919063ffffffff16565b600b81905550505050565b611c1c6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611dd1576000611dc184613be1565b5050505050905080915050611de8565b6000611ddc84613be1565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601860019054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b611e4d6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120a15761205d600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a5565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561225657600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122a1565b61229e600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a5565b90505b919050565b6122ae6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461236e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6013818154811061243f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f56131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126575780601f1061262c57610100808354040283529160200191612657565b820191906000526020600020905b81548152906001019060200180831161263a57829003601f168201915b5050505050905090565b600061272461266e6131d4565b8461271f8560405180606001604052806025815260200161592860259139600560006126986131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a249092919063ffffffff16565b6131dc565b6001905092915050565b601a60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159056023913960400191505060405180910390fd5b600254421161285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061297261296b6131d4565b84846133d3565b6001905092915050565b6000600254905090565b61298e6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b612af36131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612bdb6064612bcd83600954613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b60178190555050565b612bec6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612e646131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f876131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613047576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157826026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006131cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a24565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158b56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157a86022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158906025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157356023913960400191505060405180910390fd5b60008111613538576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158676029913960400191505060405180910390fd5b60011515601a60009054906101000a900460ff16151514801561358e575061355e6124c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156135cd575061359d6124c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156136b9577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461365657680ad78ebc5ac620000061364a8261363c856121bb565b613b5990919063ffffffff16565b111561365557600080fd5b5b680ad78ebc5ac62000008111156136b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806157f2602c913960400191505060405180910390fd5b5b6136c16124c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561372f57506136ff6124c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156137905760175481111561378f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157ca6028913960400191505060405180910390fd5b5b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138af576013829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014600081548092919060010191905055506001601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006138ba306121bb565b9050600060195482101590508080156138e05750601860009054906101000a900460ff16155b801561393857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156139505750601860019054906101000a900460ff165b1561395f5761395e82613cc3565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a065750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a1057600090505b613a1c86868684613fd2565b505050505050565b6000838311158290613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a96578082015181840152602081019050613a7b565b50505050905090810190601f168015613ac35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613af16142e3565b91509150613b088183613b0f90919063ffffffff16565b9250505090565b6000613b5183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614574565b905092915050565b600080828401905083811015613bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613bf88a61463a565b9250925092506000806000613c168d8686613c11613ae4565b614694565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600080831415613c505760009050613cbd565b6000828402905082848281613c6157fe5b0414613cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061581e6021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff0219169083151502179055506000613cf4600283613b0f90919063ffffffff16565b90506000613d0b828461318a90919063ffffffff16565b90506000613d23600283613b0f90919063ffffffff16565b90506000613d3a828461318a90919063ffffffff16565b90506000479050613d5c613d578685613b5990919063ffffffff16565b61471d565b6000613d71824761318a90919063ffffffff16565b90506000613d9c6003613d8e600285613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050613dc6613db5600384613b0f90919063ffffffff16565b601654613b5990919063ffffffff16565b60168190555060005b601454811015613f5b576000613e48613de661133c565b613e3a601654613e2c60138781548110613dfc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121bb565b613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050613ed381601b600060138681548110613e5f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b601b600060138581548110613ee457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080600101915050613dcf565b50613f6684826149cb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a1505050505050506000601860006101000a81548160ff02191690831515021790555050565b80613fe057613fdf614b1c565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156140835750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561409857614093848484614b5f565b6142cf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561413b5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141505761414b848484614dbf565b6142ce565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141f45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142095761420484848461501f565b6142cd565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142ab5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142c0576142bb8484846151ea565b6142cc565b6142cb84848461501f565b5b5b5b5b806142dd576142dc6154df565b5b50505050565b6000806000600a5490506000600954905060005b6008805490508110156145375782600360006008848154811061431657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806143fd575081600460006008848154811061439557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561441457600a5460095494509450505050614570565b61449d600360006008848154811061442857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461318a90919063ffffffff16565b925061452860046000600884815481106144b357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361318a90919063ffffffff16565b915080806001019150506142f7565b5061454f600954600a54613b0f90919063ffffffff16565b82101561456757600a54600954935093505050614570565b81819350935050505b9091565b60008083118290614620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145e55780820151818401526020810190506145ca565b50505050905090810190601f1680156146125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161462c57fe5b049050809150509392505050565b600080600080614649856154f3565b9050600061465686615524565b9050600061467f82614671858a61318a90919063ffffffff16565b61318a90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806146ad8589613c3d90919063ffffffff16565b905060006146c48689613c3d90919063ffffffff16565b905060006146db8789613c3d90919063ffffffff16565b90506000614704826146f6858761318a90919063ffffffff16565b61318a90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561473757600080fd5b506040519080825280602002602001820160405280156147665781602001602082028036833780820191505090505b509050308160008151811061477757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561481757600080fd5b505afa15801561482b573d6000803e3d6000fd5b505050506040513d602081101561484157600080fd5b81019080805190602001909291905050508160018151811061485f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506148c4307f0000000000000000000000000000000000000000000000000000000000000000846131dc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561498657808201518184015260208101905061496b565b505050509050019650505050505050600060405180830381600087803b1580156149af57600080fd5b505af11580156149c3573d6000803e3d6000fd5b505050505050565b6149f6307f0000000000000000000000000000000000000000000000000000000000000000846131dc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a406124c4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614ac557600080fd5b505af1158015614ad9573d6000803e3d6000fd5b50505050506040513d6060811015614af057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f54148015614b3057506000601154145b15614b3a57614b5d565b600f546010819055506011546012819055506000600f8190555060006011819055505b565b600080600080600080614b7187613be1565b955095509550955095509550614bcf87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c6486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cf985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d4581615555565b614d4f84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614dd187613be1565b955095509550955095509550614e2f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ec483600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f5985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fa581615555565b614faf84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061503187613be1565b95509550955095509550955061508f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061512485600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061517081615555565b61517a84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806151fc87613be1565b95509550955095509550955061525a87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152ef86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061538483600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061541985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061546581615555565b61546f84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550565b600061551d606461550f600f5485613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050919050565b600061554e606461554060115485613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050919050565b600061555f613ae4565b905060006155768284613c3d90919063ffffffff16565b90506155ca81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156156f5576156b183600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61570f82600a5461318a90919063ffffffff16565b600a8190555061572a81600b54613b5990919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e5472616e7366657220616d6f756e74206d757374206265206c657373207468616e2032303020746f6b656e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6952f5fa144beb8f1de2351e19dae449165258fb55aea98c5b5ee18cf66805964736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102765760003560e01c806352390c021161014f578063a457c2d7116100c1578063c9ef05791161007a578063c9ef057914610dd0578063d543dbeb14610dfb578063dd46706414610e36578063dd62ed3e14610e71578063ea2f0b3714610ef6578063f2fde38b14610f475761027d565b8063a457c2d714610c42578063a4d66daf14610cb3578063a69df4b514610ce0578063a9059cbb14610cf7578063b6c5232414610d68578063c49b9a8014610d935761027d565b80637d1db4a5116101135780637d1db4a514610a3f578063862a4bf214610a6a57806388f8202014610acf5780638da5cb5b14610b365780638ee88c5314610b7757806395d89b4114610bb25761027d565b806352390c02146108e05780635342acb4146109315780636bc87c3a1461099857806370a08231146109c3578063715018a614610a285761027d565b80632d838119116101e85780633bd5d173116101ac5780633bd5d17314610724578063437823ec1461075f5780634549b039146107b057806349bd5a5e1461080b5780634a74bb021461084c5780634dfefc4b146108795761027d565b80632d838119146105ba578063313ce567146106095780633685d4191461063757806339509351146106885780633b124fe7146106f95761027d565b80631694505e1161023a5780631694505e14610416578063178ef3071461045757806318160ddd1461048257806320b9588c146104ad57806323b872dd146105125780632cde6081146105a35761027d565b80630572b0cc14610282578063061c82d0146102af57806306fdde03146102ea578063095ea7b31461037a57806313114a9d146103eb5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610f98565b60405180821515815260200191505060405180910390f35b3480156102bb57600080fd5b506102e8600480360360208110156102d257600080fd5b8101908080359060200190929190505050611176565b005b3480156102f657600080fd5b506102ff611248565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561033f578082015181840152602081019050610324565b50505050905090810190601f16801561036c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038657600080fd5b506103d36004803603604081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112ea565b60405180821515815260200191505060405180910390f35b3480156103f757600080fd5b50610400611308565b6040518082815260200191505060405180910390f35b34801561042257600080fd5b5061042b611312565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046357600080fd5b5061046c611336565b6040518082815260200191505060405180910390f35b34801561048e57600080fd5b5061049761133c565b6040518082815260200191505060405180910390f35b3480156104b957600080fd5b506104fc600480360360208110156104d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611346565b6040518082815260200191505060405180910390f35b34801561051e57600080fd5b5061058b6004803603606081101561053557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061135e565b60405180821515815260200191505060405180910390f35b3480156105af57600080fd5b506105b8611437565b005b3480156105c657600080fd5b506105f3600480360360208110156105dd57600080fd5b81019080803590602001909291905050506115a5565b6040518082815260200191505060405180910390f35b34801561061557600080fd5b5061061e611629565b604051808260ff16815260200191505060405180910390f35b34801561064357600080fd5b506106866004803603602081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611640565b005b34801561069457600080fd5b506106e1600480360360408110156106ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119ca565b60405180821515815260200191505060405180910390f35b34801561070557600080fd5b5061070e611a7d565b6040518082815260200191505060405180910390f35b34801561073057600080fd5b5061075d6004803603602081101561074757600080fd5b8101908080359060200190929190505050611a83565b005b34801561076b57600080fd5b506107ae6004803603602081101561078257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c14565b005b3480156107bc57600080fd5b506107f5600480360360408110156107d357600080fd5b8101908080359060200190929190803515159060200190929190505050611d37565b6040518082815260200191505060405180910390f35b34801561081757600080fd5b50610820611dee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561085857600080fd5b50610861611e12565b60405180821515815260200191505060405180910390f35b34801561088557600080fd5b506108c86004803603602081101561089c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e25565b60405180821515815260200191505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e45565b005b34801561093d57600080fd5b506109806004803603602081101561095457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061215f565b60405180821515815260200191505060405180910390f35b3480156109a457600080fd5b506109ad6121b5565b6040518082815260200191505060405180910390f35b3480156109cf57600080fd5b50610a12600480360360208110156109e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121bb565b6040518082815260200191505060405180910390f35b348015610a3457600080fd5b50610a3d6122a6565b005b348015610a4b57600080fd5b50610a5461242c565b6040518082815260200191505060405180910390f35b348015610a7657600080fd5b50610aa360048036036020811015610a8d57600080fd5b8101908080359060200190929190505050612432565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610adb57600080fd5b50610b1e60048036036020811015610af257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061246e565b60405180821515815260200191505060405180910390f35b348015610b4257600080fd5b50610b4b6124c4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b8357600080fd5b50610bb060048036036020811015610b9a57600080fd5b81019080803590602001909291905050506124ed565b005b348015610bbe57600080fd5b50610bc76125bf565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c07578082015181840152602081019050610bec565b50505050905090810190601f168015610c345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c4e57600080fd5b50610c9b60048036036040811015610c6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612661565b60405180821515815260200191505060405180910390f35b348015610cbf57600080fd5b50610cc861272e565b60405180821515815260200191505060405180910390f35b348015610cec57600080fd5b50610cf5612741565b005b348015610d0357600080fd5b50610d5060048036036040811015610d1a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061295e565b60405180821515815260200191505060405180910390f35b348015610d7457600080fd5b50610d7d61297c565b6040518082815260200191505060405180910390f35b348015610d9f57600080fd5b50610dce60048036036020811015610db657600080fd5b81019080803515159060200190929190505050612986565b005b348015610ddc57600080fd5b50610de5612aa4565b6040518082815260200191505060405180910390f35b348015610e0757600080fd5b50610e3460048036036020811015610e1e57600080fd5b8101908080359060200190929190505050612aeb565b005b348015610e4257600080fd5b50610e6f60048036036020811015610e5957600080fd5b8101908080359060200190929190505050612be4565b005b348015610e7d57600080fd5b50610ee060048036036040811015610e9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612dd5565b6040518082815260200191505060405180910390f35b348015610f0257600080fd5b50610f4560048036036020811015610f1957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e5c565b005b348015610f5357600080fd5b50610f9660048036036020811015610f6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f7f565b005b600080601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f596f752068617665207a65726f2072657761726473207269676874206e6f770081525060200191505060405180910390fd5b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506110e481601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561116d573d6000803e3d6000fd5b50600191505090565b61117e6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112e05780601f106112b5576101008083540402835291602001916112e0565b820191906000526020600020905b8154815290600101906020018083116112c357829003601f168201915b5050505050905090565b60006112fe6112f76131d4565b84846131dc565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60145481565b6000600954905090565b601b6020528060005260406000206000915090505481565b600061136b8484846133d3565b61142c846113776131d4565b6114278560405180606001604052806028815260200161583f60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113dd6131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a249092919063ffffffff16565b6131dc565b600190509392505050565b61143f6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515601a60009054906101000a900460ff16151514611588576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6c696d697420697320616c72656164792066616c73650000000000000000000081525060200191505060405180910390fd5b6000601a60006101000a81548160ff021916908315150217905550565b6000600a54821115611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615758602a913960400191505060405180910390fd5b600061160c613ae4565b90506116218184613b0f90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6116486131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156119c6578173ffffffffffffffffffffffffffffffffffffffff16600882815481106117fb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119b95760086001600880549050038154811061185757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061188f57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061197f57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556119c6565b80806001019150506117ca565b5050565b6000611a736119d76131d4565b84611a6e85600560006119e86131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b6131dc565b6001905092915050565b600f5481565b6000611a8d6131d4565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806158d9602c913960400191505060405180910390fd5b6000611b3d83613be1565b50505050509050611b9681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bee81600a5461318a90919063ffffffff16565b600a81905550611c0983600b54613b5990919063ffffffff16565b600b81905550505050565b611c1c6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cdc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611db1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611dd1576000611dc184613be1565b5050505050905080915050611de8565b6000611ddc84613be1565b50505050915050809150505b92915050565b7f000000000000000000000000b7a48277ac6517f3f19e3b4c380b1eb5c7b01a0781565b601860019054906101000a900460ff1681565b60156020528060005260406000206000915054906101000a900460ff1681565b611e4d6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156120a15761205d600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a5565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561225657600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506122a1565b61229e600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115a5565b90505b919050565b6122ae6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461236e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6013818154811061243f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f56131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126575780601f1061262c57610100808354040283529160200191612657565b820191906000526020600020905b81548152906001019060200180831161263a57829003601f168201915b5050505050905090565b600061272461266e6131d4565b8461271f8560405180606001604052806025815260200161592860259139600560006126986131d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a249092919063ffffffff16565b6131dc565b6001905092915050565b601a60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159056023913960400191505060405180910390fd5b600254421161285e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061297261296b6131d4565b84846133d3565b6001905092915050565b6000600254905090565b61298e6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b612af36131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612bb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612bdb6064612bcd83600954613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b60178190555050565b612bec6131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612e646131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612f876131d4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613047576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806157826026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006131cc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613a24565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158b56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157a86022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613459576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158906025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806157356023913960400191505060405180910390fd5b60008111613538576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158676029913960400191505060405180910390fd5b60011515601a60009054906101000a900460ff16151514801561358e575061355e6124c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156135cd575061359d6124c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156136b9577f000000000000000000000000b7a48277ac6517f3f19e3b4c380b1eb5c7b01a0773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461365657680ad78ebc5ac620000061364a8261363c856121bb565b613b5990919063ffffffff16565b111561365557600080fd5b5b680ad78ebc5ac62000008111156136b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806157f2602c913960400191505060405180910390fd5b5b6136c16124c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561372f57506136ff6124c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156137905760175481111561378f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157ca6028913960400191505060405180910390fd5b5b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166138af576013829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014600081548092919060010191905055506001601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006138ba306121bb565b9050600060195482101590508080156138e05750601860009054906101000a900460ff16155b801561393857507f000000000000000000000000b7a48277ac6517f3f19e3b4c380b1eb5c7b01a0773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156139505750601860019054906101000a900460ff165b1561395f5761395e82613cc3565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613a065750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a1057600090505b613a1c86868684613fd2565b505050505050565b6000838311158290613ad1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a96578082015181840152602081019050613a7b565b50505050905090810190601f168015613ac35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613af16142e3565b91509150613b088183613b0f90919063ffffffff16565b9250505090565b6000613b5183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614574565b905092915050565b600080828401905083811015613bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613bf88a61463a565b9250925092506000806000613c168d8686613c11613ae4565b614694565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600080831415613c505760009050613cbd565b6000828402905082848281613c6157fe5b0414613cb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061581e6021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff0219169083151502179055506000613cf4600283613b0f90919063ffffffff16565b90506000613d0b828461318a90919063ffffffff16565b90506000613d23600283613b0f90919063ffffffff16565b90506000613d3a828461318a90919063ffffffff16565b90506000479050613d5c613d578685613b5990919063ffffffff16565b61471d565b6000613d71824761318a90919063ffffffff16565b90506000613d9c6003613d8e600285613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050613dc6613db5600384613b0f90919063ffffffff16565b601654613b5990919063ffffffff16565b60168190555060005b601454811015613f5b576000613e48613de661133c565b613e3a601654613e2c60138781548110613dfc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166121bb565b613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050613ed381601b600060138681548110613e5f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b601b600060138581548110613ee457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550508080600101915050613dcf565b50613f6684826149cb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185828660405180848152602001838152602001828152602001935050505060405180910390a1505050505050506000601860006101000a81548160ff02191690831515021790555050565b80613fe057613fdf614b1c565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156140835750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561409857614093848484614b5f565b6142cf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561413b5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141505761414b848484614dbf565b6142ce565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141f45750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142095761420484848461501f565b6142cd565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156142ab5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156142c0576142bb8484846151ea565b6142cc565b6142cb84848461501f565b5b5b5b5b806142dd576142dc6154df565b5b50505050565b6000806000600a5490506000600954905060005b6008805490508110156145375782600360006008848154811061431657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806143fd575081600460006008848154811061439557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561441457600a5460095494509450505050614570565b61449d600360006008848154811061442857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461318a90919063ffffffff16565b925061452860046000600884815481106144b357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361318a90919063ffffffff16565b915080806001019150506142f7565b5061454f600954600a54613b0f90919063ffffffff16565b82101561456757600a54600954935093505050614570565b81819350935050505b9091565b60008083118290614620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145e55780820151818401526020810190506145ca565b50505050905090810190601f1680156146125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161462c57fe5b049050809150509392505050565b600080600080614649856154f3565b9050600061465686615524565b9050600061467f82614671858a61318a90919063ffffffff16565b61318a90919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806146ad8589613c3d90919063ffffffff16565b905060006146c48689613c3d90919063ffffffff16565b905060006146db8789613c3d90919063ffffffff16565b90506000614704826146f6858761318a90919063ffffffff16565b61318a90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561473757600080fd5b506040519080825280602002602001820160405280156147665781602001602082028036833780820191505090505b509050308160008151811061477757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561481757600080fd5b505afa15801561482b573d6000803e3d6000fd5b505050506040513d602081101561484157600080fd5b81019080805190602001909291905050508160018151811061485f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506148c4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846131dc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561498657808201518184015260208101905061496b565b505050509050019650505050505050600060405180830381600087803b1580156149af57600080fd5b505af11580156149c3573d6000803e3d6000fd5b505050505050565b6149f6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846131dc565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a406124c4565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614ac557600080fd5b505af1158015614ad9573d6000803e3d6000fd5b50505050506040513d6060811015614af057600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f54148015614b3057506000601154145b15614b3a57614b5d565b600f546010819055506011546012819055506000600f8190555060006011819055505b565b600080600080600080614b7187613be1565b955095509550955095509550614bcf87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c6486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cf985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d4581615555565b614d4f84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614dd187613be1565b955095509550955095509550614e2f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ec483600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f5985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fa581615555565b614faf84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061503187613be1565b95509550955095509550955061508f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061512485600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061517081615555565b61517a84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806151fc87613be1565b95509550955095509550955061525a87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152ef86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318a90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061538483600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061541985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061546581615555565b61546f84836156fa565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550565b600061551d606461550f600f5485613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050919050565b600061554e606461554060115485613c3d90919063ffffffff16565b613b0f90919063ffffffff16565b9050919050565b600061555f613ae4565b905060006155768284613c3d90919063ffffffff16565b90506155ca81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156156f5576156b183600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b5990919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61570f82600a5461318a90919063ffffffff16565b600a8190555061572a81600b54613b5990919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e5472616e7366657220616d6f756e74206d757374206265206c657373207468616e2032303020746f6b656e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6952f5fa144beb8f1de2351e19dae449165258fb55aea98c5b5ee18cf66805964736f6c634300060c0033

Deployed Bytecode Sourcemap

25827:19764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36639:313;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44906:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28345:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29257:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30378:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27007:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26819:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28622:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35056:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29426:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32881:136;;;;;;;;;;;;;:::i;:::-;;31302:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28531:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32018:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29747:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26591:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30473:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44661:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30858:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27065:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27144:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26865:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31563:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44526:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26678:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28725:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16422:148;;;;;;;;;;;;;:::i;:::-;;26957:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26783:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30250:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15779:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45016:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28436:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29973:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32850:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17432:293;;;;;;;;;;;;;:::i;:::-;;28931:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16977:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45319:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36536:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45149:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17142:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29106:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44784:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16725:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36639:313;36676:4;36724:1;36700:9;:21;36710:10;36700:21;;;;;;;;;;;;;;;;:25;36692:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:16;36791:9;:21;36801:10;36791:21;;;;;;;;;;;;;;;;36772:40;;36847:35;36873:8;36847:9;:21;36857:10;36847:21;;;;;;;;;;;;;;;;:25;;:35;;;;:::i;:::-;36823:9;:21;36833:10;36823:21;;;;;;;;;;;;;;;:59;;;;36893:10;:19;;:29;36913:8;36893:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36940:4;36933:11;;;36639:313;:::o;44906:98::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44990:6:::1;44980:7;:16;;;;44906:98:::0;:::o;28345:83::-;28382:13;28415:5;28408:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28345:83;:::o;29257:161::-;29332:4;29349:39;29358:12;:10;:12::i;:::-;29372:7;29381:6;29349:8;:39::i;:::-;29406:4;29399:11;;29257:161;;;;:::o;30378:87::-;30420:7;30447:10;;30440:17;;30378:87;:::o;27007:51::-;;;:::o;26819:39::-;;;;:::o;28622:95::-;28675:7;28702;;28695:14;;28622:95;:::o;35056:44::-;;;;;;;;;;;;;;;;;:::o;29426:313::-;29524:4;29541:36;29551:6;29559:9;29570:6;29541:9;:36::i;:::-;29588:121;29597:6;29605:12;:10;:12::i;:::-;29619:89;29657:6;29619:89;;;;;;;;;;;;;;;;;:11;:19;29631:6;29619:19;;;;;;;;;;;;;;;:33;29639:12;:10;:12::i;:::-;29619:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29588:8;:121::i;:::-;29727:4;29720:11;;29426:313;;;;;:::o;32881:136::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32950:4:::1;32941:13;;:5;;;;;;;;;;;:13;;;32933:48;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33004:5;32996;;:13;;;;;;;;;;;;;;;;;;32881:136::o:0;31302:253::-;31368:7;31407;;31396;:18;;31388:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31472:19;31495:10;:8;:10::i;:::-;31472:33;;31523:24;31535:11;31523:7;:11;;:24;;;;:::i;:::-;31516:31;;;31302:253;;;:::o;28531:83::-;28572:5;28597:9;;;;;;;;;;;28590:16;;28531:83;:::o;32018:479::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32100:11:::1;:20;32112:7;32100:20;;;;;;;;;;;;;;;;;;;;;;;;;32092:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32168:9;32163:327;32187:9;:16;;;;32183:1;:20;32163:327;;;32245:7;32229:23;;:9;32239:1;32229:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32225:254;;;32288:9;32317:1;32298:9;:16;;;;:20;32288:31;;;;;;;;;;;;;;;;;;;;;;;;;32273:9;32283:1;32273:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32357:1;32338:7;:16;32346:7;32338:16;;;;;;;;;;;;;;;:20;;;;32400:5;32377:11;:20;32389:7;32377:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32424:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32458:5;;32225:254;32205:3;;;;;;;32163:327;;;;32018:479:::0;:::o;29747:218::-;29835:4;29852:83;29861:12;:10;:12::i;:::-;29875:7;29884:50;29923:10;29884:11;:25;29896:12;:10;:12::i;:::-;29884:25;;;;;;;;;;;;;;;:34;29910:7;29884:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29852:8;:83::i;:::-;29953:4;29946:11;;29747:218;;;;:::o;26591:26::-;;;;:::o;30473:377::-;30525:14;30542:12;:10;:12::i;:::-;30525:29;;30574:11;:19;30586:6;30574:19;;;;;;;;;;;;;;;;;;;;;;;;;30573:20;30565:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30654:15;30678:19;30689:7;30678:10;:19::i;:::-;30653:44;;;;;;;30726:28;30746:7;30726;:15;30734:6;30726:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30708:7;:15;30716:6;30708:15;;;;;;;;;;;;;;;:46;;;;30775:20;30787:7;30775;;:11;;:20;;;;:::i;:::-;30765:7;:30;;;;30819:23;30834:7;30819:10;;:14;;:23;;;;:::i;:::-;30806:10;:36;;;;30473:377;;;:::o;44661:111::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44760:4:::1;44730:18;:27;44749:7;44730:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;44661:111:::0;:::o;30858:436::-;30948:7;30987;;30976;:18;;30968:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31046:17;31041:246;;31081:15;31105:19;31116:7;31105:10;:19::i;:::-;31080:44;;;;;;;31146:7;31139:14;;;;;31041:246;31188:23;31219:19;31230:7;31219:10;:19::i;:::-;31186:52;;;;;;;31260:15;31253:22;;;30858:436;;;;;:::o;27065:38::-;;;:::o;27144:41::-;;;;;;;;;;;;;:::o;26865:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;31563:447::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31760:11:::1;:20;31772:7;31760:20;;;;;;;;;;;;;;;;;;;;;;;;;31759:21;31751:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31845:1;31826:7;:16;31834:7;31826:16;;;;;;;;;;;;;;;;:20;31823:108;;;31882:37;31902:7;:16;31910:7;31902:16;;;;;;;;;;;;;;;;31882:19;:37::i;:::-;31863:7;:16;31871:7;31863:16;;;;;;;;;;;;;;;:56;;;;31823:108;31964:4;31941:11;:20;31953:7;31941:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31979:9;31994:7;31979:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31563:447:::0;:::o;44526:123::-;44590:4;44614:18;:27;44633:7;44614:27;;;;;;;;;;;;;;;;;;;;;;;;;44607:34;;44526:123;;;:::o;26678:32::-;;;;:::o;28725:198::-;28791:7;28815:11;:20;28827:7;28815:20;;;;;;;;;;;;;;;;;;;;;;;;;28811:49;;;28844:7;:16;28852:7;28844:16;;;;;;;;;;;;;;;;28837:23;;;;28811:49;28878:37;28898:7;:16;28906:7;28898:16;;;;;;;;;;;;;;;;28878:19;:37::i;:::-;28871:44;;28725:198;;;;:::o;16422:148::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529:1:::1;16492:40;;16513:6;::::0;::::1;;;;;;;;16492:40;;;;;;;;;;;;16560:1;16543:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16422:148::o:0;26957:37::-;;;;:::o;26783:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30250:120::-;30318:4;30342:11;:20;30354:7;30342:20;;;;;;;;;;;;;;;;;;;;;;;;;30335:27;;30250:120;;;:::o;15779:79::-;15817:7;15844:6;;;;;;;;;;;15837:13;;15779:79;:::o;45016:122::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45118:12:::1;45102:13;:28;;;;45016:122:::0;:::o;28436:87::-;28475:13;28508:7;28501:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28436:87;:::o;29973:269::-;30066:4;30083:129;30092:12;:10;:12::i;:::-;30106:7;30115:96;30154:15;30115:96;;;;;;;;;;;;;;;;;:11;:25;30127:12;:10;:12::i;:::-;30115:25;;;;;;;;;;;;;;;:34;30141:7;30115:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30083:8;:129::i;:::-;30230:4;30223:11;;29973:269;;;;:::o;32850:24::-;;;;;;;;;;;;;:::o;17432:293::-;17502:10;17484:28;;:14;;;;;;;;;;;:28;;;17476:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17577:9;;17571:3;:15;17563:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17668:14;;;;;;;;;;;17639:44;;17660:6;;;;;;;;;;17639:44;;;;;;;;;;;;17703:14;;;;;;;;;;;17694:6;;:23;;;;;;;;;;;;;;;;;;17432:293::o;28931:167::-;29009:4;29026:42;29036:12;:10;:12::i;:::-;29050:9;29061:6;29026:9;:42::i;:::-;29086:4;29079:11;;28931:167;;;;:::o;16977:89::-;17022:7;17049:9;;17042:16;;16977:89;:::o;45319:171::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45420:8:::1;45396:21;;:32;;;;;;;;;;;;;;;;;;45444:38;45473:8;45444:38;;;;;;;;;;;;;;;;;;;;45319:171:::0;:::o;36536:97::-;36578:7;36604:9;:21;36614:10;36604:21;;;;;;;;;;;;;;;;36597:28;;36536:97;:::o;45149:162::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45243:60:::1;45287:5;45243:25;45255:12;45243:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;45228:12;:75;;;;45149:162:::0;:::o;17142:214::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17223:6:::1;::::0;::::1;;;;;;;;17206:14;;:23;;;;;;;;;;;;;;;;;;17257:1;17240:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17288:4;17282:3;:10;17270:9;:22;;;;17345:1;17308:40;;17329:6;::::0;::::1;;;;;;;;17308:40;;;;;;;;;;;;17142:214:::0;:::o;29106:143::-;29187:7;29214:11;:18;29226:5;29214:18;;;;;;;;;;;;;;;:27;29233:7;29214:27;;;;;;;;;;;;;;;;29207:34;;29106:143;;;;:::o;44784:110::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44881:5:::1;44851:18;:27;44870:7;44851:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;44784:110:::0;:::o;16725:244::-;16001:12;:10;:12::i;:::-;15991:22;;:6;;;;;;;;;;:22;;;15983:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16834:1:::1;16814:22;;:8;:22;;;;16806:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16924:8;16895:38;;16916:6;::::0;::::1;;;;;;;;16895:38;;;;;;;;;;;;16953:8;16944:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16725:244:::0;:::o;4544:136::-;4602:7;4629:43;4633:1;4636;4629:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4622:50;;4544:136;;;;:::o;164:106::-;217:15;252:10;245:17;;164:106;:::o;32505:337::-;32615:1;32598:19;;:5;:19;;;;32590:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32696:1;32677:21;;:7;:21;;;;32669:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32780:6;32750:11;:18;32762:5;32750:18;;;;;;;;;;;;;;;:27;32769:7;32750:27;;;;;;;;;;;;;;;:36;;;;32818:7;32802:32;;32811:5;32802:32;;;32827:6;32802:32;;;;;;;;;;;;;;;;;;32505:337;;;:::o;33023:2027::-;33161:1;33145:18;;:4;:18;;;;33137:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33238:1;33224:16;;:2;:16;;;;33216:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33308:1;33299:6;:10;33291:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33379:4;33369:14;;:5;;;;;;;;;;;:14;;;:33;;;;;33395:7;:5;:7::i;:::-;33387:15;;:4;:15;;;;33369:33;:50;;;;;33412:7;:5;:7::i;:::-;33406:13;;:2;:13;;;;33369:50;33366:284;;;33444:13;33438:19;;:2;:19;;;33435:109;;33517:9;33487:25;33505:6;33487:13;33497:2;33487:9;:13::i;:::-;:17;;:25;;;;:::i;:::-;33486:40;;33477:51;;;;;;33435:109;33576:9;33566:6;:19;;33558:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33366:284;33671:7;:5;:7::i;:::-;33663:15;;:4;:15;;;;:32;;;;;33688:7;:5;:7::i;:::-;33682:13;;:2;:13;;;;33663:32;33660:125;;;33728:12;;33718:6;:22;;33710:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33660:125;34084:5;:9;34090:2;34084:9;;;;;;;;;;;;;;;;;;;;;;;;;34080:129;;34109:11;34126:2;34109:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34144;;:22;;;;;;;;;;;;;34193:4;34181:5;:9;34187:2;34181:9;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;34080:129;34219:28;34250:24;34268:4;34250:9;:24::i;:::-;34219:55;;34285:24;34336:19;;34312:20;:43;;34285:70;;34384:19;:53;;;;;34421:16;;;;;;;;;;;34420:17;34384:53;:91;;;;;34462:13;34454:21;;:4;:21;;;;34384:91;:129;;;;;34492:21;;;;;;;;;;;34384:129;34366:251;;;34569:36;34584:20;34569:14;:36::i;:::-;34366:251;34698:12;34713:4;34698:19;;34825:18;:24;34844:4;34825:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;34853:18;:22;34872:2;34853:22;;;;;;;;;;;;;;;;;;;;;;;;;34825:50;34822:96;;;34901:5;34891:15;;34822:96;35004:38;35019:4;35024:2;35027:6;35034:7;35004:14;:38::i;:::-;33023:2027;;;;;;:::o;4983:192::-;5069:7;5102:1;5097;:6;;5105:12;5089:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5129:9;5145:1;5141;:5;5129:17;;5166:1;5159:8;;;4983:192;;;;;:::o;42676:163::-;42717:7;42738:15;42755;42774:19;:17;:19::i;:::-;42737:56;;;;42811:20;42823:7;42811;:11;;:20;;;;:::i;:::-;42804:27;;;;42676:163;:::o;6381:132::-;6439:7;6466:39;6470:1;6473;6466:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6459:46;;6381:132;;;;:::o;4080:181::-;4138:7;4158:9;4174:1;4170;:5;4158:17;;4199:1;4194;:6;;4186:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4252:1;4245:8;;;4080:181;;;;:::o;41474:419::-;41533:7;41542;41551;41560;41569;41578;41599:23;41624:12;41638:18;41660:20;41672:7;41660:11;:20::i;:::-;41598:82;;;;;;41692:15;41709:23;41734:12;41750:50;41762:7;41771:4;41777:10;41789;:8;:10::i;:::-;41750:11;:50::i;:::-;41691:109;;;;;;41819:7;41828:15;41845:4;41851:15;41868:4;41874:10;41811:74;;;;;;;;;;;;;;;;;;41474:419;;;;;;;:::o;5434:471::-;5492:7;5742:1;5737;:6;5733:47;;;5767:1;5760:8;;;;5733:47;5792:9;5808:1;5804;:5;5792:17;;5837:1;5832;5828;:5;;;;;;:10;5820:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896:1;5889:8;;;5434:471;;;;;:::o;35107:1423::-;27557:4;27538:16;;:23;;;;;;;;;;;;;;;;;;35243:12:::1;35258:27;35283:1;35258:20;:24;;:27;;;;:::i;:::-;35243:42;;35296:17;35316:30;35341:4;35316:20;:24;;:30;;;;:::i;:::-;35296:50;;35357:12;35372:16;35386:1;35372:9;:13;;:16;;;;:::i;:::-;35357:31;;35399:17;35419:19;35433:4;35419:9;:13;;:19;;;;:::i;:::-;35399:39;;35714:22;35739:21;35714:46;;35805:32;35822:14;35831:4;35822;:8;;:14;;;;:::i;:::-;35805:16;:32::i;:::-;35968:15;35986:41;36012:14;35986:21;:25;;:41;;;;:::i;:::-;35968:59;;36038:18;36059:21;36078:1;36059:14;36071:1;36059:7;:11;;:14;;;;:::i;:::-;:18;;:21;;;;:::i;:::-;36038:42;;36101:27;36113:14;36125:1;36113:7;:11;;:14;;;;:::i;:::-;36101:7;;:11;;:27;;;;:::i;:::-;36091:7;:37;;;;36145:9;36141:230;36164:20;;36160:1;:24;36141:230;;;36205:13;36221:59;36266:13;:11;:13::i;:::-;36222:38;36252:7;;36222:25;36232:11;36244:1;36232:14;;;;;;;;;;;;;;;;;;;;;;;;;36222:9;:25::i;:::-;:29;;:38;;;;:::i;:::-;36221:44;;:59;;;;:::i;:::-;36205:75;;36323:36;36353:5;36323:9;:25;36333:11;36345:1;36333:14;;;;;;;;;;;;;;;;;;;;;;;;;36323:25;;;;;;;;;;;;;;;;:29;;:36;;;;:::i;:::-;36295:9;:25;36305:11;36317:1;36305:14;;;;;;;;;;;;;;;;;;;;;;;;;36295:25;;;;;;;;;;;;;;;:64;;;;36141:230;36186:3;;;;;;;36141:230;;;;36418:35;36431:9;36442:10;36418:12;:35::i;:::-;36479:43;36494:4;36500:10;36512:9;36479:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27572:1;;;;;;;27603:5:::0;27584:16;;:24;;;;;;;;;;;;;;;;;;35107:1423;:::o;38149:834::-;38260:7;38256:40;;38282:14;:12;:14::i;:::-;38256:40;38321:11;:19;38333:6;38321:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;38345:11;:22;38357:9;38345:22;;;;;;;;;;;;;;;;;;;;;;;;;38344:23;38321:46;38317:597;;;38384:48;38406:6;38414:9;38425:6;38384:21;:48::i;:::-;38317:597;;;38455:11;:19;38467:6;38455:19;;;;;;;;;;;;;;;;;;;;;;;;;38454:20;:46;;;;;38478:11;:22;38490:9;38478:22;;;;;;;;;;;;;;;;;;;;;;;;;38454:46;38450:464;;;38517:46;38537:6;38545:9;38556:6;38517:19;:46::i;:::-;38450:464;;;38586:11;:19;38598:6;38586:19;;;;;;;;;;;;;;;;;;;;;;;;;38585:20;:47;;;;;38610:11;:22;38622:9;38610:22;;;;;;;;;;;;;;;;;;;;;;;;;38609:23;38585:47;38581:333;;;38649:44;38667:6;38675:9;38686:6;38649:17;:44::i;:::-;38581:333;;;38715:11;:19;38727:6;38715:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;38738:11;:22;38750:9;38738:22;;;;;;;;;;;;;;;;;;;;;;;;;38715:45;38711:203;;;38777:48;38799:6;38807:9;38818:6;38777:21;:48::i;:::-;38711:203;;;38858:44;38876:6;38884:9;38895:6;38858:17;:44::i;:::-;38711:203;38581:333;38450:464;38317:597;38938:7;38934:41;;38960:15;:13;:15::i;:::-;38934:41;38149:834;;;;:::o;42847:561::-;42897:7;42906;42926:15;42944:7;;42926:25;;42962:15;42980:7;;42962:25;;43009:9;43004:289;43028:9;:16;;;;43024:1;:20;43004:289;;;43094:7;43070;:21;43078:9;43088:1;43078:12;;;;;;;;;;;;;;;;;;;;;;;;;43070:21;;;;;;;;;;;;;;;;:31;:66;;;;43129:7;43105;:21;43113:9;43123:1;43113:12;;;;;;;;;;;;;;;;;;;;;;;;;43105:21;;;;;;;;;;;;;;;;:31;43070:66;43066:97;;;43146:7;;43155;;43138:25;;;;;;;;;43066:97;43188:34;43200:7;:21;43208:9;43218:1;43208:12;;;;;;;;;;;;;;;;;;;;;;;;;43200:21;;;;;;;;;;;;;;;;43188:7;:11;;:34;;;;:::i;:::-;43178:44;;43247:34;43259:7;:21;43267:9;43277:1;43267:12;;;;;;;;;;;;;;;;;;;;;;;;;43259:21;;;;;;;;;;;;;;;;43247:7;:11;;:34;;;;:::i;:::-;43237:44;;43046:3;;;;;;;43004:289;;;;43317:20;43329:7;;43317;;:11;;:20;;;;:::i;:::-;43307:7;:30;43303:61;;;43347:7;;43356;;43339:25;;;;;;;;43303:61;43383:7;43392;43375:25;;;;;;42847:561;;;:::o;7009:278::-;7095:7;7127:1;7123;:5;7130:12;7115:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7154:9;7170:1;7166;:5;;;;;;7154:17;;7278:1;7271:8;;;7009:278;;;;;:::o;41901:330::-;41961:7;41970;41979;41999:12;42014:24;42030:7;42014:15;:24::i;:::-;41999:39;;42049:18;42070:30;42092:7;42070:21;:30::i;:::-;42049:51;;42111:23;42137:33;42159:10;42137:17;42149:4;42137:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;42111:59;;42189:15;42206:4;42212:10;42181:42;;;;;;;;;41901:330;;;;;:::o;42239:429::-;42354:7;42363;42372;42392:15;42410:24;42422:11;42410:7;:11;;:24;;;;:::i;:::-;42392:42;;42445:12;42460:21;42469:11;42460:4;:8;;:21;;;;:::i;:::-;42445:36;;42492:18;42513:27;42528:11;42513:10;:14;;:27;;;;:::i;:::-;42492:48;;42551:23;42577:33;42599:10;42577:17;42589:4;42577:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;42551:59;;42629:7;42638:15;42655:4;42621:39;;;;;;;;;;42239:429;;;;;;;;:::o;36958:589::-;37084:21;37122:1;37108:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37084:40;;37153:4;37135;37140:1;37135:7;;;;;;;;;;;;;:23;;;;;;;;;;;37179:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37169:4;37174:1;37169:7;;;;;;;;;;;;;:32;;;;;;;;;;;37214:62;37231:4;37246:15;37264:11;37214:8;:62::i;:::-;37315:15;:66;;;37396:11;37422:1;37466:4;37493;37513:15;37315:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36958:589;;:::o;37555:513::-;37703:62;37720:4;37735:15;37753:11;37703:8;:62::i;:::-;37808:15;:31;;;37847:9;37880:4;37900:11;37926:1;37969;38012:7;:5;:7::i;:::-;38034:15;37808:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37555:513;;:::o;44127:250::-;44184:1;44173:7;;:12;:34;;;;;44206:1;44189:13;;:18;44173:34;44170:46;;;44209:7;;44170:46;44254:7;;44236:15;:25;;;;44296:13;;44272:21;:37;;;;44340:1;44330:7;:11;;;;44368:1;44352:13;:17;;;;44127:250;:::o;40095:566::-;40198:15;40215:23;40240:12;40254:23;40279:12;40293:18;40315:19;40326:7;40315:10;:19::i;:::-;40197:137;;;;;;;;;;;;40363:28;40383:7;40363;:15;40371:6;40363:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40345:7;:15;40353:6;40345:15;;;;;;;;;;;;;;;:46;;;;40420:28;40440:7;40420;:15;40428:6;40420:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40402:7;:15;40410:6;40402:15;;;;;;;;;;;;;;;:46;;;;40480:39;40503:15;40480:7;:18;40488:9;40480:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40459:7;:18;40467:9;40459:18;;;;;;;;;;;;;;;:60;;;;40533:26;40548:10;40533:14;:26::i;:::-;40570:23;40582:4;40588;40570:11;:23::i;:::-;40626:9;40609:44;;40618:6;40609:44;;;40637:15;40609:44;;;;;;;;;;;;;;;;;;40095:566;;;;;;;;;:::o;39501:586::-;39602:15;39619:23;39644:12;39658:23;39683:12;39697:18;39719:19;39730:7;39719:10;:19::i;:::-;39601:137;;;;;;;;;;;;39767:28;39787:7;39767;:15;39775:6;39767:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39749:7;:15;39757:6;39749:15;;;;;;;;;;;;;;;:46;;;;39827:39;39850:15;39827:7;:18;39835:9;39827:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39806:7;:18;39814:9;39806:18;;;;;;;;;;;;;;;:60;;;;39898:39;39921:15;39898:7;:18;39906:9;39898:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39877:7;:18;39885:9;39877:18;;;;;;;;;;;;;;;:60;;;;39959:26;39974:10;39959:14;:26::i;:::-;39996:23;40008:4;40014;39996:11;:23::i;:::-;40052:9;40035:44;;40044:6;40035:44;;;40063:15;40035:44;;;;;;;;;;;;;;;;;;39501:586;;;;;;;;;:::o;38991:502::-;39090:15;39107:23;39132:12;39146:23;39171:12;39185:18;39207:19;39218:7;39207:10;:19::i;:::-;39089:137;;;;;;;;;;;;39255:28;39275:7;39255;:15;39263:6;39255:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39237:7;:15;39245:6;39237:15;;;;;;;;;;;;;;;:46;;;;39315:39;39338:15;39315:7;:18;39323:9;39315:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;39294:7;:18;39302:9;39294:18;;;;;;;;;;;;;;;:60;;;;39365:26;39380:10;39365:14;:26::i;:::-;39402:23;39414:4;39420;39402:11;:23::i;:::-;39458:9;39441:44;;39450:6;39441:44;;;39469:15;39441:44;;;;;;;;;;;;;;;;;;38991:502;;;;;;;;;:::o;40669:642::-;40772:15;40789:23;40814:12;40828:23;40853:12;40867:18;40889:19;40900:7;40889:10;:19::i;:::-;40771:137;;;;;;;;;;;;40937:28;40957:7;40937;:15;40945:6;40937:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40919:7;:15;40927:6;40919:15;;;;;;;;;;;;;;;:46;;;;40994:28;41014:7;40994;:15;41002:6;40994:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40976:7;:15;40984:6;40976:15;;;;;;;;;;;;;;;:46;;;;41054:39;41077:15;41054:7;:18;41062:9;41054:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41033:7;:18;41041:9;41033:18;;;;;;;;;;;;;;;:60;;;;41125:39;41148:15;41125:7;:18;41133:9;41125:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41104:7;:18;41112:9;41104:18;;;;;;;;;;;;;;;:60;;;;41183:26;41198:10;41183:14;:26::i;:::-;41220:23;41232:4;41238;41220:11;:23::i;:::-;41276:9;41259:44;;41268:6;41259:44;;;41287:15;41259:44;;;;;;;;;;;;;;;;;;40669:642;;;;;;;;;:::o;44389:125::-;44443:15;;44433:7;:25;;;;44485:21;;44469:13;:37;;;;44389:125::o;43787:154::-;43851:7;43878:55;43917:5;43878:20;43890:7;;43878;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;43871:62;;43787:154;;;:::o;43949:166::-;44019:7;44046:61;44091:5;44046:26;44058:13;;44046:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;44039:68;;43949:166;;;:::o;43420:355::-;43483:19;43506:10;:8;:10::i;:::-;43483:33;;43527:18;43548:27;43563:11;43548:10;:14;;:27;;;;:::i;:::-;43527:48;;43611:38;43638:10;43611:7;:22;43627:4;43611:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;43586:7;:22;43602:4;43586:22;;;;;;;;;;;;;;;:63;;;;43663:11;:26;43683:4;43663:26;;;;;;;;;;;;;;;;;;;;;;;;;43660:107;;;43729:38;43756:10;43729:7;:22;43745:4;43729:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;43704:7;:22;43720:4;43704:22;;;;;;;;;;;;;;;:63;;;;43660:107;43420:355;;;:::o;41319:147::-;41397:17;41409:4;41397:7;;:11;;:17;;;;:::i;:::-;41387:7;:27;;;;41438:20;41453:4;41438:10;;:14;;:20;;;;:::i;:::-;41425:10;:33;;;;41319:147;;:::o

Swarm Source

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