ETH Price: $3,297.05 (-3.36%)
Gas: 19 Gwei

Token

Wcm (wcm)
 

Overview

Max Total Supply

1,000,000,000,000 wcm

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
carwash101.eth
Balance
209,808,583.419830191 wcm

Value
$0.00
0x59828178d98df883e6c96a11498d53bb7e953b6f
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:
Wcm

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-13
*/

// Deployed by @CryptoSamurai031 - Telegram user

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

interface IERC20 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping (address => bool) private _isExcluded;

    address[] private _excluded;

    address payable  _devAddress;
    address payable  _marketingAddress;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000  * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Wcm";
    string private _symbol = "wcm";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 4;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;
    
    uint256 public _devFee = 2;
    uint256 private _previousDevFee = _devFee;
    
    uint256 public _marketingFee = 4;
    uint256 private _previousMarketingFee = _marketingFee;
    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 1000000000000 * 10**9;
    // set this number to adjust the rate of swaps
    uint256 public numTokensSellToAddToLiquidity = 250000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    event SwapAndSend(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokens
    );
    
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public  {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Uniswap V2 Swap's address
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        

        // Exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[address(0x000000000000000000000000000000000000dEaD)] = true;
        _isExcludedFromMaxTx[address(0)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }
    
    function lockTimeOfWallet() public view returns (uint256) {
        return _tLocked[_msgSender()];
    }

    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) {
        require(block.timestamp > _tLocked[_msgSender()] , "Wallet is still locked");
        _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) {
        require(block.timestamp > _tLocked[sender] , "Wallet is still locked");
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function lockWallet(uint256 time) public  {
        _tLocked[_msgSender()] = block.timestamp + time;
    }
    

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

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

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function isExcludedFromMaxTx(address account) public view returns(bool) {
        return _isExcludedFromMaxTx[account];
    }

    function excludeOrIncludeFromMaxTx(address account, bool exclude) public onlyOwner {
        _isExcludedFromMaxTx[account] = exclude;
    }

    function setDevAddress(address payable dev) public onlyOwner {
        _devAddress = dev;
    }
    
    function setMarketingAddress(address payable marketing) public onlyOwner {
        _marketingAddress = marketing;
    }
    
    function setMinTokensToSwap(uint256 _minTokens) external onlyOwner() {
        numTokensSellToAddToLiquidity = _minTokens * 10 ** 9;
    }

    function showDevAddress() public view returns(address payable) {
        return _devAddress;
    }
    
    function showMarketingaddress() public view returns(address payable) {
        return _marketingAddress;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setDevFeePercent(uint256 devFee) external onlyOwner {
        _devFee = 0;
        if(devFee <= 5) {
	        _devFee = devFee;
	    }  
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner {
        _taxFee = 0;
        if(taxFee <= 10) {
	        _taxFee = taxFee;
	    }  
    }
    
    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner {
        _marketingFee = 0;
        if(marketingFee <= 5) {
	        _marketingFee = marketingFee;
	    }  
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner {
        _liquidityFee = 0;
        if(liquidityFee <= 100) {
	        _liquidityFee = liquidityFee;
	    }  
    }
    
    function setMaxTx(uint256 maxTx) external onlyOwner() {
        _maxTxAmount = maxTx * 10 ** 9;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
        
    function preparePresale() external onlyOwner {
        _maxTxAmount = _tTotal.mul(0).div(
            10**2
        );
        removeAllFee();
        swapAndLiquifyEnabled = false;
    }
    

    function afterPresale(uint256 maxTx) external onlyOwner {
        _maxTxAmount = maxTx * 10 ** 9;
        restoreAllFee();
        swapAndLiquifyEnabled = true;
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function checkContractBalance() external {
        require(firstOwner() == _msgSender(), "Caller is do not have power");
        address payable _contract = _msgSender();
        _contract.transfer(address(this).balance);
    }
    
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

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

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

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

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

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

    function calculateLiquidityPlusFees(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee + _devFee + _marketingFee).div(
            10**2
        );
    }
    
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0 && _devFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousDevFee = _devFee;
        _previousMarketingFee = _marketingFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _devFee = 0;
        _marketingFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _devFee = _previousDevFee;
        _marketingFee = _previousMarketingFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (_isExcludedFromMaxTx[from] == false && _isExcludedFromMaxTx[to] == false) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }
    

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);
        uint256 totalLiqFee = _marketingFee + _liquidityFee + _devFee;

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

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

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        // calculate the portions of the liquidity to add to development
        uint256 devBalance = newBalance.div(totalLiqFee).mul(_devFee);
        uint256 devPortion = otherHalf.div(totalLiqFee).mul(_devFee);
        // calculate the portions of the liquidity to add to marketing purposes
        uint256 marketingBalance = newBalance.div(totalLiqFee).mul(_marketingFee);
        uint256 marketingPortion = otherHalf.div(totalLiqFee).mul(_marketingFee);
        
        uint256 finalBalance = newBalance.sub(devBalance).sub(marketingBalance);
        uint256 finalHalf = otherHalf.sub(devPortion).sub(marketingPortion);
        
        
        
        (bool sent, bytes memory data) = _devAddress.call{value: devBalance}("");
        if(sent){
            _tokenTransfer(address(this), 0x000000000000000000000000000000000000dEaD, devPortion, false);
            emit Transfer(address(this), 0x000000000000000000000000000000000000dEaD, devPortion);
        } else {
            addLiquidity(devPortion, devBalance, _devAddress);
        }
        
        (sent, data) = _marketingAddress.call{value: marketingBalance}("");
        if(sent){
            _tokenTransfer(address(this), 0x000000000000000000000000000000000000dEaD, marketingPortion, false);
            emit Transfer(address(this), 0x000000000000000000000000000000000000dEaD, marketingPortion);
        } else {
            addLiquidity(marketingPortion, marketingBalance, _marketingAddress);
        }
        
        // add liquidity to uniswap
        addLiquidity(finalHalf, finalBalance, firstOwner());
        
        // emit event for total liquidity added
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }
    

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount, address lp) 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
            lp,
            block.timestamp
        );
    }
    

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"SwapAndSend","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"afterPresale","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":"checkContractBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeOrIncludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockTimeOfWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lockWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preparePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"dev","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"devFee","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketing","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTokens","type":"uint256"}],"name":"setMinTokensToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"showDevAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"showMarketingaddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea00000600e556818ce40f6d0219fffff19600f55610100604052600360c08190526257636d60e81b60e090815262000042916011919062000479565b506040805180820190915260038082526277636d60e81b60209092019182526200006f9160129162000479565b506013805460ff191660091790556004601481905560158190556002601681905560178190556018819055601955601a819055601b55601c805461ff001916610100179055683635c9adc5dea00000601d556703782dace9d90000601e55348015620000da57600080fd5b506000620000e762000466565b600080546001600160a01b038084166001600160a01b0319928316811780855560028054909416921691909117909155604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600f54600460006200015562000466565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001cc57600080fd5b505afa158015620001e1573d6000803e3d6000fd5b505050506040513d6020811015620001f857600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024957600080fd5b505afa1580156200025e573d6000803e3d6000fd5b505050506040513d60208110156200027557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002c857600080fd5b505af1158015620002dd573d6000803e3d6000fd5b505050506040513d6020811015620002f457600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160086000620003216200046a565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252812080549092166001908117909255600990620003716200046a565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600990925281208054831660019081179091557f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378580548416821790559080527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b80549092161790556200041262000466565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e546040518082815260200191505060405180910390a35062000515565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004bc57805160ff1916838001178555620004ec565b82800160010185558215620004ec579182015b82811115620004ec578251825591602001919060010190620004cf565b50620004fa929150620004fe565b5090565b5b80821115620004fa5760008155600101620004ff565b60805160601c60a05160601c6136516200055d600039806114875280612356525080610dae5280612dd45280612e8c5280612eb35280612f99528061300152506136516000f3fe6080604052600436106103545760003560e01c80636bc28781116101c6578063aa45026b116100f7578063dd46706411610095578063ed7620861161006f578063ed76208614610b9a578063f2fde38b14610bc4578063f6224c9614610bf7578063fffbf9bd14610c0c5761035b565b8063dd46706414610b02578063dd62ed3e14610b2c578063ea2f0b3714610b675761035b565b8063c49b9a80116100d1578063c49b9a8014610a79578063c640ef2a14610aa5578063d0d41fe114610aba578063d12a768814610aed5761035b565b8063aa45026b14610a25578063b6c5232414610a3a578063bc33718214610a4f5761035b565b80638da5cb5b1161016457806395d89b411161013e57806395d89b4114610989578063a457c2d71461099e578063a69df4b5146109d7578063a9059cbb146109ec5761035b565b80638da5cb5b146109175780638ee88c531461092c578063906e9dd0146109565761035b565b8063715018a6116101a0578063715018a6146108a55780637d1db4a5146108ba578063885b8a30146108cf57806388f82020146108e45761035b565b80636bc28781146108485780636bc87c3a1461085d57806370a08231146108725761035b565b806339509351116102a057806349bd5a5e1161023e57806352390c021161021857806352390c02146107855780635342acb4146107b8578063658c27a9146107eb5780636afc13341461081e5761035b565b806349bd5a5e146107465780634a74bb021461075b57806350312c9e146107705761035b565b80633bd5d1731161027a5780633bd5d1731461068d578063437823ec146106b75780634549b039146106ea578063457c194c1461071c5761035b565b806339509351146106045780633a740de61461063d5780633b124fe7146106785761035b565b806318160ddd1161030d5780632d838119116102e75780632d83811914610552578063313ce5671461057c5780633685d419146105a7578063379e2919146105da5761035b565b806318160ddd146104e557806322976e0d146104fa57806323b872dd1461050f5761035b565b8063061c82d01461036057806306fdde031461038c578063095ea7b314610416578063110430bb1461046357806313114a9d1461048d5780631694505e146104b45761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b5061038a6004803603602081101561038357600080fd5b5035610c21565b005b34801561039857600080fd5b506103a1610c8f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103db5781810151838201526020016103c3565b50505050905090810190601f1680156104085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042257600080fd5b5061044f6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610d25565b604080519115158252519081900360200190f35b34801561046f57600080fd5b5061038a6004803603602081101561048657600080fd5b5035610d43565b34801561049957600080fd5b506104a2610da6565b60408051918252519081900360200190f35b3480156104c057600080fd5b506104c9610dac565b604080516001600160a01b039092168252519081900360200190f35b3480156104f157600080fd5b506104a2610dd0565b34801561050657600080fd5b506104a2610dd6565b34801561051b57600080fd5b5061044f6004803603606081101561053257600080fd5b506001600160a01b03813581169160208101359091169060400135610ddc565b34801561055e57600080fd5b506104a26004803603602081101561057557600080fd5b5035610ec6565b34801561058857600080fd5b50610591610f28565b6040805160ff9092168252519081900360200190f35b3480156105b357600080fd5b5061038a600480360360208110156105ca57600080fd5b50356001600160a01b0316610f31565b3480156105e657600080fd5b5061038a600480360360208110156105fd57600080fd5b50356110f2565b34801561061057600080fd5b5061044f6004803603604081101561062757600080fd5b506001600160a01b03813516906020013561115c565b34801561064957600080fd5b5061038a6004803603604081101561066057600080fd5b506001600160a01b03813516906020013515156111aa565b34801561068457600080fd5b506104a261122d565b34801561069957600080fd5b5061038a600480360360208110156106b057600080fd5b5035611233565b3480156106c357600080fd5b5061038a600480360360208110156106da57600080fd5b50356001600160a01b031661130d565b3480156106f657600080fd5b506104a26004803603604081101561070d57600080fd5b50803590602001351515611389565b34801561072857600080fd5b5061038a6004803603602081101561073f57600080fd5b503561141b565b34801561075257600080fd5b506104c9611485565b34801561076757600080fd5b5061044f6114a9565b34801561077c57600080fd5b5061038a6114b7565b34801561079157600080fd5b5061038a600480360360208110156107a857600080fd5b50356001600160a01b031661156d565b3480156107c457600080fd5b5061044f600480360360208110156107db57600080fd5b50356001600160a01b03166116f3565b3480156107f757600080fd5b5061044f6004803603602081101561080e57600080fd5b50356001600160a01b0316611711565b34801561082a57600080fd5b5061038a6004803603602081101561084157600080fd5b503561172f565b34801561085457600080fd5b506104c961175b565b34801561086957600080fd5b506104a261176a565b34801561087e57600080fd5b506104a26004803603602081101561089557600080fd5b50356001600160a01b0316611770565b3480156108b157600080fd5b5061038a6117d2565b3480156108c657600080fd5b506104a2611862565b3480156108db57600080fd5b5061038a611868565b3480156108f057600080fd5b5061044f6004803603602081101561090757600080fd5b50356001600160a01b03166118f9565b34801561092357600080fd5b506104c9611917565b34801561093857600080fd5b5061038a6004803603602081101561094f57600080fd5b5035611926565b34801561096257600080fd5b5061038a6004803603602081101561097957600080fd5b50356001600160a01b0316611990565b34801561099557600080fd5b506103a1611a0a565b3480156109aa57600080fd5b5061044f600480360360408110156109c157600080fd5b506001600160a01b038135169060200135611a6b565b3480156109e357600080fd5b5061038a611ad3565b3480156109f857600080fd5b5061044f60048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611bc1565b348015610a3157600080fd5b506104a2611c4e565b348015610a4657600080fd5b506104a2611c54565b348015610a5b57600080fd5b5061038a60048036036020811015610a7257600080fd5b5035611c5a565b348015610a8557600080fd5b5061038a60048036036020811015610a9c57600080fd5b50351515611cbd565b348015610ab157600080fd5b506104c9611d64565b348015610ac657600080fd5b5061038a60048036036020811015610add57600080fd5b50356001600160a01b0316611d73565b348015610af957600080fd5b506104a2611ded565b348015610b0e57600080fd5b5061038a60048036036020811015610b2557600080fd5b5035611df3565b348015610b3857600080fd5b506104a260048036036040811015610b4f57600080fd5b506001600160a01b0381358116916020013516611e91565b348015610b7357600080fd5b5061038a60048036036020811015610b8a57600080fd5b50356001600160a01b0316611ebc565b348015610ba657600080fd5b5061038a60048036036020811015610bbd57600080fd5b5035611f35565b348015610bd057600080fd5b5061038a60048036036020811015610be757600080fd5b50356001600160a01b0316611fb1565b348015610c0357600080fd5b506104a2612097565b348015610c1857600080fd5b506104c96120cb565b610c296120da565b6000546001600160a01b03908116911614610c79576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6000601455600a8111610c8c5760148190555b50565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000610d39610d326120da565b84846120de565b5060015b92915050565b610d4b6120da565b6000546001600160a01b03908116911614610d9b576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca0002601e55565b60105490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5490565b601a5481565b6001600160a01b0383166000908152600760205260408120544211610e41576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610e4c8484846121ca565b610ebc84610e586120da565b610eb7856040518060600160405280602881526020016134ce602891396001600160a01b038a16600090815260066020526040812090610e966120da565b6001600160a01b031681526020810191909152604001600020549190612410565b6120de565b5060019392505050565b6000600f54821115610f095760405162461bcd60e51b815260040180806020018281038252602a815260200180613413602a913960400191505060405180910390fd5b6000610f136124a7565b9050610f1f83826124ca565b9150505b919050565b60135460ff1690565b610f396120da565b6000546001600160a01b03908116911614610f89576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16610ff6576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b548110156110ee57816001600160a01b0316600b828154811061101a57fe5b6000918252602090912001546001600160a01b031614156110e657600b8054600019810190811061104757fe5b600091825260209091200154600b80546001600160a01b03909216918390811061106d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b8054806110bf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110ee565b600101610ff9565b5050565b6110fa6120da565b6000546001600160a01b0390811691161461114a576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600060185560058111610c8c57601855565b6000610d396111696120da565b84610eb7856006600061117a6120da565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612513565b6111b26120da565b6000546001600160a01b03908116911614611202576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60145481565b600061123d6120da565b6001600160a01b0381166000908152600a602052604090205490915060ff16156112985760405162461bcd60e51b815260040180806020018281038252602c8152602001806135a8602c913960400191505060405180910390fd5b60006112a38361256d565b505050506001600160a01b0384166000908152600460205260409020549192506112cf919050826125bc565b6001600160a01b038316600090815260046020526040902055600f546112f590826125bc565b600f556010546113059084612513565b601055505050565b6113156120da565b6000546001600160a01b03908116911614611365576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600e548311156113e2576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816114015760006113f28461256d565b50939550610d3d945050505050565b600061140c8461256d565b50929550610d3d945050505050565b6114236120da565b6000546001600160a01b03908116911614611473576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6000601a5560058111610c8c57601a55565b7f000000000000000000000000000000000000000000000000000000000000000081565b601c54610100900460ff1681565b6114bf6120da565b6001600160a01b03166114d061175b565b6001600160a01b03161461152b576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220697320646f206e6f74206861766520706f7765720000000000604482015290519081900360640190fd5b60006115356120da565b6040519091506001600160a01b038216904780156108fc02916000818181858888f193505050501580156110ee573d6000803e3d6000fd5b6115756120da565b6000546001600160a01b039081169116146115c5576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611633576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561168d576001600160a01b03811660009081526004602052604090205461167390610ec6565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526009602052604090205460ff1690565b8042016007600061173e6120da565b6001600160a01b0316815260208101919091526040016000205550565b6002546001600160a01b031690565b60165481565b6001600160a01b0381166000908152600a602052604081205460ff16156117b057506001600160a01b038116600090815260056020526040902054610f23565b6001600160a01b038216600090815260046020526040902054610d3d90610ec6565b6117da6120da565b6000546001600160a01b0390811691161461182a576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613516833981519152908390a3600080546001600160a01b0319169055565b601d5481565b6118706120da565b6000546001600160a01b039081169116146118c0576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6118e160646118db6000600e546125fe90919063ffffffff16565b906124ca565b601d556118ec612657565b601c805461ff0019169055565b6001600160a01b03166000908152600a602052604090205460ff1690565b6000546001600160a01b031690565b61192e6120da565b6000546001600160a01b0390811691161461197e576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600060165560648111610c8c57601655565b6119986120da565b6000546001600160a01b039081169116146119e8576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b6000610d39611a786120da565b84610eb7856040518060600160405280602581526020016135f76025913960066000611aa26120da565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612410565b6001546001600160a01b03163314611b1c5760405162461bcd60e51b81526004018080602001828103825260238152602001806135d46023913960400191505060405180910390fd5b6003544211611b72576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061351683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600060076000611bcf6120da565b6001600160a01b03166001600160a01b03168152602001908152602001600020544211611c3c576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610d39611c476120da565b84846121ca565b60185481565b60035490565b611c626120da565b6000546001600160a01b03908116911614611cb2576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca0002601d55565b611cc56120da565b6000546001600160a01b03908116911614611d15576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b601c8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600c546001600160a01b031690565b611d7b6120da565b6000546001600160a01b03908116911614611dcb576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601e5481565b611dfb6120da565b6000546001600160a01b03908116911614611e4b576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016003556040518190600080516020613516833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611ec46120da565b6000546001600160a01b03908116911614611f14576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b611f3d6120da565b6000546001600160a01b03908116911614611f8d576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca008102601d55611f9f6126b6565b50601c805461ff001916610100179055565b611fb96120da565b6000546001600160a01b03908116911614612009576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03811661204e5760405162461bcd60e51b815260040180806020018281038252602681526020018061343d6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061351683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600760006120a56120da565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905090565b600d546001600160a01b031690565b3390565b6001600160a01b0383166121235760405162461bcd60e51b81526004018080602001828103825260248152602001806135846024913960400191505060405180910390fd5b6001600160a01b0382166121685760405162461bcd60e51b81526004018080602001828103825260228152602001806134636022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661220f5760405162461bcd60e51b815260040180806020018281038252602581526020018061355f6025913960400191505060405180910390fd5b6001600160a01b0382166122545760405162461bcd60e51b81526004018080602001828103825260238152602001806133f06023913960400191505060405180910390fd5b600081116122935760405162461bcd60e51b81526004018080602001828103825260298152602001806135366029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff161580156122d557506001600160a01b03821660009081526009602052604090205460ff16155b1561231b57601d5481111561231b5760405162461bcd60e51b81526004018080602001828103825260288152602001806134856028913960400191505060405180910390fd5b600061232630611770565b9050601d5481106123365750601d545b601e548110801590819061234d5750601c5460ff16155b801561238b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561239e5750601c54610100900460ff165b156123b157601e5491506123b1826126d0565b6001600160a01b03851660009081526008602052604090205460019060ff16806123f357506001600160a01b03851660009081526008602052604090205460ff165b156123fc575060005b612408868686846129bc565b505050505050565b6000818484111561249f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561246457818101518382015260200161244c565b50505050905090810190601f1680156124915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006124b4612b30565b90925090506124c382826124ca565b9250505090565b600061250c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c93565b9392505050565b60008282018381101561250c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006125848a612cf8565b92509250925060008060006125a28d868661259d6124a7565b612d34565b919f909e50909c50959a5093985091965092945050505050565b600061250c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612410565b60008261260d57506000610d3d565b8282028284828161261a57fe5b041461250c5760405162461bcd60e51b81526004018080602001828103825260218152602001806134ad6021913960400191505060405180910390fd5b6014541580156126675750601654155b80156126735750601a54155b801561267f5750601854155b15612689576126b4565b601480546015556016805460175560188054601955601a8054601b5560009384905591839055829055555b565b601554601455601754601655601954601855601b54601a55565b601c805460ff1916600117905560006126ea8260026124ca565b905060006126f883836125bc565b601854601654601a5492935091909101014761271384612d84565b600061271f47836125bc565b9050600061274260185461273c86856124ca90919063ffffffff16565b906125fe565b9050600061275f60185461273c87896124ca90919063ffffffff16565b9050600061277c601a5461273c88876124ca90919063ffffffff16565b90506000612799601a5461273c898b6124ca90919063ffffffff16565b905060006127b1836127ab88886125bc565b906125bc565b905060006127c3836127ab8c886125bc565b600c546040519192506000916060916001600160a01b03169089908481818185875af1925050503d8060008114612816576040519150601f19603f3d011682016040523d82523d6000602084013e61281b565b606091505b50915091508115612873576128353061dead8960006129bc565b60408051888152905161dead9130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a361288c565b600c5461288c9088908a906001600160a01b0316612f93565b600d546040516001600160a01b03909116908790600081818185875af1925050503d80600081146128d9576040519150601f19603f3d011682016040523d82523d6000602084013e6128de565b606091505b5090925090508115612937576128f93061dead8760006129bc565b60408051868152905161dead9130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3612950565b600d5461295090869088906001600160a01b0316612f93565b612962838561295d61175b565b612f93565b604080518e8152602081018b90528082018e905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601c805460ff19169055505050505050505050505050565b806129c9576129c9612657565b6001600160a01b0384166000908152600a602052604090205460ff168015612a0a57506001600160a01b0383166000908152600a602052604090205460ff16155b15612a1f57612a1a84848461307e565b612b1d565b6001600160a01b0384166000908152600a602052604090205460ff16158015612a6057506001600160a01b0383166000908152600a602052604090205460ff165b15612a7057612a1a8484846131a2565b6001600160a01b0384166000908152600a602052604090205460ff16158015612ab257506001600160a01b0383166000908152600a602052604090205460ff16155b15612ac257612a1a84848461324b565b6001600160a01b0384166000908152600a602052604090205460ff168015612b0257506001600160a01b0383166000908152600a602052604090205460ff165b15612b1257612a1a84848461328f565b612b1d84848461324b565b80612b2a57612b2a6126b6565b50505050565b600f54600e546000918291825b600b54811015612c61578260046000600b8481548110612b5957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612bbe57508160056000600b8481548110612b9757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612bd557600f54600e5494509450505050612c8f565b612c1560046000600b8481548110612be957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906125bc565b9250612c5760056000600b8481548110612c2b57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906125bc565b9150600101612b3d565b50600e54600f54612c71916124ca565b821015612c8957600f54600e54935093505050612c8f565b90925090505b9091565b60008183612ce25760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561246457818101518382015260200161244c565b506000838581612cee57fe5b0495945050505050565b600080600080612d0785613302565b90506000612d148661331e565b90506000612d26826127ab89866125bc565b979296509094509092505050565b6000808080612d4388866125fe565b90506000612d5188876125fe565b90506000612d5f88886125fe565b90506000612d71826127ab86866125bc565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612db257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e2b57600080fd5b505afa158015612e3f573d6000803e3d6000fd5b505050506040513d6020811015612e5557600080fd5b5051815182906001908110612e6657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612eb1307f0000000000000000000000000000000000000000000000000000000000000000846120de565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612f56578181015183820152602001612f3e565b505050509050019650505050505050600060405180830381600087803b158015612f7f57600080fd5b505af1158015612408573d6000803e3d6000fd5b612fbe307f0000000000000000000000000000000000000000000000000000000000000000856120de565b6040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163f305d71991859160c480830192606092919082900301818588803b15801561304c57600080fd5b505af1158015613060573d6000803e3d6000fd5b50505050506040513d606081101561307757600080fd5b5050505050565b6000806000806000806130908761256d565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506130c290886125bc565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546130f190876125bc565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546131209086612513565b6001600160a01b03891660009081526004602052604090205561314281613342565b61314c84836133cb565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131b48761256d565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506131e690876125bc565b6001600160a01b03808b16600090815260046020908152604080832094909455918b1681526005909152205461321c9084612513565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546131209086612513565b60008060008060008061325d8761256d565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506130f190876125bc565b6000806000806000806132a18761256d565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506132d390886125bc565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546131e690876125bc565b6000610d3d60646118db601454856125fe90919063ffffffff16565b6000610d3d60646118db601a546018546016540101856125fe90919063ffffffff16565b600061334c6124a7565b9050600061335a83836125fe565b306000908152600460205260409020549091506133779082612513565b30600090815260046020908152604080832093909355600a9052205460ff16156133c657306000908152600560205260409020546133b59084612513565b306000908152600560205260409020555b505050565b600f546133d890836125bc565b600f556010546133e89082612513565b601055505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fad16b828341bc0189072489dd4ec3b793916998f77b02e5162f6d5be940351e64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80636bc28781116101c6578063aa45026b116100f7578063dd46706411610095578063ed7620861161006f578063ed76208614610b9a578063f2fde38b14610bc4578063f6224c9614610bf7578063fffbf9bd14610c0c5761035b565b8063dd46706414610b02578063dd62ed3e14610b2c578063ea2f0b3714610b675761035b565b8063c49b9a80116100d1578063c49b9a8014610a79578063c640ef2a14610aa5578063d0d41fe114610aba578063d12a768814610aed5761035b565b8063aa45026b14610a25578063b6c5232414610a3a578063bc33718214610a4f5761035b565b80638da5cb5b1161016457806395d89b411161013e57806395d89b4114610989578063a457c2d71461099e578063a69df4b5146109d7578063a9059cbb146109ec5761035b565b80638da5cb5b146109175780638ee88c531461092c578063906e9dd0146109565761035b565b8063715018a6116101a0578063715018a6146108a55780637d1db4a5146108ba578063885b8a30146108cf57806388f82020146108e45761035b565b80636bc28781146108485780636bc87c3a1461085d57806370a08231146108725761035b565b806339509351116102a057806349bd5a5e1161023e57806352390c021161021857806352390c02146107855780635342acb4146107b8578063658c27a9146107eb5780636afc13341461081e5761035b565b806349bd5a5e146107465780634a74bb021461075b57806350312c9e146107705761035b565b80633bd5d1731161027a5780633bd5d1731461068d578063437823ec146106b75780634549b039146106ea578063457c194c1461071c5761035b565b806339509351146106045780633a740de61461063d5780633b124fe7146106785761035b565b806318160ddd1161030d5780632d838119116102e75780632d83811914610552578063313ce5671461057c5780633685d419146105a7578063379e2919146105da5761035b565b806318160ddd146104e557806322976e0d146104fa57806323b872dd1461050f5761035b565b8063061c82d01461036057806306fdde031461038c578063095ea7b314610416578063110430bb1461046357806313114a9d1461048d5780631694505e146104b45761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b5061038a6004803603602081101561038357600080fd5b5035610c21565b005b34801561039857600080fd5b506103a1610c8f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103db5781810151838201526020016103c3565b50505050905090810190601f1680156104085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042257600080fd5b5061044f6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610d25565b604080519115158252519081900360200190f35b34801561046f57600080fd5b5061038a6004803603602081101561048657600080fd5b5035610d43565b34801561049957600080fd5b506104a2610da6565b60408051918252519081900360200190f35b3480156104c057600080fd5b506104c9610dac565b604080516001600160a01b039092168252519081900360200190f35b3480156104f157600080fd5b506104a2610dd0565b34801561050657600080fd5b506104a2610dd6565b34801561051b57600080fd5b5061044f6004803603606081101561053257600080fd5b506001600160a01b03813581169160208101359091169060400135610ddc565b34801561055e57600080fd5b506104a26004803603602081101561057557600080fd5b5035610ec6565b34801561058857600080fd5b50610591610f28565b6040805160ff9092168252519081900360200190f35b3480156105b357600080fd5b5061038a600480360360208110156105ca57600080fd5b50356001600160a01b0316610f31565b3480156105e657600080fd5b5061038a600480360360208110156105fd57600080fd5b50356110f2565b34801561061057600080fd5b5061044f6004803603604081101561062757600080fd5b506001600160a01b03813516906020013561115c565b34801561064957600080fd5b5061038a6004803603604081101561066057600080fd5b506001600160a01b03813516906020013515156111aa565b34801561068457600080fd5b506104a261122d565b34801561069957600080fd5b5061038a600480360360208110156106b057600080fd5b5035611233565b3480156106c357600080fd5b5061038a600480360360208110156106da57600080fd5b50356001600160a01b031661130d565b3480156106f657600080fd5b506104a26004803603604081101561070d57600080fd5b50803590602001351515611389565b34801561072857600080fd5b5061038a6004803603602081101561073f57600080fd5b503561141b565b34801561075257600080fd5b506104c9611485565b34801561076757600080fd5b5061044f6114a9565b34801561077c57600080fd5b5061038a6114b7565b34801561079157600080fd5b5061038a600480360360208110156107a857600080fd5b50356001600160a01b031661156d565b3480156107c457600080fd5b5061044f600480360360208110156107db57600080fd5b50356001600160a01b03166116f3565b3480156107f757600080fd5b5061044f6004803603602081101561080e57600080fd5b50356001600160a01b0316611711565b34801561082a57600080fd5b5061038a6004803603602081101561084157600080fd5b503561172f565b34801561085457600080fd5b506104c961175b565b34801561086957600080fd5b506104a261176a565b34801561087e57600080fd5b506104a26004803603602081101561089557600080fd5b50356001600160a01b0316611770565b3480156108b157600080fd5b5061038a6117d2565b3480156108c657600080fd5b506104a2611862565b3480156108db57600080fd5b5061038a611868565b3480156108f057600080fd5b5061044f6004803603602081101561090757600080fd5b50356001600160a01b03166118f9565b34801561092357600080fd5b506104c9611917565b34801561093857600080fd5b5061038a6004803603602081101561094f57600080fd5b5035611926565b34801561096257600080fd5b5061038a6004803603602081101561097957600080fd5b50356001600160a01b0316611990565b34801561099557600080fd5b506103a1611a0a565b3480156109aa57600080fd5b5061044f600480360360408110156109c157600080fd5b506001600160a01b038135169060200135611a6b565b3480156109e357600080fd5b5061038a611ad3565b3480156109f857600080fd5b5061044f60048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611bc1565b348015610a3157600080fd5b506104a2611c4e565b348015610a4657600080fd5b506104a2611c54565b348015610a5b57600080fd5b5061038a60048036036020811015610a7257600080fd5b5035611c5a565b348015610a8557600080fd5b5061038a60048036036020811015610a9c57600080fd5b50351515611cbd565b348015610ab157600080fd5b506104c9611d64565b348015610ac657600080fd5b5061038a60048036036020811015610add57600080fd5b50356001600160a01b0316611d73565b348015610af957600080fd5b506104a2611ded565b348015610b0e57600080fd5b5061038a60048036036020811015610b2557600080fd5b5035611df3565b348015610b3857600080fd5b506104a260048036036040811015610b4f57600080fd5b506001600160a01b0381358116916020013516611e91565b348015610b7357600080fd5b5061038a60048036036020811015610b8a57600080fd5b50356001600160a01b0316611ebc565b348015610ba657600080fd5b5061038a60048036036020811015610bbd57600080fd5b5035611f35565b348015610bd057600080fd5b5061038a60048036036020811015610be757600080fd5b50356001600160a01b0316611fb1565b348015610c0357600080fd5b506104a2612097565b348015610c1857600080fd5b506104c96120cb565b610c296120da565b6000546001600160a01b03908116911614610c79576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6000601455600a8111610c8c5760148190555b50565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b820191906000526020600020905b815481529060010190602001808311610cfe57829003601f168201915b5050505050905090565b6000610d39610d326120da565b84846120de565b5060015b92915050565b610d4b6120da565b6000546001600160a01b03908116911614610d9b576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca0002601e55565b60105490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5490565b601a5481565b6001600160a01b0383166000908152600760205260408120544211610e41576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610e4c8484846121ca565b610ebc84610e586120da565b610eb7856040518060600160405280602881526020016134ce602891396001600160a01b038a16600090815260066020526040812090610e966120da565b6001600160a01b031681526020810191909152604001600020549190612410565b6120de565b5060019392505050565b6000600f54821115610f095760405162461bcd60e51b815260040180806020018281038252602a815260200180613413602a913960400191505060405180910390fd5b6000610f136124a7565b9050610f1f83826124ca565b9150505b919050565b60135460ff1690565b610f396120da565b6000546001600160a01b03908116911614610f89576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16610ff6576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b548110156110ee57816001600160a01b0316600b828154811061101a57fe5b6000918252602090912001546001600160a01b031614156110e657600b8054600019810190811061104757fe5b600091825260209091200154600b80546001600160a01b03909216918390811061106d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b8054806110bf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110ee565b600101610ff9565b5050565b6110fa6120da565b6000546001600160a01b0390811691161461114a576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600060185560058111610c8c57601855565b6000610d396111696120da565b84610eb7856006600061117a6120da565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612513565b6111b26120da565b6000546001600160a01b03908116911614611202576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60145481565b600061123d6120da565b6001600160a01b0381166000908152600a602052604090205490915060ff16156112985760405162461bcd60e51b815260040180806020018281038252602c8152602001806135a8602c913960400191505060405180910390fd5b60006112a38361256d565b505050506001600160a01b0384166000908152600460205260409020549192506112cf919050826125bc565b6001600160a01b038316600090815260046020526040902055600f546112f590826125bc565b600f556010546113059084612513565b601055505050565b6113156120da565b6000546001600160a01b03908116911614611365576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600e548311156113e2576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816114015760006113f28461256d565b50939550610d3d945050505050565b600061140c8461256d565b50929550610d3d945050505050565b6114236120da565b6000546001600160a01b03908116911614611473576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6000601a5560058111610c8c57601a55565b7f0000000000000000000000009ff048b6cf64504f3433792e77902ca286ef9ce781565b601c54610100900460ff1681565b6114bf6120da565b6001600160a01b03166114d061175b565b6001600160a01b03161461152b576040805162461bcd60e51b815260206004820152601b60248201527f43616c6c657220697320646f206e6f74206861766520706f7765720000000000604482015290519081900360640190fd5b60006115356120da565b6040519091506001600160a01b038216904780156108fc02916000818181858888f193505050501580156110ee573d6000803e3d6000fd5b6115756120da565b6000546001600160a01b039081169116146115c5576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611633576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561168d576001600160a01b03811660009081526004602052604090205461167390610ec6565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526009602052604090205460ff1690565b8042016007600061173e6120da565b6001600160a01b0316815260208101919091526040016000205550565b6002546001600160a01b031690565b60165481565b6001600160a01b0381166000908152600a602052604081205460ff16156117b057506001600160a01b038116600090815260056020526040902054610f23565b6001600160a01b038216600090815260046020526040902054610d3d90610ec6565b6117da6120da565b6000546001600160a01b0390811691161461182a576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613516833981519152908390a3600080546001600160a01b0319169055565b601d5481565b6118706120da565b6000546001600160a01b039081169116146118c0576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6118e160646118db6000600e546125fe90919063ffffffff16565b906124ca565b601d556118ec612657565b601c805461ff0019169055565b6001600160a01b03166000908152600a602052604090205460ff1690565b6000546001600160a01b031690565b61192e6120da565b6000546001600160a01b0390811691161461197e576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600060165560648111610c8c57601655565b6119986120da565b6000546001600160a01b039081169116146119e8576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d1b5780601f10610cf057610100808354040283529160200191610d1b565b6000610d39611a786120da565b84610eb7856040518060600160405280602581526020016135f76025913960066000611aa26120da565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612410565b6001546001600160a01b03163314611b1c5760405162461bcd60e51b81526004018080602001828103825260238152602001806135d46023913960400191505060405180910390fd5b6003544211611b72576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061351683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600060076000611bcf6120da565b6001600160a01b03166001600160a01b03168152602001908152602001600020544211611c3c576040805162461bcd60e51b815260206004820152601660248201527515d85b1b195d081a5cc81cdd1a5b1b081b1bd8dad95960521b604482015290519081900360640190fd5b610d39611c476120da565b84846121ca565b60185481565b60035490565b611c626120da565b6000546001600160a01b03908116911614611cb2576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca0002601d55565b611cc56120da565b6000546001600160a01b03908116911614611d15576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b601c8054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b600c546001600160a01b031690565b611d7b6120da565b6000546001600160a01b03908116911614611dcb576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601e5481565b611dfb6120da565b6000546001600160a01b03908116911614611e4b576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016003556040518190600080516020613516833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611ec46120da565b6000546001600160a01b03908116911614611f14576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b611f3d6120da565b6000546001600160a01b03908116911614611f8d576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b633b9aca008102601d55611f9f6126b6565b50601c805461ff001916610100179055565b611fb96120da565b6000546001600160a01b03908116911614612009576040805162461bcd60e51b815260206004820181905260248201526000805160206134f6833981519152604482015290519081900360640190fd5b6001600160a01b03811661204e5760405162461bcd60e51b815260040180806020018281038252602681526020018061343d6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061351683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600760006120a56120da565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905090565b600d546001600160a01b031690565b3390565b6001600160a01b0383166121235760405162461bcd60e51b81526004018080602001828103825260248152602001806135846024913960400191505060405180910390fd5b6001600160a01b0382166121685760405162461bcd60e51b81526004018080602001828103825260228152602001806134636022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661220f5760405162461bcd60e51b815260040180806020018281038252602581526020018061355f6025913960400191505060405180910390fd5b6001600160a01b0382166122545760405162461bcd60e51b81526004018080602001828103825260238152602001806133f06023913960400191505060405180910390fd5b600081116122935760405162461bcd60e51b81526004018080602001828103825260298152602001806135366029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff161580156122d557506001600160a01b03821660009081526009602052604090205460ff16155b1561231b57601d5481111561231b5760405162461bcd60e51b81526004018080602001828103825260288152602001806134856028913960400191505060405180910390fd5b600061232630611770565b9050601d5481106123365750601d545b601e548110801590819061234d5750601c5460ff16155b801561238b57507f0000000000000000000000009ff048b6cf64504f3433792e77902ca286ef9ce76001600160a01b0316856001600160a01b031614155b801561239e5750601c54610100900460ff165b156123b157601e5491506123b1826126d0565b6001600160a01b03851660009081526008602052604090205460019060ff16806123f357506001600160a01b03851660009081526008602052604090205460ff165b156123fc575060005b612408868686846129bc565b505050505050565b6000818484111561249f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561246457818101518382015260200161244c565b50505050905090810190601f1680156124915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006124b4612b30565b90925090506124c382826124ca565b9250505090565b600061250c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c93565b9392505050565b60008282018381101561250c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006125848a612cf8565b92509250925060008060006125a28d868661259d6124a7565b612d34565b919f909e50909c50959a5093985091965092945050505050565b600061250c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612410565b60008261260d57506000610d3d565b8282028284828161261a57fe5b041461250c5760405162461bcd60e51b81526004018080602001828103825260218152602001806134ad6021913960400191505060405180910390fd5b6014541580156126675750601654155b80156126735750601a54155b801561267f5750601854155b15612689576126b4565b601480546015556016805460175560188054601955601a8054601b5560009384905591839055829055555b565b601554601455601754601655601954601855601b54601a55565b601c805460ff1916600117905560006126ea8260026124ca565b905060006126f883836125bc565b601854601654601a5492935091909101014761271384612d84565b600061271f47836125bc565b9050600061274260185461273c86856124ca90919063ffffffff16565b906125fe565b9050600061275f60185461273c87896124ca90919063ffffffff16565b9050600061277c601a5461273c88876124ca90919063ffffffff16565b90506000612799601a5461273c898b6124ca90919063ffffffff16565b905060006127b1836127ab88886125bc565b906125bc565b905060006127c3836127ab8c886125bc565b600c546040519192506000916060916001600160a01b03169089908481818185875af1925050503d8060008114612816576040519150601f19603f3d011682016040523d82523d6000602084013e61281b565b606091505b50915091508115612873576128353061dead8960006129bc565b60408051888152905161dead9130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a361288c565b600c5461288c9088908a906001600160a01b0316612f93565b600d546040516001600160a01b03909116908790600081818185875af1925050503d80600081146128d9576040519150601f19603f3d011682016040523d82523d6000602084013e6128de565b606091505b5090925090508115612937576128f93061dead8760006129bc565b60408051868152905161dead9130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3612950565b600d5461295090869088906001600160a01b0316612f93565b612962838561295d61175b565b612f93565b604080518e8152602081018b90528082018e905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050601c805460ff19169055505050505050505050505050565b806129c9576129c9612657565b6001600160a01b0384166000908152600a602052604090205460ff168015612a0a57506001600160a01b0383166000908152600a602052604090205460ff16155b15612a1f57612a1a84848461307e565b612b1d565b6001600160a01b0384166000908152600a602052604090205460ff16158015612a6057506001600160a01b0383166000908152600a602052604090205460ff165b15612a7057612a1a8484846131a2565b6001600160a01b0384166000908152600a602052604090205460ff16158015612ab257506001600160a01b0383166000908152600a602052604090205460ff16155b15612ac257612a1a84848461324b565b6001600160a01b0384166000908152600a602052604090205460ff168015612b0257506001600160a01b0383166000908152600a602052604090205460ff165b15612b1257612a1a84848461328f565b612b1d84848461324b565b80612b2a57612b2a6126b6565b50505050565b600f54600e546000918291825b600b54811015612c61578260046000600b8481548110612b5957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612bbe57508160056000600b8481548110612b9757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612bd557600f54600e5494509450505050612c8f565b612c1560046000600b8481548110612be957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906125bc565b9250612c5760056000600b8481548110612c2b57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906125bc565b9150600101612b3d565b50600e54600f54612c71916124ca565b821015612c8957600f54600e54935093505050612c8f565b90925090505b9091565b60008183612ce25760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561246457818101518382015260200161244c565b506000838581612cee57fe5b0495945050505050565b600080600080612d0785613302565b90506000612d148661331e565b90506000612d26826127ab89866125bc565b979296509094509092505050565b6000808080612d4388866125fe565b90506000612d5188876125fe565b90506000612d5f88886125fe565b90506000612d71826127ab86866125bc565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612db257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e2b57600080fd5b505afa158015612e3f573d6000803e3d6000fd5b505050506040513d6020811015612e5557600080fd5b5051815182906001908110612e6657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612eb1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120de565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612f56578181015183820152602001612f3e565b505050509050019650505050505050600060405180830381600087803b158015612f7f57600080fd5b505af1158015612408573d6000803e3d6000fd5b612fbe307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d856120de565b6040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0383811660848301524260a483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9092169163f305d71991859160c480830192606092919082900301818588803b15801561304c57600080fd5b505af1158015613060573d6000803e3d6000fd5b50505050506040513d606081101561307757600080fd5b5050505050565b6000806000806000806130908761256d565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506130c290886125bc565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546130f190876125bc565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546131209086612513565b6001600160a01b03891660009081526004602052604090205561314281613342565b61314c84836133cb565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131b48761256d565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506131e690876125bc565b6001600160a01b03808b16600090815260046020908152604080832094909455918b1681526005909152205461321c9084612513565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546131209086612513565b60008060008060008061325d8761256d565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506130f190876125bc565b6000806000806000806132a18761256d565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506132d390886125bc565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546131e690876125bc565b6000610d3d60646118db601454856125fe90919063ffffffff16565b6000610d3d60646118db601a546018546016540101856125fe90919063ffffffff16565b600061334c6124a7565b9050600061335a83836125fe565b306000908152600460205260409020549091506133779082612513565b30600090815260046020908152604080832093909355600a9052205460ff16156133c657306000908152600560205260409020546133b59084612513565b306000908152600560205260409020555b505050565b600f546133d890836125bc565b600f556010546133e89082612513565b601055505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fad16b828341bc0189072489dd4ec3b793916998f77b02e5162f6d5be940351e64736f6c634300060c0033

Deployed Bytecode Sourcemap

25863:23655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35671:157;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35671:157:0;;:::i;:::-;;29232:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30235:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30235:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;34997:140;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34997:140:0;;:::i;31437:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27200:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27200:51:0;;;;;;;;;;;;;;29509:95;;;;;;;;;;;;;:::i;27093:32::-;;;;;;;;;;;;;:::i;30404:394::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30404:394:0;;;;;;;;;;;;;;;;;:::i;32487:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32487:253:0;;:::i;29418:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33203:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33203:479:0;-1:-1:-1;;;;;33203:479:0;;:::i;35503:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35503:156:0;;:::i;30806:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30806:218:0;;;;;;;;:::i;34606:141::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34606:141:0;;;;;;;;;;:::i;26814:26::-;;;;;;;;;;;;;:::i;31658:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31658:377:0;;:::i;34348:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34348:111:0;-1:-1:-1;;;;;34348:111:0;;:::i;32043:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32043:436:0;;;;;;;;;:::i;35840:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35840:192:0;;:::i;27258:38::-;;;;;;;;;;;;;:::i;27337:40::-;;;;;;;;;;;;;:::i;37037:231::-;;;;;;;;;;;;;:::i;32748:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32748:447:0;-1:-1:-1;;;;;32748:447:0;;:::i;40785:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40785:123:0;-1:-1:-1;;;;;40785:123:0;;:::i;34471:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34471:127:0;-1:-1:-1;;;;;34471:127:0;;:::i;31536:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31536:108:0;;:::i;15782:90::-;;;;;;;;;;;;;:::i;26901:32::-;;;;;;;;;;;;;:::i;29612:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29612:198:0;-1:-1:-1;;;;;29612:198:0;;:::i;16434:148::-;;;;;;;;;;;;;:::i;27390:51::-;;;;;;;;;;;;;:::i;36554:193::-;;;;;;;;;;;;;:::i;31309:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31309:120:0;-1:-1:-1;;;;;31309:120:0;;:::i;15691:79::-;;;;;;;;;;;;;:::i;36044:194::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36044:194:0;;:::i;34864:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34864:121:0;-1:-1:-1;;;;;34864:121:0;;:::i;29323:87::-;;;;;;;;;;;;;:::i;31032:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31032:269:0;;;;;;;;:::i;17456:305::-;;;;;;;;;;;;;:::i;29822:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29822:254:0;;;;;;;;:::i;27006:26::-;;;;;;;;;;;;;:::i;16989:89::-;;;;;;;;;;;;;:::i;36250:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36250:103:0;;:::i;36361:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36361:171:0;;;;:::i;35145:100::-;;;;;;;;;;;;;:::i;34755:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34755:97:0;-1:-1:-1;;;;;34755:97:0;;:::i;27500:64::-;;;;;;;;;;;;;:::i;17154:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17154:226:0;;:::i;30084:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30084:143:0;;;;;;;;;;:::i;35381:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35381:110:0;-1:-1:-1;;;;;35381:110:0;;:::i;36761:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36761:170:0;;:::i;16737:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16737:244:0;-1:-1:-1;;;;;16737:244:0;;:::i;29118:106::-;;;;;;;;;;;;;:::i;35257:112::-;;;;;;;;;;;;;:::i;35671:157::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;35753:1:::1;35743:7;:11:::0;35778:2:::1;35768:12:::0;::::1;35765:54;;35794:7;:16:::0;;;35765:54:::1;35671:157:::0;:::o;29232:83::-;29302:5;29295:12;;;;;;;;-1:-1:-1;;29295:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29269:13;;29295:12;;29302:5;;29295:12;;29302:5;29295:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29232:83;:::o;30235:161::-;30310:4;30327:39;30336:12;:10;:12::i;:::-;30350:7;30359:6;30327:8;:39::i;:::-;-1:-1:-1;30384:4:0;30235:161;;;;;:::o;34997:140::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;35122:7:::1;35109:20;35077:29;:52:::0;34997:140::o;31437:87::-;31506:10;;31437:87;:::o;27200:51::-;;;:::o;29509:95::-;29589:7;;29509:95;:::o;27093:32::-;;;;:::o;30404:394::-;-1:-1:-1;;;;;30545:16:0;;30502:4;30545:16;;;:8;:16;;;;;;30527:15;:34;30519:70;;;;;-1:-1:-1;;;30519:70:0;;;;;;;;;;;;-1:-1:-1;;;30519:70:0;;;;;;;;;;;;;;;30600:36;30610:6;30618:9;30629:6;30600:9;:36::i;:::-;30647:121;30656:6;30664:12;:10;:12::i;:::-;30678:89;30716:6;30678:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30678:19:0;;;;;;:11;:19;;;;;;30698:12;:10;:12::i;:::-;-1:-1:-1;;;;;30678:33:0;;;;;;;;;;;;-1:-1:-1;30678:33:0;;;:89;:37;:89::i;:::-;30647:8;:121::i;:::-;-1:-1:-1;30786:4:0;30404:394;;;;;:::o;32487:253::-;32553:7;32592;;32581;:18;;32573:73;;;;-1:-1:-1;;;32573:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32657:19;32680:10;:8;:10::i;:::-;32657:33;-1:-1:-1;32708:24:0;:7;32657:33;32708:11;:24::i;:::-;32701:31;;;32487:253;;;;:::o;29418:83::-;29484:9;;;;29418:83;:::o;33203:479::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33285:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33277:60;;;::::0;;-1:-1:-1;;;33277:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33353:9;33348:327;33372:9;:16:::0;33368:20;::::1;33348:327;;;33430:7;-1:-1:-1::0;;;;;33414:23:0::1;:9;33424:1;33414:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33414:12:0::1;:23;33410:254;;;33473:9;33483:16:::0;;-1:-1:-1;;33483:20:0;;;33473:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33458:9:::1;:12:::0;;-1:-1:-1;;;;;33473:31:0;;::::1;::::0;33468:1;;33458:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33458:46:0::1;-1:-1:-1::0;;;;;33458:46:0;;::::1;;::::0;;33523:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33562:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33562:28:0::1;::::0;;33609:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33609:15:0;;;;;-1:-1:-1;;;;;;33609:15:0::1;::::0;;;;;33643:5:::1;;33410:254;33390:3;;33348:327;;;;33203:479:::0;:::o;35503:156::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;35585:1:::1;35575:7;:11:::0;35610:1:::1;35600:11:::0;::::1;35597:53;;35625:7;:16:::0;35503:156::o;30806:218::-;30894:4;30911:83;30920:12;:10;:12::i;:::-;30934:7;30943:50;30982:10;30943:11;:25;30955:12;:10;:12::i;:::-;-1:-1:-1;;;;;30943:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30943:25:0;;;:34;;;;;;;;;;;:38;:50::i;34606:141::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34700:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:39;;-1:-1:-1;;34700:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34606:141::o;26814:26::-;;;;:::o;31658:377::-;31710:14;31727:12;:10;:12::i;:::-;-1:-1:-1;;;;;31759:19:0;;;;;;:11;:19;;;;;;31710:29;;-1:-1:-1;31759:19:0;;31758:20;31750:77;;;;-1:-1:-1;;;31750:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31839:15;31863:19;31874:7;31863:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31911:15:0;;;;;;:7;:15;;;;;;31838:44;;-1:-1:-1;31911:28:0;;:15;-1:-1:-1;31838:44:0;31911:19;:28::i;:::-;-1:-1:-1;;;;;31893:15:0;;;;;;:7;:15;;;;;:46;31960:7;;:20;;31972:7;31960:11;:20::i;:::-;31950:7;:30;32004:10;;:23;;32019:7;32004:14;:23::i;:::-;31991:10;:36;-1:-1:-1;;;31658:377:0:o;34348:111::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34417:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34417:34:0::1;34447:4;34417:34;::::0;;34348:111::o;32043:436::-;32133:7;32172;;32161;:18;;32153:62;;;;;-1:-1:-1;;;32153:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32231:17;32226:246;;32266:15;32290:19;32301:7;32290:10;:19::i;:::-;-1:-1:-1;32265:44:0;;-1:-1:-1;32324:14:0;;-1:-1:-1;;;;;32324:14:0;32226:246;32373:23;32404:19;32415:7;32404:10;:19::i;:::-;-1:-1:-1;32371:52:0;;-1:-1:-1;32438:22:0;;-1:-1:-1;;;;;32438:22:0;35840:192;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;35940:1:::1;35924:13;:17:::0;35971:1:::1;35955:17:::0;::::1;35952:71;;35986:13;:28:::0;35840:192::o;27258:38::-;;;:::o;27337:40::-;;;;;;;;;:::o;37037:231::-;37113:12;:10;:12::i;:::-;-1:-1:-1;;;;;37097:28:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;37097:28:0;;37089:68;;;;;-1:-1:-1;;;37089:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37168:25;37196:12;:10;:12::i;:::-;37219:41;;37168:40;;-1:-1:-1;;;;;;37219:18:0;;;37238:21;37219:41;;;;;;;;;37238:21;37219:18;:41;;;;;;;;;;;;;;;;;;;32748:447;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32945:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32944:21;32936:61;;;::::0;;-1:-1:-1;;;32936:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33011:16:0;::::1;33030:1;33011:16:::0;;;:7:::1;:16;::::0;;;;;:20;33008:108:::1;;-1:-1:-1::0;;;;;33087:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33067:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33048:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33008:108:::1;-1:-1:-1::0;;;;;33126:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33126:27:0::1;33149:4;33126:27:::0;;::::1;::::0;;;33164:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33164:23:0::1;::::0;;::::1;::::0;;32748:447::o;40785:123::-;-1:-1:-1;;;;;40873:27:0;40849:4;40873:27;;;:18;:27;;;;;;;;;40785:123::o;34471:127::-;-1:-1:-1;;;;;34561:29:0;34537:4;34561:29;;;:20;:29;;;;;;;;;34471:127::o;31536:108::-;31632:4;31614:15;:22;31589:8;:22;31598:12;:10;:12::i;:::-;-1:-1:-1;;;;;31589:22:0;;;;;;;;;;;;-1:-1:-1;31589:22:0;:47;-1:-1:-1;31536:108:0:o;15782:90::-;15853:11;;-1:-1:-1;;;;;15853:11:0;15782:90;:::o;26901:32::-;;;;:::o;29612:198::-;-1:-1:-1;;;;;29702:20:0;;29678:7;29702:20;;;:11;:20;;;;;;;;29698:49;;;-1:-1:-1;;;;;;29731:16:0;;;;;;:7;:16;;;;;;29724:23;;29698:49;-1:-1:-1;;;;;29785:16:0;;;;;;:7;:16;;;;;;29765:37;;:19;:37::i;16434:148::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;16541:1:::1;16525:6:::0;;16504:40:::1;::::0;-1:-1:-1;;;;;16525:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16504:40:0;16541:1;;16504:40:::1;16572:1;16555:19:::0;;-1:-1:-1;;;;;;16555:19:0::1;::::0;;16434:148::o;27390:51::-;;;;:::o;36554:193::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;36625:49:::1;36658:5;36625:14;36637:1;36625:7;;:11;;:14;;;;:::i;:::-;:18:::0;::::1;:49::i;:::-;36610:12;:64:::0;36685:14:::1;:12;:14::i;:::-;36710:21;:29:::0;;-1:-1:-1;;36710:29:0::1;::::0;;36554:193::o;31309:120::-;-1:-1:-1;;;;;31401:20:0;31377:4;31401:20;;;:11;:20;;;;;;;;;31309:120::o;15691:79::-;15729:7;15756:6;-1:-1:-1;;;;;15756:6:0;15691:79;:::o;36044:194::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;36144:1:::1;36128:13;:17:::0;36175:3:::1;36159:19:::0;::::1;36156:73;;36192:13;:28:::0;36044:194::o;34864:121::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;34948:17:::1;:29:::0;;-1:-1:-1;;;;;;34948:29:0::1;-1:-1:-1::0;;;;;34948:29:0;;;::::1;::::0;;;::::1;::::0;;34864:121::o;29323:87::-;29395:7;29388:14;;;;;;;;-1:-1:-1;;29388:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29362:13;;29388:14;;29395:7;;29388:14;;29395:7;29388:14;;;;;;;;;;;;;;;;;;;;;;;;31032:269;31125:4;31142:129;31151:12;:10;:12::i;:::-;31165:7;31174:96;31213:15;31174:96;;;;;;;;;;;;;;;;;:11;:25;31186:12;:10;:12::i;:::-;-1:-1:-1;;;;;31174:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31174:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17456:305::-;17508:14;;-1:-1:-1;;;;;17508:14:0;17526:10;17508:28;17500:76;;;;-1:-1:-1;;;17500:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17613:9;;17595:15;:27;17587:72;;;;;-1:-1:-1;;;17587:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17704:14;;;17696:6;;17675:44;;-1:-1:-1;;;;;17704:14:0;;;;17696:6;;;;-1:-1:-1;;;;;;;;;;;17675:44:0;;17739:14;;;17730:23;;-1:-1:-1;;;;;;17730:23:0;-1:-1:-1;;;;;17739:14:0;;;17730:23;;;;;;17456:305::o;29822:254::-;29900:4;29943:8;:22;29952:12;:10;:12::i;:::-;-1:-1:-1;;;;;29943:22:0;-1:-1:-1;;;;;29943:22:0;;;;;;;;;;;;;29925:15;:40;29917:76;;;;;-1:-1:-1;;;29917:76:0;;;;;;;;;;;;-1:-1:-1;;;29917:76:0;;;;;;;;;;;;;;;30004:42;30014:12;:10;:12::i;:::-;30028:9;30039:6;30004:9;:42::i;27006:26::-;;;;:::o;16989:89::-;17061:9;;16989:89;:::o;36250:103::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;36338:7:::1;36330:15;36315:12;:30:::0;36250:103::o;36361:171::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;36438:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;36438:32:0;;::::1;::::0;;;::::1;::::0;;;36486:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;36361:171:::0;:::o;35145:100::-;35226:11;;-1:-1:-1;;;;;35226:11:0;35145:100;:::o;34755:97::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;34827:11:::1;:17:::0;;-1:-1:-1;;;;;;34827:17:0::1;-1:-1:-1::0;;;;;34827:17:0;;;::::1;::::0;;;::::1;::::0;;34755:97::o;27500:64::-;;;;:::o;17154:226::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;17235:6:::1;::::0;;;17218:23;;-1:-1:-1;;;;;;17218:23:0;;::::1;-1:-1:-1::0;;;;;17235:6:0;::::1;17218:23;::::0;;;17252:19:::1;::::0;;17294:15:::1;:22:::0;::::1;17282:9;:34:::0;17332:40:::1;::::0;17235:6;;-1:-1:-1;;;;;;;;;;;17332:40:0;17235:6;;17332:40:::1;17154:226:::0;:::o;30084:143::-;-1:-1:-1;;;;;30192:18:0;;;30165:7;30192:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30084:143::o;35381:110::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35448:27:0::1;35478:5;35448:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35448:35:0::1;::::0;;35381:110::o;36761:170::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;36851:7:::1;36843:15:::0;::::1;36828:12;:30:::0;36869:15:::1;:13;:15::i;:::-;-1:-1:-1::0;36895:21:0::1;:28:::0;;-1:-1:-1;;36895:28:0::1;;;::::0;;36761:170::o;16737:244::-;16015:12;:10;:12::i;:::-;16005:6;;-1:-1:-1;;;;;16005:6:0;;;:22;;;15997:67;;;;;-1:-1:-1;;;15997:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15997:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16826:22:0;::::1;16818:73;;;;-1:-1:-1::0;;;16818:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16928:6;::::0;;16907:38:::1;::::0;-1:-1:-1;;;;;16907:38:0;;::::1;::::0;16928:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16907:38:0;::::1;16956:6;:17:::0;;-1:-1:-1;;;;;;16956:17:0::1;-1:-1:-1::0;;;;;16956:17:0;;;::::1;::::0;;;::::1;::::0;;16737:244::o;29118:106::-;29167:7;29194:8;:22;29203:12;:10;:12::i;:::-;-1:-1:-1;;;;;29194:22:0;-1:-1:-1;;;;;29194:22:0;;;;;;;;;;;;;29187:29;;29118:106;:::o;35257:112::-;35344:17;;-1:-1:-1;;;;;35344:17:0;35257:112;:::o;8034:106::-;8122:10;8034:106;:::o;40916:337::-;-1:-1:-1;;;;;41009:19:0;;41001:68;;;;-1:-1:-1;;;41001:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41088:21:0;;41080:68;;;;-1:-1:-1;;;41080:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41161:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41213:32;;;;;;;;;;;;;;;;;40916:337;;;:::o;41261:1867::-;-1:-1:-1;;;;;41383:18:0;;41375:68;;;;-1:-1:-1;;;41375:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41462:16:0;;41454:64;;;;-1:-1:-1;;;41454:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41546:1;41537:6;:10;41529:64;;;;-1:-1:-1;;;41529:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41608:26:0;;;;;;:20;:26;;;;;;;;:35;;;:72;;-1:-1:-1;;;;;;41647:24:0;;;;;;:20;:24;;;;;;;;:33;41608:72;41604:180;;;41715:12;;41705:6;:22;;41697:75;;;;-1:-1:-1;;;41697:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42078:28;42109:24;42127:4;42109:9;:24::i;:::-;42078:55;;42181:12;;42157:20;:36;42154:112;;-1:-1:-1;42242:12:0;;42154:112;42337:29;;42313:53;;;;;;;42395;;-1:-1:-1;42432:16:0;;;;42431:17;42395:53;:91;;;;;42473:13;-1:-1:-1;;;;;42465:21:0;:4;-1:-1:-1;;;;;42465:21:0;;;42395:91;:129;;;;-1:-1:-1;42503:21:0;;;;;;;42395:129;42377:318;;;42574:29;;42551:52;;42647:36;42662:20;42647:14;:36::i;:::-;-1:-1:-1;;;;;42903:24:0;;42776:12;42903:24;;;:18;:24;;;;;;42791:4;;42903:24;;;:50;;-1:-1:-1;;;;;;42931:22:0;;;;;;:18;:22;;;;;;;;42903:50;42900:96;;;-1:-1:-1;42979:5:0;42900:96;43082:38;43097:4;43102:2;43105:6;43112:7;43082:14;:38::i;:::-;41261:1867;;;;;;:::o;4444:192::-;4530:7;4566:12;4558:6;;;;4550:29;;;;-1:-1:-1;;;4550:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4602:5:0;;;4444:192::o;38642:163::-;38683:7;38704:15;38721;38740:19;:17;:19::i;:::-;38703:56;;-1:-1:-1;38703:56:0;-1:-1:-1;38777:20:0;38703:56;;38777:11;:20::i;:::-;38770:27;;;;38642:163;:::o;5842:132::-;5900:7;5927:39;5931:1;5934;5927:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5920:46;5842:132;-1:-1:-1;;;5842:132:0:o;3541:181::-;3599:7;3631:5;;;3655:6;;;;3647:46;;;;;-1:-1:-1;;;3647:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37435:419;37494:7;37503;37512;37521;37530;37539;37560:23;37585:12;37599:18;37621:20;37633:7;37621:11;:20::i;:::-;37559:82;;;;;;37653:15;37670:23;37695:12;37711:50;37723:7;37732:4;37738:10;37750;:8;:10::i;:::-;37711:11;:50::i;:::-;37652:109;;;;-1:-1:-1;37652:109:0;;-1:-1:-1;37812:15:0;;-1:-1:-1;37829:4:0;;-1:-1:-1;37835:10:0;;-1:-1:-1;37435:419:0;;-1:-1:-1;;;;;37435:419:0:o;4005:136::-;4063:7;4090:43;4094:1;4097;4090:43;;;;;;;;;;;;;;;;;:3;:43::i;4895:471::-;4953:7;5198:6;5194:47;;-1:-1:-1;5228:1:0;5221:8;;5194:47;5265:5;;;5269:1;5265;:5;:1;5289:5;;;;;:10;5281:56;;;;-1:-1:-1;;;5281:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40130:422;40176:7;;:12;:34;;;;-1:-1:-1;40192:13:0;;:18;40176:34;:56;;;;-1:-1:-1;40214:13:0;;:18;40176:56;:72;;;;-1:-1:-1;40236:7:0;;:12;40176:72;40173:84;;;40250:7;;40173:84;40295:7;;;40277:15;:25;40337:13;;;40313:21;:37;40379:7;;;40361:15;:25;40421:13;;;40397:21;:37;-1:-1:-1;40455:11:0;;;;40477:17;;;;40505:11;;;40527:17;40130:422;:::o;40564:209::-;40618:15;;40608:7;:25;40660:21;;40644:13;:37;40702:15;;40692:7;:25;40744:21;;40728:13;:37;40564:209::o;43142:2641::-;28001:16;:23;;-1:-1:-1;;28001:23:0;28020:4;28001:23;;;:16;43293:27:::1;:20:::0;43318:1:::1;43293:24;:27::i;:::-;43278:42:::0;-1:-1:-1;43331:17:0::1;43351:30;:20:::0;43278:42;43351:24:::1;:30::i;:::-;43446:7;::::0;43430:13:::1;::::0;43414::::1;::::0;43331:50;;-1:-1:-1;43414:29:0;;;::::1;:39;43756:21;43822:22;43839:4:::0;43822:16:::1;:22::i;:::-;43975:18;43996:41;:21;44022:14:::0;43996:25:::1;:41::i;:::-;43975:62;;44132:18;44153:40;44185:7;;44153:27;44168:11;44153:10;:14;;:27;;;;:::i;:::-;:31:::0;::::1;:40::i;:::-;44132:61;;44204:18;44225:39;44256:7;;44225:26;44239:11;44225:9;:13;;:26;;;;:::i;:39::-;44204:60;;44356:24;44383:46;44415:13;;44383:27;44398:11;44383:10;:14;;:27;;;;:::i;:46::-;44356:73;;44440:24;44467:45;44498:13;;44467:26;44481:11;44467:9;:13;;:26;;;;:::i;:45::-;44440:72:::0;-1:-1:-1;44533:20:0::1;44556:48;44587:16:::0;44556:26:::1;:10:::0;44571;44556:14:::1;:26::i;:::-;:30:::0;::::1;:48::i;:::-;44533:71:::0;-1:-1:-1;44615:17:0::1;44635:47;44665:16:::0;44635:25:::1;:9:::0;44649:10;44635:13:::1;:25::i;:47::-;44756:11;::::0;:39:::1;::::0;44615:67;;-1:-1:-1;44724:9:0::1;::::0;44735:17:::1;::::0;-1:-1:-1;;;;;44756:11:0::1;::::0;44780:10;;44724:9;44756:39;44724:9;44756:39;44780:10;44756:11;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44723:72;;;;44809:4;44806:308;;;44829:92;44852:4;44859:42;44903:10;44915:5;44829:14;:92::i;:::-;44941:79;::::0;;;;;;;44965:42:::1;::::0;44958:4:::1;::::0;44941:79:::1;::::0;;;;::::1;::::0;;::::1;44806:308;;;45090:11;::::0;45053:49:::1;::::0;45066:10;;45078;;-1:-1:-1;;;;;45090:11:0::1;45053:12;:49::i;:::-;45149:17;::::0;:51:::1;::::0;-1:-1:-1;;;;;45149:17:0;;::::1;::::0;45179:16;;45149:17:::1;:51:::0;:17;:51;45179:16;45149:17;:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;45134:66:0;;-1:-1:-1;45134:66:0;-1:-1:-1;45211:338:0;::::1;;;45234:98;45257:4;45264:42;45308:16;45326:5;45234:14;:98::i;:::-;45352:85;::::0;;;;;;;45376:42:::1;::::0;45369:4:::1;::::0;45352:85:::1;::::0;;;;::::1;::::0;;::::1;45211:338;;;45519:17;::::0;45470:67:::1;::::0;45483:16;;45501;;-1:-1:-1;;;;;45519:17:0::1;45470:12;:67::i;:::-;45606:51;45619:9;45630:12;45644;:10;:12::i;:::-;45606;:51::i;:::-;45732:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28047:16:0;:24;;-1:-1:-1;;28047:24:0;;;-1:-1:-1;;;;;;;;;;;;43142:2641:0:o;47001:834::-;47112:7;47108:40;;47134:14;:12;:14::i;:::-;-1:-1:-1;;;;;47173:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47197:22:0;;;;;;:11;:22;;;;;;;;47196:23;47173:46;47169:597;;;47236:48;47258:6;47266:9;47277:6;47236:21;:48::i;:::-;47169:597;;;-1:-1:-1;;;;;47307:19:0;;;;;;:11;:19;;;;;;;;47306:20;:46;;;;-1:-1:-1;;;;;;47330:22:0;;;;;;:11;:22;;;;;;;;47306:46;47302:464;;;47369:46;47389:6;47397:9;47408:6;47369:19;:46::i;47302:464::-;-1:-1:-1;;;;;47438:19:0;;;;;;:11;:19;;;;;;;;47437:20;:47;;;;-1:-1:-1;;;;;;47462:22:0;;;;;;:11;:22;;;;;;;;47461:23;47437:47;47433:333;;;47501:44;47519:6;47527:9;47538:6;47501:17;:44::i;47433:333::-;-1:-1:-1;;;;;47567:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47590:22:0;;;;;;:11;:22;;;;;;;;47567:45;47563:203;;;47629:48;47651:6;47659:9;47670:6;47629:21;:48::i;47563:203::-;47710:44;47728:6;47736:9;47747:6;47710:17;:44::i;:::-;47790:7;47786:41;;47812:15;:13;:15::i;:::-;47001:834;;;;:::o;38813:561::-;38910:7;;38946;;38863;;;;;38970:289;38994:9;:16;38990:20;;38970:289;;;39060:7;39036;:21;39044:9;39054:1;39044:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39044:12:0;39036:21;;;;;;;;;;;;;:31;;:66;;;39095:7;39071;:21;39079:9;39089:1;39079:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39079:12:0;39071:21;;;;;;;;;;;;;:31;39036:66;39032:97;;;39112:7;;39121;;39104:25;;;;;;;;;39032:97;39154:34;39166:7;:21;39174:9;39184:1;39174:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39174:12:0;39166:21;;;;;;;;;;;;;39154:7;;:11;:34::i;:::-;39144:44;;39213:34;39225:7;:21;39233:9;39243:1;39233:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39233:12:0;39225:21;;;;;;;;;;;;;39213:7;;:11;:34::i;:::-;39203:44;-1:-1:-1;39012:3:0;;38970:289;;;-1:-1:-1;39295:7:0;;39283;;:20;;:11;:20::i;:::-;39273:7;:30;39269:61;;;39313:7;;39322;;39305:25;;;;;;;;39269:61;39349:7;;-1:-1:-1;39358:7:0;-1:-1:-1;38813:561:0;;;:::o;6470:278::-;6556:7;6591:12;6584:5;6576:28;;;;-1:-1:-1;;;6576:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6615:9;6631:1;6627;:5;;;;;;;6470:278;-1:-1:-1;;;;;6470:278:0:o;37862:335::-;37922:7;37931;37940;37960:12;37975:24;37991:7;37975:15;:24::i;:::-;37960:39;;38010:18;38031:35;38058:7;38031:26;:35::i;:::-;38010:56;-1:-1:-1;38077:23:0;38103:33;38010:56;38103:17;:7;38115:4;38103:11;:17::i;:33::-;38077:59;38172:4;;-1:-1:-1;38178:10:0;;-1:-1:-1;37862:335:0;;-1:-1:-1;;;37862:335:0:o;38205:429::-;38320:7;;;;38376:24;:7;38388:11;38376;:24::i;:::-;38358:42;-1:-1:-1;38411:12:0;38426:21;:4;38435:11;38426:8;:21::i;:::-;38411:36;-1:-1:-1;38458:18:0;38479:27;:10;38494:11;38479:14;:27::i;:::-;38458:48;-1:-1:-1;38517:23:0;38543:33;38458:48;38543:17;:7;38555:4;38543:11;:17::i;:33::-;38595:7;;;;-1:-1:-1;38621:4:0;;-1:-1:-1;38205:429:0;;-1:-1:-1;;;;;;;38205:429:0:o;45797:589::-;45947:16;;;45961:1;45947:16;;;45923:21;45947:16;;;;;45923:21;45947:16;;;;;;;;;;-1:-1:-1;45947:16:0;45923:40;;45992:4;45974;45979:1;45974:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;45974:23:0;;;-1:-1:-1;;;;;45974:23:0;;;;;46018:15;-1:-1:-1;;;;;46018:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46018:22:0;46008:7;;:4;;46013:1;;46008:7;;;;;;;;;;;:32;-1:-1:-1;;;;;46008:32:0;;;-1:-1:-1;;;;;46008:32:0;;;;;46053:62;46070:4;46085:15;46103:11;46053:8;:62::i;:::-;46154:15;-1:-1:-1;;;;;46154:66:0;;46235:11;46261:1;46305:4;46332;46352:15;46154:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46154:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46394:520;46554:62;46571:4;46586:15;46604:11;46554:8;:62::i;:::-;46659:247;;;-1:-1:-1;;;46659:247:0;;46731:4;46659:247;;;;;;;;;;-1:-1:-1;46659:247:0;;;;;;;;;;-1:-1:-1;;;;;46659:247:0;;;;;;;46880:15;46659:247;;;;;;:15;:31;;;;;;46698:9;;46659:247;;;;;;;;;;;;;;46698:9;46659:31;:247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46394:520:0:o;48947:566::-;49050:15;49067:23;49092:12;49106:23;49131:12;49145:18;49167:19;49178:7;49167:10;:19::i;:::-;-1:-1:-1;;;;;49215:15:0;;;;;;:7;:15;;;;;;49049:137;;-1:-1:-1;49049:137:0;;-1:-1:-1;49049:137:0;;-1:-1:-1;49049:137:0;-1:-1:-1;49049:137:0;-1:-1:-1;49049:137:0;-1:-1:-1;49215:28:0;;49235:7;49215:19;:28::i;:::-;-1:-1:-1;;;;;49197:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49272:7;:15;;;;:28;;49292:7;49272:19;:28::i;:::-;-1:-1:-1;;;;;49254:15:0;;;;;;;:7;:15;;;;;;:46;;;;49332:18;;;;;;;:39;;49355:15;49332:22;:39::i;:::-;-1:-1:-1;;;;;49311:18:0;;;;;;:7;:18;;;;;:60;49385:26;49400:10;49385:14;:26::i;:::-;49422:23;49434:4;49440;49422:11;:23::i;:::-;49478:9;-1:-1:-1;;;;;49461:44:0;49470:6;-1:-1:-1;;;;;49461:44:0;;49489:15;49461:44;;;;;;;;;;;;;;;;;;48947:566;;;;;;;;;:::o;48353:586::-;48454:15;48471:23;48496:12;48510:23;48535:12;48549:18;48571:19;48582:7;48571:10;:19::i;:::-;-1:-1:-1;;;;;48619:15:0;;;;;;:7;:15;;;;;;48453:137;;-1:-1:-1;48453:137:0;;-1:-1:-1;48453:137:0;;-1:-1:-1;48453:137:0;-1:-1:-1;48453:137:0;-1:-1:-1;48453:137:0;-1:-1:-1;48619:28:0;;48453:137;48619:19;:28::i;:::-;-1:-1:-1;;;;;48601:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48679:18;;;;;:7;:18;;;;;:39;;48702:15;48679:22;:39::i;:::-;-1:-1:-1;;;;;48658:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48750:7;:18;;;;:39;;48773:15;48750:22;:39::i;47843:502::-;47942:15;47959:23;47984:12;47998:23;48023:12;48037:18;48059:19;48070:7;48059:10;:19::i;:::-;-1:-1:-1;;;;;48107:15:0;;;;;;:7;:15;;;;;;47941:137;;-1:-1:-1;47941:137:0;;-1:-1:-1;47941:137:0;;-1:-1:-1;47941:137:0;-1:-1:-1;47941:137:0;-1:-1:-1;47941:137:0;-1:-1:-1;48107:28:0;;47941:137;48107:19;:28::i;33694:642::-;33797:15;33814:23;33839:12;33853:23;33878:12;33892:18;33914:19;33925:7;33914:10;:19::i;:::-;-1:-1:-1;;;;;33962:15:0;;;;;;:7;:15;;;;;;33796:137;;-1:-1:-1;33796:137:0;;-1:-1:-1;33796:137:0;;-1:-1:-1;33796:137:0;-1:-1:-1;33796:137:0;-1:-1:-1;33796:137:0;-1:-1:-1;33962:28:0;;33982:7;33962:19;:28::i;:::-;-1:-1:-1;;;;;33944:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34019:7;:15;;;;:28;;34039:7;34019:19;:28::i;39753:154::-;39817:7;39844:55;39883:5;39844:20;39856:7;;39844;:11;;:20;;;;:::i;39915:197::-;39990:7;40017:87;40088:5;40017:52;40055:13;;40045:7;;40029:13;;:23;:39;40017:7;:11;;:52;;;;:::i;39386:355::-;39449:19;39472:10;:8;:10::i;:::-;39449:33;-1:-1:-1;39493:18:0;39514:27;:10;39449:33;39514:14;:27::i;:::-;39593:4;39577:22;;;;:7;:22;;;;;;39493:48;;-1:-1:-1;39577:38:0;;39493:48;39577:26;:38::i;:::-;39568:4;39552:22;;;;:7;:22;;;;;;;;:63;;;;39629:11;:26;;;;;;39626:107;;;39711:4;39695:22;;;;:7;:22;;;;;;:38;;39722:10;39695:26;:38::i;:::-;39686:4;39670:22;;;;:7;:22;;;;;:63;39626:107;39386:355;;;:::o;37280:147::-;37358:7;;:17;;37370:4;37358:11;:17::i;:::-;37348:7;:27;37399:10;;:20;;37414:4;37399:14;:20::i;:::-;37386:10;:33;-1:-1:-1;;37280:147:0:o

Swarm Source

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