ETH Price: $3,068.08 (+1.40%)
Gas: 6 Gwei

Token

tranquilitydefi.com (TRNQ)
 

Overview

Max Total Supply

800,000 TRNQ

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
498.063484537835347813 TRNQ

Value
$0.00
0x8164199d893249f5ddf78a7161d5e521ba8e958e
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:
TranquilityToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-30
*/

/**
 *        d888888b   tranquilitydefi.com   d888888b
 *    d888    8888b                    d888888   888b
 *  d88    88  898888b               d8888  888     88b
 * d8P        88888888b             d88888888888     b8b
 * 88        8888888888             88888888888       88
 * 88       88888888888             8888888888        88
 * 98b     88888888888P             988888888        d8P
 *  988     888  8888P      _=_      9888898  88    88P
 *    9888   888888P      q(-_-)p       98888    888P
 *       9888888P         '_) (_`         9888888P
 *          88            /__/  \            88
 *          88          _(<_   / )_          88
 *         d88b        (__\_\_|_/__)        d88b
 *                  tranquilitydefi.com
 */
//SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

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

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


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

     /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 8 * 10**5 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "tranquilitydefi.com";
    string private _symbol = "TRNQ";
    uint8 private _decimals = 18;
    
    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    //No limit
    uint256 public _maxTxAmount = _tTotal;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 private minTokensBeforeSwap = 1000 * 10**18;
    bool tranquilityEnabled = false;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

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

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    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.");
            require(tranquilityEnabled, "You must meditate on your actions");
        }

        // 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
        ) {
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    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
            owner(),
            block.timestamp
        );
    }

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

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

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

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

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

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

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

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    function reduceTranquilityGas(uint256 _minTokensBeforeSwap) public onlyOwner {
        minTokensBeforeSwap = _minTokensBeforeSwap;
    }

    function enableTranquility() external onlyOwner {
        tranquilityEnabled = true;
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTranquility","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":"_minTokensBeforeSwap","type":"uint256"}],"name":"reduceTranquilityGas","outputs":[],"stateMutability":"nonpayable","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":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

69a968163f0a57b400000060095569085afffa6ff50bffffff19600a55610100604052601360c08190527f7472616e7175696c697479646566692e636f6d0000000000000000000000000060e09081526200005e91600c9190620003d0565b506040805180820190915260048082526354524e5160e01b60209092019182526200008c91600d91620003d0565b50600e805460ff1990811660129081179092556003600f819055601081905560118190559091556009546013556014805461ff001916610100179055683635c9adc5dea00000601555601680549091169055348015620000eb57600080fd5b506000620000f8620003bd565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a546003600062000153620003bd565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ca57600080fd5b505afa158015620001df573d6000803e3d6000fd5b505050506040513d6020811015620001f657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024757600080fd5b505afa1580156200025c573d6000803e3d6000fd5b505050506040513d60208110156200027357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002c657600080fd5b505af1158015620002db573d6000803e3d6000fd5b505050506040513d6020811015620002f257600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200031f620003c1565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000369620003bd565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200046c565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041357805160ff191683800117855562000443565b8280016001018555821562000443579182015b828111156200044357825182559160200191906001019062000426565b506200045192915062000455565b5090565b5b8082111562000451576000815560010162000456565b60805160601c60a05160601c612b9d620004b460003980610fd35280611afd525080610a5d52806122b4528061236c5280612393528061247952806124a05250612b9d6000f3fe6080604052600436106102345760003560e01c806352390c021161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107e8578063dd46706414610812578063dd62ed3e1461083c578063ea2f0b3714610877578063f2fde38b146108aa5761023b565b8063a457c2d714610720578063a69df4b514610759578063a9059cbb1461076e578063b6c52324146107a7578063c49b9a80146107bc5761023b565b80637d1db4a5116100f25780637d1db4a51461068457806388f82020146106995780638da5cb5b146106cc5780638ee88c53146106e157806395d89b411461070b5761023b565b806352390c02146105c15780635342acb4146105f45780636bc87c3a1461062757806370a082311461063c578063715018a61461066f5761023b565b8063313ce567116101bc5780633bd5d173116101805780633bd5d17314610508578063437823ec146105325780634549b0391461056557806349bd5a5e146105975780634a74bb02146105ac5761023b565b8063313ce567146104325780633685d4191461045d5780633703976f1461049057806339509351146104ba5780633b124fe7146104f35761023b565b806313114a9d1161020357806313114a9d146103585780631694505e1461037f57806318160ddd146103b057806323b872dd146103c55780632d838119146104085761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f65780630f0aecd3146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108dd565b005b34801561027857600080fd5b5061028161093a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109d0565b604080519115158252519081900360200190f35b34801561034f57600080fd5b5061026a6109ee565b34801561036457600080fd5b5061036d610a55565b60408051918252519081900360200190f35b34801561038b57600080fd5b50610394610a5b565b604080516001600160a01b039092168252519081900360200190f35b3480156103bc57600080fd5b5061036d610a7f565b3480156103d157600080fd5b5061032f600480360360608110156103e857600080fd5b506001600160a01b03813581169160208101359091169060400135610a85565b34801561041457600080fd5b5061036d6004803603602081101561042b57600080fd5b5035610b0c565b34801561043e57600080fd5b50610447610b6e565b6040805160ff9092168252519081900360200190f35b34801561046957600080fd5b5061026a6004803603602081101561048057600080fd5b50356001600160a01b0316610b77565b34801561049c57600080fd5b5061026a600480360360208110156104b357600080fd5b5035610d38565b3480156104c657600080fd5b5061032f600480360360408110156104dd57600080fd5b506001600160a01b038135169060200135610d95565b3480156104ff57600080fd5b5061036d610de3565b34801561051457600080fd5b5061026a6004803603602081101561052b57600080fd5b5035610de9565b34801561053e57600080fd5b5061026a6004803603602081101561055557600080fd5b50356001600160a01b0316610ec3565b34801561057157600080fd5b5061036d6004803603604081101561058857600080fd5b50803590602001351515610f3f565b3480156105a357600080fd5b50610394610fd1565b3480156105b857600080fd5b5061032f610ff5565b3480156105cd57600080fd5b5061026a600480360360208110156105e457600080fd5b50356001600160a01b0316611003565b34801561060057600080fd5b5061032f6004803603602081101561061757600080fd5b50356001600160a01b0316611189565b34801561063357600080fd5b5061036d6111a7565b34801561064857600080fd5b5061036d6004803603602081101561065f57600080fd5b50356001600160a01b03166111ad565b34801561067b57600080fd5b5061026a61120f565b34801561069057600080fd5b5061036d61129f565b3480156106a557600080fd5b5061032f600480360360208110156106bc57600080fd5b50356001600160a01b03166112a5565b3480156106d857600080fd5b506103946112c3565b3480156106ed57600080fd5b5061026a6004803603602081101561070457600080fd5b50356112d2565b34801561071757600080fd5b5061028161132f565b34801561072c57600080fd5b5061032f6004803603604081101561074357600080fd5b506001600160a01b038135169060200135611390565b34801561076557600080fd5b5061026a6113f8565b34801561077a57600080fd5b5061032f6004803603604081101561079157600080fd5b506001600160a01b0381351690602001356114e6565b3480156107b357600080fd5b5061036d6114fa565b3480156107c857600080fd5b5061026a600480360360208110156107df57600080fd5b50351515611500565b3480156107f457600080fd5b5061026a6004803603602081101561080b57600080fd5b50356115a7565b34801561081e57600080fd5b5061026a6004803603602081101561083557600080fd5b5035611625565b34801561084857600080fd5b5061036d6004803603604081101561085f57600080fd5b506001600160a01b03813581169160200135166116c3565b34801561088357600080fd5b5061026a6004803603602081101561089a57600080fd5b50356001600160a01b03166116ee565b3480156108b657600080fd5b5061026a600480360360208110156108cd57600080fd5b50356001600160a01b0316611767565b6108e561184d565b6000546001600160a01b03908116911614610935576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109e46109dd61184d565b8484611851565b5060015b92915050565b6109f661184d565b6000546001600160a01b03908116911614610a46576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6016805460ff19166001179055565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610a9284848461193d565b610b0284610a9e61184d565b610afd856040518060600160405280602881526020016129f9602891396001600160a01b038a16600090815260056020526040812090610adc61184d565b6001600160a01b031681526020810191909152604001600020549190611bb2565b611851565b5060019392505050565b6000600a54821115610b4f5760405162461bcd60e51b815260040180806020018281038252602a81526020018061293e602a913960400191505060405180910390fd5b6000610b59611c49565b9050610b658382611c6c565b9150505b919050565b600e5460ff1690565b610b7f61184d565b6000546001600160a01b03908116911614610bcf576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c3c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d3457816001600160a01b031660088281548110610c6057fe5b6000918252602090912001546001600160a01b03161415610d2c57600880546000198101908110610c8d57fe5b600091825260209091200154600880546001600160a01b039092169183908110610cb357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d0557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d34565b600101610c3f565b5050565b610d4061184d565b6000546001600160a01b03908116911614610d90576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b601555565b60006109e4610da261184d565b84610afd8560056000610db361184d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611cb5565b600f5481565b6000610df361184d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e4e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612af4602c913960400191505060405180910390fd5b6000610e5983611d0f565b505050506001600160a01b038416600090815260036020526040902054919250610e8591905082611d5e565b6001600160a01b038316600090815260036020526040902055600a54610eab9082611d5e565b600a55600b54610ebb9084611cb5565b600b55505050565b610ecb61184d565b6000546001600160a01b03908116911614610f1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610f98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610fb7576000610fa884611d0f565b509395506109e8945050505050565b6000610fc284611d0f565b509295506109e8945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601454610100900460ff1681565b61100b61184d565b6000546001600160a01b0390811691161461105b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16156110c9576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611123576001600160a01b03811660009081526003602052604090205461110990610b0c565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156111ed57506001600160a01b038116600090815260046020526040902054610b69565b6001600160a01b0382166000908152600360205260409020546109e890610b0c565b61121761184d565b6000546001600160a01b03908116911614611267576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a41833981519152908390a3600080546001600160a01b0319169055565b60135481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6112da61184d565b6000546001600160a01b0390811691161461132a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c65780601f1061099b576101008083540402835291602001916109c6565b60006109e461139d61184d565b84610afd85604051806060016040528060258152602001612b4360259139600560006113c761184d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bb2565b6001546001600160a01b031633146114415760405162461bcd60e51b8152600401808060200182810382526023815260200180612b206023913960400191505060405180910390fd5b6002544211611497576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a4183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109e46114f361184d565b848461193d565b60025490565b61150861184d565b6000546001600160a01b03908116911614611558576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b60148054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6115af61184d565b6000546001600160a01b039081169116146115ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b61161f606461161983600954611da090919063ffffffff16565b90611c6c565b60135550565b61162d61184d565b6000546001600160a01b0390811691161461167d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a41833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116f661184d565b6000546001600160a01b03908116911614611746576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61176f61184d565b6000546001600160a01b039081169116146117bf576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b0381166118045760405162461bcd60e51b81526004018080602001828103825260268152602001806129686026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a4183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118965760405162461bcd60e51b8152600401808060200182810382526024815260200180612aaf6024913960400191505060405180910390fd5b6001600160a01b0382166118db5760405162461bcd60e51b815260040180806020018281038252602281526020018061298e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119825760405162461bcd60e51b8152600401808060200182810382526025815260200180612a8a6025913960400191505060405180910390fd5b6001600160a01b0382166119c75760405162461bcd60e51b815260040180806020018281038252602381526020018061291b6023913960400191505060405180910390fd5b60008111611a065760405162461bcd60e51b8152600401808060200182810382526029815260200180612a616029913960400191505060405180910390fd5b611a0e6112c3565b6001600160a01b0316836001600160a01b031614158015611a485750611a326112c3565b6001600160a01b0316826001600160a01b031614155b15611acf57601354811115611a8e5760405162461bcd60e51b81526004018080602001828103825260288152602001806129b06028913960400191505060405180910390fd5b60165460ff16611acf5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ad36021913960400191505060405180910390fd5b6000611ada306111ad565b60155490915081108015908190611af4575060145460ff16155b8015611b3257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b455750601454610100900460ff165b15611b5357611b5382611df9565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b9557506001600160a01b03851660009081526006602052604090205460ff165b15611b9e575060005b611baa86868684611e96565b505050505050565b60008184841115611c415760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c06578181015183820152602001611bee565b50505050905090810190601f168015611c335780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c5661200a565b9092509050611c658282611c6c565b9250505090565b6000611cae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061216d565b9392505050565b600082820183811015611cae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d268a6121d2565b9250925092506000806000611d448d8686611d3f611c49565b612214565b919f909e50909c50959a5093985091965092945050505050565b6000611cae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bb2565b600082611daf575060006109e8565b82820282848281611dbc57fe5b0414611cae5760405162461bcd60e51b81526004018080602001828103825260218152602001806129d86021913960400191505060405180910390fd5b6014805460ff191660011790556000611e13826002611c6c565b90506000611e218383611d5e565b905047611e2d83612264565b6000611e394783611d5e565b9050611e458382612473565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff19169055505050565b80611ea357611ea3612571565b6001600160a01b03841660009081526007602052604090205460ff168015611ee457506001600160a01b03831660009081526007602052604090205460ff16155b15611ef957611ef48484846125a3565b611ff7565b6001600160a01b03841660009081526007602052604090205460ff16158015611f3a57506001600160a01b03831660009081526007602052604090205460ff165b15611f4a57611ef48484846126c7565b6001600160a01b03841660009081526007602052604090205460ff16158015611f8c57506001600160a01b03831660009081526007602052604090205460ff16155b15611f9c57611ef4848484612770565b6001600160a01b03841660009081526007602052604090205460ff168015611fdc57506001600160a01b03831660009081526007602052604090205460ff165b15611fec57611ef48484846127b4565b611ff7848484612770565b8061200457612004612827565b50505050565b600a546009546000918291825b60085481101561213b5782600360006008848154811061203357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612098575081600460006008848154811061207157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120af57600a5460095494509450505050612169565b6120ef60036000600884815481106120c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d5e565b9250612131600460006008848154811061210557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d5e565b9150600101612017565b50600954600a5461214b91611c6c565b82101561216357600a54600954935093505050612169565b90925090505b9091565b600081836121bc5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c06578181015183820152602001611bee565b5060008385816121c857fe5b0495945050505050565b6000806000806121e185612835565b905060006121ee86612851565b90506000612206826122008986611d5e565b90611d5e565b979296509094509092505050565b60008080806122238886611da0565b905060006122318887611da0565b9050600061223f8888611da0565b90506000612251826122008686611d5e565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561230b57600080fd5b505afa15801561231f573d6000803e3d6000fd5b505050506040513d602081101561233557600080fd5b505181518290600190811061234657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612391307f000000000000000000000000000000000000000000000000000000000000000084611851565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243657818101518382015260200161241e565b505050509050019650505050505050600060405180830381600087803b15801561245f57600080fd5b505af1158015611baa573d6000803e3d6000fd5b61249e307f000000000000000000000000000000000000000000000000000000000000000084611851565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806124db6112c3565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561254657600080fd5b505af115801561255a573d6000803e3d6000fd5b50505050506040513d606081101561200457600080fd5b600f541580156125815750601154155b1561258b576125a1565b600f805460105560118054601255600091829055555b565b6000806000806000806125b587611d0f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125e79088611d5e565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126169087611d5e565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126459086611cb5565b6001600160a01b0389166000908152600360205260409020556126678161286d565b61267184836128f6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126d987611d0f565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061270b9087611d5e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127419084611cb5565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126459086611cb5565b60008060008060008061278287611d0f565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126169087611d5e565b6000806000806000806127c687611d0f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127f89088611d5e565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461270b9087611d5e565b601054600f55601254601155565b60006109e86064611619600f5485611da090919063ffffffff16565b60006109e8606461161960115485611da090919063ffffffff16565b6000612877611c49565b905060006128858383611da0565b306000908152600360205260409020549091506128a29082611cb5565b3060009081526003602090815260408083209390935560079052205460ff16156128f157306000908152600460205260409020546128e09084611cb5565b306000908152600460205260409020555b505050565b600a546129039083611d5e565b600a55600b546129139082611cb5565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f75206d757374206d65646974617465206f6e20796f757220616374696f6e734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209eadb2346e44b8f18f2b643c905ae4157c6409bb3a42d0f55a323aff95114ecc64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806352390c021161012e578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107e8578063dd46706414610812578063dd62ed3e1461083c578063ea2f0b3714610877578063f2fde38b146108aa5761023b565b8063a457c2d714610720578063a69df4b514610759578063a9059cbb1461076e578063b6c52324146107a7578063c49b9a80146107bc5761023b565b80637d1db4a5116100f25780637d1db4a51461068457806388f82020146106995780638da5cb5b146106cc5780638ee88c53146106e157806395d89b411461070b5761023b565b806352390c02146105c15780635342acb4146105f45780636bc87c3a1461062757806370a082311461063c578063715018a61461066f5761023b565b8063313ce567116101bc5780633bd5d173116101805780633bd5d17314610508578063437823ec146105325780634549b0391461056557806349bd5a5e146105975780634a74bb02146105ac5761023b565b8063313ce567146104325780633685d4191461045d5780633703976f1461049057806339509351146104ba5780633b124fe7146104f35761023b565b806313114a9d1161020357806313114a9d146103585780631694505e1461037f57806318160ddd146103b057806323b872dd146103c55780632d838119146104085761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f65780630f0aecd3146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108dd565b005b34801561027857600080fd5b5061028161093a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109d0565b604080519115158252519081900360200190f35b34801561034f57600080fd5b5061026a6109ee565b34801561036457600080fd5b5061036d610a55565b60408051918252519081900360200190f35b34801561038b57600080fd5b50610394610a5b565b604080516001600160a01b039092168252519081900360200190f35b3480156103bc57600080fd5b5061036d610a7f565b3480156103d157600080fd5b5061032f600480360360608110156103e857600080fd5b506001600160a01b03813581169160208101359091169060400135610a85565b34801561041457600080fd5b5061036d6004803603602081101561042b57600080fd5b5035610b0c565b34801561043e57600080fd5b50610447610b6e565b6040805160ff9092168252519081900360200190f35b34801561046957600080fd5b5061026a6004803603602081101561048057600080fd5b50356001600160a01b0316610b77565b34801561049c57600080fd5b5061026a600480360360208110156104b357600080fd5b5035610d38565b3480156104c657600080fd5b5061032f600480360360408110156104dd57600080fd5b506001600160a01b038135169060200135610d95565b3480156104ff57600080fd5b5061036d610de3565b34801561051457600080fd5b5061026a6004803603602081101561052b57600080fd5b5035610de9565b34801561053e57600080fd5b5061026a6004803603602081101561055557600080fd5b50356001600160a01b0316610ec3565b34801561057157600080fd5b5061036d6004803603604081101561058857600080fd5b50803590602001351515610f3f565b3480156105a357600080fd5b50610394610fd1565b3480156105b857600080fd5b5061032f610ff5565b3480156105cd57600080fd5b5061026a600480360360208110156105e457600080fd5b50356001600160a01b0316611003565b34801561060057600080fd5b5061032f6004803603602081101561061757600080fd5b50356001600160a01b0316611189565b34801561063357600080fd5b5061036d6111a7565b34801561064857600080fd5b5061036d6004803603602081101561065f57600080fd5b50356001600160a01b03166111ad565b34801561067b57600080fd5b5061026a61120f565b34801561069057600080fd5b5061036d61129f565b3480156106a557600080fd5b5061032f600480360360208110156106bc57600080fd5b50356001600160a01b03166112a5565b3480156106d857600080fd5b506103946112c3565b3480156106ed57600080fd5b5061026a6004803603602081101561070457600080fd5b50356112d2565b34801561071757600080fd5b5061028161132f565b34801561072c57600080fd5b5061032f6004803603604081101561074357600080fd5b506001600160a01b038135169060200135611390565b34801561076557600080fd5b5061026a6113f8565b34801561077a57600080fd5b5061032f6004803603604081101561079157600080fd5b506001600160a01b0381351690602001356114e6565b3480156107b357600080fd5b5061036d6114fa565b3480156107c857600080fd5b5061026a600480360360208110156107df57600080fd5b50351515611500565b3480156107f457600080fd5b5061026a6004803603602081101561080b57600080fd5b50356115a7565b34801561081e57600080fd5b5061026a6004803603602081101561083557600080fd5b5035611625565b34801561084857600080fd5b5061036d6004803603604081101561085f57600080fd5b506001600160a01b03813581169160200135166116c3565b34801561088357600080fd5b5061026a6004803603602081101561089a57600080fd5b50356001600160a01b03166116ee565b3480156108b657600080fd5b5061026a600480360360208110156108cd57600080fd5b50356001600160a01b0316611767565b6108e561184d565b6000546001600160a01b03908116911614610935576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c65780601f1061099b576101008083540402835291602001916109c6565b820191906000526020600020905b8154815290600101906020018083116109a957829003601f168201915b5050505050905090565b60006109e46109dd61184d565b8484611851565b5060015b92915050565b6109f661184d565b6000546001600160a01b03908116911614610a46576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6016805460ff19166001179055565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610a9284848461193d565b610b0284610a9e61184d565b610afd856040518060600160405280602881526020016129f9602891396001600160a01b038a16600090815260056020526040812090610adc61184d565b6001600160a01b031681526020810191909152604001600020549190611bb2565b611851565b5060019392505050565b6000600a54821115610b4f5760405162461bcd60e51b815260040180806020018281038252602a81526020018061293e602a913960400191505060405180910390fd5b6000610b59611c49565b9050610b658382611c6c565b9150505b919050565b600e5460ff1690565b610b7f61184d565b6000546001600160a01b03908116911614610bcf576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c3c576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d3457816001600160a01b031660088281548110610c6057fe5b6000918252602090912001546001600160a01b03161415610d2c57600880546000198101908110610c8d57fe5b600091825260209091200154600880546001600160a01b039092169183908110610cb357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610d0557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d34565b600101610c3f565b5050565b610d4061184d565b6000546001600160a01b03908116911614610d90576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b601555565b60006109e4610da261184d565b84610afd8560056000610db361184d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611cb5565b600f5481565b6000610df361184d565b6001600160a01b03811660009081526007602052604090205490915060ff1615610e4e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612af4602c913960400191505060405180910390fd5b6000610e5983611d0f565b505050506001600160a01b038416600090815260036020526040902054919250610e8591905082611d5e565b6001600160a01b038316600090815260036020526040902055600a54610eab9082611d5e565b600a55600b54610ebb9084611cb5565b600b55505050565b610ecb61184d565b6000546001600160a01b03908116911614610f1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610f98576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610fb7576000610fa884611d0f565b509395506109e8945050505050565b6000610fc284611d0f565b509295506109e8945050505050565b7f000000000000000000000000969bdd93f0685879d309aa896e18b41d8065b71c81565b601454610100900460ff1681565b61100b61184d565b6000546001600160a01b0390811691161461105b576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16156110c9576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611123576001600160a01b03811660009081526003602052604090205461110990610b0c565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156111ed57506001600160a01b038116600090815260046020526040902054610b69565b6001600160a01b0382166000908152600360205260409020546109e890610b0c565b61121761184d565b6000546001600160a01b03908116911614611267576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612a41833981519152908390a3600080546001600160a01b0319169055565b60135481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6112da61184d565b6000546001600160a01b0390811691161461132a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109c65780601f1061099b576101008083540402835291602001916109c6565b60006109e461139d61184d565b84610afd85604051806060016040528060258152602001612b4360259139600560006113c761184d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611bb2565b6001546001600160a01b031633146114415760405162461bcd60e51b8152600401808060200182810382526023815260200180612b206023913960400191505060405180910390fd5b6002544211611497576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612a4183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109e46114f361184d565b848461193d565b60025490565b61150861184d565b6000546001600160a01b03908116911614611558576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b60148054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6115af61184d565b6000546001600160a01b039081169116146115ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b61161f606461161983600954611da090919063ffffffff16565b90611c6c565b60135550565b61162d61184d565b6000546001600160a01b0390811691161461167d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612a41833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116f661184d565b6000546001600160a01b03908116911614611746576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61176f61184d565b6000546001600160a01b039081169116146117bf576040805162461bcd60e51b81526020600482018190526024820152600080516020612a21833981519152604482015290519081900360640190fd5b6001600160a01b0381166118045760405162461bcd60e51b81526004018080602001828103825260268152602001806129686026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612a4183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118965760405162461bcd60e51b8152600401808060200182810382526024815260200180612aaf6024913960400191505060405180910390fd5b6001600160a01b0382166118db5760405162461bcd60e51b815260040180806020018281038252602281526020018061298e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119825760405162461bcd60e51b8152600401808060200182810382526025815260200180612a8a6025913960400191505060405180910390fd5b6001600160a01b0382166119c75760405162461bcd60e51b815260040180806020018281038252602381526020018061291b6023913960400191505060405180910390fd5b60008111611a065760405162461bcd60e51b8152600401808060200182810382526029815260200180612a616029913960400191505060405180910390fd5b611a0e6112c3565b6001600160a01b0316836001600160a01b031614158015611a485750611a326112c3565b6001600160a01b0316826001600160a01b031614155b15611acf57601354811115611a8e5760405162461bcd60e51b81526004018080602001828103825260288152602001806129b06028913960400191505060405180910390fd5b60165460ff16611acf5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ad36021913960400191505060405180910390fd5b6000611ada306111ad565b60155490915081108015908190611af4575060145460ff16155b8015611b3257507f000000000000000000000000969bdd93f0685879d309aa896e18b41d8065b71c6001600160a01b0316856001600160a01b031614155b8015611b455750601454610100900460ff165b15611b5357611b5382611df9565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b9557506001600160a01b03851660009081526006602052604090205460ff165b15611b9e575060005b611baa86868684611e96565b505050505050565b60008184841115611c415760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c06578181015183820152602001611bee565b50505050905090810190601f168015611c335780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c5661200a565b9092509050611c658282611c6c565b9250505090565b6000611cae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061216d565b9392505050565b600082820183811015611cae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d268a6121d2565b9250925092506000806000611d448d8686611d3f611c49565b612214565b919f909e50909c50959a5093985091965092945050505050565b6000611cae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611bb2565b600082611daf575060006109e8565b82820282848281611dbc57fe5b0414611cae5760405162461bcd60e51b81526004018080602001828103825260218152602001806129d86021913960400191505060405180910390fd5b6014805460ff191660011790556000611e13826002611c6c565b90506000611e218383611d5e565b905047611e2d83612264565b6000611e394783611d5e565b9050611e458382612473565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff19169055505050565b80611ea357611ea3612571565b6001600160a01b03841660009081526007602052604090205460ff168015611ee457506001600160a01b03831660009081526007602052604090205460ff16155b15611ef957611ef48484846125a3565b611ff7565b6001600160a01b03841660009081526007602052604090205460ff16158015611f3a57506001600160a01b03831660009081526007602052604090205460ff165b15611f4a57611ef48484846126c7565b6001600160a01b03841660009081526007602052604090205460ff16158015611f8c57506001600160a01b03831660009081526007602052604090205460ff16155b15611f9c57611ef4848484612770565b6001600160a01b03841660009081526007602052604090205460ff168015611fdc57506001600160a01b03831660009081526007602052604090205460ff165b15611fec57611ef48484846127b4565b611ff7848484612770565b8061200457612004612827565b50505050565b600a546009546000918291825b60085481101561213b5782600360006008848154811061203357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612098575081600460006008848154811061207157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156120af57600a5460095494509450505050612169565b6120ef60036000600884815481106120c357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d5e565b9250612131600460006008848154811061210557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d5e565b9150600101612017565b50600954600a5461214b91611c6c565b82101561216357600a54600954935093505050612169565b90925090505b9091565b600081836121bc5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c06578181015183820152602001611bee565b5060008385816121c857fe5b0495945050505050565b6000806000806121e185612835565b905060006121ee86612851565b90506000612206826122008986611d5e565b90611d5e565b979296509094509092505050565b60008080806122238886611da0565b905060006122318887611da0565b9050600061223f8888611da0565b90506000612251826122008686611d5e565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561230b57600080fd5b505afa15801561231f573d6000803e3d6000fd5b505050506040513d602081101561233557600080fd5b505181518290600190811061234657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612391307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611851565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561243657818101518382015260200161241e565b505050509050019650505050505050600060405180830381600087803b15801561245f57600080fd5b505af1158015611baa573d6000803e3d6000fd5b61249e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611851565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806124db6112c3565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561254657600080fd5b505af115801561255a573d6000803e3d6000fd5b50505050506040513d606081101561200457600080fd5b600f541580156125815750601154155b1561258b576125a1565b600f805460105560118054601255600091829055555b565b6000806000806000806125b587611d0f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125e79088611d5e565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126169087611d5e565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126459086611cb5565b6001600160a01b0389166000908152600360205260409020556126678161286d565b61267184836128f6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806126d987611d0f565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061270b9087611d5e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127419084611cb5565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126459086611cb5565b60008060008060008061278287611d0f565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126169087611d5e565b6000806000806000806127c687611d0f565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127f89088611d5e565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461270b9087611d5e565b601054600f55601254601155565b60006109e86064611619600f5485611da090919063ffffffff16565b60006109e8606461161960115485611da090919063ffffffff16565b6000612877611c49565b905060006128858383611da0565b306000908152600360205260409020549091506128a29082611cb5565b3060009081526003602090815260408083209390935560079052205460ff16156128f157306000908152600460205260409020546128e09084611cb5565b306000908152600460205260409020555b505050565b600a546129039083611d5e565b600a55600b546129139082611cb5565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373596f75206d757374206d65646974617465206f6e20796f757220616374696f6e734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209eadb2346e44b8f18f2b643c905ae4157c6409bb3a42d0f55a323aff95114ecc64736f6c634300060c0033

Deployed Bytecode Sourcemap

26513:18497:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44079:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44079:98:0;;:::i;:::-;;28939:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29851:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29851:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44817:92;;;;;;;;;;;;;:::i;30972:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27552:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27552:51:0;;;;;;;;;;;;;;29216:95;;;;;;;;;;;;;:::i;30020:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30020:313:0;;;;;;;;;;;;;;;;;:::i;31896:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31896:253:0;;:::i;29125:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32612:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32612:479:0;-1:-1:-1;;;;;32612:479:0;;:::i;44671:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44671:138:0;;:::i;30341:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30341:218:0;;;;;;;;:::i;27294:26::-;;;;;;;;;;;;;:::i;31067:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31067:377:0;;:::i;43834:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43834:111:0;-1:-1:-1;;;;;43834:111:0;;:::i;31452:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31452:436:0;;;;;;;;;:::i;27610:38::-;;;;;;;;;;;;;:::i;27689:40::-;;;;;;;;;;;;;:::i;32157:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32157:447:0;-1:-1:-1;;;;;32157:447:0;;:::i;43699:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43699:123:0;-1:-1:-1;;;;;43699:123:0;;:::i;27381:32::-;;;;;;;;;;;;;:::i;29319:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29319:198:0;-1:-1:-1;;;;;29319:198:0;;:::i;17108:148::-;;;;;;;;;;;;;:::i;27502:37::-;;;;;;;;;;;;;:::i;30844:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30844:120:0;-1:-1:-1;;;;;30844:120:0;;:::i;16465:79::-;;;;;;;;;;;;;:::i;44189:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44189:122:0;;:::i;29030:87::-;;;;;;;;;;;;;:::i;30567:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30567:269:0;;;;;;;;:::i;18118:293::-;;;;;;;;;;;;;:::i;29525:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29525:167:0;;;;;;;;:::i;17663:89::-;;;;;;;;;;;;;:::i;44492:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44492:171:0;;;;:::i;44322:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44322:162:0;;:::i;17828:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17828:214:0;;:::i;29700:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29700:143:0;;;;;;;;;;:::i;43957:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43957:110:0;-1:-1:-1;;;;;43957:110:0;;:::i;17411:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17411:244:0;-1:-1:-1;;;;;17411:244:0;;:::i;44079:98::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44153:7:::1;:16:::0;44079:98::o;28939:83::-;29009:5;29002:12;;;;;;;;-1:-1:-1;;29002:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28976:13;;29002:12;;29009:5;;29002:12;;29009:5;29002:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28939:83;:::o;29851:161::-;29926:4;29943:39;29952:12;:10;:12::i;:::-;29966:7;29975:6;29943:8;:39::i;:::-;-1:-1:-1;30000:4:0;29851:161;;;;;:::o;44817:92::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44876:18:::1;:25:::0;;-1:-1:-1;;44876:25:0::1;44897:4;44876:25;::::0;;44817:92::o;30972:87::-;31041:10;;30972:87;:::o;27552:51::-;;;:::o;29216:95::-;29296:7;;29216:95;:::o;30020:313::-;30118:4;30135:36;30145:6;30153:9;30164:6;30135:9;:36::i;:::-;30182:121;30191:6;30199:12;:10;:12::i;:::-;30213:89;30251:6;30213:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30213:19:0;;;;;;:11;:19;;;;;;30233:12;:10;:12::i;:::-;-1:-1:-1;;;;;30213:33:0;;;;;;;;;;;;-1:-1:-1;30213:33:0;;;:89;:37;:89::i;:::-;30182:8;:121::i;:::-;-1:-1:-1;30321:4:0;30020:313;;;;;:::o;31896:253::-;31962:7;32001;;31990;:18;;31982:73;;;;-1:-1:-1;;;31982:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32066:19;32089:10;:8;:10::i;:::-;32066:33;-1:-1:-1;32117:24:0;:7;32066:33;32117:11;:24::i;:::-;32110:31;;;31896:253;;;;:::o;29125:83::-;29191:9;;;;29125:83;:::o;32612:479::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32694:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32686:60;;;::::0;;-1:-1:-1;;;32686:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32762:9;32757:327;32781:9;:16:::0;32777:20;::::1;32757:327;;;32839:7;-1:-1:-1::0;;;;;32823:23:0::1;:9;32833:1;32823:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32823:12:0::1;:23;32819:254;;;32882:9;32892:16:::0;;-1:-1:-1;;32892:20:0;;;32882:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32867:9:::1;:12:::0;;-1:-1:-1;;;;;32882:31:0;;::::1;::::0;32877:1;;32867:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32867:46:0::1;-1:-1:-1::0;;;;;32867:46:0;;::::1;;::::0;;32932:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32971:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32971:28:0::1;::::0;;33018:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33018:15:0;;;;;-1:-1:-1;;;;;;33018:15:0::1;::::0;;;;;33052:5:::1;;32819:254;32799:3;;32757:327;;;;32612:479:::0;:::o;44671:138::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44759:19:::1;:42:::0;44671:138::o;30341:218::-;30429:4;30446:83;30455:12;:10;:12::i;:::-;30469:7;30478:50;30517:10;30478:11;:25;30490:12;:10;:12::i;:::-;-1:-1:-1;;;;;30478:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30478:25:0;;;:34;;;;;;;;;;;:38;:50::i;27294:26::-;;;;:::o;31067:377::-;31119:14;31136:12;:10;:12::i;:::-;-1:-1:-1;;;;;31168:19:0;;;;;;:11;:19;;;;;;31119:29;;-1:-1:-1;31168:19:0;;31167:20;31159:77;;;;-1:-1:-1;;;31159:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31248:15;31272:19;31283:7;31272:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31320:15:0;;;;;;:7;:15;;;;;;31247:44;;-1:-1:-1;31320:28:0;;:15;-1:-1:-1;31247:44:0;31320:19;:28::i;:::-;-1:-1:-1;;;;;31302:15:0;;;;;;:7;:15;;;;;:46;31369:7;;:20;;31381:7;31369:11;:20::i;:::-;31359:7;:30;31413:10;;:23;;31428:7;31413:14;:23::i;:::-;31400:10;:36;-1:-1:-1;;;31067:377:0:o;43834:111::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43903:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;43903:34:0::1;43933:4;43903:34;::::0;;43834:111::o;31452:436::-;31542:7;31581;;31570;:18;;31562:62;;;;;-1:-1:-1;;;31562:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31640:17;31635:246;;31675:15;31699:19;31710:7;31699:10;:19::i;:::-;-1:-1:-1;31674:44:0;;-1:-1:-1;31733:14:0;;-1:-1:-1;;;;;31733:14:0;31635:246;31782:23;31813:19;31824:7;31813:10;:19::i;:::-;-1:-1:-1;31780:52:0;;-1:-1:-1;31847:22:0;;-1:-1:-1;;;;;31847:22:0;27610:38;;;:::o;27689:40::-;;;;;;;;;:::o;32157:447::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32354:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32353:21;32345:61;;;::::0;;-1:-1:-1;;;32345:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32420:16:0;::::1;32439:1;32420:16:::0;;;:7:::1;:16;::::0;;;;;:20;32417:108:::1;;-1:-1:-1::0;;;;;32496:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32476:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32457:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32417:108:::1;-1:-1:-1::0;;;;;32535:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32535:27:0::1;32558:4;32535:27:::0;;::::1;::::0;;;32573:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32573:23:0::1;::::0;;::::1;::::0;;32157:447::o;43699:123::-;-1:-1:-1;;;;;43787:27:0;43763:4;43787:27;;;:18;:27;;;;;;;;;43699:123::o;27381:32::-;;;;:::o;29319:198::-;-1:-1:-1;;;;;29409:20:0;;29385:7;29409:20;;;:11;:20;;;;;;;;29405:49;;;-1:-1:-1;;;;;;29438:16:0;;;;;;:7;:16;;;;;;29431:23;;29405:49;-1:-1:-1;;;;;29492:16:0;;;;;;:7;:16;;;;;;29472:37;;:19;:37::i;17108:148::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;17215:1:::1;17199:6:::0;;17178:40:::1;::::0;-1:-1:-1;;;;;17199:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17178:40:0;17215:1;;17178:40:::1;17246:1;17229:19:::0;;-1:-1:-1;;;;;;17229:19:0::1;::::0;;17108:148::o;27502:37::-;;;;:::o;30844:120::-;-1:-1:-1;;;;;30936:20:0;30912:4;30936:20;;;:11;:20;;;;;;;;;30844:120::o;16465:79::-;16503:7;16530:6;-1:-1:-1;;;;;16530:6:0;16465:79;:::o;44189:122::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44275:13:::1;:28:::0;44189:122::o;29030:87::-;29102:7;29095:14;;;;;;;;-1:-1:-1;;29095:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29069:13;;29095:14;;29102:7;;29095:14;;29102:7;29095:14;;;;;;;;;;;;;;;;;;;;;;;;30567:269;30660:4;30677:129;30686:12;:10;:12::i;:::-;30700:7;30709:96;30748:15;30709:96;;;;;;;;;;;;;;;;;:11;:25;30721:12;:10;:12::i;:::-;-1:-1:-1;;;;;30709:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30709:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18118:293::-;18170:14;;-1:-1:-1;;;;;18170:14:0;18188:10;18170:28;18162:76;;;;-1:-1:-1;;;18162:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18263:9;;18257:3;:15;18249:60;;;;;-1:-1:-1;;;18249:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18354:14;;;18346:6;;18325:44;;-1:-1:-1;;;;;18354:14:0;;;;18346:6;;;;-1:-1:-1;;;;;;;;;;;18325:44:0;;18389:14;;;18380:23;;-1:-1:-1;;;;;;18380:23:0;-1:-1:-1;;;;;18389:14:0;;;18380:23;;;;;;18118:293::o;29525:167::-;29603:4;29620:42;29630:12;:10;:12::i;:::-;29644:9;29655:6;29620:9;:42::i;17663:89::-;17735:9;;17663:89;:::o;44492:171::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44569:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;44569:32:0;;::::1;::::0;;;::::1;::::0;;;44617:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44492:171:::0;:::o;44322:162::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;44416:60:::1;44460:5;44416:25;44428:12;44416:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;44401:12;:75:::0;-1:-1:-1;44322:162:0:o;17828:214::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;17909:6:::1;::::0;;;17892:23;;-1:-1:-1;;;;;;17892:23:0;;::::1;-1:-1:-1::0;;;;;17909:6:0;::::1;17892:23;::::0;;;17926:19:::1;::::0;;17968:3:::1;:10:::0;::::1;17956:9;:22:::0;17994:40:::1;::::0;17909:6;;-1:-1:-1;;;;;;;;;;;17994:40:0;17909:6;;17994:40:::1;17828:214:::0;:::o;29700:143::-;-1:-1:-1;;;;;29808:18:0;;;29781:7;29808:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29700:143::o;43957:110::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44024:27:0::1;44054:5;44024:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;44024:35:0::1;::::0;;43957:110::o;17411:244::-;16687:12;:10;:12::i;:::-;16677:6;;-1:-1:-1;;;;;16677:6:0;;;:22;;;16669:67;;;;;-1:-1:-1;;;16669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17500:22:0;::::1;17492:73;;;;-1:-1:-1::0;;;17492:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17602:6;::::0;;17581:38:::1;::::0;-1:-1:-1;;;;;17581:38:0;;::::1;::::0;17602:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17581:38:0;::::1;17630:6;:17:::0;;-1:-1:-1;;;;;;17630:17:0::1;-1:-1:-1::0;;;;;17630:17:0;;;::::1;::::0;;;::::1;::::0;;17411:244::o;853:106::-;941:10;853:106;:::o;33099:337::-;-1:-1:-1;;;;;33192:19:0;;33184:68;;;;-1:-1:-1;;;33184:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33271:21:0;;33263:68;;;;-1:-1:-1;;;33263:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33344:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33396:32;;;;;;;;;;;;;;;;;33099:337;;;:::o;33444:1686::-;-1:-1:-1;;;;;33566:18:0;;33558:68;;;;-1:-1:-1;;;33558:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33645:16:0;;33637:64;;;;-1:-1:-1;;;33637:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33729:1;33720:6;:10;33712:64;;;;-1:-1:-1;;;33712:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33798:7;:5;:7::i;:::-;-1:-1:-1;;;;;33790:15:0;:4;-1:-1:-1;;;;;33790:15:0;;;:32;;;;;33815:7;:5;:7::i;:::-;-1:-1:-1;;;;;33809:13:0;:2;-1:-1:-1;;;;;33809:13:0;;;33790:32;33787:218;;;33857:12;;33847:6;:22;;33839:75;;;;-1:-1:-1;;;33839:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33937:18;;;;33929:64;;;;-1:-1:-1;;;33929:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34299:28;34330:24;34348:4;34330:9;:24::i;:::-;34416:19;;34299:55;;-1:-1:-1;34392:43:0;;;;;;;34464:53;;-1:-1:-1;34501:16:0;;;;34500:17;34464:53;:91;;;;;34542:13;-1:-1:-1;;;;;34534:21:0;:4;-1:-1:-1;;;;;34534:21:0;;;34464:91;:129;;;;-1:-1:-1;34572:21:0;;;;;;;34464:129;34446:251;;;34649:36;34664:20;34649:14;:36::i;:::-;-1:-1:-1;;;;;34905:24:0;;34778:12;34905:24;;;:18;:24;;;;;;34793:4;;34905:24;;;:50;;-1:-1:-1;;;;;;34933:22:0;;;;;;:18;:22;;;;;;;;34905:50;34902:96;;;-1:-1:-1;34981:5:0;34902:96;35084:38;35099:4;35104:2;35107:6;35114:7;35084:14;:38::i;:::-;33444:1686;;;;;;:::o;5672:192::-;5758:7;5794:12;5786:6;;;;5778:29;;;;-1:-1:-1;;;5778:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5830:5:0;;;5672:192::o;41849:163::-;41890:7;41911:15;41928;41947:19;:17;:19::i;:::-;41910:56;;-1:-1:-1;41910:56:0;-1:-1:-1;41984:20:0;41910:56;;41984:11;:20::i;:::-;41977:27;;;;41849:163;:::o;7070:132::-;7128:7;7155:39;7159:1;7162;7155:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7148:46;7070:132;-1:-1:-1;;;7070:132:0:o;4769:181::-;4827:7;4859:5;;;4883:6;;;;4875:46;;;;;-1:-1:-1;;;4875:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40647:419;40706:7;40715;40724;40733;40742;40751;40772:23;40797:12;40811:18;40833:20;40845:7;40833:11;:20::i;:::-;40771:82;;;;;;40865:15;40882:23;40907:12;40923:50;40935:7;40944:4;40950:10;40962;:8;:10::i;:::-;40923:11;:50::i;:::-;40864:109;;;;-1:-1:-1;40864:109:0;;-1:-1:-1;41024:15:0;;-1:-1:-1;41041:4:0;;-1:-1:-1;41047:10:0;;-1:-1:-1;40647:419:0;;-1:-1:-1;;;;;40647:419:0:o;5233:136::-;5291:7;5318:43;5322:1;5325;5318:43;;;;;;;;;;;;;;;;;:3;:43::i;6123:471::-;6181:7;6426:6;6422:47;;-1:-1:-1;6456:1:0;6449:8;;6422:47;6493:5;;;6497:1;6493;:5;:1;6517:5;;;;;:10;6509:56;;;;-1:-1:-1;;;6509:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35138:985;28132:16;:23;;-1:-1:-1;;28132:23:0;28151:4;28132:23;;;:16;35289:27:::1;:20:::0;35314:1:::1;35289:24;:27::i;:::-;35274:42:::0;-1:-1:-1;35327:17:0::1;35347:30;:20:::0;35274:42;35347:24:::1;:30::i;:::-;35327:50:::0;-1:-1:-1;35680:21:0::1;35746:22;35763:4:::0;35746:16:::1;:22::i;:::-;35899:18;35920:41;:21;35946:14:::0;35920:25:::1;:41::i;:::-;35899:62;;36011:35;36024:9;36035:10;36011:12;:35::i;:::-;36072:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28178:16:0;:24;;-1:-1:-1;;28178:24:0;;;-1:-1:-1;;;35138:985:0:o;37322:834::-;37433:7;37429:40;;37455:14;:12;:14::i;:::-;-1:-1:-1;;;;;37494:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;37518:22:0;;;;;;:11;:22;;;;;;;;37517:23;37494:46;37490:597;;;37557:48;37579:6;37587:9;37598:6;37557:21;:48::i;:::-;37490:597;;;-1:-1:-1;;;;;37628:19:0;;;;;;:11;:19;;;;;;;;37627:20;:46;;;;-1:-1:-1;;;;;;37651:22:0;;;;;;:11;:22;;;;;;;;37627:46;37623:464;;;37690:46;37710:6;37718:9;37729:6;37690:19;:46::i;37623:464::-;-1:-1:-1;;;;;37759:19:0;;;;;;:11;:19;;;;;;;;37758:20;:47;;;;-1:-1:-1;;;;;;37783:22:0;;;;;;:11;:22;;;;;;;;37782:23;37758:47;37754:333;;;37822:44;37840:6;37848:9;37859:6;37822:17;:44::i;37754:333::-;-1:-1:-1;;;;;37888:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;37911:22:0;;;;;;:11;:22;;;;;;;;37888:45;37884:203;;;37950:48;37972:6;37980:9;37991:6;37950:21;:48::i;37884:203::-;38031:44;38049:6;38057:9;38068:6;38031:17;:44::i;:::-;38111:7;38107:41;;38133:15;:13;:15::i;:::-;37322:834;;;;:::o;42020:561::-;42117:7;;42153;;42070;;;;;42177:289;42201:9;:16;42197:20;;42177:289;;;42267:7;42243;:21;42251:9;42261:1;42251:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42251:12:0;42243:21;;;;;;;;;;;;;:31;;:66;;;42302:7;42278;:21;42286:9;42296:1;42286:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42286:12:0;42278:21;;;;;;;;;;;;;:31;42243:66;42239:97;;;42319:7;;42328;;42311:25;;;;;;;;;42239:97;42361:34;42373:7;:21;42381:9;42391:1;42381:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42381:12:0;42373:21;;;;;;;;;;;;;42361:7;;:11;:34::i;:::-;42351:44;;42420:34;42432:7;:21;42440:9;42450:1;42440:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42440:12:0;42432:21;;;;;;;;;;;;;42420:7;;:11;:34::i;:::-;42410:44;-1:-1:-1;42219:3:0;;42177:289;;;-1:-1:-1;42502:7:0;;42490;;:20;;:11;:20::i;:::-;42480:7;:30;42476:61;;;42520:7;;42529;;42512:25;;;;;;;;42476:61;42556:7;;-1:-1:-1;42565:7:0;-1:-1:-1;42020:561:0;;;:::o;7698:278::-;7784:7;7819:12;7812:5;7804:28;;;;-1:-1:-1;;;7804:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7843:9;7859:1;7855;:5;;;;;;;7698:278;-1:-1:-1;;;;;7698:278:0:o;41074:330::-;41134:7;41143;41152;41172:12;41187:24;41203:7;41187:15;:24::i;:::-;41172:39;;41222:18;41243:30;41265:7;41243:21;:30::i;:::-;41222:51;-1:-1:-1;41284:23:0;41310:33;41222:51;41310:17;:7;41322:4;41310:11;:17::i;:::-;:21;;:33::i;:::-;41284:59;41379:4;;-1:-1:-1;41385:10:0;;-1:-1:-1;41074:330:0;;-1:-1:-1;;;41074:330:0:o;41412:429::-;41527:7;;;;41583:24;:7;41595:11;41583;:24::i;:::-;41565:42;-1:-1:-1;41618:12:0;41633:21;:4;41642:11;41633:8;:21::i;:::-;41618:36;-1:-1:-1;41665:18:0;41686:27;:10;41701:11;41686:14;:27::i;:::-;41665:48;-1:-1:-1;41724:23:0;41750:33;41665:48;41750:17;:7;41762:4;41750:11;:17::i;:33::-;41802:7;;;;-1:-1:-1;41828:4:0;;-1:-1:-1;41412:429:0;;-1:-1:-1;;;;;;;41412:429:0:o;36131:589::-;36281:16;;;36295:1;36281:16;;;36257:21;36281:16;;;;;36257:21;36281:16;;;;;;;;;;-1:-1:-1;36281:16:0;36257:40;;36326:4;36308;36313:1;36308:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;36308:23:0;;;-1:-1:-1;;;;;36308:23:0;;;;;36352:15;-1:-1:-1;;;;;36352:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36352:22:0;36342:7;;:4;;36347:1;;36342:7;;;;;;;;;;;:32;-1:-1:-1;;;;;36342:32:0;;;-1:-1:-1;;;;;36342:32:0;;;;;36387:62;36404:4;36419:15;36437:11;36387:8;:62::i;:::-;36488:15;-1:-1:-1;;;;;36488:66:0;;36569:11;36595:1;36639:4;36666;36686:15;36488:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36488:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36728:513;36876:62;36893:4;36908:15;36926:11;36876:8;:62::i;:::-;36981:15;-1:-1:-1;;;;;36981:31:0;;37020:9;37053:4;37073:11;37099:1;37142;37185:7;:5;:7::i;:::-;37207:15;36981:252;;;;;;;;;;;;;-1:-1:-1;;;;;36981:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36981:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43300:250;43346:7;;:12;:34;;;;-1:-1:-1;43362:13:0;;:18;43346:34;43343:46;;;43382:7;;43343:46;43427:7;;;43409:15;:25;43469:13;;;43445:21;:37;-1:-1:-1;43503:11:0;;;;43525:17;43300:250;:::o;39268:566::-;39371:15;39388:23;39413:12;39427:23;39452:12;39466:18;39488:19;39499:7;39488:10;:19::i;:::-;-1:-1:-1;;;;;39536:15:0;;;;;;:7;:15;;;;;;39370:137;;-1:-1:-1;39370:137:0;;-1:-1:-1;39370:137:0;;-1:-1:-1;39370:137:0;-1:-1:-1;39370:137:0;-1:-1:-1;39370:137:0;-1:-1:-1;39536:28:0;;39556:7;39536:19;:28::i;:::-;-1:-1:-1;;;;;39518:15:0;;;;;;:7;:15;;;;;;;;:46;;;;39593:7;:15;;;;:28;;39613:7;39593:19;:28::i;:::-;-1:-1:-1;;;;;39575:15:0;;;;;;;:7;:15;;;;;;:46;;;;39653:18;;;;;;;:39;;39676:15;39653:22;:39::i;:::-;-1:-1:-1;;;;;39632:18:0;;;;;;:7;:18;;;;;:60;39706:26;39721:10;39706:14;:26::i;:::-;39743:23;39755:4;39761;39743:11;:23::i;:::-;39799:9;-1:-1:-1;;;;;39782:44:0;39791:6;-1:-1:-1;;;;;39782:44:0;;39810:15;39782:44;;;;;;;;;;;;;;;;;;39268:566;;;;;;;;;:::o;38674:586::-;38775:15;38792:23;38817:12;38831:23;38856:12;38870:18;38892:19;38903:7;38892:10;:19::i;:::-;-1:-1:-1;;;;;38940:15:0;;;;;;:7;:15;;;;;;38774:137;;-1:-1:-1;38774:137:0;;-1:-1:-1;38774:137:0;;-1:-1:-1;38774:137:0;-1:-1:-1;38774:137:0;-1:-1:-1;38774:137:0;-1:-1:-1;38940:28:0;;38774:137;38940:19;:28::i;:::-;-1:-1:-1;;;;;38922:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;39000:18;;;;;:7;:18;;;;;:39;;39023:15;39000:22;:39::i;:::-;-1:-1:-1;;;;;38979:18:0;;;;;;:7;:18;;;;;;;;:60;;;;39071:7;:18;;;;:39;;39094:15;39071:22;:39::i;38164:502::-;38263:15;38280:23;38305:12;38319:23;38344:12;38358:18;38380:19;38391:7;38380:10;:19::i;:::-;-1:-1:-1;;;;;38428:15:0;;;;;;:7;:15;;;;;;38262:137;;-1:-1:-1;38262:137:0;;-1:-1:-1;38262:137:0;;-1:-1:-1;38262:137:0;-1:-1:-1;38262:137:0;-1:-1:-1;38262:137:0;-1:-1:-1;38428:28:0;;38262:137;38428:19;:28::i;39842:642::-;39945:15;39962:23;39987:12;40001:23;40026:12;40040:18;40062:19;40073:7;40062:10;:19::i;:::-;-1:-1:-1;;;;;40110:15:0;;;;;;:7;:15;;;;;;39944:137;;-1:-1:-1;39944:137:0;;-1:-1:-1;39944:137:0;;-1:-1:-1;39944:137:0;-1:-1:-1;39944:137:0;-1:-1:-1;39944:137:0;-1:-1:-1;40110:28:0;;40130:7;40110:19;:28::i;:::-;-1:-1:-1;;;;;40092:15:0;;;;;;:7;:15;;;;;;;;:46;;;;40167:7;:15;;;;:28;;40187:7;40167:19;:28::i;43562:125::-;43616:15;;43606:7;:25;43658:21;;43642:13;:37;43562:125::o;42960:154::-;43024:7;43051:55;43090:5;43051:20;43063:7;;43051;:11;;:20;;;;:::i;43122:166::-;43192:7;43219:61;43264:5;43219:26;43231:13;;43219:7;:11;;:26;;;;:::i;42593:355::-;42656:19;42679:10;:8;:10::i;:::-;42656:33;-1:-1:-1;42700:18:0;42721:27;:10;42656:33;42721:14;:27::i;:::-;42800:4;42784:22;;;;:7;:22;;;;;;42700:48;;-1:-1:-1;42784:38:0;;42700:48;42784:26;:38::i;:::-;42775:4;42759:22;;;;:7;:22;;;;;;;;:63;;;;42836:11;:26;;;;;;42833:107;;;42918:4;42902:22;;;;:7;:22;;;;;;:38;;42929:10;42902:26;:38::i;:::-;42893:4;42877:22;;;;:7;:22;;;;;:63;42833:107;42593:355;;;:::o;40492:147::-;40570:7;;:17;;40582:4;40570:11;:17::i;:::-;40560:7;:27;40611:10;;:20;;40626:4;40611:14;:20::i;:::-;40598:10;:33;-1:-1:-1;;40492:147:0:o

Swarm Source

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