ETH Price: $2,293.87 (-2.13%)

Token

Furious (FURIOUS)
 

Overview

Max Total Supply

98,288.410096856275384961 FURIOUS

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2.451129610109434204 FURIOUS

Value
$0.00
0x96566284efba6551ec696499a4e2a1026d0356d4
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:
FURIOUS

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//FURIOUS


pragma solidity ^0.6.12;

// SPDX-License-Identifier: MIT

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");
        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 FURIOUS 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 = 100000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;

    string private _name = "Furious";
    string private _symbol = "FURIOUS";
    uint8 private _decimals = 18;
    
    //1%
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    //0%
    uint256 public _burnFee = 0;
    uint256 private _previousBurnFee = _burnFee;
    
    
    //Total 3% => 1.98% goes to liquidity providers and 1.02% are added to liquidity pool
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    //means 66% from total collected liquidity(3% on every Transfer) will be used to rewarded liquidity providers
    uint256 public _lpRewardFromLiquidity = 66;
    
    
    //5%
    uint256 public _maxTxAmount = 5000 * 10**18;
   
    //tracks the total amount of token rewarded to liquidity providers
    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 = 8;
    
    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"}]

60c06040526000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069152d02c7e14af6800000600a55600a54600019816200006257fe5b0660001903600b556040518060400160405280600781526020017f467572696f757300000000000000000000000000000000000000000000000000815250600e9080519060200190620000b792919062000663565b506040518060400160405280600781526020017f465552494f555300000000000000000000000000000000000000000000000000815250600f90805190602001906200010592919062000663565b506012601060006101000a81548160ff021916908360ff160217905550600160115560115460125560006013556013546014556003601555601554601655604260175569010f0cf064dd592000006018556000601a60006101000a81548160ff0219169083151502179055506000601c60016101000a81548160ff0219169083151502179055506008601d553480156200019e57600080fd5b506000620001b16200063260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b5460036000620002666200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030457600080fd5b505afa15801562000319573d6000803e3d6000fd5b505050506040513d60208110156200033057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a457600080fd5b505afa158015620003b9573d6000803e3d6000fd5b505050506040513d6020811015620003d057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044b57600080fd5b505af115801562000460573d6000803e3d6000fd5b505050506040513d60208110156200047757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200050b6200063a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005c46200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35062000709565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a657805160ff1916838001178555620006d7565b82800160010185558215620006d7579182015b82811115620006d6578251825591602001919060010190620006b9565b5b509050620006e69190620006ea565b5090565b5b8082111562000705576000816000905550600101620006eb565b5090565b60805160601c60a05160601c615bc76200076a60003980611d75528061239c5280612b72528061384a5280613ce65280613d0f5280613ec852508061124752806148ae528061499a52806149c15280614acc5280614af35250615bc76000f3fe6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f436f6e7472616374206973206c6f636b6564000000000000000000000000000081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000000000000000000000000000000000000000000083600061407d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220001182a6eae56e2acde2ebf8f1eb1c3f897671eaab2a29ea4abc832b58e0b10f64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e781565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e7905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f436f6e7472616374206973206c6f636b6564000000000000000000000000000081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e7905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e783600061407d565b7f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e773ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f0000000000000000000000007ddc03312140045727c2e59dc4a20f71baa297e7905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220001182a6eae56e2acde2ebf8f1eb1c3f897671eaab2a29ea4abc832b58e0b10f64736f6c634300060c0033

Deployed Bytecode Sourcemap

25749:23631:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48611:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47891:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28886:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29798:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27394:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29163:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29967:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31946:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29072:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32662:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30288:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26635:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31114:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31018:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48387:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48249:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47646:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31500:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27452:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27624:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27139:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32207:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47511:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26919:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29266:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16357:148;;;;;;;;;;;;;:::i;:::-;;37875:219;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27210:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30791:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15714:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48115:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28977:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27549:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30514:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17367:280;;;;;;;;;;;;;:::i;:::-;;29472:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16912:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26732:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27337:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49108:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38102:373;;;;;;;;;;;;;:::i;:::-;;48001:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27503:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17077:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29647:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47769:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16660:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48611:110;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48708:5:::1;48686:19;;:27;;;;;;;;;;;;;;;;;;48611:110:::0;:::o;47891:98::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47975:6:::1;47965:7;:16;;;;47891:98:::0;:::o;28886:83::-;28923:13;28956:5;28949:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28886:83;:::o;29798:161::-;29873:4;29890:39;29899:12;:10;:12::i;:::-;29913:7;29922:6;29890:8;:39::i;:::-;29947:4;29940:11;;29798:161;;;;:::o;30919:87::-;30961:7;30988:10;;30981:17;;30919:87;:::o;27394:51::-;;;:::o;29163:95::-;29216:7;29243;;29236:14;;29163:95;:::o;29967:313::-;30065:4;30082:36;30092:6;30100:9;30111:6;30082:9;:36::i;:::-;30129:121;30138:6;30146:12;:10;:12::i;:::-;30160:89;30198:6;30160:89;;;;;;;;;;;;;;;;;:11;:19;30172:6;30160:19;;;;;;;;;;;;;;;:33;30180:12;:10;:12::i;:::-;30160:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30129:8;:121::i;:::-;30268:4;30261:11;;29967:313;;;;;:::o;31946:253::-;32012:7;32051;;32040;:18;;32032:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32116:19;32139:10;:8;:10::i;:::-;32116:33;;32167:24;32179:11;32167:7;:11;;:24;;;;:::i;:::-;32160:31;;;31946:253;;;:::o;29072:83::-;29113:5;29138:9;;;;;;;;;;;29131:16;;29072:83;:::o;32662:479::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32744:11:::1;:20;32756:7;32744:20;;;;;;;;;;;;;;;;;;;;;;;;;32736:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32812:9;32807:327;32831:9;:16;;;;32827:1;:20;32807:327;;;32889:7;32873:23;;:9;32883:1;32873:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32869:254;;;32932:9;32961:1;32942:9;:16;;;;:20;32932:31;;;;;;;;;;;;;;;;;;;;;;;;;32917:9;32927:1;32917:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33001:1;32982:7;:16;32990:7;32982:16;;;;;;;;;;;;;;;:20;;;;33044:5;33021:11;:20;33033:7;33021:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33068:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33102:5;;32869:254;32849:3;;;;;;;32807:327;;;;32662:479:::0;:::o;30288:218::-;30376:4;30393:83;30402:12;:10;:12::i;:::-;30416:7;30425:50;30464:10;30425:11;:25;30437:12;:10;:12::i;:::-;30425:25;;;;;;;;;;;;;;;:34;30451:7;30425:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30393:8;:83::i;:::-;30494:4;30487:11;;30288:218;;;;:::o;26635:26::-;;;;:::o;31114:378::-;31166:14;31183:12;:10;:12::i;:::-;31166:29;;31215:11;:19;31227:6;31215:19;;;;;;;;;;;;;;;;;;;;;;;;;31214:20;31206:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31295:15;31320:19;31331:7;31320:10;:19::i;:::-;31294:45;;;;;;;;31368:28;31388:7;31368;:15;31376:6;31368:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31350:7;:15;31358:6;31350:15;;;;;;;;;;;;;;;:46;;;;31417:20;31429:7;31417;;:11;;:20;;;;:::i;:::-;31407:7;:30;;;;31461:23;31476:7;31461:10;;:14;;:23;;;;:::i;:::-;31448:10;:36;;;;31114:378;;;:::o;31018:88::-;31060:7;31087:11;;31080:18;;31018:88;:::o;48387:212::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48504:87:::1;48578:1;48561:13;48553:26;48548:2;:32;48504:25;48516:12;48504:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;48489:12;:102;;;;48387:212:::0;;:::o;48249:130::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48364:7:::1;48339:22;:32;;;;48249:130:::0;:::o;47646:111::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47745:4:::1;47715:18;:27;47734:7;47715:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47646:111:::0;:::o;31500:438::-;31590:7;31629;;31618;:18;;31610:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31688:17;31683:248;;31723:15;31748:19;31759:7;31748:10;:19::i;:::-;31722:45;;;;;;;;31789:7;31782:14;;;;;31683:248;31831:23;31863:19;31874:7;31863:10;:19::i;:::-;31829:53;;;;;;;;31904:15;31897:22;;;31500:438;;;;;:::o;27452:38::-;;;:::o;27624:41::-;;;;;;;;;;;;;:::o;27139:42::-;;;;:::o;32207:447::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32404:11:::1;:20;32416:7;32404:20;;;;;;;;;;;;;;;;;;;;;;;;;32403:21;32395:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32489:1;32470:7;:16;32478:7;32470:16;;;;;;;;;;;;;;;;:20;32467:108;;;32526:37;32546:7;:16;32554:7;32546:16;;;;;;;;;;;;;;;;32526:19;:37::i;:::-;32507:7;:16;32515:7;32507:16;;;;;;;;;;;;;;;:56;;;;32467:108;32608:4;32585:11;:20;32597:7;32585:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32623:9;32638:7;32623:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32207:447:::0;:::o;47511:123::-;47575:4;47599:18;:27;47618:7;47599:27;;;;;;;;;;;;;;;;;;;;;;;;;47592:34;;47511:123;;;:::o;26919:32::-;;;;:::o;29266:198::-;29332:7;29356:11;:20;29368:7;29356:20;;;;;;;;;;;;;;;;;;;;;;;;;29352:49;;;29385:7;:16;29393:7;29385:16;;;;;;;;;;;;;;;;29378:23;;;;29352:49;29419:37;29439:7;:16;29447:7;29439:16;;;;;;;;;;;;;;;;29419:19;:37::i;:::-;29412:44;;29266:198;;;;:::o;16357:148::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16464:1:::1;16427:40;;16448:6;::::0;::::1;;;;;;;;16427:40;;;;;;;;;;;;16495:1;16478:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16357:148::o:0;37875:219::-;37922:7;37942:20;37980:13;37942:52;;38005:14;38022:5;:15;;;38046:4;38022:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38005:47;;38080:6;38073:13;;;;37875:219;:::o;27210:43::-;;;;:::o;30791:120::-;30859:4;30883:11;:20;30895:7;30883:20;;;;;;;;;;;;;;;;;;;;;;;;;30876:27;;30791:120;;;:::o;15714:79::-;15752:7;15779:6;;;;;;;;;;;15772:13;;15714:79;:::o;48115:122::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48217:12:::1;48201:13;:28;;;;48115:122:::0;:::o;28977:87::-;29016:13;29049:7;29042:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28977:87;:::o;27549:34::-;;;;:::o;30514:269::-;30607:4;30624:129;30633:12;:10;:12::i;:::-;30647:7;30656:96;30695:15;30656:96;;;;;;;;;;;;;;;;;:11;:25;30668:12;:10;:12::i;:::-;30656:25;;;;;;;;;;;;;;;:34;30682:7;30656:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30624:8;:129::i;:::-;30771:4;30764:11;;30514:269;;;;:::o;17367:280::-;17437:10;17419:28;;:14;;;;;;;;;;;:28;;;17411:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17512:9;;17506:3;:15;17498:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17590:14;;;;;;;;;;;17561:44;;17582:6;;;;;;;;;;17561:44;;;;;;;;;;;;17625:14;;;;;;;;;;;17616:6;;:23;;;;;;;;;;;;;;;;;;17367:280::o;29472:167::-;29550:4;29567:42;29577:12;:10;:12::i;:::-;29591:9;29602:6;29567:9;:42::i;:::-;29627:4;29620:11;;29472:167;;;;:::o;16912:89::-;16957:7;16984:9;;16977:16;;16912:89;:::o;26732:27::-;;;;:::o;27337:44::-;;;;:::o;49108:171::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49209:8:::1;49185:21;;:32;;;;;;;;;;;;;;;;;;49233:38;49262:8;49233:38;;;;;;;;;;;;;;;;;;;;49108:171:::0;:::o;38102:373::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38219:20:::1;38257:13;38219:52;;38282:14;38299:5;:15;;;38323:4;38299:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38282:47;;38367:1;38358:6;:10;38350:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38436:5;:14;;;38451:7;:5;:7::i;:::-;38460:6;38436:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;15996:1;;38102:373::o:0;48001:102::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48088:7:::1;48077:8;:18;;;;48001:102:::0;:::o;27503:39::-;;;;;;;;;;;;;:::o;17077:214::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17158:6:::1;::::0;::::1;;;;;;;;17141:14;;:23;;;;;;;;;;;;;;;;;;17192:1;17175:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17223:4;17217:3;:10;17205:9;:22;;;;17280:1;17243:40;;17264:6;::::0;::::1;;;;;;;;17243:40;;;;;;;;;;;;17077:214:::0;:::o;29647:143::-;29728:7;29755:11;:18;29767:5;29755:18;;;;;;;;;;;;;;;:27;29774:7;29755:27;;;;;;;;;;;;;;;;29748:34;;29647:143;;;;:::o;47769:110::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47866:5:::1;47836:18;:27;47855:7;47836:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;47769:110:::0;:::o;16660:244::-;15936:12;:10;:12::i;:::-;15926:22;;:6;;;;;;;;;;:22;;;15918:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16769:1:::1;16749:22;;:8;:22;;;;16741:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16859:8;16830:38;;16851:6;::::0;::::1;;;;;;;;16830:38;;;;;;;;;;;;16888:8;16879:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16660:244:::0;:::o;111:106::-;164:15;199:10;192:17;;111:106;:::o;33149:337::-;33259:1;33242:19;;:5;:19;;;;33234:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33340:1;33321:21;;:7;:21;;;;33313:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33424:6;33394:11;:18;33406:5;33394:18;;;;;;;;;;;;;;;:27;33413:7;33394:27;;;;;;;;;;;;;;;:36;;;;33462:7;33446:32;;33455:5;33446:32;;;33471:6;33446:32;;;;;;;;;;;;;;;;;;33149:337;;;:::o;33494:1976::-;33632:1;33616:18;;:4;:18;;;;33608:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33709:1;33695:16;;:2;:16;;;;33687:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33779:1;33770:6;:10;33762:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33848:7;:5;:7::i;:::-;33840:15;;:4;:15;;;;:32;;;;;33865:7;:5;:7::i;:::-;33859:13;;:2;:13;;;;33840:32;33837:125;;;33905:12;;33895:6;:22;;33887:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33837:125;34257:28;34288:24;34306:4;34288:9;:24::i;:::-;34257:55;;34323:24;34374:19;;34350:20;:43;;34323:70;;34422:19;:53;;;;;34459:16;;;;;;;;;;;34458:17;34422:53;:91;;;;;34500:13;34492:21;;:4;:21;;;;34422:91;:129;;;;;34530:21;;;;;;;;;;;34422:129;34404:633;;;34614:22;34639:59;34692:5;34639:48;34664:22;;34639:20;:24;;:48;;;;:::i;:::-;:52;;:59;;;;:::i;:::-;34614:84;;34747:41;34773:14;34747:25;:41::i;:::-;34832:56;34847:40;34872:14;34847:20;:24;;:40;;;;:::i;:::-;34832:14;:56::i;:::-;34973:19;;;;;;;;;;;34970:55;;;35011:14;:12;:14::i;:::-;34970:55;34404:633;;35118:12;35133:4;35118:19;;35245:18;:24;35264:4;35245:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35273:18;:22;35292:2;35273:22;;;;;;;;;;;;;;;;;;;;;;;;;35245:50;35242:96;;;35321:5;35311:15;;35242:96;35424:38;35439:4;35444:2;35447:6;35454:7;35424:14;:38::i;:::-;33494:1976;;;;;;:::o;4921:192::-;5007:7;5040:1;5035;:6;;5043:12;5027:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5067:9;5083:1;5079;:5;5067:17;;5104:1;5097:8;;;4921:192;;;;;:::o;44950:163::-;44991:7;45012:15;45029;45048:19;:17;:19::i;:::-;45011:56;;;;45085:20;45097:7;45085;:11;;:20;;;;:::i;:::-;45078:27;;;;44950:163;:::o;6319:132::-;6377:7;6404:39;6408:1;6411;6404:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6397:46;;6319:132;;;;:::o;4018:181::-;4076:7;4096:9;4112:1;4108;:5;4096:17;;4137:1;4132;:6;;4124:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4190:1;4183:8;;;4018:181;;;;:::o;43556:457::-;43615:7;43624;43633;43642;43651;43660;43669;43690:23;43715:12;43729:13;43744:18;43766:20;43778:7;43766:11;:20::i;:::-;43689:97;;;;;;;;43798:15;43815:23;43840:12;43856:57;43868:7;43877:4;43883:5;43890:10;43902;:8;:10::i;:::-;43856:11;:57::i;:::-;43797:116;;;;;;43932:7;43941:15;43958:4;43964:15;43981:4;43987:5;43994:10;43924:81;;;;;;;;;;;;;;;;;;;;;43556:457;;;;;;;;;:::o;4482:136::-;4540:7;4567:43;4571:1;4574;4567:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4560:50;;4482:136;;;;:::o;5372:471::-;5430:7;5680:1;5675;:6;5671:47;;;5705:1;5698:8;;;;5671:47;5730:9;5746:1;5742;:5;5730:17;;5775:1;5770;5766;:5;;;;;;:10;5758:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834:1;5827:8;;;5372:471;;;;;:::o;46061:411::-;46197:68;46220:4;46227:13;46242:16;46259:5;46197:14;:68::i;:::-;46291:13;46276:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46355:51;46389:16;46355:29;;:33;;:51;;;;:::i;:::-;46323:29;:83;;;;46422:42;46447:16;46422:42;;;;;;;;;;;;;;;;;;46061:411;:::o;35478:985::-;28098:4;28079:16;;:23;;;;;;;;;;;;;;;;;;35614:12:::1;35629:27;35654:1;35629:20;:24;;:27;;;;:::i;:::-;35614:42;;35667:17;35687:30;35712:4;35687:20;:24;;:30;;;;:::i;:::-;35667:50;;35995:22;36020:21;35995:46;;36086:22;36103:4;36086:16;:22::i;:::-;36239:18;36260:41;36286:14;36260:21;:25;;:41;;;;:::i;:::-;36239:62;;36351:35;36364:9;36375:10;36351:12;:35::i;:::-;36412:43;36427:4;36433:10;36445:9;36412:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28113:1;;;;28144:5:::0;28125:16;;:24;;;;;;;;;;;;;;;;;;35478:985;:::o;37595:272::-;37638:21;37677:13;37638:53;;37702:14;37719:6;:16;;;37744:4;37719:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37702:48;;37783:31;37807:6;37783:19;;:23;;:31;;;;:::i;:::-;37761:19;:53;;;;37825:6;:15;;;37841:9;;;;;;;;;;;37852:6;37825:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37595:272;;:::o;39612:834::-;39723:7;39719:40;;39745:14;:12;:14::i;:::-;39719:40;39784:11;:19;39796:6;39784:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39808:11;:22;39820:9;39808:22;;;;;;;;;;;;;;;;;;;;;;;;;39807:23;39784:46;39780:597;;;39847:48;39869:6;39877:9;39888:6;39847:21;:48::i;:::-;39780:597;;;39918:11;:19;39930:6;39918:19;;;;;;;;;;;;;;;;;;;;;;;;;39917:20;:46;;;;;39941:11;:22;39953:9;39941:22;;;;;;;;;;;;;;;;;;;;;;;;;39917:46;39913:464;;;39980:46;40000:6;40008:9;40019:6;39980:19;:46::i;:::-;39913:464;;;40049:11;:19;40061:6;40049:19;;;;;;;;;;;;;;;;;;;;;;;;;40048:20;:47;;;;;40073:11;:22;40085:9;40073:22;;;;;;;;;;;;;;;;;;;;;;;;;40072:23;40048:47;40044:333;;;40112:44;40130:6;40138:9;40149:6;40112:17;:44::i;:::-;40044:333;;;40178:11;:19;40190:6;40178:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;40201:11;:22;40213:9;40201:22;;;;;;;;;;;;;;;;;;;;;;;;;40178:45;40174:203;;;40240:48;40262:6;40270:9;40281:6;40240:21;:48::i;:::-;40174:203;;;40321:44;40339:6;40347:9;40358:6;40321:17;:44::i;:::-;40174:203;40044:333;39913:464;39780:597;40401:7;40397:41;;40423:15;:13;:15::i;:::-;40397:41;39612:834;;;;:::o;45121:561::-;45171:7;45180;45200:15;45218:7;;45200:25;;45236:15;45254:7;;45236:25;;45283:9;45278:289;45302:9;:16;;;;45298:1;:20;45278:289;;;45368:7;45344;:21;45352:9;45362:1;45352:12;;;;;;;;;;;;;;;;;;;;;;;;;45344:21;;;;;;;;;;;;;;;;:31;:66;;;;45403:7;45379;:21;45387:9;45397:1;45387:12;;;;;;;;;;;;;;;;;;;;;;;;;45379:21;;;;;;;;;;;;;;;;:31;45344:66;45340:97;;;45420:7;;45429;;45412:25;;;;;;;;;45340:97;45462:34;45474:7;:21;45482:9;45492:1;45482:12;;;;;;;;;;;;;;;;;;;;;;;;;45474:21;;;;;;;;;;;;;;;;45462:7;:11;;:34;;;;:::i;:::-;45452:44;;45521:34;45533:7;:21;45541:9;45551:1;45541:12;;;;;;;;;;;;;;;;;;;;;;;;;45533:21;;;;;;;;;;;;;;;;45521:7;:11;;:34;;;;:::i;:::-;45511:44;;45320:3;;;;;;;45278:289;;;;45591:20;45603:7;;45591;;:11;;:20;;;;:::i;:::-;45581:7;:30;45577:61;;;45621:7;;45630;;45613:25;;;;;;;;45577:61;45657:7;45666;45649:25;;;;;;45121:561;;;:::o;6947:278::-;7033:7;7065:1;7061;:5;7068:12;7053:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7092:9;7108:1;7104;:5;;;;;;7092:17;;7216:1;7209:8;;;6947:278;;;;;:::o;44021:409::-;44081:7;44090;44099;44108;44128:12;44143:24;44159:7;44143:15;:24::i;:::-;44128:39;;44178:13;44194:25;44211:7;44194:16;:25::i;:::-;44178:41;;44230:18;44251:30;44273:7;44251:21;:30::i;:::-;44230:51;;44292:23;44318:44;44351:10;44318:28;44340:5;44318:17;44330:4;44318:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44292:70;;44381:15;44398:4;44404:5;44411:10;44373:49;;;;;;;;;;;;44021:409;;;;;:::o;44438:504::-;44568:7;44577;44586;44606:15;44624:24;44636:11;44624:7;:11;;:24;;;;:::i;:::-;44606:42;;44659:12;44674:21;44683:11;44674:4;:8;;:21;;;;:::i;:::-;44659:36;;44706:13;44722:22;44732:11;44722:5;:9;;:22;;;;:::i;:::-;44706:38;;44755:18;44776:27;44791:11;44776:10;:14;;:27;;;;:::i;:::-;44755:48;;44814:23;44840:44;44873:10;44840:28;44862:5;44840:17;44852:4;44840:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44814:70;;44903:7;44912:15;44929:4;44895:39;;;;;;;;;;;44438:504;;;;;;;;;:::o;36471:589::-;36597:21;36635:1;36621:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36597:40;;36666:4;36648;36653:1;36648:7;;;;;;;;;;;;;:23;;;;;;;;;;;36692:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36682:4;36687:1;36682:7;;;;;;;;;;;;;:32;;;;;;;;;;;36727:62;36744:4;36759:15;36777:11;36727:8;:62::i;:::-;36828:15;:66;;;36909:11;36935:1;36979:4;37006;37026:15;36828:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36471:589;;:::o;37068:519::-;37216:62;37233:4;37248:15;37266:11;37216:8;:62::i;:::-;37321:15;:31;;;37360:9;37393:4;37413:11;37439:1;37482;37533:4;37553:15;37321:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37068:519;;:::o;46996:328::-;47053:1;47042:7;;:12;:29;;;;;47070:1;47058:8;;:13;47042:29;:51;;;;;47092:1;47075:13;;:18;47042:51;47039:63;;;47095:7;;47039:63;47140:7;;47122:15;:25;;;;47177:8;;47158:16;:27;;;;47220:13;;47196:21;:37;;;;47264:1;47254:7;:11;;;;47287:1;47276:8;:12;;;;47315:1;47299:13;:17;;;;46996:328;:::o;41804:689::-;41906:19;41929:10;:8;:10::i;:::-;41906:33;;41951:15;41968:23;41993:12;42007:23;42032:12;42046:13;42061:18;42083:19;42094:7;42083:10;:19::i;:::-;41950:152;;;;;;;;;;;;;;42113:13;42130:22;42140:11;42130:5;:9;;:22;;;;:::i;:::-;42113:39;;42181:28;42201:7;42181;:15;42189:6;42181:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42163:7;:15;42171:6;42163:15;;;;;;;;;;;;;;;:46;;;;42238:28;42258:7;42238;:15;42246:6;42238:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42220:7;:15;42228:6;42220:15;;;;;;;;;;;;;;;:46;;;;42298:39;42321:15;42298:7;:18;42306:9;42298:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42277:7;:18;42285:9;42277:18;;;;;;;;;;;;;;;:60;;;;42351:26;42366:10;42351:14;:26::i;:::-;42388:37;42400:4;42406:5;42413:4;42419:5;42388:11;:37::i;:::-;42458:9;42441:44;;42450:6;42441:44;;;42469:15;42441:44;;;;;;;;;;;;;;;;;;41804:689;;;;;;;;;;;;:::o;41087:709::-;41187:19;41210:10;:8;:10::i;:::-;41187:33;;41232:15;41249:23;41274:12;41288:23;41313:12;41327:13;41342:18;41364:19;41375:7;41364:10;:19::i;:::-;41231:152;;;;;;;;;;;;;;41394:13;41411:22;41421:11;41411:5;:9;;:22;;;;:::i;:::-;41394:39;;41462:28;41482:7;41462;:15;41470:6;41462:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41444:7;:15;41452:6;41444:15;;;;;;;;;;;;;;;:46;;;;41522:39;41545:15;41522:7;:18;41530:9;41522:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41501:7;:18;41509:9;41501:18;;;;;;;;;;;;;;;:60;;;;41593:39;41616:15;41593:7;:18;41601:9;41593:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41572:7;:18;41580:9;41572:18;;;;;;;;;;;;;;;:60;;;;41654:26;41669:10;41654:14;:26::i;:::-;41691:37;41703:4;41709:5;41716:4;41722:5;41691:11;:37::i;:::-;41761:9;41744:44;;41753:6;41744:44;;;41772:15;41744:44;;;;;;;;;;;;;;;;;;41087:709;;;;;;;;;;;;:::o;40454:625::-;40552:19;40575:10;:8;:10::i;:::-;40552:33;;40597:15;40614:23;40639:12;40653:23;40678:12;40692:13;40707:18;40729:19;40740:7;40729:10;:19::i;:::-;40596:152;;;;;;;;;;;;;;40759:13;40776:22;40786:11;40776:5;:9;;:22;;;;:::i;:::-;40759:39;;40827:28;40847:7;40827;:15;40835:6;40827:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40809:7;:15;40817:6;40809:15;;;;;;;;;;;;;;;:46;;;;40887:39;40910:15;40887:7;:18;40895:9;40887:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40866:7;:18;40874:9;40866:18;;;;;;;;;;;;;;;:60;;;;40937:26;40952:10;40937:14;:26::i;:::-;40974:37;40986:4;40992:5;40999:4;41005:5;40974:11;:37::i;:::-;41044:9;41027:44;;41036:6;41027:44;;;41055:15;41027:44;;;;;;;;;;;;;;;;;;40454:625;;;;;;;;;;;;:::o;42501:765::-;42603:19;42626:10;:8;:10::i;:::-;42603:33;;42648:15;42665:23;42690:12;42704:23;42729:12;42743:13;42758:18;42780:19;42791:7;42780:10;:19::i;:::-;42647:152;;;;;;;;;;;;;;42810:13;42827:22;42837:11;42827:5;:9;;:22;;;;:::i;:::-;42810:39;;42878:28;42898:7;42878;:15;42886:6;42878:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42860:7;:15;42868:6;42860:15;;;;;;;;;;;;;;;:46;;;;42935:28;42955:7;42935;:15;42943:6;42935:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42917:7;:15;42925:6;42917:15;;;;;;;;;;;;;;;:46;;;;42995:39;43018:15;42995:7;:18;43003:9;42995:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42974:7;:18;42982:9;42974:18;;;;;;;;;;;;;;;:60;;;;43066:39;43089:15;43066:7;:18;43074:9;43066:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43045:7;:18;43053:9;43045:18;;;;;;;;;;;;;;;:60;;;;43124:26;43139:10;43124:14;:26::i;:::-;43161:37;43173:4;43179:5;43186:4;43192:5;43161:11;:37::i;:::-;43231:9;43214:44;;43223:6;43214:44;;;43242:15;43214:44;;;;;;;;;;;;;;;;;;42501:765;;;;;;;;;;;;:::o;47336:163::-;47390:15;;47380:7;:25;;;;47427:16;;47416:8;:27;;;;47470:21;;47454:13;:37;;;;47336:163::o;46484:154::-;46548:7;46575:55;46614:5;46575:20;46587:7;;46575;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;46568:62;;46484:154;;;:::o;46650:156::-;46715:7;46742:56;46782:5;46742:21;46754:8;;46742:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;46735:63;;46650:156;;;:::o;46818:166::-;46888:7;46915:61;46960:5;46915:26;46927:13;;46915:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;46908:68;;46818:166;;;:::o;45694:355::-;45757:19;45780:10;:8;:10::i;:::-;45757:33;;45801:18;45822:27;45837:11;45822:10;:14;;:27;;;;:::i;:::-;45801:48;;45885:38;45912:10;45885:7;:22;45901:4;45885:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45860:7;:22;45876:4;45860:22;;;;;;;;;;;;;;;:63;;;;45937:11;:26;45957:4;45937:26;;;;;;;;;;;;;;;;;;;;;;;;;45934:107;;;46003:38;46030:10;46003:7;:22;46019:4;46003:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;45978:7;:22;45994:4;45978:22;;;;;;;;;;;;;;;:63;;;;45934:107;45694:355;;;:::o;43274:274::-;43382:28;43404:5;43382:17;43394:4;43382:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43372:7;:38;;;;43434:20;43449:4;43434:10;;:14;;:20;;;;:::i;:::-;43421:10;:33;;;;43479:22;43495:5;43479:11;;:15;;:22;;;;:::i;:::-;43465:11;:36;;;;43522:18;43534:5;43522:7;;:11;;:18;;;;:::i;:::-;43512:7;:28;;;;43274:274;;;;:::o

Swarm Source

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