ETH Price: $3,273.85 (-1.72%)

Token

HolyTrinity (HOLY)
 

Overview

Max Total Supply

8,079,039.527110573 HOLY

Holders

167

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
11,283.633390026 HOLY

Value
$0.00
0xe02c9d52557cf57f611cab7ecf4814b7bd860d1d
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:
HOLYTRINITY

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-17
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;

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


interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Pair {
    function sync() external;
}

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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;
}

pragma solidity ^0.6.12;

contract RewardWallet {
    constructor() public {
    }
}

contract Balancer {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable _uniswapV2Router;
    HOLYTRINITY private _tokenContract;
    
    constructor(HOLYTRINITY tokenContract, IUniswapV2Router02 uniswapV2Router) public {
        _tokenContract =tokenContract;
        _uniswapV2Router = uniswapV2Router;
    }
    
    receive() external payable {}
    
    function rebalance() external returns (uint256) { 
        swapEthForTokens(address(this).balance);
    }

    function swapEthForTokens(uint256 EthAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = _uniswapV2Router.WETH();
        uniswapPairPath[1] = address(_tokenContract);

        _uniswapV2Router
            .swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(
                0,
                uniswapPairPath,
                address(this),
                block.timestamp
            );
    }
}

contract Swaper {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable _uniswapV2Router;
    HOLYTRINITY private _tokenContract;
    
    constructor(HOLYTRINITY tokenContract, IUniswapV2Router02 uniswapV2Router) public {
        _tokenContract = tokenContract;
        _uniswapV2Router = uniswapV2Router;
    }
    
    function swapTokens(address pairTokenAddress, uint256 tokenAmount) external {
        uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
        swapTokensForTokens(pairTokenAddress, tokenAmount);
        uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);
        IERC20(pairTokenAddress).transfer(address(_tokenContract), newPairTokenBalance);
    }
    
    function swapTokensForTokens(address pairTokenAddress, uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(_tokenContract);
        path[1] = pairTokenAddress;

        _tokenContract.approve(address(_uniswapV2Router), tokenAmount);

        // make the swap
        _uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of pair token
            path,
            address(this),
            block.timestamp
        );
    }
}

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

    IUniswapV2Router02 public immutable _uniswapV2Router;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address public _rewardWallet;
    uint256 public _initialRewardLockAmount;
    address public _uniswapETHPool;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 10000000e9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 public _tFeeTotal;
    uint256 public _tBurnTotal;

    string private _name = 'HolyTrinity';
    string private _symbol = 'HOLY';
    uint8 private _decimals = 9;
    
    uint256 public _feeDecimals = 1;
    uint256 public _taxFee = 0;
    uint256 public _lockFee = 0;
    uint256 public _maxTxAmount = 2000000e9;
    uint256 public _minTokensBeforeSwap = 10000e9;
    uint256 public _minInterestForReward = 10e9;
    uint256 private _autoSwapCallerFee = 200e9;
    
    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled;
    bool public tradingEnabled;
    
    address private currentPairTokenAddress;
    address private currentPoolAddress;
    
    uint256 private _liquidityRemoveFee = 2;
    uint256 private _alchemyCallerFee = 5;
    uint256 private _minTokenForAlchemy = 1000e9;
    uint256 private _lastAlchemy;
    uint256 private _alchemyInterval = 1 hours;
    

    event FeeDecimalsUpdated(uint256 taxFeeDecimals);
    event TaxFeeUpdated(uint256 taxFee);
    event LockFeeUpdated(uint256 lockFee);
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event WhitelistUpdated(address indexed pairTokenAddress);
    event TradingEnabled();
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        address indexed pairTokenAddress,
        uint256 tokensSwapped,
        uint256 pairTokenReceived,
        uint256 tokensIntoLiqudity
    );
    event Rebalance(uint256 tokenBurnt);
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event AutoSwapCallerFeeUpdated(uint256 autoSwapCallerFee);
    event MinInterestForRewardUpdated(uint256 minInterestForReward);
    event LiquidityRemoveFeeUpdated(uint256 liquidityRemoveFee);
    event AlchemyCallerFeeUpdated(uint256 rebalnaceCallerFee);
    event MinTokenForAlchemyUpdated(uint256 minRebalanceAmount);
    event AlchemyIntervalUpdated(uint256 rebalanceInterval);

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    Balancer public balancer;
    Swaper public swaper;

    constructor (IUniswapV2Router02 uniswapV2Router, uint256 initialRewardLockAmount) public {
        _lastAlchemy = now;
        
        _uniswapV2Router = uniswapV2Router;
        _rewardWallet = address(new RewardWallet());
        _initialRewardLockAmount = initialRewardLockAmount;
        
        balancer = new Balancer(this, uniswapV2Router);
        swaper = new Swaper(this, uniswapV2Router);
        
        currentPoolAddress = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        currentPairTokenAddress = uniswapV2Router.WETH();
        _uniswapETHPool = currentPoolAddress;
        
        updateSwapAndLiquifyEnabled(false);
        
        _rOwned[_msgSender()] = reflectionFromToken(_tTotal.sub(_initialRewardLockAmount), false);
        _rOwned[_rewardWallet] = reflectionFromToken(_initialRewardLockAmount, false);
        
        emit Transfer(address(0), _msgSender(), _tTotal.sub(_initialRewardLockAmount));
        emit Transfer(address(0), _rewardWallet, _initialRewardLockAmount);
    }

    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 isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    
    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "HolyTrinity: 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, "HolyTrinity: Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'HolyTrinity: We can not exclude Uniswap router.');
        require(account != address(this), 'HolyTrinity: We can not exclude contract self.');
        require(account != _rewardWallet, 'HolyTrinity: We can not exclude reweard wallet.');
        require(!_isExcluded[account], "HolyTrinity: Account is already excluded");
        
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "HolyTrinity: Account is already included");
        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), "HolyTrinity: approve from the zero address");
        require(spender != address(0), "HolyTrinity: approve to the zero address");

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "HolyTrinity: transfer from the zero address");
        require(recipient != address(0), "HolyTrinity: transfer to the zero address");
        require(amount > 0, "HolyTrinity: Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner() && !inSwapAndLiquify) {
            require(amount <= _maxTxAmount, "HolyTrinity: Transfer amount exceeds the maxTxAmount.");
            if((_msgSender() == currentPoolAddress || _msgSender() == address(_uniswapV2Router)) && !tradingEnabled)
                require(false, "HolyTrinity: trading is disabled.");
        }
        
        if(!inSwapAndLiquify) {
            uint256 lockedBalanceForPool = balanceOf(address(this));
            bool overMinTokenBalance = lockedBalanceForPool >= _minTokensBeforeSwap;
            if (
                overMinTokenBalance &&
                msg.sender != currentPoolAddress &&
                swapAndLiquifyEnabled
            ) {
                if(currentPairTokenAddress == _uniswapV2Router.WETH())
                    swapAndLiquifyForEth(lockedBalanceForPool);
                else
                    swapAndLiquifyForTokens(currentPairTokenAddress, lockedBalanceForPool);
            }
        }
        
        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);
        }
    }
    
    receive() external payable {}
    
    function swapAndLiquifyForEth(uint256 lockedBalanceForPool) private lockTheSwap {
        // split the contract balance except swapCallerFee into halves
        uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
        uint256 half = lockedForSwap.div(2);
        uint256 otherHalf = lockedForSwap.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);
        
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidityForEth(otherHalf, newBalance);
        
        emit SwapAndLiquify(_uniswapV2Router.WETH(), half, newBalance, otherHalf);
        
        _transfer(address(this), tx.origin, _autoSwapCallerFee);
        
        _sendRewardInterestToPool();
    }
    
    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 addLiquidityForEth(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(_uniswapV2Router), tokenAmount);

        // add the liquidity
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
    
    function swapAndLiquifyForTokens(address pairTokenAddress, uint256 lockedBalanceForPool) private lockTheSwap {
        // split the contract balance except swapCallerFee into halves
        uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
        uint256 half = lockedForSwap.div(2);
        uint256 otherHalf = lockedForSwap.sub(half);
        
        _transfer(address(this), address(swaper), half);
        
        uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
        
        // swap tokens for pairToken
        swaper.swapTokens(pairTokenAddress, half);
        
        uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);

        // add liquidity to uniswap
        addLiquidityForTokens(pairTokenAddress, otherHalf, newPairTokenBalance);
        
        emit SwapAndLiquify(pairTokenAddress, half, newPairTokenBalance, otherHalf);
        
        _transfer(address(this), tx.origin, _autoSwapCallerFee);
        
        _sendRewardInterestToPool();
    }

    function addLiquidityForTokens(address pairTokenAddress, uint256 tokenAmount, uint256 pairTokenAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        IERC20(pairTokenAddress).approve(address(_uniswapV2Router), pairTokenAmount);

        // add the liquidity
        _uniswapV2Router.addLiquidity(
            address(this),
            pairTokenAddress,
            tokenAmount,
            pairTokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function alchemy() public lockTheSwap {
        require(balanceOf(_msgSender()) >= _minTokenForAlchemy, "HolyTrinity: You have not enough HolyTrinity to ");
        require(now > _lastAlchemy + _alchemyInterval, 'HolyTrinity: Too Soon.');
        
        _lastAlchemy = now;

        uint256 amountToRemove = IERC20(_uniswapETHPool).balanceOf(address(this)).mul(_liquidityRemoveFee).div(100);

        removeLiquidityETH(amountToRemove);
        balancer.rebalance();

        uint256 tNewTokenBalance = balanceOf(address(balancer));
        uint256 tRewardForCaller = tNewTokenBalance.mul(_alchemyCallerFee).div(100);
        uint256 tBurn = tNewTokenBalance.sub(tRewardForCaller);
        
        uint256 currentRate =  _getRate();
        uint256 rBurn =  tBurn.mul(currentRate);
        
        _rOwned[_msgSender()] = _rOwned[_msgSender()].add(tRewardForCaller.mul(currentRate));
        _rOwned[address(balancer)] = 0;
        
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
        _rTotal = _rTotal.sub(rBurn);

        emit Transfer(address(balancer), _msgSender(), tRewardForCaller);
        emit Transfer(address(balancer), address(0), tBurn);
        emit Rebalance(tBurn);
    }
    
    function removeLiquidityETH(uint256 lpAmount) private returns(uint ETHAmount) {
        IERC20(_uniswapETHPool).approve(address(_uniswapV2Router), lpAmount);
        (ETHAmount) = _uniswapV2Router
            .removeLiquidityETHSupportingFeeOnTransferTokens(
                address(this),
                lpAmount,
                0,
                0,
                address(balancer),
                block.timestamp
            );
    }

    function _sendRewardInterestToPool() private {
        uint256 tRewardInterest = balanceOf(_rewardWallet).sub(_initialRewardLockAmount);
        if(tRewardInterest > _minInterestForReward) {
            uint256 rRewardInterest = reflectionFromToken(tRewardInterest, false);
            _rOwned[currentPoolAddress] = _rOwned[currentPoolAddress].add(rRewardInterest);
            _rOwned[_rewardWallet] = _rOwned[_rewardWallet].sub(rRewardInterest);
            emit Transfer(_rewardWallet, currentPoolAddress, tRewardInterest);
            IUniswapV2Pair(currentPoolAddress).sync();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _tOwned[recipient] = _tOwned[recipient].add(tAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _tOwned[recipient] = _tOwned[recipient].add(tAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        }
        else {
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            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 tLock) = _getTValues(tAmount, _taxFee, _lockFee, _feeDecimals);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLock, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLock);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 lockFee, uint256 feeDecimals) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(10**(feeDecimals + 2));
        uint256 tLockFee = tAmount.mul(lockFee).div(10**(feeDecimals + 2));
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLockFee);
        return (tTransferAmount, tFee, tLockFee);
    }

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

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

    function _getCurrentSupply() public 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 getCurrentPoolAddress() public view returns(address) {
        return currentPoolAddress;
    }
    
    function getCurrentPairTokenAddress() public view returns(address) {
        return currentPairTokenAddress;
    }

    function getLiquidityRemoveFee() public view returns(uint256) {
        return _liquidityRemoveFee;
    }
    
    function getAlchemyCallerFee() public view returns(uint256) {
        return _alchemyCallerFee;
    }
    
    function getMinTokenForAlchemy() public view returns(uint256) {
        return _minTokenForAlchemy;
    }
    
    function getLastAlchemy() public view returns(uint256) {
        return _lastAlchemy;
    }
    
    function getAlchemyInterval() public view returns(uint256) {
        return _alchemyInterval;
    }
    
    function _setFeeDecimals(uint256 feeDecimals) external onlyOwner() {
        require(feeDecimals >= 0 && feeDecimals <= 2, 'HolyTrinity: fee decimals should be in 0 - 2');
        _feeDecimals = feeDecimals;
        emit FeeDecimalsUpdated(feeDecimals);
    }
    
    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 0  && taxFee <= 5 * 10 ** _feeDecimals, 'HolyTrinity: taxFee should be in 0 - 5');
        _taxFee = taxFee;
        emit TaxFeeUpdated(taxFee);
    }
    
    function _setLockFee(uint256 lockFee) external onlyOwner() {
        require(lockFee >= 0 && lockFee <= 5 * 10 ** _feeDecimals, 'HolyTrinity: lockFee should be in 0 - 5');
        _lockFee = lockFee;
        emit LockFeeUpdated(lockFee);
    }
    
    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 500000e9 , 'HolyTrinity: maxTxAmount should be greater than 500000e9');
        _maxTxAmount = maxTxAmount;
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function _setMinTokensBeforeSwap(uint256 minTokensBeforeSwap) external onlyOwner() {
        require(minTokensBeforeSwap >= 50e9 && minTokensBeforeSwap <= 25000e9 , 'HolyTrinity: minTokenBeforeSwap should be in 50e9 - 25000e9');
        require(minTokensBeforeSwap > _autoSwapCallerFee , 'HolyTrinity: minTokenBeforeSwap should be greater than autoSwapCallerFee');
        _minTokensBeforeSwap = minTokensBeforeSwap;
        emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
    }
    
    function _setAutoSwapCallerFee(uint256 autoSwapCallerFee) external onlyOwner() {
        require(autoSwapCallerFee >= 1e9, 'HolyTrinity: autoSwapCallerFee should be greater than 1e9');
        _autoSwapCallerFee = autoSwapCallerFee;
        emit AutoSwapCallerFeeUpdated(autoSwapCallerFee);
    }
    
    function _setMinInterestForReward(uint256 minInterestForReward) external onlyOwner() {
        _minInterestForReward = minInterestForReward;
        emit MinInterestForRewardUpdated(minInterestForReward);
    }
    
    function _setLiquidityRemoveFee(uint256 liquidityRemoveFee) external onlyOwner() {
        require(liquidityRemoveFee >= 1 && liquidityRemoveFee <= 10 , 'HolyTrinity: liquidityRemoveFee should be in 1 - 10');
        _liquidityRemoveFee = liquidityRemoveFee;
        emit LiquidityRemoveFeeUpdated(liquidityRemoveFee);
    }
    
    function _setAlchemyCallerFee(uint256 alchemyCallerFee) external onlyOwner() {
        require(alchemyCallerFee >= 1 && alchemyCallerFee <= 15 , 'HolyTrinity: alchemyCallerFee should be in 1 - 15');
        _alchemyCallerFee = alchemyCallerFee;
        emit AlchemyCallerFeeUpdated(alchemyCallerFee);
    }
    
    function _setMinTokenForAlchemy(uint256 minTokenForAlchemy) external onlyOwner() {
        _minTokenForAlchemy = minTokenForAlchemy;
        emit MinTokenForAlchemyUpdated(minTokenForAlchemy);
    }
    
    function _setAlchemyInterval(uint256 alchemyInterval) external onlyOwner() {
        _alchemyInterval = alchemyInterval;
        emit AlchemyIntervalUpdated(alchemyInterval);
    }
    
    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function _updateWhitelist(address poolAddress, address pairTokenAddress) public onlyOwner() {
        require(poolAddress != address(0), "HolyTrinity: Pool address is zero.");
        require(pairTokenAddress != address(0), "HolyTrinity: Pair token address is zero.");
        require(pairTokenAddress != address(this), "HolyTrinity: Pair token address self address.");
        require(pairTokenAddress != currentPairTokenAddress, "HolyTrinity: Pair token address is same as current one.");
        
        currentPoolAddress = poolAddress;
        currentPairTokenAddress = pairTokenAddress;
        
        emit WhitelistUpdated(pairTokenAddress);
    }

    function _enableTrading() external onlyOwner() {
        tradingEnabled = true;
        TradingEnabled();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"uniswapV2Router","type":"address"},{"internalType":"uint256","name":"initialRewardLockAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalnaceCallerFee","type":"uint256"}],"name":"AlchemyCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalanceInterval","type":"uint256"}],"name":"AlchemyIntervalUpdated","type":"event"},{"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":"autoSwapCallerFee","type":"uint256"}],"name":"AutoSwapCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxFeeDecimals","type":"uint256"}],"name":"FeeDecimalsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"LiquidityRemoveFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockFee","type":"uint256"}],"name":"LockFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"MinInterestForRewardUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minRebalanceAmount","type":"uint256"}],"name":"MinTokenForAlchemyUpdated","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":"tokenBurnt","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairTokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"pairTokenReceived","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":false,"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"TaxFeeUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairTokenAddress","type":"address"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"_enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_feeDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initialRewardLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lockFee","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":"_minInterestForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"alchemyCallerFee","type":"uint256"}],"name":"_setAlchemyCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"alchemyInterval","type":"uint256"}],"name":"_setAlchemyInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"autoSwapCallerFee","type":"uint256"}],"name":"_setAutoSwapCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeDecimals","type":"uint256"}],"name":"_setFeeDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"_setLiquidityRemoveFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lockFee","type":"uint256"}],"name":"_setLockFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"_setMinInterestForReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokenForAlchemy","type":"uint256"}],"name":"_setMinTokenForAlchemy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"_setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_tBurnTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapETHPool","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":[{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"address","name":"pairTokenAddress","type":"address"}],"name":"_updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"alchemy","outputs":[],"stateMutability":"nonpayable","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":"balancer","outputs":[{"internalType":"contract Balancer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAlchemyCallerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAlchemyInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPairTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastAlchemy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityRemoveFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinTokenForAlchemy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","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":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swaper","outputs":[{"internalType":"contract Swaper","name":"","type":"address"}],"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

662386f26fc10000600955660e3d2cfe61ffff19600a5560e0604052600b60a08190526a486f6c795472696e69747960a81b60c09081526200004591600d919062000cd0565b5060408051808201909152600480825263484f4c5960e01b60209092019182526200007391600e9162000cd0565b50600f805460ff1916600917905560016010556000601181905560125566071afd498d00006013556509184e72a0006014556402540be400601555642e90edd00060165560026019556005601a5564e8d4a51000601b55610e10601d55348015620000dd57600080fd5b5060405162005f1238038062005f12833981810160405260408110156200010357600080fd5b508051602090910151600062000118620005fd565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601c556001600160601b0319606083901b16608052604051620001869062000d55565b604051809103906000f080158015620001a3573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055600781905560405130908390620001db9062000d62565b6001600160a01b03928316815291166020820152604080519182900301906000f0801580156200020f573d6000803e3d6000fd5b50601e60006101000a8154816001600160a01b0302191690836001600160a01b031602179055503082604051620002469062000d70565b6001600160a01b03928316815291166020820152604080519182900301906000f0801580156200027a573d6000803e3d6000fd5b50601f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002db57600080fd5b505afa158015620002f0573d6000803e3d6000fd5b505050506040513d60208110156200030757600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200035857600080fd5b505afa1580156200036d573d6000803e3d6000fd5b505050506040513d60208110156200038457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003d757600080fd5b505af1158015620003ec573d6000803e3d6000fd5b505050506040513d60208110156200040357600080fd5b5051601880546001600160a01b0319166001600160a01b03928316179055604080516315ab88c960e31b815290519184169163ad5c464891600480820192602092909190829003018186803b1580156200045c57600080fd5b505afa15801562000471573d6000803e3d6000fd5b505050506040513d60208110156200048857600080fd5b5051601780546001600160a01b039283166301000000026301000000600160b81b0319909116179055601854600880546001600160a01b03191691909216179055620004d5600062000601565b620004ff620004f7600754600954620006bd60201b620029071790919060201c565b600062000710565b600160006200050d620005fd565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506200054660075460006200071060201b60201c565b6006546001600160a01b03166000908152600160205260409020556200056b620005fd565b6001600160a01b031660006001600160a01b031660008051602062005ef2833981519152620005ad600754600954620006bd60201b620029071790919060201c565b60408051918252519081900360200190a360065460075460408051918252516001600160a01b039092169160009160008051602062005ef2833981519152919081900360200190a3505062000d95565b3390565b6200060b620005fd565b6000546001600160a01b039081169116146200066e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60006200070783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620007aa60201b60201c565b90505b92915050565b60006009548311156200076a576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816200078d5760006200077d8462000845565b509395506200070a945050505050565b60006200079a8462000845565b509295506200070a945050505050565b600081848411156200083d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000801578181015183820152602001620007e7565b50505050905090810190601f1680156200082f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060008060008060008060006200086d8a601154601254601054620008b160201b60201c565b9194509250905060006200088062000961565b905060008080620008948e87878762000994565b919e509c509a509598509396509194505050505091939550919395565b600080600080620008f085600201600a0a620008dc898b62000a2660201b620029501790919060201c565b62000a8460201b620029a91790919060201c565b905060006200091986600201600a0a620008dc898c62000a2660201b620029501790919060201c565b9050600062000950826200093c858d620006bd60201b620029071790919060201c565b620006bd60201b620029071790919060201c565b9a9299509097509095505050505050565b600080806200096f62000ace565b915091506200098d818362000a8460201b620029a91790919060201c565b9250505090565b600080600080620009b4858962000a2660201b620029501790919060201c565b90506000620009d2868962000a2660201b620029501790919060201c565b90506000620009f0878962000a2660201b620029501790919060201c565b9050600062000a13826200093c8587620006bd60201b620029071790919060201c565b939b939a50919850919650505050505050565b60008262000a37575060006200070a565b8282028284828162000a4557fe5b0414620007075760405162461bcd60e51b815260040180806020018281038252602181526020018062005ed16021913960400191505060405180910390fd5b60006200070783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000c6760201b60201c565b600a546009546000918291825b60055481101562000c245782600160006005848154811062000af957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000b60575081600260006005848154811062000b3957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000b7957600a546009549450945050505062000c63565b62000bc8600160006005848154811062000b8f57fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054859162002907620006bd821b17901c565b925062000c19600260006005848154811062000be057fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054849162002907620006bd821b17901c565b915060010162000adb565b5062000c43600954600a5462000a8460201b620029a91790919060201c565b82101562000c5d57600a5460095493509350505062000c63565b90925090505b9091565b6000818362000cb95760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562000801578181015183820152602001620007e7565b50600083858162000cc657fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000d1357805160ff191683800117855562000d43565b8280016001018555821562000d43579182015b8281111562000d4357825182559160200191906001019062000d26565b5062000d5192915062000d7e565b5090565b605c806200551d83390190565b610365806200557983390190565b6105f380620058de83390190565b5b8082111562000d51576000815560010162000d7f565b60805160601c61472962000df46000398061136c5280612d1b5280612df852806130d152806131a352806133915280613b465280613bfe5280613c255280613d135280613d7a5280613f345280613f6a528061405152506147296000f3fe60806040526004361061039b5760003560e01c806395d89b41116101dc578063d73cf08011610102578063e98d2c4b116100a0578063f2fde38b1161006f578063f2fde38b14610bbb578063f7505bc014610bee578063f84354f114610c18578063fb1eb14b14610c4b576103a2565b8063e98d2c4b14610b1f578063eed83f1114610b49578063efeb97e114610b5e578063f2cc0c1814610b88576103a2565b8063e4111dd3116100dc578063e4111dd314610acb578063e4451f6614610ae0578063e563037e14610af5578063e8598c8714610b0a576103a2565b8063d73cf08014610a2b578063dc17493714610a66578063dd62ed3e14610a90576103a2565b8063a4f4a7651161017a578063c329581711610149578063c3295817146109a4578063c9e6da19146109b9578063cba0e996146109ce578063d51486df14610a01576103a2565b8063a4f4a76514610917578063a9059cbb1461092c578063b6c1b37e14610965578063b7cc02f91461098f576103a2565b80639d6f83e4116101b65780639d6f83e4146108885780639f9a4e7f1461089d578063a0ac5e19146108c9578063a457c2d7146108de576103a2565b806395d89b4114610830578063963547041461084557806397a9d5601461085a576103a2565b80634a1e7726116102c157806370a082311161025f5780638aadb8091161022e5780638aadb809146107dc5780638b1bdcb2146107f15780638da5cb5b1461080657806394e107841461081b576103a2565b806370a082311461076a578063715018a61461079d5780637d1db4a5146107b257806385d1e038146107c7576103a2565b8063583e05681161029b578063583e0568146106e55780635880b873146107165780635afbfd3814610740578063674b80ee14610755576103a2565b80634a1e7726146106915780634a74bb02146106bb5780634ada218b146106d0576103a2565b806323b872dd11610339578063313ce56711610308578063313ce567146105e657806339509351146106115780633b124fe71461064a5780634549b0391461065f576103a2565b806323b872dd1461052557806326f5ccaa146105685780632d838119146105925780632ec8e523146105bc576103a2565b8063171778081161037557806317177808146104aa57806318160ddd146104d1578063185d374c146104e65780631bbae6e0146104fb576103a2565b8063053ab182146103a757806306fdde03146103d3578063095ea7b31461045d576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610c60565b005b3480156103df57600080fd5b506103e8610d3a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104966004803603604081101561048057600080fd5b506001600160a01b038135169060200135610dd0565b604080519115158252519081900360200190f35b3480156104b657600080fd5b506104bf610dee565b60408051918252519081900360200190f35b3480156104dd57600080fd5b506104bf610df4565b3480156104f257600080fd5b506104bf610dfa565b34801561050757600080fd5b506103d16004803603602081101561051e57600080fd5b5035610e00565b34801561053157600080fd5b506104966004803603606081101561054857600080fd5b506001600160a01b03813581169160208101359091169060400135610ed9565b34801561057457600080fd5b506103d16004803603602081101561058b57600080fd5b5035610f60565b34801561059e57600080fd5b506104bf600480360360208110156105b557600080fd5b5035611040565b3480156105c857600080fd5b506103d1600480360360208110156105df57600080fd5b50356110a2565b3480156105f257600080fd5b506105fb611135565b6040805160ff9092168252519081900360200190f35b34801561061d57600080fd5b506104966004803603604081101561063457600080fd5b506001600160a01b03813516906020013561113e565b34801561065657600080fd5b506104bf61118c565b34801561066b57600080fd5b506104bf6004803603604081101561068257600080fd5b50803590602001351515611192565b34801561069d57600080fd5b506103d1600480360360208110156106b457600080fd5b5035611224565b3480156106c757600080fd5b5061049661134d565b3480156106dc57600080fd5b5061049661135b565b3480156106f157600080fd5b506106fa61136a565b604080516001600160a01b039092168252519081900360200190f35b34801561072257600080fd5b506103d16004803603602081101561073957600080fd5b503561138e565b34801561074c57600080fd5b506106fa611468565b34801561076157600080fd5b506103d161147e565b34801561077657600080fd5b506104bf6004803603602081101561078d57600080fd5b50356001600160a01b0316611809565b3480156107a957600080fd5b506103d161186b565b3480156107be57600080fd5b506104bf61190d565b3480156107d357600080fd5b506104bf611913565b3480156107e857600080fd5b506104bf611919565b3480156107fd57600080fd5b506106fa61191f565b34801561081257600080fd5b506106fa61192e565b34801561082757600080fd5b506104bf61193d565b34801561083c57600080fd5b506103e8611960565b34801561085157600080fd5b506104bf6119c1565b34801561086657600080fd5b5061086f6119c7565b6040805192835260208301919091528051918290030190f35b34801561089457600080fd5b506104bf611b2a565b3480156108a957600080fd5b506103d1600480360360208110156108c057600080fd5b50351515611b30565b3480156108d557600080fd5b506103d1611bd7565b3480156108ea57600080fd5b506104966004803603604081101561090157600080fd5b506001600160a01b038135169060200135611c6b565b34801561092357600080fd5b506106fa611cd3565b34801561093857600080fd5b506104966004803603604081101561094f57600080fd5b506001600160a01b038135169060200135611ce2565b34801561097157600080fd5b506103d16004803603602081101561098857600080fd5b5035611cf6565b34801561099b57600080fd5b506104bf611d89565b3480156109b057600080fd5b506104bf611d8f565b3480156109c557600080fd5b506106fa611d95565b3480156109da57600080fd5b50610496600480360360208110156109f157600080fd5b50356001600160a01b0316611da4565b348015610a0d57600080fd5b506103d160048036036020811015610a2457600080fd5b5035611dc2565b348015610a3757600080fd5b506103d160048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611e9c565b348015610a7257600080fd5b506103d160048036036020811015610a8957600080fd5b5035612086565b348015610a9c57600080fd5b506104bf60048036036040811015610ab357600080fd5b506001600160a01b0381358116916020013516612119565b348015610ad757600080fd5b506104bf612144565b348015610aec57600080fd5b506104bf61214a565b348015610b0157600080fd5b506106fa612150565b348015610b1657600080fd5b506104bf61215f565b348015610b2b57600080fd5b506103d160048036036020811015610b4257600080fd5b5035612165565b348015610b5557600080fd5b506106fa612245565b348015610b6a57600080fd5b506103d160048036036020811015610b8157600080fd5b5035612254565b348015610b9457600080fd5b506103d160048036036020811015610bab57600080fd5b50356001600160a01b031661232a565b348015610bc757600080fd5b506103d160048036036020811015610bde57600080fd5b50356001600160a01b031661258b565b348015610bfa57600080fd5b506103d160048036036020811015610c1157600080fd5b5035612683565b348015610c2457600080fd5b506103d160048036036020811015610c3b57600080fd5b50356001600160a01b0316612756565b348015610c5757600080fd5b506104bf612901565b6000610c6a6129eb565b6001600160a01b03811660009081526004602052604090205490915060ff1615610cc55760405162461bcd60e51b815260040180806020018281038252603981526020018061451b6039913960400191505060405180910390fd5b6000610cd0836129ef565b505050506001600160a01b038416600090815260016020526040902054919250610cfc91905082612907565b6001600160a01b038316600090815260016020526040902055600a54610d229082612907565b600a55600b54610d329084612a4f565b600b55505050565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b5050505050905090565b6000610de4610ddd6129eb565b8484612aa9565b5060015b92915050565b601a5490565b60095490565b600c5481565b610e086129eb565b6000546001600160a01b03908116911614610e58576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6601c6bf52634000811015610e9e5760405162461bcd60e51b815260040180806020018281038252603881526020018061434b6038913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b6000610ee6848484612b95565b610f5684610ef26129eb565b610f518560405180606001604052806028815260200161442c602891396001600160a01b038a16600090815260036020526040812090610f306129eb565b6001600160a01b03168152602081019190915260400160002054919061301f565b612aa9565b5060019392505050565b610f686129eb565b6000546001600160a01b03908116911614610fb8576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60018110158015610fca5750600a8111155b6110055760405162461bcd60e51b81526004018080602001828103825260338152602001806145766033913960400191505060405180910390fd5b60198190556040805182815290517f5be5e13332f5fe25d72958c9d03ce5cdb01b189670222a86673715d56e43ce2a9181900360200190a150565b6000600a548211156110835760405162461bcd60e51b81526004018080602001828103825260378152602001806141e36037913960400191505060405180910390fd5b600061108d61193d565b905061109983826129a9565b9150505b919050565b6110aa6129eb565b6000546001600160a01b039081169116146110fa576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601d8190556040805182815290517feaed440fcec6c61f9f769421c03cc43636a7ae7ec94dab35cf5b906d2c67b5b89181900360200190a150565b600f5460ff1690565b6000610de461114b6129eb565b84610f51856003600061115c6129eb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a4f565b60115481565b60006009548311156111eb576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161120a5760006111fb846129ef565b50939550610de8945050505050565b6000611215846129ef565b50929550610de8945050505050565b61122c6129eb565b6000546001600160a01b0390811691161461127c576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b640ba43b7400811015801561129757506516bcc41e90008111155b6112d25760405162461bcd60e51b815260040180806020018281038252603b81526020018061466c603b913960400191505060405180910390fd5b60165481116113125760405162461bcd60e51b81526004018080602001828103825260488152602001806142726048913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6113966129eb565b6000546001600160a01b039081169116146113e6576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601054600a0a60050281111561142d5760405162461bcd60e51b81526004018080602001828103825260268152602001806144746026913960400191505060405180910390fd5b60118190556040805182815290517faa4b71ac29531fdea0ef1650c76ef91e3771dac25f4a4dd2a561ff3e0b9a5de29181900360200190a150565b601754630100000090046001600160a01b031690565b6017805460ff19166001179055601b5461149e6114996129eb565b611809565b10156114db5760405162461bcd60e51b815260040180806020018281038252603081526020018061463c6030913960400191505060405180910390fd5b601d54601c5401421161152e576040805162461bcd60e51b81526020600482015260166024820152752437b63caa3934b734ba3c9d102a37b79029b7b7b71760511b604482015290519081900360640190fd5b42601c55601954600854604080516370a0823160e01b815230600482015290516000936115c6936064936115c0936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d60208110156115b857600080fd5b505190612950565b906129a9565b90506115d1816130b6565b50601e60009054906101000a90046001600160a01b03166001600160a01b0316637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561162257600080fd5b505af1158015611636573d6000803e3d6000fd5b505050506040513d602081101561164c57600080fd5b5050601e54600090611666906001600160a01b0316611809565b9050600061168460646115c0601a548561295090919063ffffffff16565b905060006116928383612907565b9050600061169e61193d565b905060006116ac8383612950565b90506116e76116bb8584612950565b600160006116c76129eb565b6001600160a01b0316815260208101919091526040016000205490612a4f565b600160006116f36129eb565b6001600160a01b0390811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c546117329084612a4f565b600c556009546117429084612907565b600955600a546117529082612907565b600a5561175d6129eb565b601e546040805187815290516001600160a01b039384169392909216916000805160206144d18339815191529181900360200190a3601e546040805185815290516000926001600160a01b0316916000805160206144d1833981519152919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a150506017805460ff1916905550505050565b6001600160a01b03811660009081526004602052604081205460ff161561184957506001600160a01b03811660009081526002602052604090205461109d565b6001600160a01b038216600090815260016020526040902054610de890611040565b6118736129eb565b6000546001600160a01b039081169116146118c3576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135481565b601c5490565b60145481565b6008546001600160a01b031681565b6000546001600160a01b031690565b600080600061194a6119c7565b909250905061195982826129a9565b9250505090565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b60105481565b600a546009546000918291825b600554811015611af8578260016000600584815481106119f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a555750816002600060058481548110611a2e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6c57600a5460095494509450505050611b26565b611aac6001600060058481548110611a8057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612907565b9250611aee6002600060058481548110611ac257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612907565b91506001016119d4565b50600954600a54611b08916129a9565b821015611b2057600a54600954935093505050611b26565b90925090505b9091565b60125481565b611b386129eb565b6000546001600160a01b03908116911614611b88576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611bdf6129eb565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6017805462ff00001916620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610de4611c786129eb565b84610f51856040518060600160405280602581526020016146a76025913960036000611ca26129eb565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061301f565b6006546001600160a01b031681565b6000610de4611cef6129eb565b8484612b95565b611cfe6129eb565b6000546001600160a01b03908116911614611d4e576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601b8190556040805182815290517f61d458eb71ce9ecb43ee6e4ecd01c659c610f0b0d7c91ac27dc4d2e2d043c1699181900360200190a150565b601b5490565b60155481565b6018546001600160a01b031690565b6001600160a01b031660009081526004602052604090205460ff1690565b611dca6129eb565b6000546001600160a01b03908116911614611e1a576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601054600a0a600502811115611e615760405162461bcd60e51b81526004018080602001828103825260278152602001806141426027913960400191505060405180910390fd5b60128190556040805182815290517fc9c3eda55e0c1d7fbf155eefd9be0dcbb00e86498e4a8c8efb530e71d390b9ad9181900360200190a150565b611ea46129eb565b6000546001600160a01b03908116911614611ef4576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b038216611f395760405162461bcd60e51b81526004018080602001828103825260228152602001806145546022913960400191505060405180910390fd5b6001600160a01b038116611f7e5760405162461bcd60e51b81526004018080602001828103825260288152602001806146cc6028913960400191505060405180910390fd5b6001600160a01b038116301415611fc65760405162461bcd60e51b815260040180806020018281038252602d81526020018061431e602d913960400191505060405180910390fd5b6017546001600160a01b03828116630100000090920416141561201a5760405162461bcd60e51b815260040180806020018281038252603781526020018061449a6037913960400191505060405180910390fd5b601880546001600160a01b0319166001600160a01b0384811691909117909155601780546301000000600160b81b03191663010000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b61208e6129eb565b6000546001600160a01b039081169116146120de576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e546001600160a01b031681565b601d5490565b61216d6129eb565b6000546001600160a01b039081169116146121bd576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600181101580156121cf5750600f8111155b61220a5760405162461bcd60e51b81526004018080602001828103825260318152602001806143836031913960400191505060405180910390fd5b601a8190556040805182815290517fe3069d1b5c6a34789416db1d3d27b4da922676a150402a5bd9c5d12cdd9a3ea19181900360200190a150565b601f546001600160a01b031681565b61225c6129eb565b6000546001600160a01b039081169116146122ac576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b633b9aca008110156122ef5760405162461bcd60e51b81526004018080602001828103825260398152602001806142ba6039913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6123326129eb565b6000546001600160a01b03908116911614612382576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156123de5760405162461bcd60e51b815260040180806020018281038252602f8152602001806143b4602f913960400191505060405180910390fd5b6001600160a01b0381163014156124265760405162461bcd60e51b815260040180806020018281038252602e815260200180614114602e913960400191505060405180910390fd5b6006546001600160a01b03828116911614156124735760405162461bcd60e51b815260040180806020018281038252602f81526020018061421a602f913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156124cb5760405162461bcd60e51b81526004018080602001828103825260288152602001806141696028913960400191505060405180910390fd5b6001600160a01b03811660009081526001602052604090205415612525576001600160a01b03811660009081526001602052604090205461250b90611040565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6125936129eb565b6000546001600160a01b039081169116146125e3576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b0381166126285760405162461bcd60e51b81526004018080602001828103825260268152602001806141916026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61268b6129eb565b6000546001600160a01b039081169116146126db576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600281111561271b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806141b7602c913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b61275e6129eb565b6000546001600160a01b039081169116146127ae576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff166128055760405162461bcd60e51b81526004018080602001828103825260288152602001806143e36028913960400191505060405180910390fd5b60005b6005548110156128fd57816001600160a01b03166005828154811061282957fe5b6000918252602090912001546001600160a01b031614156128f55760058054600019810190811061285657fe5b600091825260209091200154600580546001600160a01b03909216918390811061287c57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806128ce57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556128fd565b600101612808565b5050565b600b5481565b600061294983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301f565b9392505050565b60008261295f57506000610de8565b8282028284828161296c57fe5b04146129495760405162461bcd60e51b815260040180806020018281038252602181526020018061440b6021913960400191505060405180910390fd5b600061294983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613221565b3390565b6000806000806000806000806000612a0f8a601154601254601054613286565b9250925092506000612a1f61193d565b90506000806000612a328e8787876132e0565b919e509c509a509598509396509194505050505091939550919395565b600082820183811015612949576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612aee5760405162461bcd60e51b815260040180806020018281038252602a8152602001806144f1602a913960400191505060405180910390fd5b6001600160a01b038216612b335760405162461bcd60e51b81526004018080602001828103825260288152602001806146146028913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612bda5760405162461bcd60e51b815260040180806020018281038252602b8152602001806142f3602b913960400191505060405180910390fd5b6001600160a01b038216612c1f5760405162461bcd60e51b81526004018080602001828103825260298152602001806142496029913960400191505060405180910390fd5b60008111612c5e5760405162461bcd60e51b81526004018080602001828103825260368152602001806145de6036913960400191505060405180910390fd5b612c6661192e565b6001600160a01b0316836001600160a01b031614158015612ca05750612c8a61192e565b6001600160a01b0316826001600160a01b031614155b8015612caf575060175460ff16155b15612da757601354811115612cf55760405162461bcd60e51b81526004018080602001828103825260358152602001806145a96035913960400191505060405180910390fd5b6018546001600160a01b0316612d096129eb565b6001600160a01b03161480612d5657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612d4b6129eb565b6001600160a01b0316145b8015612d6b575060175462010000900460ff16155b15612da75760405162461bcd60e51b81526004018080602001828103825260218152602001806140f36021913960400191505060405180910390fd5b60175460ff16612ec6576000612dbc30611809565b60145490915081108015908190612dde57506018546001600160a01b03163314155b8015612df15750601754610100900460ff165b15612ec3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e4f57600080fd5b505afa158015612e63573d6000803e3d6000fd5b505050506040513d6020811015612e7957600080fd5b5051601754630100000090046001600160a01b0390811691161415612ea657612ea182613330565b612ec3565b601754612ec390630100000090046001600160a01b031683613487565b50505b6001600160a01b03831660009081526004602052604090205460ff168015612f0757506001600160a01b03821660009081526004602052604090205460ff16155b15612f1c57612f178383836136cd565b61301a565b6001600160a01b03831660009081526004602052604090205460ff16158015612f5d57506001600160a01b03821660009081526004602052604090205460ff165b15612f6d57612f178383836138d0565b6001600160a01b03831660009081526004602052604090205460ff16158015612faf57506001600160a01b03821660009081526004602052604090205460ff16155b15612fbf57612f178383836139fd565b6001600160a01b03831660009081526004602052604090205460ff168015612fff57506001600160a01b03821660009081526004602052604090205460ff165b1561300f57612f17838383613a62565b61301a8383836139fd565b505050565b600081848411156130ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561307357818101518382015260200161305b565b50505050905090810190601f1680156130a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6008546040805163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b15801561312f57600080fd5b505af1158015613143573d6000803e3d6000fd5b505050506040513d602081101561315957600080fd5b5050601e546040805163af2979eb60e01b815230600482015260248101859052600060448201819052606482018190526001600160a01b0393841660848301524260a483015291517f00000000000000000000000000000000000000000000000000000000000000009093169263af2979eb9260c480840193602093929083900390910190829087803b1580156131ef57600080fd5b505af1158015613203573d6000803e3d6000fd5b505050506040513d602081101561321957600080fd5b505192915050565b600081836132705760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561307357818101518382015260200161305b565b50600083858161327c57fe5b0495945050505050565b600080808061329f60028601600a0a6115c08a8a612950565b905060006132b760028701600a0a6115c08b8a612950565b905060006132cf826132c98c86612907565b90612907565b9a9299509097509095505050505050565b60008080806132ef8886612950565b905060006132fd8887612950565b9050600061330b8888612950565b9050600061331d826132c98686612907565b939b939a50919850919650505050505050565b6017805460ff1916600117905560165460009061334e908390612907565b9050600061335d8260026129a9565b9050600061336b8383612907565b90504761337783613af6565b60006133834783612907565b905061338f8382613d0d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156133e857600080fd5b505afa1580156133fc573d6000803e3d6000fd5b505050506040513d602081101561341257600080fd5b5051604080518681526020810184905280820186905290516001600160a01b03909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a261346d3032601654612b95565b613475613df5565b50506017805460ff1916905550505050565b6017805460ff191660011790556016546000906134a5908390612907565b905060006134b48260026129a9565b905060006134c28383612907565b601f549091506134dd9030906001600160a01b031684612b95565b6000856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561352c57600080fd5b505afa158015613540573d6000803e3d6000fd5b505050506040513d602081101561355657600080fd5b5051601f546040805163a114398d60e01b81526001600160a01b038a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b1580156135af57600080fd5b505af11580156135c3573d6000803e3d6000fd5b50505050600061364c82886001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561361a57600080fd5b505afa15801561362e573d6000803e3d6000fd5b505050506040513d602081101561364457600080fd5b505190612907565b9050613659878483613f2e565b604080518581526020810183905280820185905290516001600160a01b038916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26136b23032601654612b95565b6136ba613df5565b50506017805460ff191690555050505050565b60006136d761193d565b90506000806000806000806136eb886129ef565b955095509550955095509550600061370c888361295090919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613732908a612907565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546137619088612907565b6001600160a01b038c1660009081526001602052604090205560175460ff16156137f2576001600160a01b038a166000908152600160205260409020546137a89088612a4f565b6001600160a01b03808c166000818152600160209081526040918290209490945580518d815290519193928f16926000805160206144d183398151915292918290030190a36138c3565b6001600160a01b038a166000908152600160205260409020546138159087612a4f565b6001600160a01b038b166000908152600160205260408082209290925530815220546138419082612a4f565b3060009081526001602052604090205561385b85846140ce565b60408051838152905130916001600160a01b038e16916000805160206144d18339815191529181900360200190a3896001600160a01b03168b6001600160a01b03166000805160206144d1833981519152866040518082815260200191505060405180910390a35b5050505050505050505050565b60006138da61193d565b90506000806000806000806138ee886129ef565b955095509550955095509550600061390f888361295090919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506139359088612907565b6001600160a01b038c1660009081526001602052604090205560175460ff16156139ab576001600160a01b038a1660009081526002602052604090205461397c908a612a4f565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546137a89088612a4f565b6001600160a01b038a166000908152600260205260409020546139ce9085612a4f565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546138159087612a4f565b6000613a0761193d565b9050600080600080600080613a1b886129ef565b9550955095509550955095506000613a3c888361295090919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506137619088612907565b6000613a6c61193d565b9050600080600080600080613a80886129ef565b9550955095509550955095506000613aa1888361295090919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613ac7908a612907565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546139359088612907565b60408051600280825260608083018452926020830190803683370190505090503081600081518110613b2457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b9d57600080fd5b505afa158015613bb1573d6000803e3d6000fd5b505050506040513d6020811015613bc757600080fd5b5051815182906001908110613bd857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050613c23307f000000000000000000000000000000000000000000000000000000000000000084612aa9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cc8578181015183820152602001613cb0565b505050509050019650505050505050600060405180830381600087803b158015613cf157600080fd5b505af1158015613d05573d6000803e3d6000fd5b505050505050565b613d38307f000000000000000000000000000000000000000000000000000000000000000084612aa9565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015613dc457600080fd5b505af1158015613dd8573d6000803e3d6000fd5b50505050506040513d6060811015613def57600080fd5b50505050565b600754600654600091613e14916132c9906001600160a01b0316611809565b9050601554811115613f2b576000613e2d826000611192565b6018546001600160a01b0316600090815260016020526040902054909150613e559082612a4f565b6018546001600160a01b039081166000908152600160205260408082209390935560065490911681522054613e8a9082612907565b600680546001600160a01b0390811660009081526001602090815260409182902094909455601854925481518781529151938316949216926000805160206144d1833981519152929181900390910190a3601860009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cf157600080fd5b50565b613f59307f000000000000000000000000000000000000000000000000000000000000000084612aa9565b826001600160a01b031663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613fd057600080fd5b505af1158015613fe4573d6000803e3d6000fd5b505050506040513d6020811015613ffa57600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b038681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f00000000000000000000000000000000000000000000000000000000000000009093169263e8e3370092610104808201936060939283900390910190829087803b15801561409d57600080fd5b505af11580156140b1573d6000803e3d6000fd5b505050506040513d60608110156140c757600080fd5b5050505050565b600a546140db9083612907565b600a55600b546140eb9082612a4f565b600b55505056fe486f6c795472696e6974793a2074726164696e672069732064697361626c65642e486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e486f6c795472696e6974793a206c6f636b4665652073686f756c6420626520696e2030202d2035486f6c795472696e6974793a204163636f756e7420697320616c7265616479206578636c756465644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373486f6c795472696e6974793a2066656520646563696d616c732073686f756c6420626520696e2030202d2032486f6c795472696e6974793a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e486f6c795472696e6974793a207472616e7366657220746f20746865207a65726f2061646472657373486f6c795472696e6974793a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c6572466565486f6c795472696e6974793a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e20316539486f6c795472696e6974793a207472616e736665722066726f6d20746865207a65726f2061646472657373486f6c795472696e6974793a205061697220746f6b656e20616464726573732073656c6620616464726573732e486f6c795472696e6974793a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e203530303030306539486f6c795472696e6974793a20616c6368656d7943616c6c65724665652073686f756c6420626520696e2031202d203135486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e486f6c795472696e6974793a204163636f756e7420697320616c726561647920696e636c75646564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572486f6c795472696e6974793a207461784665652073686f756c6420626520696e2030202d2035486f6c795472696e6974793a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef486f6c795472696e6974793a20617070726f76652066726f6d20746865207a65726f2061646472657373486f6c795472696e6974793a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e486f6c795472696e6974793a20506f6f6c2061646472657373206973207a65726f2e486f6c795472696e6974793a206c697175696469747952656d6f76654665652073686f756c6420626520696e2031202d203130486f6c795472696e6974793a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e486f6c795472696e6974793a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f486f6c795472696e6974793a20617070726f766520746f20746865207a65726f2061646472657373486f6c795472696e6974793a20596f752068617665206e6f7420656e6f75676820486f6c795472696e69747920746f20486f6c795472696e6974793a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d203235303030653945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f486f6c795472696e6974793a205061697220746f6b656e2061646472657373206973207a65726f2ea2646970667358221220a98cb20c9ec1f0bcb5080ca413b3d471fd4bf1a088df98c97c7064c48673175064736f6c634300060c00336080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea26469706673582212204bd1051a8dede770f4b8870d42333d769584c94889b1e003c128907b909e1e7d64736f6c634300060c003360a060405234801561001057600080fd5b506040516103653803806103658339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906102d99061008c9039806093528060e552806101c252506102d96000f3fe60806040526004361061002d5760003560e01c8063583e0568146100395780637d7c2a1c1461006a57610034565b3661003457005b600080fd5b34801561004557600080fd5b5061004e610091565b604080516001600160a01b039092168252519081900360200190f35b34801561007657600080fd5b5061007f6100b5565b60408051918252519081900360200190f35b7f000000000000000000000000000000000000000000000000000000000000000081565b60006100c0476100c3565b90565b60408051600280825260608083018452926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561013c57600080fd5b505afa158015610150573d6000803e3d6000fd5b505050506040513d602081101561016657600080fd5b50518151829060009061017557fe5b6001600160a01b0392831660209182029290920101526000548251911690829060019081106101a057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b6f9de958360008430426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561025f578181015183820152602001610247565b50505050905001955050505050506000604051808303818588803b15801561028657600080fd5b505af115801561029a573d6000803e3d6000fd5b5050505050505056fea264697066735822122083eef447bfd27320e0bc416409339ea9333aa49ed3c3ed46f66fe51eb0040b5864736f6c634300060c003360a060405234801561001057600080fd5b506040516105f33803806105f38339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906105669061008d903980608f52806102de52806103ac52506105666000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063583e05681461003b578063a114398d1461005f575b600080fd5b61004361008d565b604080516001600160a01b039092168252519081900360200190f35b61008b6004803603604081101561007557600080fd5b506001600160a01b0381351690602001356100b1565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561010057600080fd5b505afa158015610114573d6000803e3d6000fd5b505050506040513d602081101561012a57600080fd5b50519050610138838361024a565b60006101bd82856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561018b57600080fd5b505afa15801561019f573d6000803e3d6000fd5b505050506040513d60208110156101b557600080fd5b505190610450565b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810185905290519394509087169263a9059cbb92604480840193602093929083900390910190829087803b15801561021857600080fd5b505af115801561022c573d6000803e3d6000fd5b505050506040513d602081101561024257600080fd5b505050505050565b604080516002808252606080830184529260208301908036833750506000805483519394506001600160a01b03169284925061028257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505082816001815181106102b057fe5b6001600160a01b03928316602091820292909201810191909152600080546040805163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000086166004820152602481018890529051919094169363095ea7b3936044808301949193928390030190829087803b15801561033757600080fd5b505af115801561034b573d6000803e3d6000fd5b505050506040513d602081101561036157600080fd5b5050604051635c11d79560e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152865160a487015286516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001696635c11d795968a96958a95909490939192909160c490910190602087810191028083838b5b8381101561040a5781810151838201526020016103f2565b505050509050019650505050505050600060405180830381600087803b15801561043357600080fd5b505af1158015610447573d6000803e3d6000fd5b50505050505050565b600061049283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610499565b9392505050565b600081848411156105285760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156104ed5781810151838201526020016104d5565b50505050905090810190601f16801561051a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea264697066735822122095cbda5c4a3227b64a12c1ce833363653f9a42a36db596764c679ba10b74cbbd64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000001c6bf52634000

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806395d89b41116101dc578063d73cf08011610102578063e98d2c4b116100a0578063f2fde38b1161006f578063f2fde38b14610bbb578063f7505bc014610bee578063f84354f114610c18578063fb1eb14b14610c4b576103a2565b8063e98d2c4b14610b1f578063eed83f1114610b49578063efeb97e114610b5e578063f2cc0c1814610b88576103a2565b8063e4111dd3116100dc578063e4111dd314610acb578063e4451f6614610ae0578063e563037e14610af5578063e8598c8714610b0a576103a2565b8063d73cf08014610a2b578063dc17493714610a66578063dd62ed3e14610a90576103a2565b8063a4f4a7651161017a578063c329581711610149578063c3295817146109a4578063c9e6da19146109b9578063cba0e996146109ce578063d51486df14610a01576103a2565b8063a4f4a76514610917578063a9059cbb1461092c578063b6c1b37e14610965578063b7cc02f91461098f576103a2565b80639d6f83e4116101b65780639d6f83e4146108885780639f9a4e7f1461089d578063a0ac5e19146108c9578063a457c2d7146108de576103a2565b806395d89b4114610830578063963547041461084557806397a9d5601461085a576103a2565b80634a1e7726116102c157806370a082311161025f5780638aadb8091161022e5780638aadb809146107dc5780638b1bdcb2146107f15780638da5cb5b1461080657806394e107841461081b576103a2565b806370a082311461076a578063715018a61461079d5780637d1db4a5146107b257806385d1e038146107c7576103a2565b8063583e05681161029b578063583e0568146106e55780635880b873146107165780635afbfd3814610740578063674b80ee14610755576103a2565b80634a1e7726146106915780634a74bb02146106bb5780634ada218b146106d0576103a2565b806323b872dd11610339578063313ce56711610308578063313ce567146105e657806339509351146106115780633b124fe71461064a5780634549b0391461065f576103a2565b806323b872dd1461052557806326f5ccaa146105685780632d838119146105925780632ec8e523146105bc576103a2565b8063171778081161037557806317177808146104aa57806318160ddd146104d1578063185d374c146104e65780631bbae6e0146104fb576103a2565b8063053ab182146103a757806306fdde03146103d3578063095ea7b31461045d576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610c60565b005b3480156103df57600080fd5b506103e8610d3a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104966004803603604081101561048057600080fd5b506001600160a01b038135169060200135610dd0565b604080519115158252519081900360200190f35b3480156104b657600080fd5b506104bf610dee565b60408051918252519081900360200190f35b3480156104dd57600080fd5b506104bf610df4565b3480156104f257600080fd5b506104bf610dfa565b34801561050757600080fd5b506103d16004803603602081101561051e57600080fd5b5035610e00565b34801561053157600080fd5b506104966004803603606081101561054857600080fd5b506001600160a01b03813581169160208101359091169060400135610ed9565b34801561057457600080fd5b506103d16004803603602081101561058b57600080fd5b5035610f60565b34801561059e57600080fd5b506104bf600480360360208110156105b557600080fd5b5035611040565b3480156105c857600080fd5b506103d1600480360360208110156105df57600080fd5b50356110a2565b3480156105f257600080fd5b506105fb611135565b6040805160ff9092168252519081900360200190f35b34801561061d57600080fd5b506104966004803603604081101561063457600080fd5b506001600160a01b03813516906020013561113e565b34801561065657600080fd5b506104bf61118c565b34801561066b57600080fd5b506104bf6004803603604081101561068257600080fd5b50803590602001351515611192565b34801561069d57600080fd5b506103d1600480360360208110156106b457600080fd5b5035611224565b3480156106c757600080fd5b5061049661134d565b3480156106dc57600080fd5b5061049661135b565b3480156106f157600080fd5b506106fa61136a565b604080516001600160a01b039092168252519081900360200190f35b34801561072257600080fd5b506103d16004803603602081101561073957600080fd5b503561138e565b34801561074c57600080fd5b506106fa611468565b34801561076157600080fd5b506103d161147e565b34801561077657600080fd5b506104bf6004803603602081101561078d57600080fd5b50356001600160a01b0316611809565b3480156107a957600080fd5b506103d161186b565b3480156107be57600080fd5b506104bf61190d565b3480156107d357600080fd5b506104bf611913565b3480156107e857600080fd5b506104bf611919565b3480156107fd57600080fd5b506106fa61191f565b34801561081257600080fd5b506106fa61192e565b34801561082757600080fd5b506104bf61193d565b34801561083c57600080fd5b506103e8611960565b34801561085157600080fd5b506104bf6119c1565b34801561086657600080fd5b5061086f6119c7565b6040805192835260208301919091528051918290030190f35b34801561089457600080fd5b506104bf611b2a565b3480156108a957600080fd5b506103d1600480360360208110156108c057600080fd5b50351515611b30565b3480156108d557600080fd5b506103d1611bd7565b3480156108ea57600080fd5b506104966004803603604081101561090157600080fd5b506001600160a01b038135169060200135611c6b565b34801561092357600080fd5b506106fa611cd3565b34801561093857600080fd5b506104966004803603604081101561094f57600080fd5b506001600160a01b038135169060200135611ce2565b34801561097157600080fd5b506103d16004803603602081101561098857600080fd5b5035611cf6565b34801561099b57600080fd5b506104bf611d89565b3480156109b057600080fd5b506104bf611d8f565b3480156109c557600080fd5b506106fa611d95565b3480156109da57600080fd5b50610496600480360360208110156109f157600080fd5b50356001600160a01b0316611da4565b348015610a0d57600080fd5b506103d160048036036020811015610a2457600080fd5b5035611dc2565b348015610a3757600080fd5b506103d160048036036040811015610a4e57600080fd5b506001600160a01b0381358116916020013516611e9c565b348015610a7257600080fd5b506103d160048036036020811015610a8957600080fd5b5035612086565b348015610a9c57600080fd5b506104bf60048036036040811015610ab357600080fd5b506001600160a01b0381358116916020013516612119565b348015610ad757600080fd5b506104bf612144565b348015610aec57600080fd5b506104bf61214a565b348015610b0157600080fd5b506106fa612150565b348015610b1657600080fd5b506104bf61215f565b348015610b2b57600080fd5b506103d160048036036020811015610b4257600080fd5b5035612165565b348015610b5557600080fd5b506106fa612245565b348015610b6a57600080fd5b506103d160048036036020811015610b8157600080fd5b5035612254565b348015610b9457600080fd5b506103d160048036036020811015610bab57600080fd5b50356001600160a01b031661232a565b348015610bc757600080fd5b506103d160048036036020811015610bde57600080fd5b50356001600160a01b031661258b565b348015610bfa57600080fd5b506103d160048036036020811015610c1157600080fd5b5035612683565b348015610c2457600080fd5b506103d160048036036020811015610c3b57600080fd5b50356001600160a01b0316612756565b348015610c5757600080fd5b506104bf612901565b6000610c6a6129eb565b6001600160a01b03811660009081526004602052604090205490915060ff1615610cc55760405162461bcd60e51b815260040180806020018281038252603981526020018061451b6039913960400191505060405180910390fd5b6000610cd0836129ef565b505050506001600160a01b038416600090815260016020526040902054919250610cfc91905082612907565b6001600160a01b038316600090815260016020526040902055600a54610d229082612907565b600a55600b54610d329084612a4f565b600b55505050565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b5050505050905090565b6000610de4610ddd6129eb565b8484612aa9565b5060015b92915050565b601a5490565b60095490565b600c5481565b610e086129eb565b6000546001600160a01b03908116911614610e58576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6601c6bf52634000811015610e9e5760405162461bcd60e51b815260040180806020018281038252603881526020018061434b6038913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b6000610ee6848484612b95565b610f5684610ef26129eb565b610f518560405180606001604052806028815260200161442c602891396001600160a01b038a16600090815260036020526040812090610f306129eb565b6001600160a01b03168152602081019190915260400160002054919061301f565b612aa9565b5060019392505050565b610f686129eb565b6000546001600160a01b03908116911614610fb8576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60018110158015610fca5750600a8111155b6110055760405162461bcd60e51b81526004018080602001828103825260338152602001806145766033913960400191505060405180910390fd5b60198190556040805182815290517f5be5e13332f5fe25d72958c9d03ce5cdb01b189670222a86673715d56e43ce2a9181900360200190a150565b6000600a548211156110835760405162461bcd60e51b81526004018080602001828103825260378152602001806141e36037913960400191505060405180910390fd5b600061108d61193d565b905061109983826129a9565b9150505b919050565b6110aa6129eb565b6000546001600160a01b039081169116146110fa576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601d8190556040805182815290517feaed440fcec6c61f9f769421c03cc43636a7ae7ec94dab35cf5b906d2c67b5b89181900360200190a150565b600f5460ff1690565b6000610de461114b6129eb565b84610f51856003600061115c6129eb565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a4f565b60115481565b60006009548311156111eb576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161120a5760006111fb846129ef565b50939550610de8945050505050565b6000611215846129ef565b50929550610de8945050505050565b61122c6129eb565b6000546001600160a01b0390811691161461127c576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b640ba43b7400811015801561129757506516bcc41e90008111155b6112d25760405162461bcd60e51b815260040180806020018281038252603b81526020018061466c603b913960400191505060405180910390fd5b60165481116113125760405162461bcd60e51b81526004018080602001828103825260488152602001806142726048913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6113966129eb565b6000546001600160a01b039081169116146113e6576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601054600a0a60050281111561142d5760405162461bcd60e51b81526004018080602001828103825260268152602001806144746026913960400191505060405180910390fd5b60118190556040805182815290517faa4b71ac29531fdea0ef1650c76ef91e3771dac25f4a4dd2a561ff3e0b9a5de29181900360200190a150565b601754630100000090046001600160a01b031690565b6017805460ff19166001179055601b5461149e6114996129eb565b611809565b10156114db5760405162461bcd60e51b815260040180806020018281038252603081526020018061463c6030913960400191505060405180910390fd5b601d54601c5401421161152e576040805162461bcd60e51b81526020600482015260166024820152752437b63caa3934b734ba3c9d102a37b79029b7b7b71760511b604482015290519081900360640190fd5b42601c55601954600854604080516370a0823160e01b815230600482015290516000936115c6936064936115c0936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561158e57600080fd5b505afa1580156115a2573d6000803e3d6000fd5b505050506040513d60208110156115b857600080fd5b505190612950565b906129a9565b90506115d1816130b6565b50601e60009054906101000a90046001600160a01b03166001600160a01b0316637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561162257600080fd5b505af1158015611636573d6000803e3d6000fd5b505050506040513d602081101561164c57600080fd5b5050601e54600090611666906001600160a01b0316611809565b9050600061168460646115c0601a548561295090919063ffffffff16565b905060006116928383612907565b9050600061169e61193d565b905060006116ac8383612950565b90506116e76116bb8584612950565b600160006116c76129eb565b6001600160a01b0316815260208101919091526040016000205490612a4f565b600160006116f36129eb565b6001600160a01b0390811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c546117329084612a4f565b600c556009546117429084612907565b600955600a546117529082612907565b600a5561175d6129eb565b601e546040805187815290516001600160a01b039384169392909216916000805160206144d18339815191529181900360200190a3601e546040805185815290516000926001600160a01b0316916000805160206144d1833981519152919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a150506017805460ff1916905550505050565b6001600160a01b03811660009081526004602052604081205460ff161561184957506001600160a01b03811660009081526002602052604090205461109d565b6001600160a01b038216600090815260016020526040902054610de890611040565b6118736129eb565b6000546001600160a01b039081169116146118c3576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135481565b601c5490565b60145481565b6008546001600160a01b031681565b6000546001600160a01b031690565b600080600061194a6119c7565b909250905061195982826129a9565b9250505090565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b60105481565b600a546009546000918291825b600554811015611af8578260016000600584815481106119f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a555750816002600060058481548110611a2e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6c57600a5460095494509450505050611b26565b611aac6001600060058481548110611a8057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612907565b9250611aee6002600060058481548110611ac257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612907565b91506001016119d4565b50600954600a54611b08916129a9565b821015611b2057600a54600954935093505050611b26565b90925090505b9091565b60125481565b611b386129eb565b6000546001600160a01b03908116911614611b88576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611bdf6129eb565b6000546001600160a01b03908116911614611c2f576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6017805462ff00001916620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610de4611c786129eb565b84610f51856040518060600160405280602581526020016146a76025913960036000611ca26129eb565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061301f565b6006546001600160a01b031681565b6000610de4611cef6129eb565b8484612b95565b611cfe6129eb565b6000546001600160a01b03908116911614611d4e576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601b8190556040805182815290517f61d458eb71ce9ecb43ee6e4ecd01c659c610f0b0d7c91ac27dc4d2e2d043c1699181900360200190a150565b601b5490565b60155481565b6018546001600160a01b031690565b6001600160a01b031660009081526004602052604090205460ff1690565b611dca6129eb565b6000546001600160a01b03908116911614611e1a576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b601054600a0a600502811115611e615760405162461bcd60e51b81526004018080602001828103825260278152602001806141426027913960400191505060405180910390fd5b60128190556040805182815290517fc9c3eda55e0c1d7fbf155eefd9be0dcbb00e86498e4a8c8efb530e71d390b9ad9181900360200190a150565b611ea46129eb565b6000546001600160a01b03908116911614611ef4576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b038216611f395760405162461bcd60e51b81526004018080602001828103825260228152602001806145546022913960400191505060405180910390fd5b6001600160a01b038116611f7e5760405162461bcd60e51b81526004018080602001828103825260288152602001806146cc6028913960400191505060405180910390fd5b6001600160a01b038116301415611fc65760405162461bcd60e51b815260040180806020018281038252602d81526020018061431e602d913960400191505060405180910390fd5b6017546001600160a01b03828116630100000090920416141561201a5760405162461bcd60e51b815260040180806020018281038252603781526020018061449a6037913960400191505060405180910390fd5b601880546001600160a01b0319166001600160a01b0384811691909117909155601780546301000000600160b81b03191663010000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b61208e6129eb565b6000546001600160a01b039081169116146120de576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e546001600160a01b031681565b601d5490565b61216d6129eb565b6000546001600160a01b039081169116146121bd576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600181101580156121cf5750600f8111155b61220a5760405162461bcd60e51b81526004018080602001828103825260318152602001806143836031913960400191505060405180910390fd5b601a8190556040805182815290517fe3069d1b5c6a34789416db1d3d27b4da922676a150402a5bd9c5d12cdd9a3ea19181900360200190a150565b601f546001600160a01b031681565b61225c6129eb565b6000546001600160a01b039081169116146122ac576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b633b9aca008110156122ef5760405162461bcd60e51b81526004018080602001828103825260398152602001806142ba6039913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6123326129eb565b6000546001600160a01b03908116911614612382576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156123de5760405162461bcd60e51b815260040180806020018281038252602f8152602001806143b4602f913960400191505060405180910390fd5b6001600160a01b0381163014156124265760405162461bcd60e51b815260040180806020018281038252602e815260200180614114602e913960400191505060405180910390fd5b6006546001600160a01b03828116911614156124735760405162461bcd60e51b815260040180806020018281038252602f81526020018061421a602f913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156124cb5760405162461bcd60e51b81526004018080602001828103825260288152602001806141696028913960400191505060405180910390fd5b6001600160a01b03811660009081526001602052604090205415612525576001600160a01b03811660009081526001602052604090205461250b90611040565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6125936129eb565b6000546001600160a01b039081169116146125e3576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b0381166126285760405162461bcd60e51b81526004018080602001828103825260268152602001806141916026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61268b6129eb565b6000546001600160a01b039081169116146126db576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b600281111561271b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806141b7602c913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b61275e6129eb565b6000546001600160a01b039081169116146127ae576040805162461bcd60e51b81526020600482018190526024820152600080516020614454833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff166128055760405162461bcd60e51b81526004018080602001828103825260288152602001806143e36028913960400191505060405180910390fd5b60005b6005548110156128fd57816001600160a01b03166005828154811061282957fe5b6000918252602090912001546001600160a01b031614156128f55760058054600019810190811061285657fe5b600091825260209091200154600580546001600160a01b03909216918390811061287c57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806128ce57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556128fd565b600101612808565b5050565b600b5481565b600061294983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061301f565b9392505050565b60008261295f57506000610de8565b8282028284828161296c57fe5b04146129495760405162461bcd60e51b815260040180806020018281038252602181526020018061440b6021913960400191505060405180910390fd5b600061294983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613221565b3390565b6000806000806000806000806000612a0f8a601154601254601054613286565b9250925092506000612a1f61193d565b90506000806000612a328e8787876132e0565b919e509c509a509598509396509194505050505091939550919395565b600082820183811015612949576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612aee5760405162461bcd60e51b815260040180806020018281038252602a8152602001806144f1602a913960400191505060405180910390fd5b6001600160a01b038216612b335760405162461bcd60e51b81526004018080602001828103825260288152602001806146146028913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612bda5760405162461bcd60e51b815260040180806020018281038252602b8152602001806142f3602b913960400191505060405180910390fd5b6001600160a01b038216612c1f5760405162461bcd60e51b81526004018080602001828103825260298152602001806142496029913960400191505060405180910390fd5b60008111612c5e5760405162461bcd60e51b81526004018080602001828103825260368152602001806145de6036913960400191505060405180910390fd5b612c6661192e565b6001600160a01b0316836001600160a01b031614158015612ca05750612c8a61192e565b6001600160a01b0316826001600160a01b031614155b8015612caf575060175460ff16155b15612da757601354811115612cf55760405162461bcd60e51b81526004018080602001828103825260358152602001806145a96035913960400191505060405180910390fd5b6018546001600160a01b0316612d096129eb565b6001600160a01b03161480612d5657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316612d4b6129eb565b6001600160a01b0316145b8015612d6b575060175462010000900460ff16155b15612da75760405162461bcd60e51b81526004018080602001828103825260218152602001806140f36021913960400191505060405180910390fd5b60175460ff16612ec6576000612dbc30611809565b60145490915081108015908190612dde57506018546001600160a01b03163314155b8015612df15750601754610100900460ff165b15612ec3577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e4f57600080fd5b505afa158015612e63573d6000803e3d6000fd5b505050506040513d6020811015612e7957600080fd5b5051601754630100000090046001600160a01b0390811691161415612ea657612ea182613330565b612ec3565b601754612ec390630100000090046001600160a01b031683613487565b50505b6001600160a01b03831660009081526004602052604090205460ff168015612f0757506001600160a01b03821660009081526004602052604090205460ff16155b15612f1c57612f178383836136cd565b61301a565b6001600160a01b03831660009081526004602052604090205460ff16158015612f5d57506001600160a01b03821660009081526004602052604090205460ff165b15612f6d57612f178383836138d0565b6001600160a01b03831660009081526004602052604090205460ff16158015612faf57506001600160a01b03821660009081526004602052604090205460ff16155b15612fbf57612f178383836139fd565b6001600160a01b03831660009081526004602052604090205460ff168015612fff57506001600160a01b03821660009081526004602052604090205460ff165b1561300f57612f17838383613a62565b61301a8383836139fd565b505050565b600081848411156130ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561307357818101518382015260200161305b565b50505050905090810190601f1680156130a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6008546040805163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b15801561312f57600080fd5b505af1158015613143573d6000803e3d6000fd5b505050506040513d602081101561315957600080fd5b5050601e546040805163af2979eb60e01b815230600482015260248101859052600060448201819052606482018190526001600160a01b0393841660848301524260a483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263af2979eb9260c480840193602093929083900390910190829087803b1580156131ef57600080fd5b505af1158015613203573d6000803e3d6000fd5b505050506040513d602081101561321957600080fd5b505192915050565b600081836132705760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561307357818101518382015260200161305b565b50600083858161327c57fe5b0495945050505050565b600080808061329f60028601600a0a6115c08a8a612950565b905060006132b760028701600a0a6115c08b8a612950565b905060006132cf826132c98c86612907565b90612907565b9a9299509097509095505050505050565b60008080806132ef8886612950565b905060006132fd8887612950565b9050600061330b8888612950565b9050600061331d826132c98686612907565b939b939a50919850919650505050505050565b6017805460ff1916600117905560165460009061334e908390612907565b9050600061335d8260026129a9565b9050600061336b8383612907565b90504761337783613af6565b60006133834783612907565b905061338f8382613d0d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156133e857600080fd5b505afa1580156133fc573d6000803e3d6000fd5b505050506040513d602081101561341257600080fd5b5051604080518681526020810184905280820186905290516001600160a01b03909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a261346d3032601654612b95565b613475613df5565b50506017805460ff1916905550505050565b6017805460ff191660011790556016546000906134a5908390612907565b905060006134b48260026129a9565b905060006134c28383612907565b601f549091506134dd9030906001600160a01b031684612b95565b6000856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561352c57600080fd5b505afa158015613540573d6000803e3d6000fd5b505050506040513d602081101561355657600080fd5b5051601f546040805163a114398d60e01b81526001600160a01b038a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b1580156135af57600080fd5b505af11580156135c3573d6000803e3d6000fd5b50505050600061364c82886001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561361a57600080fd5b505afa15801561362e573d6000803e3d6000fd5b505050506040513d602081101561364457600080fd5b505190612907565b9050613659878483613f2e565b604080518581526020810183905280820185905290516001600160a01b038916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26136b23032601654612b95565b6136ba613df5565b50506017805460ff191690555050505050565b60006136d761193d565b90506000806000806000806136eb886129ef565b955095509550955095509550600061370c888361295090919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613732908a612907565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546137619088612907565b6001600160a01b038c1660009081526001602052604090205560175460ff16156137f2576001600160a01b038a166000908152600160205260409020546137a89088612a4f565b6001600160a01b03808c166000818152600160209081526040918290209490945580518d815290519193928f16926000805160206144d183398151915292918290030190a36138c3565b6001600160a01b038a166000908152600160205260409020546138159087612a4f565b6001600160a01b038b166000908152600160205260408082209290925530815220546138419082612a4f565b3060009081526001602052604090205561385b85846140ce565b60408051838152905130916001600160a01b038e16916000805160206144d18339815191529181900360200190a3896001600160a01b03168b6001600160a01b03166000805160206144d1833981519152866040518082815260200191505060405180910390a35b5050505050505050505050565b60006138da61193d565b90506000806000806000806138ee886129ef565b955095509550955095509550600061390f888361295090919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506139359088612907565b6001600160a01b038c1660009081526001602052604090205560175460ff16156139ab576001600160a01b038a1660009081526002602052604090205461397c908a612a4f565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546137a89088612a4f565b6001600160a01b038a166000908152600260205260409020546139ce9085612a4f565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546138159087612a4f565b6000613a0761193d565b9050600080600080600080613a1b886129ef565b9550955095509550955095506000613a3c888361295090919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506137619088612907565b6000613a6c61193d565b9050600080600080600080613a80886129ef565b9550955095509550955095506000613aa1888361295090919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613ac7908a612907565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546139359088612907565b60408051600280825260608083018452926020830190803683370190505090503081600081518110613b2457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613b9d57600080fd5b505afa158015613bb1573d6000803e3d6000fd5b505050506040513d6020811015613bc757600080fd5b5051815182906001908110613bd857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050613c23307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aa9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cc8578181015183820152602001613cb0565b505050509050019650505050505050600060405180830381600087803b158015613cf157600080fd5b505af1158015613d05573d6000803e3d6000fd5b505050505050565b613d38307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aa9565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015613dc457600080fd5b505af1158015613dd8573d6000803e3d6000fd5b50505050506040513d6060811015613def57600080fd5b50505050565b600754600654600091613e14916132c9906001600160a01b0316611809565b9050601554811115613f2b576000613e2d826000611192565b6018546001600160a01b0316600090815260016020526040902054909150613e559082612a4f565b6018546001600160a01b039081166000908152600160205260408082209390935560065490911681522054613e8a9082612907565b600680546001600160a01b0390811660009081526001602090815260409182902094909455601854925481518781529151938316949216926000805160206144d1833981519152929181900390910190a3601860009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cf157600080fd5b50565b613f59307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aa9565b826001600160a01b031663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613fd057600080fd5b505af1158015613fe4573d6000803e3d6000fd5b505050506040513d6020811015613ffa57600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b038681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263e8e3370092610104808201936060939283900390910190829087803b15801561409d57600080fd5b505af11580156140b1573d6000803e3d6000fd5b505050506040513d60608110156140c757600080fd5b5050505050565b600a546140db9083612907565b600a55600b546140eb9082612a4f565b600b55505056fe486f6c795472696e6974793a2074726164696e672069732064697361626c65642e486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e486f6c795472696e6974793a206c6f636b4665652073686f756c6420626520696e2030202d2035486f6c795472696e6974793a204163636f756e7420697320616c7265616479206578636c756465644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373486f6c795472696e6974793a2066656520646563696d616c732073686f756c6420626520696e2030202d2032486f6c795472696e6974793a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e486f6c795472696e6974793a207472616e7366657220746f20746865207a65726f2061646472657373486f6c795472696e6974793a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c6572466565486f6c795472696e6974793a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e20316539486f6c795472696e6974793a207472616e736665722066726f6d20746865207a65726f2061646472657373486f6c795472696e6974793a205061697220746f6b656e20616464726573732073656c6620616464726573732e486f6c795472696e6974793a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e203530303030306539486f6c795472696e6974793a20616c6368656d7943616c6c65724665652073686f756c6420626520696e2031202d203135486f6c795472696e6974793a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e486f6c795472696e6974793a204163636f756e7420697320616c726561647920696e636c75646564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572486f6c795472696e6974793a207461784665652073686f756c6420626520696e2030202d2035486f6c795472696e6974793a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef486f6c795472696e6974793a20617070726f76652066726f6d20746865207a65726f2061646472657373486f6c795472696e6974793a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e486f6c795472696e6974793a20506f6f6c2061646472657373206973207a65726f2e486f6c795472696e6974793a206c697175696469747952656d6f76654665652073686f756c6420626520696e2031202d203130486f6c795472696e6974793a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e486f6c795472696e6974793a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f486f6c795472696e6974793a20617070726f766520746f20746865207a65726f2061646472657373486f6c795472696e6974793a20596f752068617665206e6f7420656e6f75676820486f6c795472696e69747920746f20486f6c795472696e6974793a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d203235303030653945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f486f6c795472696e6974793a205061697220746f6b656e2061646472657373206973207a65726f2ea2646970667358221220a98cb20c9ec1f0bcb5080ca413b3d471fd4bf1a088df98c97c7064c48673175064736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000001c6bf52634000

-----Decoded View---------------
Arg [0] : uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : initialRewardLockAmount (uint256): 500000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000001c6bf52634000


Deployed Bytecode Sourcemap

21668:28354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27673:390;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27673:390:0;;:::i;:::-;;25644:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26556:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45424:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25921:95;;;;;;;;;;;;;:::i;22422:26::-;;;;;;;;;;;;;:::i;46661:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46661:263:0;;:::i;26725:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26725:313:0;;;;;;;;;;;;;;;;;:::i;47974:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47974:328:0;;:::i;28515:266::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28515:266:0;;:::i;48849:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48849:183:0;;:::i;25830:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27046:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27046:218:0;;;;;;;;:::i;22616:26::-;;;;;;;;;;;;;:::i;28071:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28071:436:0;;;;;;;;;:::i;46936:489::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46936:489:0;;:::i;22922:33::-;;;;;;;;;;;;;:::i;22962:26::-;;;;;;;;;;;;;:::i;21791:52::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21791:52:0;;;;;;;;;;;;;;46151:239;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46151:239:0;;:::i;45181:116::-;;;;;;;;;;;;;:::i;36510:1259::-;;;;;;;;;;;;;:::i;26024:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26024:198:0;-1:-1:-1;;;;;26024:198:0;;:::i;16789:148::-;;;;;;;;;;;;;:::i;22683:39::-;;;;;;;;;;;;;:::i;45658:93::-;;;;;;;;;;;;;:::i;22729:45::-;;;;;;;;;;;;;:::i;22199:30::-;;;;;;;;;;;;;:::i;16147:79::-;;;;;;;;;;;;;:::i;44321:162::-;;;;;;;;;;;;;:::i;25735:87::-;;;;;;;;;;;;;:::i;22578:31::-;;;;;;;;;;;;;:::i;44491:560::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22649:27;;;;;;;;;;;;;:::i;49044:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49044:174:0;;;;:::i;49905:114::-;;;;;;;;;;;;;:::i;27272:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27272:269:0;;;;;;;;:::i;22118:28::-;;;;;;;;;;;;;:::i;26230:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26230:167:0;;;;;;;;:::i;48636:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48636:201:0;;:::i;45539:107::-;;;;;;;;;;;;;:::i;22781:43::-;;;;;;;;;;;;;:::i;45063:106::-;;;;;;;;;;;;;:::i;27549:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27549:110:0;-1:-1:-1;;;;;27549:110:0;;:::i;46402:247::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46402:247:0;;:::i;49230:667::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49230:667:0;;;;;;;;;;:::i;47749:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47749:213:0;;:::i;26405:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26405:143:0;;;;;;;;;;:::i;22153:39::-;;;;;;;;;;;;;:::i;45305:107::-;;;;;;;;;;;;;:::i;24475:24::-;;;;;;;;;;;;;:::i;45763:101::-;;;;;;;;;;;;;:::i;48314:310::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48314:310:0;;:::i;24506:20::-;;;;;;;;;;;;;:::i;47437:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47437:300:0;;:::i;28789:668::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28789:668:0;-1:-1:-1;;;;;28789:668:0;;:::i;17092:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17092:244:0;-1:-1:-1;;;;;17092:244:0;;:::i;45876:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45876:263:0;;:::i;29465:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29465:491:0;-1:-1:-1;;;;;29465:491:0;;:::i;22390:25::-;;;;;;;;;;;;;:::i;27673:390::-;27725:14;27742:12;:10;:12::i;:::-;-1:-1:-1;;;;;27774:19:0;;;;;;:11;:19;;;;;;27725:29;;-1:-1:-1;27774:19:0;;27773:20;27765:90;;;;-1:-1:-1;;;27765:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27867:15;27891:19;27902:7;27891:10;:19::i;:::-;-1:-1:-1;;;;;;;;;27939:15:0;;;;;;:7;:15;;;;;;27866:44;;-1:-1:-1;27939:28:0;;:15;-1:-1:-1;27866:44:0;27939:19;:28::i;:::-;-1:-1:-1;;;;;27921:15:0;;;;;;:7;:15;;;;;:46;27988:7;;:20;;28000:7;27988:11;:20::i;:::-;27978:7;:30;28032:10;;:23;;28047:7;28032:14;:23::i;:::-;28019:10;:36;-1:-1:-1;;;27673:390:0:o;25644:83::-;25714:5;25707:12;;;;;;;;-1:-1:-1;;25707:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25681:13;;25707:12;;25714:5;;25707:12;;25714:5;25707:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25644:83;:::o;26556:161::-;26631:4;26648:39;26657:12;:10;:12::i;:::-;26671:7;26680:6;26648:8;:39::i;:::-;-1:-1:-1;26705:4:0;26556:161;;;;;:::o;45424:103::-;45502:17;;45424:103;:::o;25921:95::-;26001:7;;25921:95;:::o;22422:26::-;;;;:::o;46661:263::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;46762:8:::1;46747:11;:23;;46739:93;;;;-1:-1:-1::0;;;46739:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46843:12;:26:::0;;;46885:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46661:263:::0;:::o;26725:313::-;26823:4;26840:36;26850:6;26858:9;26869:6;26840:9;:36::i;:::-;26887:121;26896:6;26904:12;:10;:12::i;:::-;26918:89;26956:6;26918:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26918:19:0;;;;;;:11;:19;;;;;;26938:12;:10;:12::i;:::-;-1:-1:-1;;;;;26918:33:0;;;;;;;;;;;;-1:-1:-1;26918:33:0;;;:89;:37;:89::i;:::-;26887:8;:121::i;:::-;-1:-1:-1;27026:4:0;26725:313;;;;;:::o;47974:328::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;48096:1:::1;48074:18;:23;;:51;;;;;48123:2;48101:18;:24;;48074:51;48066:116;;;;-1:-1:-1::0;;;48066:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48193:19;:40:::0;;;48249:45:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47974:328:::0;:::o;28515:266::-;28581:7;28620;;28609;:18;;28601:86;;;;-1:-1:-1;;;28601:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28698:19;28721:10;:8;:10::i;:::-;28698:33;-1:-1:-1;28749:24:0;:7;28698:33;28749:11;:24::i;:::-;28742:31;;;28515:266;;;;:::o;48849:183::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;48935:16:::1;:34:::0;;;48985:39:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48849:183:::0;:::o;25830:83::-;25896:9;;;;25830:83;:::o;27046:218::-;27134:4;27151:83;27160:12;:10;:12::i;:::-;27174:7;27183:50;27222:10;27183:11;:25;27195:12;:10;:12::i;:::-;-1:-1:-1;;;;;27183:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27183:25:0;;;:34;;;;;;;;;;;:38;:50::i;22616:26::-;;;;:::o;28071:436::-;28161:7;28200;;28189;:18;;28181:62;;;;;-1:-1:-1;;;28181:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28259:17;28254:246;;28294:15;28318:19;28329:7;28318:10;:19::i;:::-;-1:-1:-1;28293:44:0;;-1:-1:-1;28352:14:0;;-1:-1:-1;;;;;28352:14:0;28254:246;28401:23;28432:19;28443:7;28432:10;:19::i;:::-;-1:-1:-1;28399:52:0;;-1:-1:-1;28466:22:0;;-1:-1:-1;;;;;28466:22:0;46936:489;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;47061:4:::1;47038:19;:27;;:61;;;;;47092:7;47069:19;:30;;47038:61;47030:134;;;;-1:-1:-1::0;;;47030:134:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47205:18;;47183:19;:40;47175:126;;;;-1:-1:-1::0;;;47175:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47312:20;:42:::0;;;47370:47:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46936:489:::0;:::o;22922:33::-;;;;;;;;;:::o;22962:26::-;;;;;;;;;:::o;21791:52::-;;;:::o;46151:239::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;46263:12:::1;;46257:2;:18;46253:1;:22;46243:6;:32;;46219:99;;;;-1:-1:-1::0;;;46219:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46329:7;:16:::0;;;46361:21:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46151:239:::0;:::o;45181:116::-;45266:23;;;;;-1:-1:-1;;;;;45266:23:0;;45181:116::o;36510:1259::-;24385:16;:23;;-1:-1:-1;;24385:23:0;24404:4;24385:23;;;36594:19:::1;::::0;36567:23:::1;36577:12;:10;:12::i;:::-;36567:9;:23::i;:::-;:46;;36559:107;;;;-1:-1:-1::0;;;36559:107:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36706:16;;36691:12;;:31;36685:3;:37;36677:72;;;::::0;;-1:-1:-1;;;36677:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36677:72:0;;;;;;;;;;;;;::::1;;36785:3;36770:12;:18:::0;36879:19:::1;::::0;36833:15:::1;::::0;36826:48:::1;::::0;;-1:-1:-1;;;36826:48:0;;36868:4:::1;36826:48;::::0;::::1;::::0;;;36801:22:::1;::::0;36826:82:::1;::::0;36904:3:::1;::::0;36826:73:::1;::::0;-1:-1:-1;;;;;36833:15:0;;::::1;::::0;36826:33:::1;::::0;:48;;;;;::::1;::::0;;;;;;;;;36833:15;36826:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36826:48:0;;:52:::1;:73::i;:::-;:77:::0;::::1;:82::i;:::-;36801:107;;36921:34;36940:14;36921:18;:34::i;:::-;;36966:8;;;;;;;;;-1:-1:-1::0;;;;;36966:8:0::1;-1:-1:-1::0;;;;;36966:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;37044:8:0::1;::::0;36999:24:::1;::::0;37026:28:::1;::::0;-1:-1:-1;;;;;37044:8:0::1;37026:9;:28::i;:::-;36999:55;;37065:24;37092:48;37136:3;37092:39;37113:17;;37092:16;:20;;:39;;;;:::i;:48::-;37065:75:::0;-1:-1:-1;37151:13:0::1;37167:38;:16:::0;37065:75;37167:20:::1;:38::i;:::-;37151:54;;37226:19;37249:10;:8;:10::i;:::-;37226:33:::0;-1:-1:-1;37270:13:0::1;37287:22;:5:::0;37226:33;37287:9:::1;:22::i;:::-;37270:39:::0;-1:-1:-1;37354:60:0::1;37380:33;:16:::0;37401:11;37380:20:::1;:33::i;:::-;37354:7;:21;37362:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;37354:21:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;37354:21:0;;;:25:::1;:60::i;:::-;37330:7;:21;37338:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;37330:21:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;37330:21:0;;;:84;;;;37441:8:::1;::::0;::::1;37425:26:::0;;:7:::1;:26:::0;;;;;:30;37490:11:::1;::::0;:22:::1;::::0;37506:5;37490:15:::1;:22::i;:::-;37476:11;:36:::0;37533:7:::1;::::0;:18:::1;::::0;37545:5;37533:11:::1;:18::i;:::-;37523:7;:28:::0;37572:7:::1;::::0;:18:::1;::::0;37584:5;37572:11:::1;:18::i;:::-;37562:7;:28:::0;37636:12:::1;:10;:12::i;:::-;37625:8;::::0;37608:59:::1;::::0;;;;;;;-1:-1:-1;;;;;37608:59:0;;::::1;::::0;37625:8;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;37608:59:0;;;;::::1;::::0;;::::1;37700:8;::::0;37683:46:::1;::::0;;;;;;;37719:1:::1;::::0;-1:-1:-1;;;;;37700:8:0::1;::::0;-1:-1:-1;;;;;;;;;;;37683:46:0;;;;;::::1;::::0;;::::1;37745:16;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;24431:16:0;:24;;-1:-1:-1;;24431:24:0;;;-1:-1:-1;;;;36510:1259:0:o;26024:198::-;-1:-1:-1;;;;;26114:20:0;;26090:7;26114:20;;;:11;:20;;;;;;;;26110:49;;;-1:-1:-1;;;;;;26143:16:0;;;;;;:7;:16;;;;;;26136:23;;26110:49;-1:-1:-1;;;;;26197:16:0;;;;;;:7;:16;;;;;;26177:37;;:19;:37::i;16789:148::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;16896:1:::1;16880:6:::0;;16859:40:::1;::::0;-1:-1:-1;;;;;16880:6:0;;::::1;::::0;16859:40:::1;::::0;16896:1;;16859:40:::1;16927:1;16910:19:::0;;-1:-1:-1;;;;;;16910:19:0::1;::::0;;16789:148::o;22683:39::-;;;;:::o;45658:93::-;45731:12;;45658:93;:::o;22729:45::-;;;;:::o;22199:30::-;;;-1:-1:-1;;;;;22199:30:0;;:::o;16147:79::-;16185:7;16212:6;-1:-1:-1;;;;;16212:6:0;16147:79;:::o;44321:162::-;44361:7;44382:15;44399;44418:19;:17;:19::i;:::-;44381:56;;-1:-1:-1;44381:56:0;-1:-1:-1;44455:20:0;44381:56;;44455:11;:20::i;:::-;44448:27;;;;44321:162;:::o;25735:87::-;25807:7;25800:14;;;;;;;;-1:-1:-1;;25800:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25774:13;;25800:14;;25807:7;;25800:14;;25807:7;25800:14;;;;;;;;;;;;;;;;;;;;;;;;22578:31;;;;:::o;44491:560::-;44587:7;;44623;;44540;;;;;44647:289;44671:9;:16;44667:20;;44647:289;;;44737:7;44713;:21;44721:9;44731:1;44721:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44721:12:0;44713:21;;;;;;;;;;;;;:31;;:66;;;44772:7;44748;:21;44756:9;44766:1;44756:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44756:12:0;44748:21;;;;;;;;;;;;;:31;44713:66;44709:97;;;44789:7;;44798;;44781:25;;;;;;;;;44709:97;44831:34;44843:7;:21;44851:9;44861:1;44851:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44851:12:0;44843:21;;;;;;;;;;;;;44831:7;;:11;:34::i;:::-;44821:44;;44890:34;44902:7;:21;44910:9;44920:1;44910:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44910:12:0;44902:21;;;;;;;;;;;;;44890:7;;:11;:34::i;:::-;44880:44;-1:-1:-1;44689:3:0;;44647:289;;;-1:-1:-1;44972:7:0;;44960;;:20;;:11;:20::i;:::-;44950:7;:30;44946:61;;;44990:7;;44999;;44982:25;;;;;;;;44946:61;45026:7;;-1:-1:-1;45035:7:0;-1:-1:-1;44491:560:0;;;:::o;22649:27::-;;;;:::o;49044:174::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;49124:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;49124:32:0;;::::1;::::0;;;::::1;::::0;;;49172:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49044:174:::0;:::o;49905:114::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;49963:14:::1;:21:::0;;-1:-1:-1;;49963:21:0::1;::::0;::::1;::::0;;49995:16:::1;::::0;::::1;::::0;49963:21;;49995:16:::1;49905:114::o:0;27272:269::-;27365:4;27382:129;27391:12;:10;:12::i;:::-;27405:7;27414:96;27453:15;27414:96;;;;;;;;;;;;;;;;;:11;:25;27426:12;:10;:12::i;:::-;-1:-1:-1;;;;;27414:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27414:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22118:28::-;;;-1:-1:-1;;;;;22118:28:0;;:::o;26230:167::-;26308:4;26325:42;26335:12;:10;:12::i;:::-;26349:9;26360:6;26325:9;:42::i;48636:201::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;48728:19:::1;:40:::0;;;48784:45:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48636:201:::0;:::o;45539:107::-;45619:19;;45539:107;:::o;22781:43::-;;;;:::o;45063:106::-;45143:18;;-1:-1:-1;;;;;45143:18:0;45063:106;:::o;27549:110::-;-1:-1:-1;;;;;27631:20:0;27607:4;27631:20;;;:11;:20;;;;;;;;;27549:110::o;46402:247::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;46517:12:::1;;46511:2;:18;46507:1;:22;46496:7;:33;;46472:101;;;;-1:-1:-1::0;;;46472:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46584:8;:18:::0;;;46618:23:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46402:247:::0;:::o;49230:667::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49341:25:0;::::1;49333:72;;;;-1:-1:-1::0;;;49333:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;49424:30:0;::::1;49416:83;;;;-1:-1:-1::0;;;49416:83:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;49518:33:0;::::1;49546:4;49518:33;;49510:91;;;;-1:-1:-1::0;;;49510:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49640:23;::::0;-1:-1:-1;;;;;49620:43:0;;::::1;49640:23:::0;;;::::1;;49620:43;;49612:111;;;;-1:-1:-1::0;;;49612:111:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49744:18;:32:::0;;-1:-1:-1;;;;;;49744:32:0::1;-1:-1:-1::0;;;;;49744:32:0;;::::1;::::0;;;::::1;::::0;;;49787:23:::1;:42:::0;;-1:-1:-1;;;;;;49787:42:0::1;::::0;;;::::1;::::0;;::::1;;::::0;;49855:34:::1;::::0;::::1;::::0;-1:-1:-1;;49855:34:0::1;49230:667:::0;;:::o;47749:213::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;47845:21:::1;:44:::0;;;47905:49:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47749:213:::0;:::o;26405:143::-;-1:-1:-1;;;;;26513:18:0;;;26486:7;26513:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26405:143::o;22153:39::-;;;;:::o;45305:107::-;45385:19;;45305:107;:::o;24475:24::-;;;-1:-1:-1;;;;;24475:24:0;;:::o;45763:101::-;45840:16;;45763:101;:::o;48314:310::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;48430:1:::1;48410:16;:21;;:47;;;;;48455:2;48435:16;:22;;48410:47;48402:110;;;;-1:-1:-1::0;;;48402:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48523:17;:36:::0;;;48575:41:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48314:310:::0;:::o;24506:20::-;;;-1:-1:-1;;;;;24506:20:0;;:::o;47437:300::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;47556:3:::1;47535:17;:24;;47527:94;;;;-1:-1:-1::0;;;47527:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47632:18;:38:::0;;;47686:43:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47437:300:::0;:::o;28789:668::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;28881:42:::1;-1:-1:-1::0;;;;;28870:53:0;::::1;;;28862:113;;;;-1:-1:-1::0;;;28862:113:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;28994:24:0;::::1;29013:4;28994:24;;28986:83;;;;-1:-1:-1::0;;;28986:83:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29099:13;::::0;-1:-1:-1;;;;;29088:24:0;;::::1;29099:13:::0;::::1;29088:24;;29080:84;;;;-1:-1:-1::0;;;29080:84:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29184:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29183:21;29175:74;;;;-1:-1:-1::0;;;29175:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29273:16:0;::::1;29292:1;29273:16:::0;;;:7:::1;:16;::::0;;;;;:20;29270:108:::1;;-1:-1:-1::0;;;;;29349:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;29329:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;29310:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;29270:108:::1;-1:-1:-1::0;;;;;29388:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;29388:27:0::1;29411:4;29388:27:::0;;::::1;::::0;;;29426:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;29426:23:0::1;::::0;;::::1;::::0;;28789:668::o;17092:244::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17181:22:0;::::1;17173:73;;;;-1:-1:-1::0;;;17173:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17283:6;::::0;;17262:38:::1;::::0;-1:-1:-1;;;;;17262:38:0;;::::1;::::0;17283:6;::::1;::::0;17262:38:::1;::::0;::::1;17311:6;:17:::0;;-1:-1:-1;;;;;;17311:17:0::1;-1:-1:-1::0;;;;;17311:17:0;;;::::1;::::0;;;::::1;::::0;;17092:244::o;45876:263::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;45997:1:::1;45982:11;:16;;45954:93;;;;-1:-1:-1::0;;;45954:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46058:12;:26:::0;;;46100:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;45876:263:::0;:::o;29465:491::-;16369:12;:10;:12::i;:::-;16359:6;;-1:-1:-1;;;;;16359:6:0;;;:22;;;16351:67;;;;;-1:-1:-1;;;16351:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16351:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29546:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29538:73;;;;-1:-1:-1::0;;;29538:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29627:9;29622:327;29646:9;:16:::0;29642:20;::::1;29622:327;;;29704:7;-1:-1:-1::0;;;;;29688:23:0::1;:9;29698:1;29688:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;29688:12:0::1;:23;29684:254;;;29747:9;29757:16:::0;;-1:-1:-1;;29757:20:0;;;29747:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;29732:9:::1;:12:::0;;-1:-1:-1;;;;;29747:31:0;;::::1;::::0;29742:1;;29732:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;29732:46:0::1;-1:-1:-1::0;;;;;29732:46:0;;::::1;;::::0;;29797:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;29836:11:::1;:20:::0;;;;:28;;-1:-1:-1;;29836:28:0::1;::::0;;29883:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;29883:15:0;;;;;-1:-1:-1;;;;;;29883:15:0::1;::::0;;;;;29917:5:::1;;29684:254;29664:3;;29622:327;;;;29465:491:::0;:::o;22390:25::-;;;;:::o;4984:136::-;5042:7;5069:43;5073:1;5076;5069:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5062:50;4984:136;-1:-1:-1;;;4984:136:0:o;5874:471::-;5932:7;6177:6;6173:47;;-1:-1:-1;6207:1:0;6200:8;;6173:47;6244:5;;;6248:1;6244;:5;:1;6268:5;;;;;:10;6260:56;;;;-1:-1:-1;;;6260:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6821:132;6879:7;6906:39;6910:1;6913;6906:39;;;;;;;;;;;;;;;;;:3;:39::i;605:106::-;693:10;605:106;:::o;42989:482::-;43048:7;43057;43066;43075;43084;43093;43114:23;43139:12;43153:13;43170:53;43182:7;43191;;43200:8;;43210:12;;43170:11;:53::i;:::-;43113:110;;;;;;43234:19;43257:10;:8;:10::i;:::-;43234:33;;43279:15;43296:23;43321:12;43337:46;43349:7;43358:4;43364:5;43371:11;43337;:46::i;:::-;43278:105;;-1:-1:-1;43278:105:0;-1:-1:-1;43278:105:0;-1:-1:-1;43434:15:0;;-1:-1:-1;43451:4:0;;-1:-1:-1;43457:5:0;;-1:-1:-1;;;;;42989:482:0;;;;;;;:::o;4520:181::-;4578:7;4610:5;;;4634:6;;;;4626:46;;;;;-1:-1:-1;;;4626:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;29964:349;-1:-1:-1;;;;;30057:19:0;;30049:74;;;;-1:-1:-1;;;30049:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30142:21:0;;30134:74;;;;-1:-1:-1;;;30134:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30221:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30273:32;;;;;;;;;;;;;;;;;29964:349;;;:::o;30321:2000::-;-1:-1:-1;;;;;30418:20:0;;30410:76;;;;-1:-1:-1;;;30410:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30505:23:0;;30497:77;;;;-1:-1:-1;;;30497:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30602:1;30593:6;:10;30585:77;;;;-1:-1:-1;;;30585:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30696:7;:5;:7::i;:::-;-1:-1:-1;;;;;30686:17:0;:6;-1:-1:-1;;;;;30686:17:0;;;:41;;;;;30720:7;:5;:7::i;:::-;-1:-1:-1;;;;;30707:20:0;:9;-1:-1:-1;;;;;30707:20:0;;;30686:41;:62;;;;-1:-1:-1;30732:16:0;;;;30731:17;30686:62;30683:370;;;30783:12;;30773:6;:22;;30765:88;;;;-1:-1:-1;;;30765:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30888:18;;-1:-1:-1;;;;;30888:18:0;30872:12;:10;:12::i;:::-;-1:-1:-1;;;;;30872:34:0;;:79;;;;30934:16;-1:-1:-1;;;;;30910:41:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30910:41:0;;30872:79;30871:100;;;;-1:-1:-1;30957:14:0;;;;;;;30956:15;30871:100;30868:173;;;30990:51;;-1:-1:-1;;;30990:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31077:16;;;;31073:624;;31110:28;31141:24;31159:4;31141:9;:24::i;:::-;31231:20;;31110:55;;-1:-1:-1;31207:44:0;;;;;;;31288:72;;-1:-1:-1;31342:18:0;;-1:-1:-1;;;;;31342:18:0;31328:10;:32;;31288:72;:114;;;;-1:-1:-1;31381:21:0;;;;;;;31288:114;31266:420;;;31467:16;-1:-1:-1;;;;;31467:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31467:23:0;31440;;;;;-1:-1:-1;;;;;31440:23:0;;;:50;;;31437:233;;;31513:42;31534:20;31513;:42::i;:::-;31437:233;;;31624:23;;31600:70;;31624:23;;;-1:-1:-1;;;;;31624:23:0;31649:20;31600:23;:70::i;:::-;31073:624;;;-1:-1:-1;;;;;31721:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;31745:22:0;;;;;;:11;:22;;;;;;;;31744:23;31721:46;31717:597;;;31784:48;31806:6;31814:9;31825:6;31784:21;:48::i;:::-;31717:597;;;-1:-1:-1;;;;;31855:19:0;;;;;;:11;:19;;;;;;;;31854:20;:46;;;;-1:-1:-1;;;;;;31878:22:0;;;;;;:11;:22;;;;;;;;31854:46;31850:464;;;31917:46;31937:6;31945:9;31956:6;31917:19;:46::i;31850:464::-;-1:-1:-1;;;;;31986:19:0;;;;;;:11;:19;;;;;;;;31985:20;:47;;;;-1:-1:-1;;;;;;32010:22:0;;;;;;:11;:22;;;;;;;;32009:23;31985:47;31981:333;;;32049:44;32067:6;32075:9;32086:6;32049:17;:44::i;31981:333::-;-1:-1:-1;;;;;32115:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;32138:22:0;;;;;;:11;:22;;;;;;;;32115:45;32111:203;;;32177:48;32199:6;32207:9;32218:6;32177:21;:48::i;32111:203::-;32258:44;32276:6;32284:9;32295:6;32258:17;:44::i;:::-;30321:2000;;;:::o;5423:192::-;5509:7;5545:12;5537:6;;;;5529:29;;;;-1:-1:-1;;;5529:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5581:5:0;;;5423:192::o;37781:452::-;37877:15;;37870:68;;;-1:-1:-1;;;37870:68:0;;-1:-1:-1;;;;;37910:16:0;37870:68;;;;;;;;;;;;;;-1:-1:-1;;37877:15:0;;;;;37870:31;;:68;;;;;;;;;;;;;;;-1:-1:-1;37877:15:0;37870:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38167:8:0;;37963:262;;;-1:-1:-1;;;37963:262:0;;38068:4;37963:262;;;;;;;;;;-1:-1:-1;37963:262:0;;;;;;;;;;;;-1:-1:-1;;;;;38167:8:0;;;37963:262;;;;38195:15;37963:262;;;;;;:16;:78;;;;;;:262;;;;;37870:68;;37963:262;;;;;;;;;;;:78;:262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37963:262:0;;37781:452;-1:-1:-1;;37781:452:0:o;7449:278::-;7535:7;7570:12;7563:5;7555:28;;;;-1:-1:-1;;;7555:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594:9;7610:1;7606;:5;;;;;;;7449:278;-1:-1:-1;;;;;7449:278:0:o;43479:417::-;43593:7;;;;43646:46;43689:1;43675:15;;43670:2;:21;43646:19;:7;43658:6;43646:11;:19::i;:46::-;43631:61;-1:-1:-1;43703:16:0;43722:47;43766:1;43752:15;;43747:2;:21;43722:20;:7;43734;43722:11;:20::i;:47::-;43703:66;-1:-1:-1;43780:23:0;43806:31;43703:66;43806:17;:7;43818:4;43806:11;:17::i;:::-;:21;;:31::i;:::-;43780:57;43873:4;;-1:-1:-1;43879:8:0;;-1:-1:-1;43479:417:0;;-1:-1:-1;;;;;;43479:417:0:o;43904:409::-;44014:7;;;;44070:24;:7;44082:11;44070;:24::i;:::-;44052:42;-1:-1:-1;44105:12:0;44120:21;:4;44129:11;44120:8;:21::i;:::-;44105:36;-1:-1:-1;44152:13:0;44168:22;:5;44178:11;44168:9;:22::i;:::-;44152:38;-1:-1:-1;44201:23:0;44227:28;44152:38;44227:17;:7;44239:4;44227:11;:17::i;:28::-;44274:7;;;;-1:-1:-1;44300:4:0;;-1:-1:-1;43904:409:0;;-1:-1:-1;;;;;;;43904:409:0:o;32374:1170::-;24385:16;:23;;-1:-1:-1;;24385:23:0;24404:4;24385:23;;;32586:18:::1;::::0;24385:16;;32561:44:::1;::::0;:20;;:24:::1;:44::i;:::-;32537:68:::0;-1:-1:-1;32616:12:0::1;32631:20;32537:68:::0;32649:1:::1;32631:17;:20::i;:::-;32616:35:::0;-1:-1:-1;32662:17:0::1;32682:23;:13:::0;32616:35;32682:17:::1;:23::i;:::-;32662:43:::0;-1:-1:-1;33008:21:0::1;33074:22;33091:4:::0;33074:16:::1;:22::i;:::-;33165:18;33186:41;:21;33212:14:::0;33186:25:::1;:41::i;:::-;33165:62;;33277:41;33296:9;33307:10;33277:18;:41::i;:::-;33359:16;-1:-1:-1::0;;;;;33359:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;33359:23:0;33344:68:::1;::::0;;;;;33359:23:::1;33344:68:::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;33344:68:0;;::::1;::::0;::::1;::::0;;;;;;;::::1;33433:55;33451:4;33458:9;33469:18;;33433:9;:55::i;:::-;33509:27;:25;:27::i;:::-;-1:-1:-1::0;;24431:16:0;:24;;-1:-1:-1;;24431:24:0;;;-1:-1:-1;;;;32374:1170:0:o;34695:1110::-;24385:16;:23;;-1:-1:-1;;24385:23:0;24404:4;24385:23;;;34936:18:::1;::::0;24385:16;;34911:44:::1;::::0;:20;;:24:::1;:44::i;:::-;34887:68:::0;-1:-1:-1;34966:12:0::1;34981:20;34887:68:::0;34999:1:::1;34981:17;:20::i;:::-;34966:35:::0;-1:-1:-1;35012:17:0::1;35032:23;:13:::0;34966:35;35032:17:::1;:23::i;:::-;35109:6;::::0;35012:43;;-1:-1:-1;35076:47:0::1;::::0;35094:4:::1;::::0;-1:-1:-1;;;;;35109:6:0::1;35118:4:::0;35076:9:::1;:47::i;:::-;35144:31;35185:16;-1:-1:-1::0;;;;;35178:34:0::1;;35221:4;35178:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;35178:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35178:49:0;35286:6:::1;::::0;:41:::1;::::0;;-1:-1:-1;;;35286:41:0;;-1:-1:-1;;;;;35286:41:0;;::::1;;::::0;::::1;::::0;;;;;;;;;35178:49;;-1:-1:-1;35286:6:0;::::1;::::0;:17:::1;::::0;:41;;;;;:6:::1;::::0;:41;;;;;;;;:6;;:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35348:27;35378:78;35432:23;35385:16;-1:-1:-1::0;;;;;35378:34:0::1;;35421:4;35378:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;35378:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35378:49:0;;:53:::1;:78::i;:::-;35348:108;;35506:71;35528:16;35546:9;35557:19;35506:21;:71::i;:::-;35603:70;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;35603:70:0;::::1;::::0;::::1;::::0;;;;;;;;::::1;35694:55;35712:4;35719:9;35730:18;;35694:9;:55::i;:::-;35770:27;:25;:27::i;:::-;-1:-1:-1::0;;24431:16:0;:24;;-1:-1:-1;;24431:24:0;;;-1:-1:-1;;;;;34695:1110:0:o;40777:945::-;40879:19;40902:10;:8;:10::i;:::-;40879:33;;40924:15;40941:23;40966:12;40980:23;41005:12;41019:13;41036:19;41047:7;41036:10;:19::i;:::-;40923:132;;;;;;;;;;;;41066:13;41083:22;41093:11;41083:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;41134:15:0;;;;;;:7;:15;;;;;;41066:39;;-1:-1:-1;41134:28:0;;41154:7;41134:19;:28::i;:::-;-1:-1:-1;;;;;41116:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41191:7;:15;;;;:28;;41211:7;41191:19;:28::i;:::-;-1:-1:-1;;;;;41173:15:0;;;;;;:7;:15;;;;;:46;41233:16;;;;41230:485;;;-1:-1:-1;;;;;41287:18:0;;;;;;:7;:18;;;;;;:31;;41310:7;41287:22;:31::i;:::-;-1:-1:-1;;;;;41266:18:0;;;;;;;:7;:18;;;;;;;;;:52;;;;41338:36;;;;;;;41266:18;;41338:36;;;;-1:-1:-1;;;;;;;;;;;41338:36:0;;;;;;;;41230:485;;;-1:-1:-1;;;;;41428:18:0;;;;;;:7;:18;;;;;;:39;;41451:15;41428:22;:39::i;:::-;-1:-1:-1;;;;;41407:18:0;;;;;;:7;:18;;;;;;:60;;;;41526:4;41510:22;;;;:33;;41537:5;41510:26;:33::i;:::-;41501:4;41485:22;;;;:7;:22;;;;;:58;41558:23;41570:4;41576;41558:11;:23::i;:::-;41601:38;;;;;;;;41626:4;;-1:-1:-1;;;;;41601:38:0;;;-1:-1:-1;;;;;;;;;;;41601:38:0;;;;;;;;41676:9;-1:-1:-1;;;;;41659:44:0;41668:6;-1:-1:-1;;;;;41659:44:0;-1:-1:-1;;;;;;;;;;;41687:15:0;41659:44;;;;;;;;;;;;;;;;;;41230:485;40777:945;;;;;;;;;;;:::o;39744:1025::-;39844:19;39867:10;:8;:10::i;:::-;39844:33;;39889:15;39906:23;39931:12;39945:23;39970:12;39984:13;40001:19;40012:7;40001:10;:19::i;:::-;39888:132;;;;;;;;;;;;40031:13;40048:22;40058:11;40048:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;40099:15:0;;;;;;:7;:15;;;;;;40031:39;;-1:-1:-1;40099:28:0;;40119:7;40099:19;:28::i;:::-;-1:-1:-1;;;;;40081:15:0;;;;;;:7;:15;;;;;:46;40141:16;;;;40138:624;;;-1:-1:-1;;;;;40195:18:0;;;;;;:7;:18;;;;;;:31;;40218:7;40195:22;:31::i;:::-;-1:-1:-1;;;;;40174:18:0;;;;;;:7;:18;;;;;;;;:52;;;;40262:7;:18;;;;:31;;40285:7;40262:22;:31::i;40138:624::-;-1:-1:-1;;;;;40403:18:0;;;;;;:7;:18;;;;;;:39;;40426:15;40403:22;:39::i;:::-;-1:-1:-1;;;;;40382:18:0;;;;;;:7;:18;;;;;;;;:60;;;;40478:7;:18;;;;:39;;40501:15;40478:22;:39::i;38855:881::-;38953:19;38976:10;:8;:10::i;:::-;38953:33;;38998:15;39015:23;39040:12;39054:23;39079:12;39093:13;39110:19;39121:7;39110:10;:19::i;:::-;38997:132;;;;;;;;;;;;39140:13;39157:22;39167:11;39157:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;39208:15:0;;;;;;:7;:15;;;;;;39140:39;;-1:-1:-1;39208:28:0;;39228:7;39208:19;:28::i;41730:1096::-;41832:19;41855:10;:8;:10::i;:::-;41832:33;;41877:15;41894:23;41919:12;41933:23;41958:12;41972:13;41989:19;42000:7;41989:10;:19::i;:::-;41876:132;;;;;;;;;;;;42019:13;42036:22;42046:11;42036:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;42087:15:0;;;;;;:7;:15;;;;;;42019:39;;-1:-1:-1;42087:28:0;;42107:7;42087:19;:28::i;:::-;-1:-1:-1;;;;;42069:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42144:7;:15;;;;:28;;42164:7;42144:19;:28::i;33556:592::-;33706:16;;;33720:1;33706:16;;;33682:21;33706:16;;;;;33682:21;33706:16;;;;;;;;;;-1:-1:-1;33706:16:0;33682:40;;33751:4;33733;33738:1;33733:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;33733:23:0;;;-1:-1:-1;;;;;33733:23:0;;;;;33777:16;-1:-1:-1;;;;;33777:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33777:23:0;33767:7;;:4;;33772:1;;33767:7;;;;;;;;;;;:33;-1:-1:-1;;;;;33767:33:0;;;-1:-1:-1;;;;;33767:33:0;;;;;33813:63;33830:4;33845:16;33864:11;33813:8;:63::i;:::-;33915:16;-1:-1:-1;;;;;33915:67:0;;33997:11;34023:1;34067:4;34094;34114:15;33915:225;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33915:225:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33556:592;;:::o;34156:527::-;34310:63;34327:4;34342:16;34361:11;34310:8;:63::i;:::-;34416:259;;;-1:-1:-1;;;34416:259:0;;34489:4;34416:259;;;;;;;;;;;;34535:1;34416:259;;;;;;;;;;;;;;34649:15;34416:259;;;;;;-1:-1:-1;;;;;34416:16:0;:32;;;;34456:9;;34416:259;;;;;;;;;;;;;;;34456:9;34416:32;:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;34156:527:0:o;38241:606::-;38352:24;;38333:13;;38297:23;;38323:54;;:24;;-1:-1:-1;;;;;38333:13:0;38323:9;:24::i;:54::-;38297:80;;38409:21;;38391:15;:39;38388:452;;;38447:23;38473:43;38493:15;38510:5;38473:19;:43::i;:::-;38569:18;;-1:-1:-1;;;;;38569:18:0;38561:27;;;;:7;:27;;;;;;38447:69;;-1:-1:-1;38561:48:0;;38447:69;38561:31;:48::i;:::-;38539:18;;-1:-1:-1;;;;;38539:18:0;;;38531:27;;;;:7;:27;;;;;;:78;;;;38657:13;;;;;38649:22;;;;:43;;38676:15;38649:26;:43::i;:::-;38632:13;;;-1:-1:-1;;;;;38632:13:0;;;38624:22;;;;:7;:22;;;;;;;;;:68;;;;38736:18;;38721:13;;38712:60;;;;;;;38736:18;;;;38721:13;;;-1:-1:-1;;;;;;;;;;;38712:60:0;;;;;;;;;;38802:18;;;;;;;;;-1:-1:-1;;;;;38802:18:0;-1:-1:-1;;;;;38787:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38388:452;38241:606;:::o;35813:689::-;36002:63;36019:4;36034:16;36053:11;36002:8;:63::i;:::-;36083:16;-1:-1:-1;;;;;36076:32:0;;36117:16;36136:15;36076:76;;;;;;;;;;;;;-1:-1:-1;;;;;36076:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36195:299:0;;;-1:-1:-1;;;36195:299:0;;36247:4;36195:299;;;;;;-1:-1:-1;;;;;36195:299:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;36195:299:0;;;;;;;;;;;;;;;;;;;36468:15;36195:299;;;;;;:16;:29;;;;;;:299;;;;;;;;;;;;;;;;;:29;:299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35813:689:0:o;42834:147::-;42912:7;;:17;;42924:4;42912:11;:17::i;:::-;42902:7;:27;42953:10;;:20;;42968:4;42953:14;:20::i;:::-;42940:10;:33;-1:-1:-1;;42834:147:0:o

Swarm Source

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