ETH Price: $3,309.87 (-2.97%)
Gas: 11 Gwei

Token

RickMortyDoxx (RickMortyDoxx)
 

Overview

Max Total Supply

10,000,000,000,000 RickMortyDoxx

Holders

1,146 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Doxxed alliance will focus on launching projects with Doxxed teams using Zion.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LiquidityGeneratorToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

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;
    uint256 private _lockTime;

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


contract LiquidityGeneratorToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    address dead = 0x000000000000000000000000000000000000dEaD;
    uint256 public maxLiqFee = 10;
    uint256 public maxTaxFee = 10;
    uint256 public minMxTxPercentage = 50;
    uint256 public prevLiqFee;
    uint256 public prevTaxFee;
    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ; // Uniswap Router
    uint256 private constant MAX = ~uint256(0);
    uint256 public _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;
    bool public mintedByDxsale = true;
    string public _name;
    string public _symbol;
    uint8 private _decimals;
    
    uint256 public _taxFee;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = false;
    
    uint256 public _maxTxAmount;
    uint256 public numTokensSellToAddToLiquidity;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address tokenOwner,string memory name, string memory symbol,uint8 decimal, uint256 amountOfTokenWei,uint8 setTaxFee, uint8 setLiqFee, uint256 _maxTaxFee, uint256 _maxLiqFee, uint256 _minMxTxPer) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimal;
        _tTotal = amountOfTokenWei;
        _rTotal = (MAX - (MAX % _tTotal));
        
        _rOwned[tokenOwner] = _rTotal;
        
        maxTaxFee = _maxTaxFee;        
        maxLiqFee = _maxLiqFee;
        minMxTxPercentage = _minMxTxPer;
        prevTaxFee = setTaxFee;        
        prevLiqFee = setLiqFee;

        _maxTxAmount = amountOfTokenWei;
        numTokensSellToAddToLiquidity = amountOfTokenWei.mul(1).div(1000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


        function _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 includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
         require(taxFee >= 0 && taxFee <=maxTaxFee,"taxFee out of range");
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
         require(liquidityFee >= 0 && liquidityFee <=maxLiqFee,"liquidityFee out of range");
        _liquidityFee = liquidityFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        require(maxTxPercent >= minMxTxPercentage && maxTxPercent <=100,"maxTxPercent out of range");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

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

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

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

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

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

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

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

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

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        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);

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

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

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

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

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

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

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

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

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

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

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

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

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

    function disableFees() public onlyOwner {
        prevLiqFee = _liquidityFee;
        prevTaxFee = _taxFee;
        
        _maxTxAmount = _tTotal;
        _liquidityFee = 0;
        _taxFee = 0;
        swapAndLiquifyEnabled = false;
    }
    
    function enableFees() public onlyOwner {
        _maxTxAmount = _tTotal;
        _liquidityFee = prevLiqFee;
        _taxFee = prevTaxFee;
        swapAndLiquifyEnabled = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimal","type":"uint8"},{"internalType":"uint256","name":"amountOfTokenWei","type":"uint256"},{"internalType":"uint8","name":"setTaxFee","type":"uint8"},{"internalType":"uint8","name":"setLiqFee","type":"uint8"},{"internalType":"uint256","name":"_maxTaxFee","type":"uint256"},{"internalType":"uint256","name":"_maxLiqFee","type":"uint256"},{"internalType":"uint256","name":"_minMxTxPer","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minMxTxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedByDxsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"prevLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prevTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600380546001600160a01b031990811661dead17909155600a60048190556005556032600655600f8054909116737a250d5630b4cf539739df2c5dacb4c659f2488d1790556013805460ff19166001179055601754601855601954601a55601b805461ff00191690553480156200007a57600080fd5b5060405162003215380380620032158339810160408190526200009d9162000647565b6000620000a9620003f8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508851620001089060149060208c0190620004e2565b5087516200011e9060159060208b0190620004e2565b506016805460ff191660ff8916179055601086905585600019816200013f57fe5b061960118190556001600160a01b038b1660009081526009602090815260409091209190915560058490556004839055600682905560ff8087166008558516600755601c879055620001bc906103e890620001a89089906001906200135a620003fc821b17901c565b6200044e60201b6200139b1790919060201c565b601d55600f546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a0155916004808301926020929190829003018186803b1580156200020657600080fd5b505afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000629565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028a57600080fd5b505afa1580156200029f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c5919062000629565b6040518363ffffffff1660e01b8152600401620002e492919062000726565b602060405180830381600087803b158015620002ff57600080fd5b505af115801562000314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033a919062000629565b6001600160601b0319606091821b811660a0529082901b166080526001600c60006200036562000498565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600c90935281832080549094166001179093556010549051928e16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620003df91620007b6565b60405180910390a35050505050505050505050620007f2565b3390565b6000826200040d5750600062000448565b828202828482816200041b57fe5b0414620004455760405162461bcd60e51b81526004016200043c9062000775565b60405180910390fd5b90505b92915050565b60006200044583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004a760201b60201c565b6000546001600160a01b031690565b60008183620004cb5760405162461bcd60e51b81526004016200043c919062000740565b506000838581620004d857fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200052557805160ff191683800117855562000555565b8280016001018555821562000555579182015b828111156200055557825182559160200191906001019062000538565b506200056392915062000567565b5090565b5b8082111562000563576000815560010162000568565b80516001600160a01b03811681146200044857600080fd5b600082601f830112620005a7578081fd5b81516001600160401b0380821115620005be578283fd5b604051601f8301601f191681016020018281118282101715620005df578485fd5b604052828152925082848301602001861015620005fb57600080fd5b6200060e836020830160208801620007bf565b50505092915050565b805160ff811681146200044857600080fd5b6000602082840312156200063b578081fd5b6200044583836200057e565b6000806000806000806000806000806101408b8d03121562000667578586fd5b620006738c8c6200057e565b60208c0151909a506001600160401b038082111562000690578788fd5b6200069e8e838f0162000596565b9a5060408d0151915080821115620006b4578788fd5b50620006c38d828e0162000596565b985050620006d58c60608d0162000617565b965060808b01519550620006ed8c60a08d0162000617565b9450620006fe8c60c08d0162000617565b935060e08b015192506101008b015191506101208b015190509295989b9194979a5092959850565b6001600160a01b0392831681529116602082015260400190565b600060208252825180602084015262000761816040850160208701620007bf565b601f01601f19169190910160400192915050565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b90815260200190565b60005b83811015620007dc578181015183820152602001620007c2565b83811115620007ec576000848401525b50505050565b60805160601c60a05160601c6129db6200083a60003980610c0e52806115a55250806108e25280611bec5280611cae5280611cea5280611d5c5280611d9b52506129db6000f3fe6080604052600436106102975760003560e01c806370a082311161015a578063b6c52324116100c1578063d543dbeb1161007a578063d543dbeb14610706578063dd46706414610726578063dd62ed3e14610746578063ea2f0b3714610766578063f2fde38b14610786578063f887ea40146107a65761029e565b8063b6c523241461067d578063c49b9a8014610692578063c7992f9a146106b2578063ce404b23146106c7578063d12a7688146106dc578063d28d8852146106f15761029e565b806395d89b411161011357806395d89b41146105e9578063a457c2d7146105fe578063a69df4b51461061e578063a9059cbb14610633578063af465a2714610653578063b09f1266146106685761029e565b806370a082311461054a578063715018a61461056a5780637d1db4a51461057f57806388f82020146105945780638da5cb5b146105b45780638ee88c53146105c95761029e565b806339509351116101fe578063475877d9116101b7578063475877d9146104c157806349bd5a5e146104d65780634a74bb02146104eb5780635342acb41461050057806355924646146105205780636bc87c3a146105355761029e565b806339509351146104175780633b124fe7146104375780633bd5d1731461044c578063430ca0901461046c578063437823ec146104815780634549b039146104a15761029e565b806318160ddd1161025057806318160ddd1461037657806323b872dd1461038b5780632d838119146103ab578063313ce567146103cb578063324f8dbf146103ed578063368f5bd5146104025761029e565b8063061c82d0146102a357806306fdde03146102c5578063095ea7b3146102f057806313114a9d1461031d57806315ed604f1461033f5780631694505e146103545761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be3660046122d8565b6107bb565b005b3480156102d157600080fd5b506102da610820565b6040516102e7919061239b565b60405180910390f35b3480156102fc57600080fd5b5061031061030b366004612291565b6108b6565b6040516102e79190612390565b34801561032957600080fd5b506103326108d4565b6040516102e79190612875565b34801561034b57600080fd5b506103326108da565b34801561036057600080fd5b506103696108e0565b6040516102e79190612341565b34801561038257600080fd5b50610332610904565b34801561039757600080fd5b506103106103a6366004612251565b61090a565b3480156103b757600080fd5b506103326103c63660046122d8565b610991565b3480156103d757600080fd5b506103e06109d4565b6040516102e79190612904565b3480156103f957600080fd5b506103326109dd565b34801561040e57600080fd5b506102c36109e3565b34801561042357600080fd5b50610310610432366004612291565b610a3b565b34801561044357600080fd5b50610332610a89565b34801561045857600080fd5b506102c36104673660046122d8565b610a8f565b34801561047857600080fd5b50610332610b4a565b34801561048d57600080fd5b506102c361049c3660046121e1565b610b50565b3480156104ad57600080fd5b506103326104bc3660046122f0565b610ba9565b3480156104cd57600080fd5b50610332610c06565b3480156104e257600080fd5b50610369610c0c565b3480156104f757600080fd5b50610310610c30565b34801561050c57600080fd5b5061031061051b3660046121e1565b610c3e565b34801561052c57600080fd5b50610310610c5c565b34801561054157600080fd5b50610332610c65565b34801561055657600080fd5b506103326105653660046121e1565b610c6b565b34801561057657600080fd5b506102c3610ccd565b34801561058b57600080fd5b50610332610d3a565b3480156105a057600080fd5b506103106105af3660046121e1565b610d40565b3480156105c057600080fd5b50610369610d5e565b3480156105d557600080fd5b506102c36105e43660046122d8565b610d6d565b3480156105f557600080fd5b506102da610dc9565b34801561060a57600080fd5b50610310610619366004612291565b610e2a565b34801561062a57600080fd5b506102c3610e92565b34801561063f57600080fd5b5061031061064e366004612291565b610f2c565b34801561065f57600080fd5b50610332610f40565b34801561067457600080fd5b506102da610f46565b34801561068957600080fd5b50610332610fd4565b34801561069e57600080fd5b506102c36106ad3660046122bc565b610fda565b3480156106be57600080fd5b5061033261105d565b3480156106d357600080fd5b506102c3611063565b3480156106e857600080fd5b506103326110c0565b3480156106fd57600080fd5b506102da6110c6565b34801561071257600080fd5b506102c36107213660046122d8565b611121565b34801561073257600080fd5b506102c36107413660046122d8565b6111ab565b34801561075257600080fd5b50610332610761366004612219565b611226565b34801561077257600080fd5b506102c36107813660046121e1565b611251565b34801561079257600080fd5b506102c36107a13660046121e1565b6112a7565b3480156107b257600080fd5b5061036961134b565b6107c36113dd565b6000546001600160a01b039081169116146107f95760405162461bcd60e51b81526004016107f090612631565b60405180910390fd5b60055481111561081b5760405162461bcd60e51b81526004016107f090612848565b601755565b60148054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b60006108ca6108c36113dd565b84846113e1565b5060015b92915050565b60125490565b60075481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60105490565b6000610917848484611495565b610987846109236113dd565b61098285604051806060016040528060288152602001612939602891396001600160a01b038a166000908152600b60205260408120906109616113dd565b6001600160a01b03168152602081019190915260400160002054919061165f565b6113e1565b5060019392505050565b60006011548211156109b55760405162461bcd60e51b81526004016107f090612468565b60006109bf61168b565b90506109cb838261139b565b9150505b919050565b60165460ff1690565b60065481565b6109eb6113dd565b6000546001600160a01b03908116911614610a185760405162461bcd60e51b81526004016107f090612631565b601054601c55600754601955600854601755601b805461ff001916610100179055565b60006108ca610a486113dd565b8461098285600b6000610a596113dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116ae565b60175481565b6000610a996113dd565b6001600160a01b0381166000908152600d602052604090205490915060ff1615610ad55760405162461bcd60e51b81526004016107f0906127fc565b6000610ae0836116d3565b505050506001600160a01b038416600090815260096020526040902054919250610b0c91905082611722565b6001600160a01b038316600090815260096020526040902055601154610b329082611722565b601155601254610b4290846116ae565b601255505050565b60045481565b610b586113dd565b6000546001600160a01b03908116911614610b855760405162461bcd60e51b81526004016107f090612631565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6000601054831115610bcd5760405162461bcd60e51b81526004016107f090612571565b81610bec576000610bdd846116d3565b509395506108ce945050505050565b6000610bf7846116d3565b509295506108ce945050505050565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b54610100900460ff1681565b6001600160a01b03166000908152600c602052604090205460ff1690565b60135460ff1681565b60195481565b6001600160a01b0381166000908152600d602052604081205460ff1615610cab57506001600160a01b0381166000908152600a60205260409020546109cf565b6001600160a01b0382166000908152600960205260409020546108ce90610991565b610cd56113dd565b6000546001600160a01b03908116911614610d025760405162461bcd60e51b81526004016107f090612631565b600080546040516001600160a01b0390911690600080516020612961833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b03166000908152600d602052604090205460ff1690565b6000546001600160a01b031690565b610d756113dd565b6000546001600160a01b03908116911614610da25760405162461bcd60e51b81526004016107f090612631565b600454811115610dc45760405162461bcd60e51b81526004016107f090612431565b601955565b60158054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b60006108ca610e376113dd565b846109828560405180606001604052806025815260200161298160259139600b6000610e616113dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061165f565b6001546001600160a01b03163314610ebc5760405162461bcd60e51b81526004016107f0906127a6565b6002544211610edd5760405162461bcd60e51b81526004016107f09061276f565b600154600080546040516001600160a01b03938416939091169160008051602061296183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006108ca610f396113dd565b8484611495565b60105481565b6015805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b505050505081565b60025490565b610fe26113dd565b6000546001600160a01b0390811691161461100f5760405162461bcd60e51b81526004016107f090612631565b601b805461ff001916610100831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611052908390612390565b60405180910390a150565b60055481565b61106b6113dd565b6000546001600160a01b039081169116146110985760405162461bcd60e51b81526004016107f090612631565b6019805460075560178054600855601054601c5560009182905555601b805461ff0019169055565b601d5481565b6014805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b6111296113dd565b6000546001600160a01b039081169116146111565760405162461bcd60e51b81526004016107f090612631565b6006548110158015611169575060648111155b6111855760405162461bcd60e51b81526004016107f0906126af565b6111a5606461119f8360105461135a90919063ffffffff16565b9061139b565b601c5550565b6111b36113dd565b6000546001600160a01b039081169116146111e05760405162461bcd60e51b81526004016107f090612631565b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612961833981519152908290a350565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6112596113dd565b6000546001600160a01b039081169116146112865760405162461bcd60e51b81526004016107f090612631565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6112af6113dd565b6000546001600160a01b039081169116146112dc5760405162461bcd60e51b81526004016107f090612631565b6001600160a01b0381166113025760405162461bcd60e51b81526004016107f0906124b2565b600080546040516001600160a01b038085169392169160008051602061296183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b031681565b600082611369575060006108ce565b8282028284828161137657fe5b04146113945760405162461bcd60e51b81526004016107f0906125f0565b9392505050565b600061139483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611764565b3390565b6001600160a01b0383166114075760405162461bcd60e51b81526004016107f09061272b565b6001600160a01b03821661142d5760405162461bcd60e51b81526004016107f0906124f8565b6001600160a01b038084166000818152600b602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611488908590612875565b60405180910390a3505050565b6001600160a01b0383166114bb5760405162461bcd60e51b81526004016107f0906126e6565b6001600160a01b0382166114e15760405162461bcd60e51b81526004016107f0906123ee565b600081116115015760405162461bcd60e51b81526004016107f090612666565b611509610d5e565b6001600160a01b0316836001600160a01b031614158015611543575061152d610d5e565b6001600160a01b0316826001600160a01b031614155b1561156a57601c5481111561156a5760405162461bcd60e51b81526004016107f0906125a8565b600061157530610c6b565b9050601c5481106115855750601c545b601d548110801590819061159c5750601b5460ff16155b80156115da57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156115ed5750601b54610100900460ff165b1561160057601d5491506116008261179b565b6001600160a01b0385166000908152600c602052604090205460019060ff168061164257506001600160a01b0385166000908152600c602052604090205460ff165b1561164b575060005b61165786868684611833565b505050505050565b600081848411156116835760405162461bcd60e51b81526004016107f0919061239b565b505050900390565b60008060006116986119a7565b90925090506116a7828261139b565b9250505090565b6000828201838110156113945760405162461bcd60e51b81526004016107f09061253a565b60008060008060008060008060006116ea8a611b0a565b92509250925060008060006117088d868661170361168b565b611b4c565b919f909e50909c50959a5093985091965092945050505050565b600061139483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061165f565b600081836117855760405162461bcd60e51b81526004016107f0919061239b565b50600083858161179157fe5b0495945050505050565b601b805460ff1916600117905560006117b582600261139b565b905060006117c38383611722565b9050476117cf83611b9c565b60006117db4783611722565b90506117e78382611d56565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161181a939291906128ee565b60405180910390a15050601b805460ff19169055505050565b8061184057611840611e38565b6001600160a01b0384166000908152600d602052604090205460ff16801561188157506001600160a01b0383166000908152600d602052604090205460ff16155b1561189657611891848484611e6a565b611994565b6001600160a01b0384166000908152600d602052604090205460ff161580156118d757506001600160a01b0383166000908152600d602052604090205460ff165b156118e757611891848484611f8e565b6001600160a01b0384166000908152600d602052604090205460ff1615801561192957506001600160a01b0383166000908152600d602052604090205460ff16155b1561193957611891848484612037565b6001600160a01b0384166000908152600d602052604090205460ff16801561197957506001600160a01b0383166000908152600d602052604090205460ff165b156119895761189184848461207b565b611994848484612037565b806119a1576119a16120ee565b50505050565b6011546010546000918291825b600e54811015611ad8578260096000600e84815481106119d057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a35575081600a6000600e8481548110611a0e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a4c5760115460105494509450505050611b06565b611a8c60096000600e8481548110611a6057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611722565b9250611ace600a6000600e8481548110611aa257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611722565b91506001016119b4565b50601054601154611ae89161139b565b821015611b0057601154601054935093505050611b06565b90925090505b9091565b600080600080611b19856120fc565b90506000611b2686612118565b90506000611b3e82611b388986611722565b90611722565b979296509094509092505050565b6000808080611b5b888661135a565b90506000611b69888761135a565b90506000611b77888861135a565b90506000611b8982611b388686611722565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611bca57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c4357600080fd5b505afa158015611c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7b91906121fd565b81600181518110611c8857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611cd3307f0000000000000000000000000000000000000000000000000000000000000000846113e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d2890859060009086903090429060040161287e565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611657573d6000803e3d6000fd5b611d81307f0000000000000000000000000000000000000000000000000000000000000000846113e1565b60035460405163f305d71960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263f305d719928592611ddf923092899260009283929116904290600401612355565b6060604051808303818588803b158015611df857600080fd5b505af1158015611e0c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e319190612314565b5050505050565b601754158015611e485750601954155b15611e5257611e68565b6017805460185560198054601a55600091829055555b565b600080600080600080611e7c876116d3565b6001600160a01b038f166000908152600a6020526040902054959b50939950919750955093509150611eae9088611722565b6001600160a01b038a166000908152600a6020908152604080832093909355600990522054611edd9087611722565b6001600160a01b03808b1660009081526009602052604080822093909355908a1681522054611f0c90866116ae565b6001600160a01b038916600090815260096020526040902055611f2e81612134565b611f3884836121bd565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f7b9190612875565b60405180910390a3505050505050505050565b600080600080600080611fa0876116d3565b6001600160a01b038f16600090815260096020526040902054959b50939950919750955093509150611fd29087611722565b6001600160a01b03808b16600090815260096020908152604080832094909455918b168152600a909152205461200890846116ae565b6001600160a01b0389166000908152600a6020908152604080832093909355600990522054611f0c90866116ae565b600080600080600080612049876116d3565b6001600160a01b038f16600090815260096020526040902054959b50939950919750955093509150611edd9087611722565b60008060008060008061208d876116d3565b6001600160a01b038f166000908152600a6020526040902054959b509399509197509550935091506120bf9088611722565b6001600160a01b038a166000908152600a6020908152604080832093909355600990522054611fd29087611722565b601854601755601a54601955565b60006108ce606461119f6017548561135a90919063ffffffff16565b60006108ce606461119f6019548561135a90919063ffffffff16565b600061213e61168b565b9050600061214c838361135a565b3060009081526009602052604090205490915061216990826116ae565b30600090815260096020908152604080832093909355600d9052205460ff16156121b857306000908152600a60205260409020546121a790846116ae565b306000908152600a60205260409020555b505050565b6011546121ca9083611722565b6011556012546121da90826116ae565b6012555050565b6000602082840312156121f2578081fd5b813561139481612912565b60006020828403121561220e578081fd5b815161139481612912565b6000806040838503121561222b578081fd5b823561223681612912565b9150602083013561224681612912565b809150509250929050565b600080600060608486031215612265578081fd5b833561227081612912565b9250602084013561228081612912565b929592945050506040919091013590565b600080604083850312156122a3578182fd5b82356122ae81612912565b946020939093013593505050565b6000602082840312156122cd578081fd5b81356113948161292a565b6000602082840312156122e9578081fd5b5035919050565b60008060408385031215612302578182fd5b8235915060208301356122468161292a565b600080600060608486031215612328578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b818110156123c7578581018301518582016040015282016123ab565b818111156123d85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f6c6971756964697479466565206f7574206f662072616e676500000000000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526019908201527f6d6178547850657263656e74206f7574206f662072616e676500000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526036908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152751bd8dac81d1a19481d1bdad95b8818dbdb9d1c9858dd60521b606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b602080825260139082015272746178466565206f7574206f662072616e676560681b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156128cd5784516001600160a01b0316835293830193918301916001016128a8565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b6001600160a01b038116811461292757600080fd5b50565b801515811461292757600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea4bc25df5a1524b0306dbcf101396a0b059bfc91b05253af9a5b85b0fd5bcb164736f6c634300060c0033000000000000000000000000205ff59885c8f161a418575c69682adc307dbacf00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000d5269636b4d6f727479446f787800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5269636b4d6f727479446f787800000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370a082311161015a578063b6c52324116100c1578063d543dbeb1161007a578063d543dbeb14610706578063dd46706414610726578063dd62ed3e14610746578063ea2f0b3714610766578063f2fde38b14610786578063f887ea40146107a65761029e565b8063b6c523241461067d578063c49b9a8014610692578063c7992f9a146106b2578063ce404b23146106c7578063d12a7688146106dc578063d28d8852146106f15761029e565b806395d89b411161011357806395d89b41146105e9578063a457c2d7146105fe578063a69df4b51461061e578063a9059cbb14610633578063af465a2714610653578063b09f1266146106685761029e565b806370a082311461054a578063715018a61461056a5780637d1db4a51461057f57806388f82020146105945780638da5cb5b146105b45780638ee88c53146105c95761029e565b806339509351116101fe578063475877d9116101b7578063475877d9146104c157806349bd5a5e146104d65780634a74bb02146104eb5780635342acb41461050057806355924646146105205780636bc87c3a146105355761029e565b806339509351146104175780633b124fe7146104375780633bd5d1731461044c578063430ca0901461046c578063437823ec146104815780634549b039146104a15761029e565b806318160ddd1161025057806318160ddd1461037657806323b872dd1461038b5780632d838119146103ab578063313ce567146103cb578063324f8dbf146103ed578063368f5bd5146104025761029e565b8063061c82d0146102a357806306fdde03146102c5578063095ea7b3146102f057806313114a9d1461031d57806315ed604f1461033f5780631694505e146103545761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be3660046122d8565b6107bb565b005b3480156102d157600080fd5b506102da610820565b6040516102e7919061239b565b60405180910390f35b3480156102fc57600080fd5b5061031061030b366004612291565b6108b6565b6040516102e79190612390565b34801561032957600080fd5b506103326108d4565b6040516102e79190612875565b34801561034b57600080fd5b506103326108da565b34801561036057600080fd5b506103696108e0565b6040516102e79190612341565b34801561038257600080fd5b50610332610904565b34801561039757600080fd5b506103106103a6366004612251565b61090a565b3480156103b757600080fd5b506103326103c63660046122d8565b610991565b3480156103d757600080fd5b506103e06109d4565b6040516102e79190612904565b3480156103f957600080fd5b506103326109dd565b34801561040e57600080fd5b506102c36109e3565b34801561042357600080fd5b50610310610432366004612291565b610a3b565b34801561044357600080fd5b50610332610a89565b34801561045857600080fd5b506102c36104673660046122d8565b610a8f565b34801561047857600080fd5b50610332610b4a565b34801561048d57600080fd5b506102c361049c3660046121e1565b610b50565b3480156104ad57600080fd5b506103326104bc3660046122f0565b610ba9565b3480156104cd57600080fd5b50610332610c06565b3480156104e257600080fd5b50610369610c0c565b3480156104f757600080fd5b50610310610c30565b34801561050c57600080fd5b5061031061051b3660046121e1565b610c3e565b34801561052c57600080fd5b50610310610c5c565b34801561054157600080fd5b50610332610c65565b34801561055657600080fd5b506103326105653660046121e1565b610c6b565b34801561057657600080fd5b506102c3610ccd565b34801561058b57600080fd5b50610332610d3a565b3480156105a057600080fd5b506103106105af3660046121e1565b610d40565b3480156105c057600080fd5b50610369610d5e565b3480156105d557600080fd5b506102c36105e43660046122d8565b610d6d565b3480156105f557600080fd5b506102da610dc9565b34801561060a57600080fd5b50610310610619366004612291565b610e2a565b34801561062a57600080fd5b506102c3610e92565b34801561063f57600080fd5b5061031061064e366004612291565b610f2c565b34801561065f57600080fd5b50610332610f40565b34801561067457600080fd5b506102da610f46565b34801561068957600080fd5b50610332610fd4565b34801561069e57600080fd5b506102c36106ad3660046122bc565b610fda565b3480156106be57600080fd5b5061033261105d565b3480156106d357600080fd5b506102c3611063565b3480156106e857600080fd5b506103326110c0565b3480156106fd57600080fd5b506102da6110c6565b34801561071257600080fd5b506102c36107213660046122d8565b611121565b34801561073257600080fd5b506102c36107413660046122d8565b6111ab565b34801561075257600080fd5b50610332610761366004612219565b611226565b34801561077257600080fd5b506102c36107813660046121e1565b611251565b34801561079257600080fd5b506102c36107a13660046121e1565b6112a7565b3480156107b257600080fd5b5061036961134b565b6107c36113dd565b6000546001600160a01b039081169116146107f95760405162461bcd60e51b81526004016107f090612631565b60405180910390fd5b60055481111561081b5760405162461bcd60e51b81526004016107f090612848565b601755565b60148054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b60006108ca6108c36113dd565b84846113e1565b5060015b92915050565b60125490565b60075481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60105490565b6000610917848484611495565b610987846109236113dd565b61098285604051806060016040528060288152602001612939602891396001600160a01b038a166000908152600b60205260408120906109616113dd565b6001600160a01b03168152602081019190915260400160002054919061165f565b6113e1565b5060019392505050565b60006011548211156109b55760405162461bcd60e51b81526004016107f090612468565b60006109bf61168b565b90506109cb838261139b565b9150505b919050565b60165460ff1690565b60065481565b6109eb6113dd565b6000546001600160a01b03908116911614610a185760405162461bcd60e51b81526004016107f090612631565b601054601c55600754601955600854601755601b805461ff001916610100179055565b60006108ca610a486113dd565b8461098285600b6000610a596113dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906116ae565b60175481565b6000610a996113dd565b6001600160a01b0381166000908152600d602052604090205490915060ff1615610ad55760405162461bcd60e51b81526004016107f0906127fc565b6000610ae0836116d3565b505050506001600160a01b038416600090815260096020526040902054919250610b0c91905082611722565b6001600160a01b038316600090815260096020526040902055601154610b329082611722565b601155601254610b4290846116ae565b601255505050565b60045481565b610b586113dd565b6000546001600160a01b03908116911614610b855760405162461bcd60e51b81526004016107f090612631565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b6000601054831115610bcd5760405162461bcd60e51b81526004016107f090612571565b81610bec576000610bdd846116d3565b509395506108ce945050505050565b6000610bf7846116d3565b509295506108ce945050505050565b60085481565b7f0000000000000000000000003e523afed38640c0819eb8cce63b40e0849e6ee381565b601b54610100900460ff1681565b6001600160a01b03166000908152600c602052604090205460ff1690565b60135460ff1681565b60195481565b6001600160a01b0381166000908152600d602052604081205460ff1615610cab57506001600160a01b0381166000908152600a60205260409020546109cf565b6001600160a01b0382166000908152600960205260409020546108ce90610991565b610cd56113dd565b6000546001600160a01b03908116911614610d025760405162461bcd60e51b81526004016107f090612631565b600080546040516001600160a01b0390911690600080516020612961833981519152908390a3600080546001600160a01b0319169055565b601c5481565b6001600160a01b03166000908152600d602052604090205460ff1690565b6000546001600160a01b031690565b610d756113dd565b6000546001600160a01b03908116911614610da25760405162461bcd60e51b81526004016107f090612631565b600454811115610dc45760405162461bcd60e51b81526004016107f090612431565b601955565b60158054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108ac5780601f10610881576101008083540402835291602001916108ac565b60006108ca610e376113dd565b846109828560405180606001604052806025815260200161298160259139600b6000610e616113dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061165f565b6001546001600160a01b03163314610ebc5760405162461bcd60e51b81526004016107f0906127a6565b6002544211610edd5760405162461bcd60e51b81526004016107f09061276f565b600154600080546040516001600160a01b03938416939091169160008051602061296183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006108ca610f396113dd565b8484611495565b60105481565b6015805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b820191906000526020600020905b815481529060010190602001808311610faf57829003601f168201915b505050505081565b60025490565b610fe26113dd565b6000546001600160a01b0390811691161461100f5760405162461bcd60e51b81526004016107f090612631565b601b805461ff001916610100831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611052908390612390565b60405180910390a150565b60055481565b61106b6113dd565b6000546001600160a01b039081169116146110985760405162461bcd60e51b81526004016107f090612631565b6019805460075560178054600855601054601c5560009182905555601b805461ff0019169055565b601d5481565b6014805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fcc5780601f10610fa157610100808354040283529160200191610fcc565b6111296113dd565b6000546001600160a01b039081169116146111565760405162461bcd60e51b81526004016107f090612631565b6006548110158015611169575060648111155b6111855760405162461bcd60e51b81526004016107f0906126af565b6111a5606461119f8360105461135a90919063ffffffff16565b9061139b565b601c5550565b6111b36113dd565b6000546001600160a01b039081169116146111e05760405162461bcd60e51b81526004016107f090612631565b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612961833981519152908290a350565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205490565b6112596113dd565b6000546001600160a01b039081169116146112865760405162461bcd60e51b81526004016107f090612631565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6112af6113dd565b6000546001600160a01b039081169116146112dc5760405162461bcd60e51b81526004016107f090612631565b6001600160a01b0381166113025760405162461bcd60e51b81526004016107f0906124b2565b600080546040516001600160a01b038085169392169160008051602061296183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b031681565b600082611369575060006108ce565b8282028284828161137657fe5b04146113945760405162461bcd60e51b81526004016107f0906125f0565b9392505050565b600061139483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611764565b3390565b6001600160a01b0383166114075760405162461bcd60e51b81526004016107f09061272b565b6001600160a01b03821661142d5760405162461bcd60e51b81526004016107f0906124f8565b6001600160a01b038084166000818152600b602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611488908590612875565b60405180910390a3505050565b6001600160a01b0383166114bb5760405162461bcd60e51b81526004016107f0906126e6565b6001600160a01b0382166114e15760405162461bcd60e51b81526004016107f0906123ee565b600081116115015760405162461bcd60e51b81526004016107f090612666565b611509610d5e565b6001600160a01b0316836001600160a01b031614158015611543575061152d610d5e565b6001600160a01b0316826001600160a01b031614155b1561156a57601c5481111561156a5760405162461bcd60e51b81526004016107f0906125a8565b600061157530610c6b565b9050601c5481106115855750601c545b601d548110801590819061159c5750601b5460ff16155b80156115da57507f0000000000000000000000003e523afed38640c0819eb8cce63b40e0849e6ee36001600160a01b0316856001600160a01b031614155b80156115ed5750601b54610100900460ff165b1561160057601d5491506116008261179b565b6001600160a01b0385166000908152600c602052604090205460019060ff168061164257506001600160a01b0385166000908152600c602052604090205460ff165b1561164b575060005b61165786868684611833565b505050505050565b600081848411156116835760405162461bcd60e51b81526004016107f0919061239b565b505050900390565b60008060006116986119a7565b90925090506116a7828261139b565b9250505090565b6000828201838110156113945760405162461bcd60e51b81526004016107f09061253a565b60008060008060008060008060006116ea8a611b0a565b92509250925060008060006117088d868661170361168b565b611b4c565b919f909e50909c50959a5093985091965092945050505050565b600061139483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061165f565b600081836117855760405162461bcd60e51b81526004016107f0919061239b565b50600083858161179157fe5b0495945050505050565b601b805460ff1916600117905560006117b582600261139b565b905060006117c38383611722565b9050476117cf83611b9c565b60006117db4783611722565b90506117e78382611d56565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161181a939291906128ee565b60405180910390a15050601b805460ff19169055505050565b8061184057611840611e38565b6001600160a01b0384166000908152600d602052604090205460ff16801561188157506001600160a01b0383166000908152600d602052604090205460ff16155b1561189657611891848484611e6a565b611994565b6001600160a01b0384166000908152600d602052604090205460ff161580156118d757506001600160a01b0383166000908152600d602052604090205460ff165b156118e757611891848484611f8e565b6001600160a01b0384166000908152600d602052604090205460ff1615801561192957506001600160a01b0383166000908152600d602052604090205460ff16155b1561193957611891848484612037565b6001600160a01b0384166000908152600d602052604090205460ff16801561197957506001600160a01b0383166000908152600d602052604090205460ff165b156119895761189184848461207b565b611994848484612037565b806119a1576119a16120ee565b50505050565b6011546010546000918291825b600e54811015611ad8578260096000600e84815481106119d057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a35575081600a6000600e8481548110611a0e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a4c5760115460105494509450505050611b06565b611a8c60096000600e8481548110611a6057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611722565b9250611ace600a6000600e8481548110611aa257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611722565b91506001016119b4565b50601054601154611ae89161139b565b821015611b0057601154601054935093505050611b06565b90925090505b9091565b600080600080611b19856120fc565b90506000611b2686612118565b90506000611b3e82611b388986611722565b90611722565b979296509094509092505050565b6000808080611b5b888661135a565b90506000611b69888761135a565b90506000611b77888861135a565b90506000611b8982611b388686611722565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110611bca57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611c4357600080fd5b505afa158015611c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7b91906121fd565b81600181518110611c8857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611cd3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d2890859060009086903090429060040161287e565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611657573d6000803e3d6000fd5b611d81307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113e1565b60035460405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263f305d719928592611ddf923092899260009283929116904290600401612355565b6060604051808303818588803b158015611df857600080fd5b505af1158015611e0c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e319190612314565b5050505050565b601754158015611e485750601954155b15611e5257611e68565b6017805460185560198054601a55600091829055555b565b600080600080600080611e7c876116d3565b6001600160a01b038f166000908152600a6020526040902054959b50939950919750955093509150611eae9088611722565b6001600160a01b038a166000908152600a6020908152604080832093909355600990522054611edd9087611722565b6001600160a01b03808b1660009081526009602052604080822093909355908a1681522054611f0c90866116ae565b6001600160a01b038916600090815260096020526040902055611f2e81612134565b611f3884836121bd565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f7b9190612875565b60405180910390a3505050505050505050565b600080600080600080611fa0876116d3565b6001600160a01b038f16600090815260096020526040902054959b50939950919750955093509150611fd29087611722565b6001600160a01b03808b16600090815260096020908152604080832094909455918b168152600a909152205461200890846116ae565b6001600160a01b0389166000908152600a6020908152604080832093909355600990522054611f0c90866116ae565b600080600080600080612049876116d3565b6001600160a01b038f16600090815260096020526040902054959b50939950919750955093509150611edd9087611722565b60008060008060008061208d876116d3565b6001600160a01b038f166000908152600a6020526040902054959b509399509197509550935091506120bf9088611722565b6001600160a01b038a166000908152600a6020908152604080832093909355600990522054611fd29087611722565b601854601755601a54601955565b60006108ce606461119f6017548561135a90919063ffffffff16565b60006108ce606461119f6019548561135a90919063ffffffff16565b600061213e61168b565b9050600061214c838361135a565b3060009081526009602052604090205490915061216990826116ae565b30600090815260096020908152604080832093909355600d9052205460ff16156121b857306000908152600a60205260409020546121a790846116ae565b306000908152600a60205260409020555b505050565b6011546121ca9083611722565b6011556012546121da90826116ae565b6012555050565b6000602082840312156121f2578081fd5b813561139481612912565b60006020828403121561220e578081fd5b815161139481612912565b6000806040838503121561222b578081fd5b823561223681612912565b9150602083013561224681612912565b809150509250929050565b600080600060608486031215612265578081fd5b833561227081612912565b9250602084013561228081612912565b929592945050506040919091013590565b600080604083850312156122a3578182fd5b82356122ae81612912565b946020939093013593505050565b6000602082840312156122cd578081fd5b81356113948161292a565b6000602082840312156122e9578081fd5b5035919050565b60008060408385031215612302578182fd5b8235915060208301356122468161292a565b600080600060608486031215612328578283fd5b8351925060208401519150604084015190509250925092565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b818110156123c7578581018301518582016040015282016123ab565b818111156123d85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526019908201527f6c6971756964697479466565206f7574206f662072616e676500000000000000604082015260600190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526019908201527f6d6178547850657263656e74206f7574206f662072616e676500000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526036908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152751bd8dac81d1a19481d1bdad95b8818dbdb9d1c9858dd60521b606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b602080825260139082015272746178466565206f7574206f662072616e676560681b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156128cd5784516001600160a01b0316835293830193918301916001016128a8565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b6001600160a01b038116811461292757600080fd5b50565b801515811461292757600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ea4bc25df5a1524b0306dbcf101396a0b059bfc91b05253af9a5b85b0fd5bcb164736f6c634300060c0033

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

000000000000000000000000205ff59885c8f161a418575c69682adc307dbacf00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000021e19e0c9bab240000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000000d5269636b4d6f727479446f787800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5269636b4d6f727479446f787800000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenOwner (address): 0x205fF59885C8F161a418575c69682aDC307dBAcf
Arg [1] : name (string): RickMortyDoxx
Arg [2] : symbol (string): RickMortyDoxx
Arg [3] : decimal (uint8): 9
Arg [4] : amountOfTokenWei (uint256): 10000000000000000000000
Arg [5] : setTaxFee (uint8): 8
Arg [6] : setLiqFee (uint8): 3
Arg [7] : _maxTaxFee (uint256): 10
Arg [8] : _maxLiqFee (uint256): 10
Arg [9] : _minMxTxPer (uint256): 50

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 000000000000000000000000205ff59885c8f161a418575c69682adc307dbacf
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 00000000000000000000000000000000000000000000021e19e0c9bab2400000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [11] : 5269636b4d6f727479446f787800000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [13] : 5269636b4d6f727479446f787800000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25664:19010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33055:174;;;;;;;;;;-1:-1:-1;33055:174:0;;;;;:::i;:::-;;:::i;:::-;;28928:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29840:161;;;;;;;;;;-1:-1:-1;29840:161:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30961:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25977:25::-;;;;;;;;;;;;;:::i;26911:51::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29205:95::-;;;;;;;;;;;;;:::i;30009:313::-;;;;;;;;;;-1:-1:-1;30009:313:0;;;;;:::i;:::-;;:::i;31885:253::-;;;;;;;;;;-1:-1:-1;31885:253:0;;;;;:::i;:::-;;:::i;29114:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25933:37::-;;;;;;;;;;;;;:::i;44484:187::-;;;;;;;;;;;;;:::i;30330:218::-;;;;;;;;;;-1:-1:-1;30330:218:0;;;;;:::i;:::-;;:::i;26731:22::-;;;;;;;;;;;;;:::i;31056:377::-;;;;;;;;;;-1:-1:-1;31056:377:0;;;;;:::i;:::-;;:::i;25861:29::-;;;;;;;;;;;;;:::i;32810:111::-;;;;;;;;;;-1:-1:-1;32810:111:0;;;;;:::i;:::-;;:::i;31441:436::-;;;;;;;;;;-1:-1:-1;31441:436:0;;;;;:::i;:::-;;:::i;26009:25::-;;;;;;;;;;;;;:::i;26969:38::-;;;;;;;;;;;;;:::i;27048:41::-;;;;;;;;;;;;;:::i;37225:123::-;;;;;;;;;;-1:-1:-1;37225:123:0;;;;;:::i;:::-;;:::i;26601:33::-;;;;;;;;;;;;;:::i;26814:28::-;;;;;;;;;;;;;:::i;29308:198::-;;;;;;;;;;-1:-1:-1;29308:198:0;;;;;:::i;:::-;;:::i;16240:148::-;;;;;;;;;;;;;:::i;27102:27::-;;;;;;;;;;;;;:::i;30833:120::-;;;;;;;;;;-1:-1:-1;30833:120:0;;;;;:::i;:::-;;:::i;15597:79::-;;;;;;;;;;;;;:::i;33241:216::-;;;;;;;;;;-1:-1:-1;33241:216:0;;;;;:::i;:::-;;:::i;29019:87::-;;;;;;;;;;;;;:::i;30556:269::-;;;;;;;;;;-1:-1:-1;30556:269:0;;;;;:::i;:::-;;:::i;17250:312::-;;;;;;;;;;;;;:::i;29514:167::-;;;;;;;;;;-1:-1:-1;29514:167:0;;;;;:::i;:::-;;:::i;26509:22::-;;;;;;;;;;;;;:::i;26667:21::-;;;;;;;;;;;;;:::i;16795:89::-;;;;;;;;;;;;;:::i;33741:171::-;;;;;;;;;;-1:-1:-1;33741:171:0;;;;;:::i;:::-;;:::i;25897:29::-;;;;;;;;;;;;;:::i;44223:249::-;;;;;;;;;;;;;:::i;27136:44::-;;;;;;;;;;;;;:::i;26641:19::-;;;;;;;;;;;;;:::i;33468:265::-;;;;;;;;;;-1:-1:-1;33468:265:0;;;;;:::i;:::-;;:::i;16960:214::-;;;;;;;;;;-1:-1:-1;16960:214:0;;;;;:::i;:::-;;:::i;29689:143::-;;;;;;;;;;-1:-1:-1;29689:143:0;;;;;:::i;:::-;;:::i;32933:110::-;;;;;;;;;;-1:-1:-1;32933:110:0;;;;;:::i;:::-;;:::i;16543:244::-;;;;;;;;;;-1:-1:-1;16543:244:0;;;;;:::i;:::-;;:::i;26368:66::-;;;;;;;;;;;;;:::i;33055:174::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;;;;;;;;;33162:9:::1;;33153:6;:18;;33130:64;;;;-1:-1:-1::0;;;33130:64:0::1;;;;;;;:::i;:::-;33205:7;:16:::0;33055:174::o;28928:83::-;28998:5;28991:12;;;;;;;;-1:-1:-1;;28991:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28965:13;;28991:12;;28998:5;;28991:12;;28998:5;28991:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28928:83;:::o;29840:161::-;29915:4;29932:39;29941:12;:10;:12::i;:::-;29955:7;29964:6;29932:8;:39::i;:::-;-1:-1:-1;29989:4:0;29840:161;;;;;:::o;30961:87::-;31030:10;;30961:87;:::o;25977:25::-;;;;:::o;26911:51::-;;;:::o;29205:95::-;29285:7;;29205:95;:::o;30009:313::-;30107:4;30124:36;30134:6;30142:9;30153:6;30124:9;:36::i;:::-;30171:121;30180:6;30188:12;:10;:12::i;:::-;30202:89;30240:6;30202:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30202:19:0;;;;;;:11;:19;;;;;;30222:12;:10;:12::i;:::-;-1:-1:-1;;;;;30202:33:0;;;;;;;;;;;;-1:-1:-1;30202:33:0;;;:89;:37;:89::i;:::-;30171:8;:121::i;:::-;-1:-1:-1;30310:4:0;30009:313;;;;;:::o;31885:253::-;31951:7;31990;;31979;:18;;31971:73;;;;-1:-1:-1;;;31971:73:0;;;;;;;:::i;:::-;32055:19;32078:10;:8;:10::i;:::-;32055:33;-1:-1:-1;32106:24:0;:7;32055:33;32106:11;:24::i;:::-;32099:31;;;31885:253;;;;:::o;29114:83::-;29180:9;;;;29114:83;:::o;25933:37::-;;;;:::o;44484:187::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;44549:7:::1;::::0;44534:12:::1;:22:::0;44583:10:::1;::::0;44567:13:::1;:26:::0;44614:10:::1;::::0;44604:7:::1;:20:::0;44635:21:::1;:28:::0;;-1:-1:-1;;44635:28:0::1;;;::::0;;44484:187::o;30330:218::-;30418:4;30435:83;30444:12;:10;:12::i;:::-;30458:7;30467:50;30506:10;30467:11;:25;30479:12;:10;:12::i;:::-;-1:-1:-1;;;;;30467:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30467:25:0;;;:34;;;;;;;;;;;:38;:50::i;26731:22::-;;;;:::o;31056:377::-;31108:14;31125:12;:10;:12::i;:::-;-1:-1:-1;;;;;31157:19:0;;;;;;:11;:19;;;;;;31108:29;;-1:-1:-1;31157:19:0;;31156:20;31148:77;;;;-1:-1:-1;;;31148:77:0;;;;;;;:::i;:::-;31237:15;31261:19;31272:7;31261:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31309:15:0;;;;;;:7;:15;;;;;;31236:44;;-1:-1:-1;31309:28:0;;:15;-1:-1:-1;31236:44:0;31309:19;:28::i;:::-;-1:-1:-1;;;;;31291:15:0;;;;;;:7;:15;;;;;:46;31358:7;;:20;;31370:7;31358:11;:20::i;:::-;31348:7;:30;31402:10;;:23;;31417:7;31402:14;:23::i;:::-;31389:10;:36;-1:-1:-1;;;31056:377:0:o;25861:29::-;;;;:::o;32810:111::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32879:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;32879:34:0::1;32909:4;32879:34;::::0;;32810:111::o;31441:436::-;31531:7;31570;;31559;:18;;31551:62;;;;-1:-1:-1;;;31551:62:0;;;;;;;:::i;:::-;31629:17;31624:246;;31664:15;31688:19;31699:7;31688:10;:19::i;:::-;-1:-1:-1;31663:44:0;;-1:-1:-1;31722:14:0;;-1:-1:-1;;;;;31722:14:0;31624:246;31771:23;31802:19;31813:7;31802:10;:19::i;:::-;-1:-1:-1;31769:52:0;;-1:-1:-1;31836:22:0;;-1:-1:-1;;;;;31836:22:0;26009:25;;;;:::o;26969:38::-;;;:::o;27048:41::-;;;;;;;;;:::o;37225:123::-;-1:-1:-1;;;;;37313:27:0;37289:4;37313:27;;;:18;:27;;;;;;;;;37225:123::o;26601:33::-;;;;;;:::o;26814:28::-;;;;:::o;29308:198::-;-1:-1:-1;;;;;29398:20:0;;29374:7;29398:20;;;:11;:20;;;;;;;;29394:49;;;-1:-1:-1;;;;;;29427:16:0;;;;;;:7;:16;;;;;;29420:23;;29394:49;-1:-1:-1;;;;;29481:16:0;;;;;;:7;:16;;;;;;29461:37;;:19;:37::i;16240:148::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;16347:1:::1;16331:6:::0;;16310:40:::1;::::0;-1:-1:-1;;;;;16331:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16310:40:0;16347:1;;16310:40:::1;16378:1;16361:19:::0;;-1:-1:-1;;;;;;16361:19:0::1;::::0;;16240:148::o;27102:27::-;;;;:::o;30833:120::-;-1:-1:-1;;;;;30925:20:0;30901:4;30925:20;;;:11;:20;;;;;;;;;30833:120::o;15597:79::-;15635:7;15662:6;-1:-1:-1;;;;;15662:6:0;15597:79;:::o;33241:216::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;33372:9:::1;;33357:12;:24;;33328:82;;;;-1:-1:-1::0;;;33328:82:0::1;;;;;;;:::i;:::-;33421:13;:28:::0;33241:216::o;29019:87::-;29091:7;29084:14;;;;;;;;-1:-1:-1;;29084:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29058:13;;29084:14;;29091:7;;29084:14;;29091:7;29084:14;;;;;;;;;;;;;;;;;;;;;;;;30556:269;30649:4;30666:129;30675:12;:10;:12::i;:::-;30689:7;30698:96;30737:15;30698:96;;;;;;;;;;;;;;;;;:11;:25;30710:12;:10;:12::i;:::-;-1:-1:-1;;;;;30698:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30698:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17250:312::-;17302:14;;-1:-1:-1;;;;;17302:14:0;17320:10;17302:28;17294:95;;;;-1:-1:-1;;;17294:95:0;;;;;;;:::i;:::-;17414:9;;17408:3;:15;17400:60;;;;-1:-1:-1;;;17400:60:0;;;;;;;:::i;:::-;17505:14;;;17497:6;;17476:44;;-1:-1:-1;;;;;17505:14:0;;;;17497:6;;;;-1:-1:-1;;;;;;;;;;;17476:44:0;;17540:14;;;17531:23;;-1:-1:-1;;;;;;17531:23:0;-1:-1:-1;;;;;17540:14:0;;;17531:23;;;;;;17250:312::o;29514:167::-;29592:4;29609:42;29619:12;:10;:12::i;:::-;29633:9;29644:6;29609:9;:42::i;26509:22::-;;;;:::o;26667:21::-;;;;;;;;;;;;;;;-1:-1:-1;;26667:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16795:89::-;16867:9;;16795:89;:::o;33741:171::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;33818:21:::1;:32:::0;;-1:-1:-1;;33818:32:0::1;;::::0;::::1;;;;::::0;;33866:38:::1;::::0;::::1;::::0;::::1;::::0;33818:32;;33866:38:::1;:::i;:::-;;;;;;;;33741:171:::0;:::o;25897:29::-;;;;:::o;44223:249::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;44287:13:::1;::::0;;44274:10:::1;:26:::0;44324:7:::1;::::0;;44311:10:::1;:20:::0;44367:7:::1;::::0;44352:12:::1;:22:::0;-1:-1:-1;44385:17:0;;;;44413:11;44435:21:::1;:29:::0;;-1:-1:-1;;44435:29:0::1;::::0;;44223:249::o;27136:44::-;;;;:::o;26641:19::-;;;;;;;;;;;;;;;-1:-1:-1;;26641:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33468:265;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;33571:17:::1;;33555:12;:33;;:55;;;;;33607:3;33592:12;:18;;33555:55;33547:92;;;;-1:-1:-1::0;;;33547:92:0::1;;;;;;;:::i;:::-;33665:60;33709:5;33665:25;33677:12;33665:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33650:12;:75:::0;-1:-1:-1;33468:265:0:o;16960:214::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;17041:6:::1;::::0;;;17024:23;;-1:-1:-1;;;;;;17024:23:0;;::::1;-1:-1:-1::0;;;;;17041:6:0;::::1;17024:23;::::0;;;17058:19:::1;::::0;;17100:3:::1;:10:::0;::::1;17088:9;:22:::0;17126:40:::1;::::0;17041:6;;-1:-1:-1;;;;;;;;;;;17126:40:0;17041:6;;17126:40:::1;16960:214:::0;:::o;29689:143::-;-1:-1:-1;;;;;29797:18:0;;;29770:7;29797:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29689:143::o;32933:110::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33000:27:0::1;33030:5;33000:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33000:35:0::1;::::0;;32933:110::o;16543:244::-;15819:12;:10;:12::i;:::-;15809:6;;-1:-1:-1;;;;;15809:6:0;;;:22;;;15801:67;;;;-1:-1:-1;;;15801:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16632:22:0;::::1;16624:73;;;;-1:-1:-1::0;;;16624:73:0::1;;;;;;;:::i;:::-;16734:6;::::0;;16713:38:::1;::::0;-1:-1:-1;;;;;16713:38:0;;::::1;::::0;16734:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16713:38:0;::::1;16762:6;:17:::0;;-1:-1:-1;;;;;;16762:17:0::1;-1:-1:-1::0;;;;;16762:17:0;;;::::1;::::0;;;::::1;::::0;;16543:244::o;26368:66::-;;;-1:-1:-1;;;;;26368:66:0;;:::o;4866:471::-;4924:7;5169:6;5165:47;;-1:-1:-1;5199:1:0;5192:8;;5165:47;5236:5;;;5240:1;5236;:5;:1;5260:5;;;;;:10;5252:56;;;;-1:-1:-1;;;5252:56:0;;;;;;;:::i;:::-;5328:1;4866:471;-1:-1:-1;;;4866:471:0:o;5813:132::-;5871:7;5898:39;5902:1;5905;5898:39;;;;;;;;;;;;;;;;;:3;:39::i;8005:106::-;8093:10;8005:106;:::o;37356:337::-;-1:-1:-1;;;;;37449:19:0;;37441:68;;;;-1:-1:-1;;;37441:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37528:21:0;;37520:68;;;;-1:-1:-1;;;37520:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37601:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;37653:32;;;;;37631:6;;37653:32;:::i;:::-;;;;;;;;37356:337;;;:::o;37701:1813::-;-1:-1:-1;;;;;37823:18:0;;37815:68;;;;-1:-1:-1;;;37815:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37902:16:0;;37894:64;;;;-1:-1:-1;;;37894:64:0;;;;;;;:::i;:::-;37986:1;37977:6;:10;37969:64;;;;-1:-1:-1;;;37969:64:0;;;;;;;:::i;:::-;38055:7;:5;:7::i;:::-;-1:-1:-1;;;;;38047:15:0;:4;-1:-1:-1;;;;;38047:15:0;;;:32;;;;;38072:7;:5;:7::i;:::-;-1:-1:-1;;;;;38066:13:0;:2;-1:-1:-1;;;;;38066:13:0;;;38047:32;38044:125;;;38112:12;;38102:6;:22;;38094:75;;;;-1:-1:-1;;;38094:75:0;;;;;;;:::i;:::-;38464:28;38495:24;38513:4;38495:9;:24::i;:::-;38464:55;;38567:12;;38543:20;:36;38540:112;;-1:-1:-1;38628:12:0;;38540:112;38723:29;;38699:53;;;;;;;38781;;-1:-1:-1;38818:16:0;;;;38817:17;38781:53;:91;;;;;38859:13;-1:-1:-1;;;;;38851:21:0;:4;-1:-1:-1;;;;;38851:21:0;;;38781:91;:129;;;;-1:-1:-1;38889:21:0;;;;;;;38781:129;38763:318;;;38960:29;;38937:52;;39033:36;39048:20;39033:14;:36::i;:::-;-1:-1:-1;;;;;39289:24:0;;39162:12;39289:24;;;:18;:24;;;;;;39177:4;;39289:24;;;:50;;-1:-1:-1;;;;;;39317:22:0;;;;;;:18;:22;;;;;;;;39289:50;39286:96;;;-1:-1:-1;39365:5:0;39286:96;39468:38;39483:4;39488:2;39491:6;39498:7;39468:14;:38::i;:::-;37701:1813;;;;;;:::o;4415:192::-;4501:7;4537:12;4529:6;;;;4521:29;;;;-1:-1:-1;;;4521:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;4573:5:0;;;4415:192::o;35375:163::-;35416:7;35437:15;35454;35473:19;:17;:19::i;:::-;35436:56;;-1:-1:-1;35436:56:0;-1:-1:-1;35510:20:0;35436:56;;35510:11;:20::i;:::-;35503:27;;;;35375:163;:::o;3512:181::-;3570:7;3602:5;;;3626:6;;;;3618:46;;;;-1:-1:-1;;;3618:46:0;;;;;;;:::i;34173:419::-;34232:7;34241;34250;34259;34268;34277;34298:23;34323:12;34337:18;34359:20;34371:7;34359:11;:20::i;:::-;34297:82;;;;;;34391:15;34408:23;34433:12;34449:50;34461:7;34470:4;34476:10;34488;:8;:10::i;:::-;34449:11;:50::i;:::-;34390:109;;;;-1:-1:-1;34390:109:0;;-1:-1:-1;34550:15:0;;-1:-1:-1;34567:4:0;;-1:-1:-1;34573:10:0;;-1:-1:-1;34173:419:0;;-1:-1:-1;;;;;34173:419:0:o;3976:136::-;4034:7;4061:43;4065:1;4068;4061:43;;;;;;;;;;;;;;;;;:3;:43::i;6441:278::-;6527:7;6562:12;6555:5;6547:28;;;;-1:-1:-1;;;6547:28:0;;;;;;;;:::i;:::-;;6586:9;6602:1;6598;:5;;;;;;;6441:278;-1:-1:-1;;;;;6441:278:0:o;39522:985::-;27487:16;:23;;-1:-1:-1;;27487:23:0;27506:4;27487:23;;;:16;39673:27:::1;:20:::0;39698:1:::1;39673:24;:27::i;:::-;39658:42:::0;-1:-1:-1;39711:17:0::1;39731:30;:20:::0;39658:42;39731:24:::1;:30::i;:::-;39711:50:::0;-1:-1:-1;40064:21:0::1;40130:22;40147:4:::0;40130:16:::1;:22::i;:::-;40283:18;40304:41;:21;40330:14:::0;40304:25:::1;:41::i;:::-;40283:62;;40395:35;40408:9;40419:10;40395:12;:35::i;:::-;40456:43;40471:4;40477:10;40489:9;40456:43;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;27533:16:0;:24;;-1:-1:-1;;27533:24:0;;;-1:-1:-1;;;39522:985:0:o;41703:834::-;41814:7;41810:40;;41836:14;:12;:14::i;:::-;-1:-1:-1;;;;;41875:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41899:22:0;;;;;;:11;:22;;;;;;;;41898:23;41875:46;41871:597;;;41938:48;41960:6;41968:9;41979:6;41938:21;:48::i;:::-;41871:597;;;-1:-1:-1;;;;;42009:19:0;;;;;;:11;:19;;;;;;;;42008:20;:46;;;;-1:-1:-1;;;;;;42032:22:0;;;;;;:11;:22;;;;;;;;42008:46;42004:464;;;42071:46;42091:6;42099:9;42110:6;42071:19;:46::i;42004:464::-;-1:-1:-1;;;;;42140:19:0;;;;;;:11;:19;;;;;;;;42139:20;:47;;;;-1:-1:-1;;;;;;42164:22:0;;;;;;:11;:22;;;;;;;;42163:23;42139:47;42135:333;;;42203:44;42221:6;42229:9;42240:6;42203:17;:44::i;42135:333::-;-1:-1:-1;;;;;42269:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42292:22:0;;;;;;:11;:22;;;;;;;;42269:45;42265:203;;;42331:48;42353:6;42361:9;42372:6;42331:21;:48::i;42265:203::-;42412:44;42430:6;42438:9;42449:6;42412:17;:44::i;:::-;42492:7;42488:41;;42514:15;:13;:15::i;:::-;41703:834;;;;:::o;35546:561::-;35643:7;;35679;;35596;;;;;35703:289;35727:9;:16;35723:20;;35703:289;;;35793:7;35769;:21;35777:9;35787:1;35777:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35777:12:0;35769:21;;;;;;;;;;;;;:31;;:66;;;35828:7;35804;:21;35812:9;35822:1;35812:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35812:12:0;35804:21;;;;;;;;;;;;;:31;35769:66;35765:97;;;35845:7;;35854;;35837:25;;;;;;;;;35765:97;35887:34;35899:7;:21;35907:9;35917:1;35907:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35907:12:0;35899:21;;;;;;;;;;;;;35887:7;;:11;:34::i;:::-;35877:44;;35946:34;35958:7;:21;35966:9;35976:1;35966:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35966:12:0;35958:21;;;;;;;;;;;;;35946:7;;:11;:34::i;:::-;35936:44;-1:-1:-1;35745:3:0;;35703:289;;;-1:-1:-1;36028:7:0;;36016;;:20;;:11;:20::i;:::-;36006:7;:30;36002:61;;;36046:7;;36055;;36038:25;;;;;;;;36002:61;36082:7;;-1:-1:-1;36091:7:0;-1:-1:-1;35546:561:0;;;:::o;34600:330::-;34660:7;34669;34678;34698:12;34713:24;34729:7;34713:15;:24::i;:::-;34698:39;;34748:18;34769:30;34791:7;34769:21;:30::i;:::-;34748:51;-1:-1:-1;34810:23:0;34836:33;34748:51;34836:17;:7;34848:4;34836:11;:17::i;:::-;:21;;:33::i;:::-;34810:59;34905:4;;-1:-1:-1;34911:10:0;;-1:-1:-1;34600:330:0;;-1:-1:-1;;;34600:330:0:o;34938:429::-;35053:7;;;;35109:24;:7;35121:11;35109;:24::i;:::-;35091:42;-1:-1:-1;35144:12:0;35159:21;:4;35168:11;35159:8;:21::i;:::-;35144:36;-1:-1:-1;35191:18:0;35212:27;:10;35227:11;35212:14;:27::i;:::-;35191:48;-1:-1:-1;35250:23:0;35276:33;35191:48;35276:17;:7;35288:4;35276:11;:17::i;:33::-;35328:7;;;;-1:-1:-1;35354:4:0;;-1:-1:-1;34938:429:0;;-1:-1:-1;;;;;;;34938:429:0:o;40515:589::-;40665:16;;;40679:1;40665:16;;;40641:21;40665:16;;;;;40641:21;40665:16;;;;;;;;;;-1:-1:-1;40665:16:0;40641:40;;40710:4;40692;40697:1;40692:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40692:23:0;;;-1:-1:-1;;;;;40692:23:0;;;;;40736:15;-1:-1:-1;;;;;40736:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40726:4;40731:1;40726:7;;;;;;;;;;;;;:32;-1:-1:-1;;;;;40726:32:0;;;-1:-1:-1;;;;;40726:32:0;;;;;40771:62;40788:4;40803:15;40821:11;40771:8;:62::i;:::-;40872:224;;-1:-1:-1;;;40872:224:0;;-1:-1:-1;;;;;40872:15:0;:66;;;;:224;;40953:11;;40979:1;;41023:4;;41050;;41070:15;;40872:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41112:510;41260:62;41277:4;41292:15;41310:11;41260:8;:62::i;:::-;41569:4;;41365:249;;-1:-1:-1;;;41365:249:0;;-1:-1:-1;;;;;41365:15:0;:31;;;;;41404:9;;41365:249;;41437:4;;41457:11;;41483:1;;;;41569:4;;;41588:15;;41365:249;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41112:510;;:::o;36826:250::-;36872:7;;:12;:34;;;;-1:-1:-1;36888:13:0;;:18;36872:34;36869:46;;;36908:7;;36869:46;36953:7;;;36935:15;:25;36995:13;;;36971:21;:37;-1:-1:-1;37029:11:0;;;;37051:17;36826:250;:::o;43649:566::-;43752:15;43769:23;43794:12;43808:23;43833:12;43847:18;43869:19;43880:7;43869:10;:19::i;:::-;-1:-1:-1;;;;;43917:15:0;;;;;;:7;:15;;;;;;43751:137;;-1:-1:-1;43751:137:0;;-1:-1:-1;43751:137:0;;-1:-1:-1;43751:137:0;-1:-1:-1;43751:137:0;-1:-1:-1;43751:137:0;-1:-1:-1;43917:28:0;;43937:7;43917:19;:28::i;:::-;-1:-1:-1;;;;;43899:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43974:7;:15;;;;:28;;43994:7;43974:19;:28::i;:::-;-1:-1:-1;;;;;43956:15:0;;;;;;;:7;:15;;;;;;:46;;;;44034:18;;;;;;;:39;;44057:15;44034:22;:39::i;:::-;-1:-1:-1;;;;;44013:18:0;;;;;;:7;:18;;;;;:60;44087:26;44102:10;44087:14;:26::i;:::-;44124:23;44136:4;44142;44124:11;:23::i;:::-;44180:9;-1:-1:-1;;;;;44163:44:0;44172:6;-1:-1:-1;;;;;44163:44:0;;44191:15;44163:44;;;;;;:::i;:::-;;;;;;;;43649:566;;;;;;;;;:::o;43055:586::-;43156:15;43173:23;43198:12;43212:23;43237:12;43251:18;43273:19;43284:7;43273:10;:19::i;:::-;-1:-1:-1;;;;;43321:15:0;;;;;;:7;:15;;;;;;43155:137;;-1:-1:-1;43155:137:0;;-1:-1:-1;43155:137:0;;-1:-1:-1;43155:137:0;-1:-1:-1;43155:137:0;-1:-1:-1;43155:137:0;-1:-1:-1;43321:28:0;;43155:137;43321:19;:28::i;:::-;-1:-1:-1;;;;;43303:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43381:18;;;;;:7;:18;;;;;:39;;43404:15;43381:22;:39::i;:::-;-1:-1:-1;;;;;43360:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43452:7;:18;;;;:39;;43475:15;43452:22;:39::i;42545:502::-;42644:15;42661:23;42686:12;42700:23;42725:12;42739:18;42761:19;42772:7;42761:10;:19::i;:::-;-1:-1:-1;;;;;42809:15:0;;;;;;:7;:15;;;;;;42643:137;;-1:-1:-1;42643:137:0;;-1:-1:-1;42643:137:0;;-1:-1:-1;42643:137:0;-1:-1:-1;42643:137:0;-1:-1:-1;42643:137:0;-1:-1:-1;42809:28:0;;42643:137;42809:19;:28::i;32152:642::-;32255:15;32272:23;32297:12;32311:23;32336:12;32350:18;32372:19;32383:7;32372:10;:19::i;:::-;-1:-1:-1;;;;;32420:15:0;;;;;;:7;:15;;;;;;32254:137;;-1:-1:-1;32254:137:0;;-1:-1:-1;32254:137:0;;-1:-1:-1;32254:137:0;-1:-1:-1;32254:137:0;-1:-1:-1;32254:137:0;-1:-1:-1;32420:28:0;;32440:7;32420:19;:28::i;:::-;-1:-1:-1;;;;;32402:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32477:7;:15;;;;:28;;32497:7;32477:19;:28::i;37088:125::-;37142:15;;37132:7;:25;37184:21;;37168:13;:37;37088:125::o;36486:154::-;36550:7;36577:55;36616:5;36577:20;36589:7;;36577;:11;;:20;;;;:::i;36648:166::-;36718:7;36745:61;36790:5;36745:26;36757:13;;36745:7;:11;;:26;;;;:::i;36119:355::-;36182:19;36205:10;:8;:10::i;:::-;36182:33;-1:-1:-1;36226:18:0;36247:27;:10;36182:33;36247:14;:27::i;:::-;36326:4;36310:22;;;;:7;:22;;;;;;36226:48;;-1:-1:-1;36310:38:0;;36226:48;36310:26;:38::i;:::-;36301:4;36285:22;;;;:7;:22;;;;;;;;:63;;;;36362:11;:26;;;;;;36359:107;;;36444:4;36428:22;;;;:7;:22;;;;;;:38;;36455:10;36428:26;:38::i;:::-;36419:4;36403:22;;;;:7;:22;;;;;:63;36359:107;36119:355;;;:::o;34018:147::-;34096:7;;:17;;34108:4;34096:11;:17::i;:::-;34086:7;:27;34137:10;;:20;;34152:4;34137:14;:20::i;:::-;34124:10;:33;-1:-1:-1;;34018:147:0:o;692:241:-1:-;;796:2;784:9;775:7;771:23;767:32;764:2;;;-1:-1;;802:12;764:2;85:6;72:20;97:33;124:5;97:33;:::i;940:263::-;;1055:2;1043:9;1034:7;1030:23;1026:32;1023:2;;;-1:-1;;1061:12;1023:2;226:6;220:13;238:33;265:5;238:33;:::i;1210:366::-;;;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;-1:-1;;1337:12;1299:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1389:63;-1:-1;1489:2;1528:22;;72:20;97:33;72:20;97:33;:::i;:::-;1497:63;;;;1293:283;;;;;:::o;1583:491::-;;;;1721:2;1709:9;1700:7;1696:23;1692:32;1689:2;;;-1:-1;;1727:12;1689:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1779:63;-1:-1;1879:2;1918:22;;72:20;97:33;72:20;97:33;:::i;:::-;1683:391;;1887:63;;-1:-1;;;1987:2;2026:22;;;;481:20;;1683:391::o;2081:366::-;;;2202:2;2190:9;2181:7;2177:23;2173:32;2170:2;;;-1:-1;;2208:12;2170:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2260:63;2360:2;2399:22;;;;481:20;;-1:-1;;;2164:283::o;2454:235::-;;2555:2;2543:9;2534:7;2530:23;2526:32;2523:2;;;-1:-1;;2561:12;2523:2;360:6;347:20;372:30;396:5;372:30;:::i;2696:241::-;;2800:2;2788:9;2779:7;2775:23;2771:32;2768:2;;;-1:-1;;2806:12;2768:2;-1:-1;481:20;;2762:175;-1:-1;2762:175::o;2944:360::-;;;3062:2;3050:9;3041:7;3037:23;3033:32;3030:2;;;-1:-1;;3068:12;3030:2;494:6;481:20;3120:63;;3220:2;3260:9;3256:22;347:20;372:30;396:5;372:30;:::i;3311:535::-;;;;3460:2;3448:9;3439:7;3435:23;3431:32;3428:2;;;-1:-1;;3466:12;3428:2;635:6;629:13;3518:74;;3629:2;3683:9;3679:22;629:13;3637:74;;3748:2;3802:9;3798:22;629:13;3756:74;;3422:424;;;;;:::o;12771:222::-;-1:-1;;;;;25179:54;;;;4245:37;;12898:2;12883:18;;12869:124::o;13000:828::-;-1:-1;;;;;25179:54;;;4114:58;;13464:2;13449:18;;12608:37;;;;13555:2;13540:18;;5520:58;;;;13646:2;13631:18;;5520:58;;;;25179:54;;;13729:3;13714:19;;4245:37;25190:42;13798:19;;12608:37;;;;13291:3;13276:19;;13262:566::o;13835:210::-;25091:13;;25084:21;5208:34;;13956:2;13941:18;;13927:118::o;14335:310::-;;14482:2;;14503:17;14496:47;5735:5;24283:12;24699:6;14482:2;14471:9;14467:18;24687:19;-1:-1;26311:101;26325:6;26322:1;26319:13;26311:101;;;26392:11;;;;;26386:18;26373:11;;;24727:14;26373:11;26366:39;26340:10;;26311:101;;;26427:6;26424:1;26421:13;26418:2;;;-1:-1;24727:14;26483:6;14471:9;26474:16;;26467:27;26418:2;-1:-1;26599:7;26583:14;-1:-1;;26579:28;5893:39;;;;24727:14;5893:39;;14453:192;-1:-1;;;14453:192::o;14652:416::-;14852:2;14866:47;;;6169:2;14837:18;;;24687:19;6205:34;24727:14;;;6185:55;-1:-1;;;6260:12;;;6253:27;6299:12;;;14823:245::o;15075:416::-;15275:2;15289:47;;;6550:2;15260:18;;;24687:19;6586:27;24727:14;;;6566:48;6633:12;;;15246:245::o;15498:416::-;15698:2;15712:47;;;6884:2;15683:18;;;24687:19;6920:34;24727:14;;;6900:55;-1:-1;;;6975:12;;;6968:34;7021:12;;;15669:245::o;15921:416::-;16121:2;16135:47;;;7272:2;16106:18;;;24687:19;7308:34;24727:14;;;7288:55;-1:-1;;;7363:12;;;7356:30;7405:12;;;16092:245::o;16344:416::-;16544:2;16558:47;;;7656:2;16529:18;;;24687:19;7692:34;24727:14;;;7672:55;-1:-1;;;7747:12;;;7740:26;7785:12;;;16515:245::o;16767:416::-;16967:2;16981:47;;;8036:2;16952:18;;;24687:19;8072:29;24727:14;;;8052:50;8121:12;;;16938:245::o;17190:416::-;17390:2;17404:47;;;8372:2;17375:18;;;24687:19;8408:33;24727:14;;;8388:54;8461:12;;;17361:245::o;17613:416::-;17813:2;17827:47;;;8712:2;17798:18;;;24687:19;8748:34;24727:14;;;8728:55;-1:-1;;;8803:12;;;8796:32;8847:12;;;17784:245::o;18036:416::-;18236:2;18250:47;;;9098:2;18221:18;;;24687:19;9134:34;24727:14;;;9114:55;-1:-1;;;9189:12;;;9182:25;9226:12;;;18207:245::o;18459:416::-;18659:2;18673:47;;;18644:18;;;24687:19;9513:34;24727:14;;;9493:55;9567:12;;;18630:245::o;18882:416::-;19082:2;19096:47;;;9818:2;19067:18;;;24687:19;9854:34;24727:14;;;9834:55;-1:-1;;;9909:12;;;9902:33;9954:12;;;19053:245::o;19305:416::-;19505:2;19519:47;;;10205:2;19490:18;;;24687:19;10241:27;24727:14;;;10221:48;10288:12;;;19476:245::o;19728:416::-;19928:2;19942:47;;;10539:2;19913:18;;;24687:19;10575:34;24727:14;;;10555:55;-1:-1;;;10630:12;;;10623:29;10671:12;;;19899:245::o;20151:416::-;20351:2;20365:47;;;10922:2;20336:18;;;24687:19;10958:34;24727:14;;;10938:55;-1:-1;;;11013:12;;;11006:28;11053:12;;;20322:245::o;20574:416::-;20774:2;20788:47;;;11304:2;20759:18;;;24687:19;11340:33;24727:14;;;11320:54;11393:12;;;20745:245::o;20997:416::-;21197:2;21211:47;;;11644:2;21182:18;;;24687:19;11680:34;24727:14;;;11660:55;-1:-1;;;11735:12;;;11728:46;11793:12;;;21168:245::o;21420:416::-;21620:2;21634:47;;;12044:2;21605:18;;;24687:19;12080:34;24727:14;;;12060:55;-1:-1;;;12135:12;;;12128:36;12183:12;;;21591:245::o;21843:416::-;22043:2;22057:47;;;12434:2;22028:18;;;24687:19;-1:-1;;;24727:14;;;12450:42;12511:12;;;22014:245::o;22266:222::-;12608:37;;;22393:2;22378:18;;22364:124::o;22495:848::-;;22800:3;22789:9;22785:19;12638:5;12615:3;12608:37;22973:2;25959:24;22973:2;22962:9;22958:18;5520:58;22800:3;23010:2;22999:9;22995:18;22988:48;23050:108;4638:5;24283:12;24699:6;24694:3;24687:19;24727:14;22789:9;24727:14;4650:93;;22973:2;4814:5;24137:14;4826:21;;-1:-1;4853:260;4878:6;4875:1;4872:13;4853:260;;;4939:13;;-1:-1;;;;;25179:54;4114:58;;24542:14;;;;4007;;;;25190:42;4893:9;4853:260;;;-1:-1;;;;;;;25179:54;;;;23245:2;23230:18;;4114:58;-1:-1;;;23328:3;23313:19;12608:37;23042:116;22771:572;-1:-1;;;22771:572::o;23350:444::-;12608:37;;;23697:2;23682:18;;12608:37;;;;23780:2;23765:18;;12608:37;23533:2;23518:18;;23504:290::o;23801:214::-;25395:4;25384:16;;;;12724:35;;23924:2;23909:18;;23895:120::o;26620:117::-;-1:-1;;;;;25179:54;;26679:35;;26669:2;;26728:1;;26718:12;26669:2;26663:74;:::o;26744:111::-;26825:5;25091:13;25084:21;26803:5;26800:32;26790:2;;26846:1;;26836:12

Swarm Source

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