ETH Price: $2,287.54 (-3.93%)

Token

etherummove.io (eMove)
 

Overview

Max Total Supply

20,388,236.572495013638443046 eMove

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
145.587241940221011382 eMove

Value
$0.00
0x0629C6666430D7F01bA6bF562C0a53BfFfEA84f4
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:
etherummove

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-06-01
*/

/**
     * Website : https://etherummove.io/
     * Telegram : https://t.me/etherummove
     */


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 etherummove 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;
   
    address private _burnPool = 0x0000000000000000000000000000000000000000;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 21000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;

    string private _name = "etherummove.io";
    string private _symbol = "eMove";
    uint8 private _decimals = 18;
    
  //3%
    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;
    
    //2%
    uint256 public _burnFee = 2;
    uint256 private _previousBurnFee = _burnFee;
    
    
    uint256 public _liquidityFee = 5;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 public _lpRewardFromLiquidity = 1;
    
    uint256 public _maxTxAmount = 700000 * 10**18;
    
    uint256 public totalLiquidityProviderRewards;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool public BurnLpTokensEnabled = false;
    uint256 public TotalBurnedLpTokens;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    uint256 private minTokensBeforeSwap = 30000;
    
    event RewardLiquidityProviders(uint256 tokenAmount);
    // 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 totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

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

    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(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.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            //calculate lp rewards
            uint256 lpRewardAmount = contractTokenBalance.mul(_lpRewardFromLiquidity).div(10**2);
            //distribute rewards
            _rewardLiquidityProviders(lpRewardAmount);
            //add liquidity
            swapAndLiquify(contractTokenBalance.sub(lpRewardAmount));
            //burn lp tokens, hence locking the liquidity forever
            if(BurnLpTokensEnabled)
                burnLpTokens();
        }
        
        //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);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.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); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function burnLpTokens() private {
        IUniswapV2Pair _token = IUniswapV2Pair(uniswapV2Pair);
        uint256 amount = _token.balanceOf(address(this));
        TotalBurnedLpTokens = TotalBurnedLpTokens.add(amount);
        _token.transfer(_burnPool, amount);
    }

    function LpTokenBalance() public view returns (uint256) {
        IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair);
        uint256 amount = token.balanceOf(address(this));
        
        return amount;
    }

    function withDrawLpTokens() public onlyOwner {
        // IUniswapV2ERC20 token = IUniswapV2ERC20(_token);
        IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair);
        uint256 amount = token.balanceOf(address(this));
        
        require(amount > 0, "Not enough LP tokens available to withdraw");
        
        token.transfer(owner(), amount);
    }
    
    // function withdrawTokens() public onlyOwner {
    //     uint256 amount = balanceOf(address(this));
    //     require(amount > 0, "Not enough tokens available to withdraw");
        
    //     _tokenTransfer(address(this),owner(),amount,false);
    // }
    
    // function withdrawWETH() public onlyOwner {
    //     IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair);
    //     uint256 amount = token.balanceOf(address(this));
        
    //     require(amount > 0, "Not enough liquidity available to remove and swap that for WETH");
        
    //   // approve token transfer to cover all possible scenarios
    //     token.approve(address(uniswapV2Router), amount);

    //     // add the liquidity
    //     uniswapV2Router.removeLiquidity(
    //         address(this),
    //         uniswapV2Router.WETH(),
    //         amount,
    //         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 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _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, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).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 _rewardLiquidityProviders(uint256 liquidityRewards) private {
        // avoid fee calling _tokenTransfer with false
        _tokenTransfer(address(this), uniswapV2Pair, liquidityRewards,false);
        IUniswapV2Pair(uniswapV2Pair).sync();
        totalLiquidityProviderRewards = totalLiquidityProviderRewards.add(liquidityRewards);
        emit RewardLiquidityProviders(liquidityRewards);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }
    
    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(
            10**2
        );
    }
    
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _burnFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousBurnFee = _burnFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _burnFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _burnFee = _previousBurnFee;
        _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 setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setLpRewardFromLiquidityPercent(uint256 percent) external onlyOwner() {
        _lpRewardFromLiquidity = percent;
    }

    function setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**(uint256(maxTxDecimals) + 2)
        );
    }
    
    function setBurnLpTokenEnabled(bool value) external onlyOwner() {
        BurnLpTokensEnabled = value;
    }
    
    // function setMinTokensBeforeSwapPercent(uint256 _minTokensBeforeSwapPercent, uint256 _minTokensBeforeSwapDecimal) public onlyOwner{
    //     minTokensBeforeSwap = _tTotal.mul(_minTokensBeforeSwapPercent).div(
    //         10**(uint256(_minTokensBeforeSwapDecimal) + 2)
    //     );
    //     emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
    // }

    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":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":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","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":"BurnLpTokensEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LpTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpRewardFromLiquidity","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":"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":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setBurnLpTokenEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setLpRewardFromLiquidityPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxTxDecimals","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":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLiquidityProviderRewards","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"},{"inputs":[],"name":"withDrawLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506a115eec47f6cf7e35000000600a55600a54600019816200006357fe5b0660001903600b556040518060400160405280600e81526020017f6574686572756d6d6f76652e696f000000000000000000000000000000000000815250600e9080519060200190620000b892919062000665565b506040518060400160405280600581526020017f654d6f7665000000000000000000000000000000000000000000000000000000815250600f90805190602001906200010692919062000665565b506012601060006101000a81548160ff021916908360ff160217905550600360115560115460125560026013556013546014556005601555601554601655600160175569943b1377290cbd8000006018556000601a60006101000a81548160ff0219169083151502179055506000601c60016101000a81548160ff021916908315150217905550617530601d55348015620001a057600080fd5b506000620001b36200063460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b5460036000620002686200063460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030657600080fd5b505afa1580156200031b573d6000803e3d6000fd5b505050506040513d60208110156200033257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a657600080fd5b505afa158015620003bb573d6000803e3d6000fd5b505050506040513d6020811015620003d257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044d57600080fd5b505af115801562000462573d6000803e3d6000fd5b505050506040513d60208110156200047957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200050d6200063c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005c66200063460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a3506200070b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a857805160ff1916838001178555620006d9565b82800160010185558215620006d9579182015b82811115620006d8578251825591602001919060010190620006bb565b5b509050620006e89190620006ec565b5090565b5b8082111562000707576000816000905550600101620006ed565b5090565b60805160601c60a05160601c615bc76200076c60003980611d75528061239c5280612b72528061384a5280613ce65280613d0f5280613ec852508061124752806148ae528061499a52806149c15280614acc5280614af35250615bc76000f3fe6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000000000000000000000000000000000000000000083600061407d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122061030ba06d5574744bb39bc7ef3e651f22bc31caf04c19e131069baa5dc5fab964736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c0281565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c02905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c02905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c0273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c0283600061407d565b7f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c0273ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f000000000000000000000000fe4e9313a109ee8a45d01b09c0651af6841c6c02905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122061030ba06d5574744bb39bc7ef3e651f22bc31caf04c19e131069baa5dc5fab964736f6c634300060c0033

Deployed Bytecode Sourcemap

25822:23352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48405:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47685:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28680:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29592:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30713:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27184:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28957:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29761:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31740:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28866:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32456:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30082:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26717:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30908:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30812:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48181:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48043:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47440:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31294:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27242:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27414:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27015;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32001:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47305:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26910:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29060:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16417:148;;;;;;;;;;;;;:::i;:::-;;37669:219;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27069:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30585:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15774:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47909:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28771:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30308:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17427:293;;;;;;;;;;;;;:::i;:::-;;29266:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16972:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26814:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27127:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48902:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37896:373;;;;;;;;;;;;;:::i;:::-;;47795:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27293:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17137:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29441:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47563:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16720:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48405:110;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48502:5:::1;48480:19;;:27;;;;;;;;;;;;;;;;;;48405:110:::0;:::o;47685:98::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47769:6:::1;47759:7;:16;;;;47685:98:::0;:::o;28680:83::-;28717:13;28750:5;28743:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28680:83;:::o;29592:161::-;29667:4;29684:39;29693:12;:10;:12::i;:::-;29707:7;29716:6;29684:8;:39::i;:::-;29741:4;29734:11;;29592:161;;;;:::o;30713:87::-;30755:7;30782:10;;30775:17;;30713:87;:::o;27184:51::-;;;:::o;28957:95::-;29010:7;29037;;29030:14;;28957:95;:::o;29761:313::-;29859:4;29876:36;29886:6;29894:9;29905:6;29876:9;:36::i;:::-;29923:121;29932:6;29940:12;:10;:12::i;:::-;29954:89;29992:6;29954:89;;;;;;;;;;;;;;;;;:11;:19;29966:6;29954:19;;;;;;;;;;;;;;;:33;29974:12;:10;:12::i;:::-;29954:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29923:8;:121::i;:::-;30062:4;30055:11;;29761:313;;;;;:::o;31740:253::-;31806:7;31845;;31834;:18;;31826:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31910:19;31933:10;:8;:10::i;:::-;31910:33;;31961:24;31973:11;31961:7;:11;;:24;;;;:::i;:::-;31954:31;;;31740:253;;;:::o;28866:83::-;28907:5;28932:9;;;;;;;;;;;28925:16;;28866:83;:::o;32456:479::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32538:11:::1;:20;32550:7;32538:20;;;;;;;;;;;;;;;;;;;;;;;;;32530:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32606:9;32601:327;32625:9;:16;;;;32621:1;:20;32601:327;;;32683:7;32667:23;;:9;32677:1;32667:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32663:254;;;32726:9;32755:1;32736:9;:16;;;;:20;32726:31;;;;;;;;;;;;;;;;;;;;;;;;;32711:9;32721:1;32711:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32795:1;32776:7;:16;32784:7;32776:16;;;;;;;;;;;;;;;:20;;;;32838:5;32815:11;:20;32827:7;32815:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32862:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32896:5;;32663:254;32643:3;;;;;;;32601:327;;;;32456:479:::0;:::o;30082:218::-;30170:4;30187:83;30196:12;:10;:12::i;:::-;30210:7;30219:50;30258:10;30219:11;:25;30231:12;:10;:12::i;:::-;30219:25;;;;;;;;;;;;;;;:34;30245:7;30219:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30187:8;:83::i;:::-;30288:4;30281:11;;30082:218;;;;:::o;26717:26::-;;;;:::o;30908:378::-;30960:14;30977:12;:10;:12::i;:::-;30960:29;;31009:11;:19;31021:6;31009:19;;;;;;;;;;;;;;;;;;;;;;;;;31008:20;31000:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31089:15;31114:19;31125:7;31114:10;:19::i;:::-;31088:45;;;;;;;;31162:28;31182:7;31162;:15;31170:6;31162:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31144:7;:15;31152:6;31144:15;;;;;;;;;;;;;;;:46;;;;31211:20;31223:7;31211;;:11;;:20;;;;:::i;:::-;31201:7;:30;;;;31255:23;31270:7;31255:10;;:14;;:23;;;;:::i;:::-;31242:10;:36;;;;30908:378;;;:::o;30812:88::-;30854:7;30881:11;;30874:18;;30812:88;:::o;48181:212::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48298:87:::1;48372:1;48355:13;48347:26;48342:2;:32;48298:25;48310:12;48298:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;48283:12;:102;;;;48181:212:::0;;:::o;48043:130::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48158:7:::1;48133:22;:32;;;;48043:130:::0;:::o;47440:111::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47539:4:::1;47509:18;:27;47528:7;47509:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47440:111:::0;:::o;31294:438::-;31384:7;31423;;31412;:18;;31404:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31482:17;31477:248;;31517:15;31542:19;31553:7;31542:10;:19::i;:::-;31516:45;;;;;;;;31583:7;31576:14;;;;;31477:248;31625:23;31657:19;31668:7;31657:10;:19::i;:::-;31623:53;;;;;;;;31698:15;31691:22;;;31294:438;;;;;:::o;27242:38::-;;;:::o;27414:41::-;;;;;;;;;;;;;:::o;27015:::-;;;;:::o;32001:447::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32198:11:::1;:20;32210:7;32198:20;;;;;;;;;;;;;;;;;;;;;;;;;32197:21;32189:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32283:1;32264:7;:16;32272:7;32264:16;;;;;;;;;;;;;;;;:20;32261:108;;;32320:37;32340:7;:16;32348:7;32340:16;;;;;;;;;;;;;;;;32320:19;:37::i;:::-;32301:7;:16;32309:7;32301:16;;;;;;;;;;;;;;;:56;;;;32261:108;32402:4;32379:11;:20;32391:7;32379:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32417:9;32432:7;32417:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32001:447:::0;:::o;47305:123::-;47369:4;47393:18;:27;47412:7;47393:27;;;;;;;;;;;;;;;;;;;;;;;;;47386:34;;47305:123;;;:::o;26910:32::-;;;;:::o;29060:198::-;29126:7;29150:11;:20;29162:7;29150:20;;;;;;;;;;;;;;;;;;;;;;;;;29146:49;;;29179:7;:16;29187:7;29179:16;;;;;;;;;;;;;;;;29172:23;;;;29146:49;29213:37;29233:7;:16;29241:7;29233:16;;;;;;;;;;;;;;;;29213:19;:37::i;:::-;29206:44;;29060:198;;;;:::o;16417:148::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16524:1:::1;16487:40;;16508:6;::::0;::::1;;;;;;;;16487:40;;;;;;;;;;;;16555:1;16538:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16417:148::o:0;37669:219::-;37716:7;37736:20;37774:13;37736:52;;37799:14;37816:5;:15;;;37840:4;37816:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37799:47;;37874:6;37867:13;;;;37669:219;:::o;27069:45::-;;;;:::o;30585:120::-;30653:4;30677:11;:20;30689:7;30677:20;;;;;;;;;;;;;;;;;;;;;;;;;30670:27;;30585:120;;;:::o;15774:79::-;15812:7;15839:6;;;;;;;;;;;15832:13;;15774:79;:::o;47909:122::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48011:12:::1;47995:13;:28;;;;47909:122:::0;:::o;28771:87::-;28810:13;28843:7;28836:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28771:87;:::o;27339:34::-;;;;:::o;30308:269::-;30401:4;30418:129;30427:12;:10;:12::i;:::-;30441:7;30450:96;30489:15;30450:96;;;;;;;;;;;;;;;;;:11;:25;30462:12;:10;:12::i;:::-;30450:25;;;;;;;;;;;;;;;:34;30476:7;30450:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30418:8;:129::i;:::-;30565:4;30558:11;;30308:269;;;;:::o;17427:293::-;17497:10;17479:28;;:14;;;;;;;;;;;:28;;;17471:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17572:9;;17566:3;:15;17558:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17663:14;;;;;;;;;;;17634:44;;17655:6;;;;;;;;;;17634:44;;;;;;;;;;;;17698:14;;;;;;;;;;;17689:6;;:23;;;;;;;;;;;;;;;;;;17427:293::o;29266:167::-;29344:4;29361:42;29371:12;:10;:12::i;:::-;29385:9;29396:6;29361:9;:42::i;:::-;29421:4;29414:11;;29266:167;;;;:::o;16972:89::-;17017:7;17044:9;;17037:16;;16972:89;:::o;26814:27::-;;;;:::o;27127:44::-;;;;:::o;48902:171::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49003:8:::1;48979:21;;:32;;;;;;;;;;;;;;;;;;49027:38;49056:8;49027:38;;;;;;;;;;;;;;;;;;;;48902:171:::0;:::o;37896:373::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38013:20:::1;38051:13;38013:52;;38076:14;38093:5;:15;;;38117:4;38093:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38076:47;;38161:1;38152:6;:10;38144:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38230:5;:14;;;38245:7;:5;:7::i;:::-;38254:6;38230:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;16056:1;;37896:373::o:0;47795:102::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47882:7:::1;47871:8;:18;;;;47795:102:::0;:::o;27293:39::-;;;;;;;;;;;;;:::o;17137:214::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17218:6:::1;::::0;::::1;;;;;;;;17201:14;;:23;;;;;;;;;;;;;;;;;;17252:1;17235:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17283:4;17277:3;:10;17265:9;:22;;;;17340:1;17303:40;;17324:6;::::0;::::1;;;;;;;;17303:40;;;;;;;;;;;;17137:214:::0;:::o;29441:143::-;29522:7;29549:11;:18;29561:5;29549:18;;;;;;;;;;;;;;;:27;29568:7;29549:27;;;;;;;;;;;;;;;;29542:34;;29441:143;;;;:::o;47563:110::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47660:5:::1;47630:18;:27;47649:7;47630:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;47563:110:::0;:::o;16720:244::-;15996:12;:10;:12::i;:::-;15986:22;;:6;;;;;;;;;;:22;;;15978:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16829:1:::1;16809:22;;:8;:22;;;;16801:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16919:8;16890:38;;16911:6;::::0;::::1;;;;;;;;16890:38;;;;;;;;;;;;16948:8;16939:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16720:244:::0;:::o;165:106::-;218:15;253:10;246:17;;165:106;:::o;32943:337::-;33053:1;33036:19;;:5;:19;;;;33028:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33134:1;33115:21;;:7;:21;;;;33107:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33218:6;33188:11;:18;33200:5;33188:18;;;;;;;;;;;;;;;:27;33207:7;33188:27;;;;;;;;;;;;;;;:36;;;;33256:7;33240:32;;33249:5;33240:32;;;33265:6;33240:32;;;;;;;;;;;;;;;;;;32943:337;;;:::o;33288:1976::-;33426:1;33410:18;;:4;:18;;;;33402:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33503:1;33489:16;;:2;:16;;;;33481:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33573:1;33564:6;:10;33556:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33642:7;:5;:7::i;:::-;33634:15;;:4;:15;;;;:32;;;;;33659:7;:5;:7::i;:::-;33653:13;;:2;:13;;;;33634:32;33631:125;;;33699:12;;33689:6;:22;;33681:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33631:125;34051:28;34082:24;34100:4;34082:9;:24::i;:::-;34051:55;;34117:24;34168:19;;34144:20;:43;;34117:70;;34216:19;:53;;;;;34253:16;;;;;;;;;;;34252:17;34216:53;:91;;;;;34294:13;34286:21;;:4;:21;;;;34216:91;:129;;;;;34324:21;;;;;;;;;;;34216:129;34198:633;;;34408:22;34433:59;34486:5;34433:48;34458:22;;34433:20;:24;;:48;;;;:::i;:::-;:52;;:59;;;;:::i;:::-;34408:84;;34541:41;34567:14;34541:25;:41::i;:::-;34626:56;34641:40;34666:14;34641:20;:24;;:40;;;;:::i;:::-;34626:14;:56::i;:::-;34767:19;;;;;;;;;;;34764:55;;;34805:14;:12;:14::i;:::-;34764:55;34198:633;;34912:12;34927:4;34912:19;;35039:18;:24;35058:4;35039:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35067:18;:22;35086:2;35067:22;;;;;;;;;;;;;;;;;;;;;;;;;35039:50;35036:96;;;35115:5;35105:15;;35036:96;35218:38;35233:4;35238:2;35241:6;35248:7;35218:14;:38::i;:::-;33288:1976;;;;;;:::o;4981:192::-;5067:7;5100:1;5095;:6;;5103:12;5087:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5127:9;5143:1;5139;:5;5127:17;;5164:1;5157:8;;;4981:192;;;;;:::o;44744:163::-;44785:7;44806:15;44823;44842:19;:17;:19::i;:::-;44805:56;;;;44879:20;44891:7;44879;:11;;:20;;;;:::i;:::-;44872:27;;;;44744:163;:::o;6379:132::-;6437:7;6464:39;6468:1;6471;6464:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6457:46;;6379:132;;;;:::o;4078:181::-;4136:7;4156:9;4172:1;4168;:5;4156:17;;4197:1;4192;:6;;4184:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4250:1;4243:8;;;4078:181;;;;:::o;43350:457::-;43409:7;43418;43427;43436;43445;43454;43463;43484:23;43509:12;43523:13;43538:18;43560:20;43572:7;43560:11;:20::i;:::-;43483:97;;;;;;;;43592:15;43609:23;43634:12;43650:57;43662:7;43671:4;43677:5;43684:10;43696;:8;:10::i;:::-;43650:11;:57::i;:::-;43591:116;;;;;;43726:7;43735:15;43752:4;43758:15;43775:4;43781:5;43788:10;43718:81;;;;;;;;;;;;;;;;;;;;;43350:457;;;;;;;;;:::o;4542:136::-;4600:7;4627:43;4631:1;4634;4627:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4620:50;;4542:136;;;;:::o;5432:471::-;5490:7;5740:1;5735;:6;5731:47;;;5765:1;5758:8;;;;5731:47;5790:9;5806:1;5802;:5;5790:17;;5835:1;5830;5826;:5;;;;;;:10;5818:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5894:1;5887:8;;;5432:471;;;;;:::o;45855:411::-;45991:68;46014:4;46021:13;46036:16;46053:5;45991:14;:68::i;:::-;46085:13;46070:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46149:51;46183:16;46149:29;;:33;;:51;;;;:::i;:::-;46117:29;:83;;;;46216:42;46241:16;46216:42;;;;;;;;;;;;;;;;;;45855:411;:::o;35272:985::-;27892:4;27873:16;;:23;;;;;;;;;;;;;;;;;;35408:12:::1;35423:27;35448:1;35423:20;:24;;:27;;;;:::i;:::-;35408:42;;35461:17;35481:30;35506:4;35481:20;:24;;:30;;;;:::i;:::-;35461:50;;35789:22;35814:21;35789:46;;35880:22;35897:4;35880:16;:22::i;:::-;36033:18;36054:41;36080:14;36054:21;:25;;:41;;;;:::i;:::-;36033:62;;36145:35;36158:9;36169:10;36145:12;:35::i;:::-;36206:43;36221:4;36227:10;36239:9;36206:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27907:1;;;;27938:5:::0;27919:16;;:24;;;;;;;;;;;;;;;;;;35272:985;:::o;37389:272::-;37432:21;37471:13;37432:53;;37496:14;37513:6;:16;;;37538:4;37513:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37496:48;;37577:31;37601:6;37577:19;;:23;;:31;;;;:::i;:::-;37555:19;:53;;;;37619:6;:15;;;37635:9;;;;;;;;;;;37646:6;37619:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37389:272;;:::o;39406:834::-;39517:7;39513:40;;39539:14;:12;:14::i;:::-;39513:40;39578:11;:19;39590:6;39578:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39602:11;:22;39614:9;39602:22;;;;;;;;;;;;;;;;;;;;;;;;;39601:23;39578:46;39574:597;;;39641:48;39663:6;39671:9;39682:6;39641:21;:48::i;:::-;39574:597;;;39712:11;:19;39724:6;39712:19;;;;;;;;;;;;;;;;;;;;;;;;;39711:20;:46;;;;;39735:11;:22;39747:9;39735:22;;;;;;;;;;;;;;;;;;;;;;;;;39711:46;39707:464;;;39774:46;39794:6;39802:9;39813:6;39774:19;:46::i;:::-;39707:464;;;39843:11;:19;39855:6;39843:19;;;;;;;;;;;;;;;;;;;;;;;;;39842:20;:47;;;;;39867:11;:22;39879:9;39867:22;;;;;;;;;;;;;;;;;;;;;;;;;39866:23;39842:47;39838:333;;;39906:44;39924:6;39932:9;39943:6;39906:17;:44::i;:::-;39838:333;;;39972:11;:19;39984:6;39972:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39995:11;:22;40007:9;39995:22;;;;;;;;;;;;;;;;;;;;;;;;;39972:45;39968:203;;;40034:48;40056:6;40064:9;40075:6;40034:21;:48::i;:::-;39968:203;;;40115:44;40133:6;40141:9;40152:6;40115:17;:44::i;:::-;39968:203;39838:333;39707:464;39574:597;40195:7;40191:41;;40217:15;:13;:15::i;:::-;40191:41;39406:834;;;;:::o;44915:561::-;44965:7;44974;44994:15;45012:7;;44994:25;;45030:15;45048:7;;45030:25;;45077:9;45072:289;45096:9;:16;;;;45092:1;:20;45072:289;;;45162:7;45138;:21;45146:9;45156:1;45146:12;;;;;;;;;;;;;;;;;;;;;;;;;45138:21;;;;;;;;;;;;;;;;:31;:66;;;;45197:7;45173;:21;45181:9;45191:1;45181:12;;;;;;;;;;;;;;;;;;;;;;;;;45173:21;;;;;;;;;;;;;;;;:31;45138:66;45134:97;;;45214:7;;45223;;45206:25;;;;;;;;;45134:97;45256:34;45268:7;:21;45276:9;45286:1;45276:12;;;;;;;;;;;;;;;;;;;;;;;;;45268:21;;;;;;;;;;;;;;;;45256:7;:11;;:34;;;;:::i;:::-;45246:44;;45315:34;45327:7;:21;45335:9;45345:1;45335:12;;;;;;;;;;;;;;;;;;;;;;;;;45327:21;;;;;;;;;;;;;;;;45315:7;:11;;:34;;;;:::i;:::-;45305:44;;45114:3;;;;;;;45072:289;;;;45385:20;45397:7;;45385;;:11;;:20;;;;:::i;:::-;45375:7;:30;45371:61;;;45415:7;;45424;;45407:25;;;;;;;;45371:61;45451:7;45460;45443:25;;;;;;44915:561;;;:::o;7007:278::-;7093:7;7125:1;7121;:5;7128:12;7113:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7152:9;7168:1;7164;:5;;;;;;7152:17;;7276:1;7269:8;;;7007:278;;;;;:::o;43815:409::-;43875:7;43884;43893;43902;43922:12;43937:24;43953:7;43937:15;:24::i;:::-;43922:39;;43972:13;43988:25;44005:7;43988:16;:25::i;:::-;43972:41;;44024:18;44045:30;44067:7;44045:21;:30::i;:::-;44024:51;;44086:23;44112:44;44145:10;44112:28;44134:5;44112:17;44124:4;44112:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44086:70;;44175:15;44192:4;44198:5;44205:10;44167:49;;;;;;;;;;;;43815:409;;;;;:::o;44232:504::-;44362:7;44371;44380;44400:15;44418:24;44430:11;44418:7;:11;;:24;;;;:::i;:::-;44400:42;;44453:12;44468:21;44477:11;44468:4;:8;;:21;;;;:::i;:::-;44453:36;;44500:13;44516:22;44526:11;44516:5;:9;;:22;;;;:::i;:::-;44500:38;;44549:18;44570:27;44585:11;44570:10;:14;;:27;;;;:::i;:::-;44549:48;;44608:23;44634:44;44667:10;44634:28;44656:5;44634:17;44646:4;44634:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44608:70;;44697:7;44706:15;44723:4;44689:39;;;;;;;;;;;44232:504;;;;;;;;;:::o;36265:589::-;36391:21;36429:1;36415:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36391:40;;36460:4;36442;36447:1;36442:7;;;;;;;;;;;;;:23;;;;;;;;;;;36486:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36476:4;36481:1;36476:7;;;;;;;;;;;;;:32;;;;;;;;;;;36521:62;36538:4;36553:15;36571:11;36521:8;:62::i;:::-;36622:15;:66;;;36703:11;36729:1;36773:4;36800;36820:15;36622:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36265:589;;:::o;36862:519::-;37010:62;37027:4;37042:15;37060:11;37010:8;:62::i;:::-;37115:15;:31;;;37154:9;37187:4;37207:11;37233:1;37276;37327:4;37347:15;37115:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36862:519;;:::o;46790:328::-;46847:1;46836:7;;:12;:29;;;;;46864:1;46852:8;;:13;46836:29;:51;;;;;46886:1;46869:13;;:18;46836:51;46833:63;;;46889:7;;46833:63;46934:7;;46916:15;:25;;;;46971:8;;46952:16;:27;;;;47014:13;;46990:21;:37;;;;47058:1;47048:7;:11;;;;47081:1;47070:8;:12;;;;47109:1;47093:13;:17;;;;46790:328;:::o;41598:689::-;41700:19;41723:10;:8;:10::i;:::-;41700:33;;41745:15;41762:23;41787:12;41801:23;41826:12;41840:13;41855:18;41877:19;41888:7;41877:10;:19::i;:::-;41744:152;;;;;;;;;;;;;;41907:13;41924:22;41934:11;41924:5;:9;;:22;;;;:::i;:::-;41907:39;;41975:28;41995:7;41975;:15;41983:6;41975:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41957:7;:15;41965:6;41957:15;;;;;;;;;;;;;;;:46;;;;42032:28;42052:7;42032;:15;42040:6;42032:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42014:7;:15;42022:6;42014:15;;;;;;;;;;;;;;;:46;;;;42092:39;42115:15;42092:7;:18;42100:9;42092:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42071:7;:18;42079:9;42071:18;;;;;;;;;;;;;;;:60;;;;42145:26;42160:10;42145:14;:26::i;:::-;42182:37;42194:4;42200:5;42207:4;42213:5;42182:11;:37::i;:::-;42252:9;42235:44;;42244:6;42235:44;;;42263:15;42235:44;;;;;;;;;;;;;;;;;;41598:689;;;;;;;;;;;;:::o;40881:709::-;40981:19;41004:10;:8;:10::i;:::-;40981:33;;41026:15;41043:23;41068:12;41082:23;41107:12;41121:13;41136:18;41158:19;41169:7;41158:10;:19::i;:::-;41025:152;;;;;;;;;;;;;;41188:13;41205:22;41215:11;41205:5;:9;;:22;;;;:::i;:::-;41188:39;;41256:28;41276:7;41256;:15;41264:6;41256:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41238:7;:15;41246:6;41238:15;;;;;;;;;;;;;;;:46;;;;41316:39;41339:15;41316:7;:18;41324:9;41316:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41295:7;:18;41303:9;41295:18;;;;;;;;;;;;;;;:60;;;;41387:39;41410:15;41387:7;:18;41395:9;41387:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41366:7;:18;41374:9;41366:18;;;;;;;;;;;;;;;:60;;;;41448:26;41463:10;41448:14;:26::i;:::-;41485:37;41497:4;41503:5;41510:4;41516:5;41485:11;:37::i;:::-;41555:9;41538:44;;41547:6;41538:44;;;41566:15;41538:44;;;;;;;;;;;;;;;;;;40881:709;;;;;;;;;;;;:::o;40248:625::-;40346:19;40369:10;:8;:10::i;:::-;40346:33;;40391:15;40408:23;40433:12;40447:23;40472:12;40486:13;40501:18;40523:19;40534:7;40523:10;:19::i;:::-;40390:152;;;;;;;;;;;;;;40553:13;40570:22;40580:11;40570:5;:9;;:22;;;;:::i;:::-;40553:39;;40621:28;40641:7;40621;:15;40629:6;40621:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40603:7;:15;40611:6;40603:15;;;;;;;;;;;;;;;:46;;;;40681:39;40704:15;40681:7;:18;40689:9;40681:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40660:7;:18;40668:9;40660:18;;;;;;;;;;;;;;;:60;;;;40731:26;40746:10;40731:14;:26::i;:::-;40768:37;40780:4;40786:5;40793:4;40799:5;40768:11;:37::i;:::-;40838:9;40821:44;;40830:6;40821:44;;;40849:15;40821:44;;;;;;;;;;;;;;;;;;40248:625;;;;;;;;;;;;:::o;42295:765::-;42397:19;42420:10;:8;:10::i;:::-;42397:33;;42442:15;42459:23;42484:12;42498:23;42523:12;42537:13;42552:18;42574:19;42585:7;42574:10;:19::i;:::-;42441:152;;;;;;;;;;;;;;42604:13;42621:22;42631:11;42621:5;:9;;:22;;;;:::i;:::-;42604:39;;42672:28;42692:7;42672;:15;42680:6;42672:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42654:7;:15;42662:6;42654:15;;;;;;;;;;;;;;;:46;;;;42729:28;42749:7;42729;:15;42737:6;42729:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42711:7;:15;42719:6;42711:15;;;;;;;;;;;;;;;:46;;;;42789:39;42812:15;42789:7;:18;42797:9;42789:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42768:7;:18;42776:9;42768:18;;;;;;;;;;;;;;;:60;;;;42860:39;42883:15;42860:7;:18;42868:9;42860:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42839:7;:18;42847:9;42839:18;;;;;;;;;;;;;;;:60;;;;42918:26;42933:10;42918:14;:26::i;:::-;42955:37;42967:4;42973:5;42980:4;42986:5;42955:11;:37::i;:::-;43025:9;43008:44;;43017:6;43008:44;;;43036:15;43008:44;;;;;;;;;;;;;;;;;;42295:765;;;;;;;;;;;;:::o;47130:163::-;47184:15;;47174:7;:25;;;;47221:16;;47210:8;:27;;;;47264:21;;47248:13;:37;;;;47130:163::o;46278:154::-;46342:7;46369:55;46408:5;46369:20;46381:7;;46369;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;46362:62;;46278:154;;;:::o;46444:156::-;46509:7;46536:56;46576:5;46536:21;46548:8;;46536:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;46529:63;;46444:156;;;:::o;46612:166::-;46682:7;46709:61;46754:5;46709:26;46721:13;;46709:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;46702:68;;46612:166;;;:::o;45488:355::-;45551:19;45574:10;:8;:10::i;:::-;45551:33;;45595:18;45616:27;45631:11;45616:10;:14;;:27;;;;:::i;:::-;45595:48;;45679:38;45706:10;45679:7;:22;45695:4;45679:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45654:7;:22;45670:4;45654:22;;;;;;;;;;;;;;;:63;;;;45731:11;:26;45751:4;45731:26;;;;;;;;;;;;;;;;;;;;;;;;;45728:107;;;45797:38;45824:10;45797:7;:22;45813:4;45797:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45772:7;:22;45788:4;45772:22;;;;;;;;;;;;;;;:63;;;;45728:107;45488:355;;;:::o;43068:274::-;43176:28;43198:5;43176:17;43188:4;43176:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43166:7;:38;;;;43228:20;43243:4;43228:10;;:14;;:20;;;;:::i;:::-;43215:10;:33;;;;43273:22;43289:5;43273:11;;:15;;:22;;;;:::i;:::-;43259:11;:36;;;;43316:18;43328:5;43316:7;;:11;;:18;;;;:::i;:::-;43306:7;:28;;;;43068:274;;;;:::o

Swarm Source

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