ETH Price: $3,147.34 (+0.90%)
Gas: 3 Gwei

Token

KakashiInuV2 (KKI)
 

Overview

Max Total Supply

1,000,000,000,000 KKI

Holders

417

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
263,159,230.71695415 KKI

Value
$0.00
0x5b7cdd3ead9f61a0b4eede5992a25e4400fb2d03
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KakashiInuV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "KakashiInuV2";
    string private _symbol = "KKI";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 4;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 public _marketingFee = 5; // All taxes are divided by 100 for more accuracy.
    uint256 private _previousMarketingFee = _marketingFee;    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    address public burnAddress = 0xB8F7E93E4755f729cFf333904fA26DBF4ef2eb7F;
    address payable private _marketingWallet;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 10000000000 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 1000000000 * 10**9;
    uint256 private _maxWalletSize = 35000000000 * 10**9;
     
    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address marketingWallet) public {
        _rOwned[_msgSender()] = _rTotal;
        
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }
    
    function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap router');
           require (!_isBlackListedBot[account], 'Account is already blacklisted');
           _isBlackListedBot[account] = true;
           _blackListedBots.push(account);
        }

        function removeBotFromBlacklist(address account) external onlyOwner() {
          require (_isBlackListedBot[account], 'Account is not blacklisted');
          for (uint256 i = 0; i < _blackListedBots.length; i++) {
                 if (_blackListedBots[i] == account) {
                     _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                     _isBlackListedBot[account] = false;
                     _blackListedBots.pop();
                     break;
                 }
           }
       }

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

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

    function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() {
        _marketingFee = marketingFee;
    }    
   
  
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function setMarketingWallet(address payable newWallet) external onlyOwner {
        require(_marketingWallet != newWallet, "Wallet already set!");
        _marketingWallet = payable(newWallet);
    } 
       

    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 _getMaxWalletSize() public view returns(uint256) {
            return _maxWalletSize;
    }
    
    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.add(_marketingFee)).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[from], "You are blacklisted");
        require(!_isBlackListedBot[msg.sender], "You are blacklisted");
        require(!_isBlackListedBot[tx.origin], "You are blacklisted");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        
        
        if(from != owner() && to != owner() && to != uniswapV2Pair && to != address(0xdead)) {
            uint256 tokenBalanceRecipient = balanceOf(to);
            require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
        }
        // 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 {
        if (_marketingFee + _liquidityFee == 0)
            return;
        uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee));
        uint256 toLiquify = contractTokenBalance.sub(toMarketing);

        // split the contract balance into halves
        uint256 half = toLiquify.div(2);
        uint256 otherHalf = toLiquify.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
        uint256 toSwapForEth = half.add(toMarketing);
        swapTokensForEth(toSwapForEth);

        // how much ETH did we just swap into?
        uint256 fromSwap = address(this).balance.sub(initialBalance);
        uint256 liquidityBalance = fromSwap.mul(half).div(toSwapForEth);

        addLiquidity(otherHalf, liquidityBalance);

        emit SwapAndLiquify(half, liquidityBalance, otherHalf);

        _marketingWallet.transfer(fromSwap.sub(liquidityBalance));
    }

    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
            burnAddress,
            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 _setMaxWalletSize (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = maxWalletSize;
        }


    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_getMaxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setMarketingWallet","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"}]

683635c9adc5dea00000600b556818ce40f6d0219fffff19600c90815561010060405260c08190526b25b0b5b0b9b434a4b73aab1960a11b60e09081526200004b91600e919062000438565b50604080518082019091526003808252624b4b4960e81b60209092019182526200007891600f9162000438565b506010805460ff19166009179055600160118190556012556004601381905560145560056015819055601655601780546001600160a01b03191673b8f7e93e4755f729cff333904fa26dbf4ef2eb7f1790556018805460ff60a81b1916600160a81b179055678ac7230489e80000601955670de0b6b3a7640000601a556801e5b8fa8fe2ac0000601b553480156200010f57600080fd5b50604051620038bd380380620038bd833981810160405260208110156200013557600080fd5b505160006200014362000425565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200019e62000425565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021557600080fd5b505afa1580156200022a573d6000803e3d6000fd5b505050506040513d60208110156200024157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d6020811015620002be57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050506040513d60208110156200033d57600080fd5b5051606090811b6001600160601b031990811660a0529082901b16608052601880546001600160a01b0319166001600160a01b0384161790556001600660006200038662000429565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003d062000425565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35050620004d4565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200047b57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004ab5782518255916020019190600101906200048e565b50620004b9929150620004bd565b5090565b5b80821115620004b95760008155600101620004be565b60805160601c60a05160601c61339c620005216000398061122952806121215280612206525080610b255280612a7e5280612b365280612b5d5280612c435280612cae525061339c6000f3fe6080604052600436106102765760003560e01c80635d098b381161014f578063a457c2d7116100c1578063d543dbeb1161007a578063d543dbeb14610902578063dd4670641461092c578063dd62ed3e14610956578063e1cee22114610991578063ea2f0b37146109a6578063f2fde38b146109d95761027d565b8063a457c2d714610807578063a69df4b514610840578063a9059cbb14610855578063b030b34a1461088e578063b6c52324146108c1578063c49b9a80146108d65761027d565b80637d1db4a5116101135780637d1db4a51461074157806388f82020146107565780638da5cb5b146107895780638ee88c531461079e57806395d89b41146107c85780639e6c7529146107dd5761027d565b80635d098b381461069c5780636bc87c3a146106cf57806370a08231146106e457806370d5ae0514610717578063715018a61461072c5761027d565b80633685d419116101e85780634549b039116101ac5780634549b039146105b0578063457c194c146105e257806349bd5a5e1461060c5780634a74bb021461062157806352390c02146106365780635342acb4146106695761027d565b80633685d419146104d257806339509351146105055780633b124fe71461053e5780633bd5d17314610553578063437823ec1461057d5761027d565b806318160ddd1161023a57806318160ddd146103dd5780631d7ef879146103f257806322976e0d1461042557806323b872dd1461043a5780632d8381191461047d578063313ce567146104a75761027d565b8063061c82d01461028257806306fdde03146102ae578063095ea7b31461033857806313114a9d146103855780631694505e146103ac5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102ac600480360360208110156102a557600080fd5b5035610a0c565b005b3480156102ba57600080fd5b506102c3610a69565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fd5781810151838201526020016102e5565b50505050905090810190601f16801561032a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034457600080fd5b506103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610aff565b604080519115158252519081900360200190f35b34801561039157600080fd5b5061039a610b1d565b60408051918252519081900360200190f35b3480156103b857600080fd5b506103c1610b23565b604080516001600160a01b039092168252519081900360200190f35b3480156103e957600080fd5b5061039a610b47565b3480156103fe57600080fd5b506102ac6004803603602081101561041557600080fd5b50356001600160a01b0316610b4d565b34801561043157600080fd5b5061039a610cd5565b34801561044657600080fd5b506103716004803603606081101561045d57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdb565b34801561048957600080fd5b5061039a600480360360208110156104a057600080fd5b5035610d62565b3480156104b357600080fd5b506104bc610dc4565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b506102ac600480360360208110156104f557600080fd5b50356001600160a01b0316610dcd565b34801561051157600080fd5b506103716004803603604081101561052857600080fd5b506001600160a01b038135169060200135610f8e565b34801561054a57600080fd5b5061039a610fdc565b34801561055f57600080fd5b506102ac6004803603602081101561057657600080fd5b5035610fe2565b34801561058957600080fd5b506102ac600480360360208110156105a057600080fd5b50356001600160a01b03166110bc565b3480156105bc57600080fd5b5061039a600480360360408110156105d357600080fd5b50803590602001351515611138565b3480156105ee57600080fd5b506102ac6004803603602081101561060557600080fd5b50356111ca565b34801561061857600080fd5b506103c1611227565b34801561062d57600080fd5b5061037161124b565b34801561064257600080fd5b506102ac6004803603602081101561065957600080fd5b50356001600160a01b031661125b565b34801561067557600080fd5b506103716004803603602081101561068c57600080fd5b50356001600160a01b03166113e1565b3480156106a857600080fd5b506102ac600480360360208110156106bf57600080fd5b50356001600160a01b03166113ff565b3480156106db57600080fd5b5061039a6114d2565b3480156106f057600080fd5b5061039a6004803603602081101561070757600080fd5b50356001600160a01b03166114d8565b34801561072357600080fd5b506103c161153a565b34801561073857600080fd5b506102ac611549565b34801561074d57600080fd5b5061039a6115d9565b34801561076257600080fd5b506103716004803603602081101561077957600080fd5b50356001600160a01b03166115df565b34801561079557600080fd5b506103c16115fd565b3480156107aa57600080fd5b506102ac600480360360208110156107c157600080fd5b503561160c565b3480156107d457600080fd5b506102c3611669565b3480156107e957600080fd5b506102ac6004803603602081101561080057600080fd5b50356116ca565b34801561081357600080fd5b506103716004803603604081101561082a57600080fd5b506001600160a01b038135169060200135611727565b34801561084c57600080fd5b506102ac61178f565b34801561086157600080fd5b506103716004803603604081101561087857600080fd5b506001600160a01b03813516906020013561187d565b34801561089a57600080fd5b506102ac600480360360208110156108b157600080fd5b50356001600160a01b0316611891565b3480156108cd57600080fd5b5061039a611a1e565b3480156108e257600080fd5b506102ac600480360360208110156108f957600080fd5b50351515611a24565b34801561090e57600080fd5b506102ac6004803603602081101561092557600080fd5b5035611acf565b34801561093857600080fd5b506102ac6004803603602081101561094f57600080fd5b5035611b4d565b34801561096257600080fd5b5061039a6004803603604081101561097957600080fd5b506001600160a01b0381358116916020013516611beb565b34801561099d57600080fd5b5061039a611c16565b3480156109b257600080fd5b506102ac600480360360208110156109c957600080fd5b50356001600160a01b0316611c1c565b3480156109e557600080fd5b506102ac600480360360208110156109fc57600080fd5b50356001600160a01b0316611c95565b610a14611d7b565b6000546001600160a01b03908116911614610a64576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611d7b565b8484611d7f565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b55611d7b565b6000546001600160a01b03908116911614610ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c015760405162461bcd60e51b81526004018080602001828103825260228152602001806131f76022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c6f576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60155481565b6000610ce8848484611e6b565b610d5884610cf4611d7b565b610d5385604051806060016040528060288152602001613219602891396001600160a01b038a16600090815260056020526040812090610d32611d7b565b6001600160a01b0316815260208101919091526040016000205491906122c2565b611d7f565b5060019392505050565b6000600c54821115610da55760405162461bcd60e51b815260040180806020018281038252602a81526020018061311a602a913960400191505060405180910390fd5b6000610daf612359565b9050610dbb838261237c565b9150505b919050565b60105460ff1690565b610dd5611d7b565b6000546001600160a01b03908116911614610e25576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e92576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f8a57816001600160a01b031660088281548110610eb657fe5b6000918252602090912001546001600160a01b03161415610f8257600880546000198101908110610ee357fe5b600091825260209091200154600880546001600160a01b039092169183908110610f0957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f5b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f8a565b600101610e95565b5050565b6000610b13610f9b611d7b565b84610d538560056000610fac611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123c5565b60115481565b6000610fec611d7b565b6001600160a01b03811660009081526007602052604090205490915060ff16156110475760405162461bcd60e51b815260040180806020018281038252602c8152602001806132f3602c913960400191505060405180910390fd5b60006110528361241f565b505050506001600160a01b03841660009081526003602052604090205491925061107e9190508261246e565b6001600160a01b038316600090815260036020526040902055600c546110a4908261246e565b600c55600d546110b490846123c5565b600d55505050565b6110c4611d7b565b6000546001600160a01b03908116911614611114576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115611191576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111b05760006111a18461241f565b50939550610b17945050505050565b60006111bb8461241f565b50929550610b17945050505050565b6111d2611d7b565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601555565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854600160a81b900460ff1681565b611263611d7b565b6000546001600160a01b039081169116146112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611321576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561137b576001600160a01b03811660009081526003602052604090205461136190610d62565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611407611d7b565b6000546001600160a01b03908116911614611457576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156114b0576040805162461bcd60e51b815260206004820152601360248201527257616c6c657420616c7265616479207365742160681b604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561151857506001600160a01b038116600090815260046020526040902054610dbf565b6001600160a01b038216600090815260036020526040902054610b1790610d62565b6017546001600160a01b031681565b611551611d7b565b6000546001600160a01b039081169116146115a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613261833981519152908390a3600080546001600160a01b0319169055565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611614611d7b565b6000546001600160a01b03908116911614611664576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b6116d2611d7b565b6000546001600160a01b03908116911614611722576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601b55565b6000610b13611734611d7b565b84610d5385604051806060016040528060258152602001613342602591396005600061175e611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122c2565b6001546001600160a01b031633146117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061331f6023913960400191505060405180910390fd5b600254421161182e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061326183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b1361188a611d7b565b8484611e6b565b611899611d7b565b6000546001600160a01b039081169116146118e9576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611956576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f8a57816001600160a01b0316600a828154811061197a57fe5b6000918252602090912001546001600160a01b03161415611a1657600a805460001981019081106119a757fe5b600091825260209091200154600a80546001600160a01b0390921691839081106119cd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f5b57fe5b600101611959565b60025490565b611a2c611d7b565b6000546001600160a01b03908116911614611a7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60188054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611ad7611d7b565b6000546001600160a01b03908116911614611b27576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b611b476064611b4183600b546124b090919063ffffffff16565b9061237c565b60195550565b611b55611d7b565b6000546001600160a01b03908116911614611ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613261833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b601b5490565b611c24611d7b565b6000546001600160a01b03908116911614611c74576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c9d611d7b565b6000546001600160a01b03908116911614611ced576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b038116611d325760405162461bcd60e51b81526004018080602001828103825260268152602001806131446026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061326183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611dc45760405162461bcd60e51b81526004018080602001828103825260248152602001806132cf6024913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b815260040180806020018281038252602281526020018061316a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eb05760405162461bcd60e51b81526004018080602001828103825260258152602001806132aa6025913960400191505060405180910390fd5b6001600160a01b038216611ef55760405162461bcd60e51b81526004018080602001828103825260238152602001806130f76023913960400191505060405180910390fd5b60008111611f345760405162461bcd60e51b81526004018080602001828103825260298152602001806132816029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f98576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ff3576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561204e576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b6120566115fd565b6001600160a01b0316836001600160a01b031614158015612090575061207a6115fd565b6001600160a01b0316826001600160a01b031614155b156120d6576019548111156120d65760405162461bcd60e51b81526004018080602001828103825260288152602001806131ae6028913960400191505060405180910390fd5b6120de6115fd565b6001600160a01b0316836001600160a01b03161415801561211857506121026115fd565b6001600160a01b0316826001600160a01b031614155b801561215657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561216d57506001600160a01b03821661dead14155b156121c457600061217d836114d8565b9050601b5482820111156121c25760405162461bcd60e51b815260040180806020018281038252602281526020018061318c6022913960400191505060405180910390fd5b505b60006121cf306114d8565b905060195481106121df57506019545b601a54811080159081906121fd5750601854600160a01b900460ff16155b801561223b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156122505750601854600160a81b900460ff165b1561226357601a54915061226382612509565b6001600160a01b03851660009081526006602052604090205460019060ff16806122a557506001600160a01b03851660009081526006602052604090205460ff165b156122ae575060005b6122ba86868684612660565b505050505050565b600081848411156123515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123165781810151838201526020016122fe565b50505050905090810190601f1680156123435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123666127d4565b9092509050612375828261237c565b9250505090565b60006123be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612937565b9392505050565b6000828201838110156123be576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124368a61299c565b92509250925060008060006124548d868661244f612359565b6129de565b919f909e50909c50959a5093985091965092945050505050565b60006123be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122c2565b6000826124bf57506000610b17565b828202828482816124cc57fe5b04146123be5760405162461bcd60e51b81526004018080602001828103825260218152602001806131d66021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b1790556013546015540161252c57612650565b60006125566125486013546015546123c590919063ffffffff16565b601554611b419085906124b0565b90506000612564838361246e565b9050600061257382600261237c565b90506000612581838361246e565b905047600061259084876123c5565b905061259b81612a2e565b60006125a7478461246e565b905060006125b983611b4184896124b0565b90506125c58582612c3d565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16018546001600160a01b03166108fc61261e848461246e565b6040518115909202916000818181858888f19350505050158015612646573d6000803e3d6000fd5b5050505050505050505b506018805460ff60a01b19169055565b8061266d5761266d612d24565b6001600160a01b03841660009081526007602052604090205460ff1680156126ae57506001600160a01b03831660009081526007602052604090205460ff16155b156126c3576126be848484612d6d565b6127c1565b6001600160a01b03841660009081526007602052604090205460ff1615801561270457506001600160a01b03831660009081526007602052604090205460ff165b15612714576126be848484612e91565b6001600160a01b03841660009081526007602052604090205460ff1615801561275657506001600160a01b03831660009081526007602052604090205460ff16155b15612766576126be848484612f3a565b6001600160a01b03841660009081526007602052604090205460ff1680156127a657506001600160a01b03831660009081526007602052604090205460ff165b156127b6576126be848484612f7e565b6127c1848484612f3a565b806127ce576127ce612ff1565b50505050565b600c54600b546000918291825b600854811015612905578260036000600884815481106127fd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612862575081600460006008848154811061283b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287957600c54600b5494509450505050612933565b6128b9600360006008848154811061288d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061246e565b92506128fb60046000600884815481106128cf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061246e565b91506001016127e1565b50600b54600c546129159161237c565b82101561292d57600c54600b54935093505050612933565b90925090505b9091565b600081836129865760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123165781810151838201526020016122fe565b50600083858161299257fe5b0495945050505050565b6000806000806129ab85613005565b905060006129b886613021565b905060006129d0826129ca898661246e565b9061246e565b979296509094509092505050565b60008080806129ed88866124b0565b905060006129fb88876124b0565b90506000612a0988886124b0565b90506000612a1b826129ca868661246e565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a5c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ad557600080fd5b505afa158015612ae9573d6000803e3d6000fd5b505050506040513d6020811015612aff57600080fd5b5051815182906001908110612b1057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612b5b307f000000000000000000000000000000000000000000000000000000000000000084611d7f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c00578181015183820152602001612be8565b505050509050019650505050505050600060405180830381600087803b158015612c2957600080fd5b505af11580156122ba573d6000803e3d6000fd5b612c68307f000000000000000000000000000000000000000000000000000000000000000084611d7f565b6017546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a482015290517f00000000000000000000000000000000000000000000000000000000000000009092169163f305d71991849160c480830192606092919082900301818588803b158015612cf957600080fd5b505af1158015612d0d573d6000803e3d6000fd5b50505050506040513d60608110156127ce57600080fd5b601154158015612d345750601354155b8015612d405750601554155b15612d4a57612d6b565b60118054601255601380546014556015805460165560009283905590829055555b565b600080600080600080612d7f8761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db1908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612de0908761246e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e0f90866123c5565b6001600160a01b038916600090815260036020526040902055612e3181613049565b612e3b84836130d2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ea38761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612ed5908761246e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f0b90846123c5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e0f90866123c5565b600080600080600080612f4c8761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612de0908761246e565b600080600080600080612f908761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc2908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612ed5908761246e565b601254601155601454601355601654601555565b6000610b176064611b41601154856124b090919063ffffffff16565b6000610b176064611b416130426015546013546123c590919063ffffffff16565b85906124b0565b6000613053612359565b9050600061306183836124b0565b3060009081526003602052604090205490915061307e90826123c5565b3060009081526003602090815260408083209390935560079052205460ff16156130cd57306000908152600460205260409020546130bc90846123c5565b306000908152600460205260409020555b505050565b600c546130df908361246e565b600c55600d546130ef90826123c5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd2b650a8961e53b6002380b6daf23936d18eb29c0619394ce9402aee183ccde64736f6c634300060c0033000000000000000000000000b8f7e93e4755f729cff333904fa26dbf4ef2eb7f

Deployed Bytecode

0x6080604052600436106102765760003560e01c80635d098b381161014f578063a457c2d7116100c1578063d543dbeb1161007a578063d543dbeb14610902578063dd4670641461092c578063dd62ed3e14610956578063e1cee22114610991578063ea2f0b37146109a6578063f2fde38b146109d95761027d565b8063a457c2d714610807578063a69df4b514610840578063a9059cbb14610855578063b030b34a1461088e578063b6c52324146108c1578063c49b9a80146108d65761027d565b80637d1db4a5116101135780637d1db4a51461074157806388f82020146107565780638da5cb5b146107895780638ee88c531461079e57806395d89b41146107c85780639e6c7529146107dd5761027d565b80635d098b381461069c5780636bc87c3a146106cf57806370a08231146106e457806370d5ae0514610717578063715018a61461072c5761027d565b80633685d419116101e85780634549b039116101ac5780634549b039146105b0578063457c194c146105e257806349bd5a5e1461060c5780634a74bb021461062157806352390c02146106365780635342acb4146106695761027d565b80633685d419146104d257806339509351146105055780633b124fe71461053e5780633bd5d17314610553578063437823ec1461057d5761027d565b806318160ddd1161023a57806318160ddd146103dd5780631d7ef879146103f257806322976e0d1461042557806323b872dd1461043a5780632d8381191461047d578063313ce567146104a75761027d565b8063061c82d01461028257806306fdde03146102ae578063095ea7b31461033857806313114a9d146103855780631694505e146103ac5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102ac600480360360208110156102a557600080fd5b5035610a0c565b005b3480156102ba57600080fd5b506102c3610a69565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102fd5781810151838201526020016102e5565b50505050905090810190601f16801561032a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034457600080fd5b506103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610aff565b604080519115158252519081900360200190f35b34801561039157600080fd5b5061039a610b1d565b60408051918252519081900360200190f35b3480156103b857600080fd5b506103c1610b23565b604080516001600160a01b039092168252519081900360200190f35b3480156103e957600080fd5b5061039a610b47565b3480156103fe57600080fd5b506102ac6004803603602081101561041557600080fd5b50356001600160a01b0316610b4d565b34801561043157600080fd5b5061039a610cd5565b34801561044657600080fd5b506103716004803603606081101561045d57600080fd5b506001600160a01b03813581169160208101359091169060400135610cdb565b34801561048957600080fd5b5061039a600480360360208110156104a057600080fd5b5035610d62565b3480156104b357600080fd5b506104bc610dc4565b6040805160ff9092168252519081900360200190f35b3480156104de57600080fd5b506102ac600480360360208110156104f557600080fd5b50356001600160a01b0316610dcd565b34801561051157600080fd5b506103716004803603604081101561052857600080fd5b506001600160a01b038135169060200135610f8e565b34801561054a57600080fd5b5061039a610fdc565b34801561055f57600080fd5b506102ac6004803603602081101561057657600080fd5b5035610fe2565b34801561058957600080fd5b506102ac600480360360208110156105a057600080fd5b50356001600160a01b03166110bc565b3480156105bc57600080fd5b5061039a600480360360408110156105d357600080fd5b50803590602001351515611138565b3480156105ee57600080fd5b506102ac6004803603602081101561060557600080fd5b50356111ca565b34801561061857600080fd5b506103c1611227565b34801561062d57600080fd5b5061037161124b565b34801561064257600080fd5b506102ac6004803603602081101561065957600080fd5b50356001600160a01b031661125b565b34801561067557600080fd5b506103716004803603602081101561068c57600080fd5b50356001600160a01b03166113e1565b3480156106a857600080fd5b506102ac600480360360208110156106bf57600080fd5b50356001600160a01b03166113ff565b3480156106db57600080fd5b5061039a6114d2565b3480156106f057600080fd5b5061039a6004803603602081101561070757600080fd5b50356001600160a01b03166114d8565b34801561072357600080fd5b506103c161153a565b34801561073857600080fd5b506102ac611549565b34801561074d57600080fd5b5061039a6115d9565b34801561076257600080fd5b506103716004803603602081101561077957600080fd5b50356001600160a01b03166115df565b34801561079557600080fd5b506103c16115fd565b3480156107aa57600080fd5b506102ac600480360360208110156107c157600080fd5b503561160c565b3480156107d457600080fd5b506102c3611669565b3480156107e957600080fd5b506102ac6004803603602081101561080057600080fd5b50356116ca565b34801561081357600080fd5b506103716004803603604081101561082a57600080fd5b506001600160a01b038135169060200135611727565b34801561084c57600080fd5b506102ac61178f565b34801561086157600080fd5b506103716004803603604081101561087857600080fd5b506001600160a01b03813516906020013561187d565b34801561089a57600080fd5b506102ac600480360360208110156108b157600080fd5b50356001600160a01b0316611891565b3480156108cd57600080fd5b5061039a611a1e565b3480156108e257600080fd5b506102ac600480360360208110156108f957600080fd5b50351515611a24565b34801561090e57600080fd5b506102ac6004803603602081101561092557600080fd5b5035611acf565b34801561093857600080fd5b506102ac6004803603602081101561094f57600080fd5b5035611b4d565b34801561096257600080fd5b5061039a6004803603604081101561097957600080fd5b506001600160a01b0381358116916020013516611beb565b34801561099d57600080fd5b5061039a611c16565b3480156109b257600080fd5b506102ac600480360360208110156109c957600080fd5b50356001600160a01b0316611c1c565b3480156109e557600080fd5b506102ac600480360360208110156109fc57600080fd5b50356001600160a01b0316611c95565b610a14611d7b565b6000546001600160a01b03908116911614610a64576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611d7b565b8484611d7f565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b55611d7b565b6000546001600160a01b03908116911614610ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c015760405162461bcd60e51b81526004018080602001828103825260228152602001806131f76022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c6f576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60155481565b6000610ce8848484611e6b565b610d5884610cf4611d7b565b610d5385604051806060016040528060288152602001613219602891396001600160a01b038a16600090815260056020526040812090610d32611d7b565b6001600160a01b0316815260208101919091526040016000205491906122c2565b611d7f565b5060019392505050565b6000600c54821115610da55760405162461bcd60e51b815260040180806020018281038252602a81526020018061311a602a913960400191505060405180910390fd5b6000610daf612359565b9050610dbb838261237c565b9150505b919050565b60105460ff1690565b610dd5611d7b565b6000546001600160a01b03908116911614610e25576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e92576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610f8a57816001600160a01b031660088281548110610eb657fe5b6000918252602090912001546001600160a01b03161415610f8257600880546000198101908110610ee357fe5b600091825260209091200154600880546001600160a01b039092169183908110610f0957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610f5b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f8a565b600101610e95565b5050565b6000610b13610f9b611d7b565b84610d538560056000610fac611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123c5565b60115481565b6000610fec611d7b565b6001600160a01b03811660009081526007602052604090205490915060ff16156110475760405162461bcd60e51b815260040180806020018281038252602c8152602001806132f3602c913960400191505060405180910390fd5b60006110528361241f565b505050506001600160a01b03841660009081526003602052604090205491925061107e9190508261246e565b6001600160a01b038316600090815260036020526040902055600c546110a4908261246e565b600c55600d546110b490846123c5565b600d55505050565b6110c4611d7b565b6000546001600160a01b03908116911614611114576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115611191576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111b05760006111a18461241f565b50939550610b17945050505050565b60006111bb8461241f565b50929550610b17945050505050565b6111d2611d7b565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601555565b7f000000000000000000000000e705decee2d6f6bc322726dbfd9e03aff08e4e8b81565b601854600160a81b900460ff1681565b611263611d7b565b6000546001600160a01b039081169116146112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611321576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561137b576001600160a01b03811660009081526003602052604090205461136190610d62565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611407611d7b565b6000546001600160a01b03908116911614611457576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156114b0576040805162461bcd60e51b815260206004820152601360248201527257616c6c657420616c7265616479207365742160681b604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561151857506001600160a01b038116600090815260046020526040902054610dbf565b6001600160a01b038216600090815260036020526040902054610b1790610d62565b6017546001600160a01b031681565b611551611d7b565b6000546001600160a01b039081169116146115a1576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613261833981519152908390a3600080546001600160a01b0319169055565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611614611d7b565b6000546001600160a01b03908116911614611664576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610af55780601f10610aca57610100808354040283529160200191610af5565b6116d2611d7b565b6000546001600160a01b03908116911614611722576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b601b55565b6000610b13611734611d7b565b84610d5385604051806060016040528060258152602001613342602591396005600061175e611d7b565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122c2565b6001546001600160a01b031633146117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061331f6023913960400191505060405180910390fd5b600254421161182e576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061326183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b1361188a611d7b565b8484611e6b565b611899611d7b565b6000546001600160a01b039081169116146118e9576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611956576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610f8a57816001600160a01b0316600a828154811061197a57fe5b6000918252602090912001546001600160a01b03161415611a1657600a805460001981019081106119a757fe5b600091825260209091200154600a80546001600160a01b0390921691839081106119cd57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610f5b57fe5b600101611959565b60025490565b611a2c611d7b565b6000546001600160a01b03908116911614611a7c576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60188054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611ad7611d7b565b6000546001600160a01b03908116911614611b27576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b611b476064611b4183600b546124b090919063ffffffff16565b9061237c565b60195550565b611b55611d7b565b6000546001600160a01b03908116911614611ba5576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613261833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b601b5490565b611c24611d7b565b6000546001600160a01b03908116911614611c74576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611c9d611d7b565b6000546001600160a01b03908116911614611ced576040805162461bcd60e51b81526020600482018190526024820152600080516020613241833981519152604482015290519081900360640190fd5b6001600160a01b038116611d325760405162461bcd60e51b81526004018080602001828103825260268152602001806131446026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061326183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611dc45760405162461bcd60e51b81526004018080602001828103825260248152602001806132cf6024913960400191505060405180910390fd5b6001600160a01b038216611e095760405162461bcd60e51b815260040180806020018281038252602281526020018061316a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eb05760405162461bcd60e51b81526004018080602001828103825260258152602001806132aa6025913960400191505060405180910390fd5b6001600160a01b038216611ef55760405162461bcd60e51b81526004018080602001828103825260238152602001806130f76023913960400191505060405180910390fd5b60008111611f345760405162461bcd60e51b81526004018080602001828103825260298152602001806132816029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f98576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ff3576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561204e576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b6120566115fd565b6001600160a01b0316836001600160a01b031614158015612090575061207a6115fd565b6001600160a01b0316826001600160a01b031614155b156120d6576019548111156120d65760405162461bcd60e51b81526004018080602001828103825260288152602001806131ae6028913960400191505060405180910390fd5b6120de6115fd565b6001600160a01b0316836001600160a01b03161415801561211857506121026115fd565b6001600160a01b0316826001600160a01b031614155b801561215657507f000000000000000000000000e705decee2d6f6bc322726dbfd9e03aff08e4e8b6001600160a01b0316826001600160a01b031614155b801561216d57506001600160a01b03821661dead14155b156121c457600061217d836114d8565b9050601b5482820111156121c25760405162461bcd60e51b815260040180806020018281038252602281526020018061318c6022913960400191505060405180910390fd5b505b60006121cf306114d8565b905060195481106121df57506019545b601a54811080159081906121fd5750601854600160a01b900460ff16155b801561223b57507f000000000000000000000000e705decee2d6f6bc322726dbfd9e03aff08e4e8b6001600160a01b0316856001600160a01b031614155b80156122505750601854600160a81b900460ff165b1561226357601a54915061226382612509565b6001600160a01b03851660009081526006602052604090205460019060ff16806122a557506001600160a01b03851660009081526006602052604090205460ff165b156122ae575060005b6122ba86868684612660565b505050505050565b600081848411156123515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123165781810151838201526020016122fe565b50505050905090810190601f1680156123435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123666127d4565b9092509050612375828261237c565b9250505090565b60006123be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612937565b9392505050565b6000828201838110156123be576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124368a61299c565b92509250925060008060006124548d868661244f612359565b6129de565b919f909e50909c50959a5093985091965092945050505050565b60006123be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122c2565b6000826124bf57506000610b17565b828202828482816124cc57fe5b04146123be5760405162461bcd60e51b81526004018080602001828103825260218152602001806131d66021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b1790556013546015540161252c57612650565b60006125566125486013546015546123c590919063ffffffff16565b601554611b419085906124b0565b90506000612564838361246e565b9050600061257382600261237c565b90506000612581838361246e565b905047600061259084876123c5565b905061259b81612a2e565b60006125a7478461246e565b905060006125b983611b4184896124b0565b90506125c58582612c3d565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16018546001600160a01b03166108fc61261e848461246e565b6040518115909202916000818181858888f19350505050158015612646573d6000803e3d6000fd5b5050505050505050505b506018805460ff60a01b19169055565b8061266d5761266d612d24565b6001600160a01b03841660009081526007602052604090205460ff1680156126ae57506001600160a01b03831660009081526007602052604090205460ff16155b156126c3576126be848484612d6d565b6127c1565b6001600160a01b03841660009081526007602052604090205460ff1615801561270457506001600160a01b03831660009081526007602052604090205460ff165b15612714576126be848484612e91565b6001600160a01b03841660009081526007602052604090205460ff1615801561275657506001600160a01b03831660009081526007602052604090205460ff16155b15612766576126be848484612f3a565b6001600160a01b03841660009081526007602052604090205460ff1680156127a657506001600160a01b03831660009081526007602052604090205460ff165b156127b6576126be848484612f7e565b6127c1848484612f3a565b806127ce576127ce612ff1565b50505050565b600c54600b546000918291825b600854811015612905578260036000600884815481106127fd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612862575081600460006008848154811061283b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287957600c54600b5494509450505050612933565b6128b9600360006008848154811061288d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061246e565b92506128fb60046000600884815481106128cf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061246e565b91506001016127e1565b50600b54600c546129159161237c565b82101561292d57600c54600b54935093505050612933565b90925090505b9091565b600081836129865760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156123165781810151838201526020016122fe565b50600083858161299257fe5b0495945050505050565b6000806000806129ab85613005565b905060006129b886613021565b905060006129d0826129ca898661246e565b9061246e565b979296509094509092505050565b60008080806129ed88866124b0565b905060006129fb88876124b0565b90506000612a0988886124b0565b90506000612a1b826129ca868661246e565b939b939a50919850919650505050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a5c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612ad557600080fd5b505afa158015612ae9573d6000803e3d6000fd5b505050506040513d6020811015612aff57600080fd5b5051815182906001908110612b1057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612b5b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612c00578181015183820152602001612be8565b505050509050019650505050505050600060405180830381600087803b158015612c2957600080fd5b505af11580156122ba573d6000803e3d6000fd5b612c68307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7f565b6017546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a482015290517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9092169163f305d71991849160c480830192606092919082900301818588803b158015612cf957600080fd5b505af1158015612d0d573d6000803e3d6000fd5b50505050506040513d60608110156127ce57600080fd5b601154158015612d345750601354155b8015612d405750601554155b15612d4a57612d6b565b60118054601255601380546014556015805460165560009283905590829055555b565b600080600080600080612d7f8761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612db1908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612de0908761246e565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e0f90866123c5565b6001600160a01b038916600090815260036020526040902055612e3181613049565b612e3b84836130d2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ea38761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612ed5908761246e565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f0b90846123c5565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e0f90866123c5565b600080600080600080612f4c8761241f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612de0908761246e565b600080600080600080612f908761241f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fc2908861246e565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612ed5908761246e565b601254601155601454601355601654601555565b6000610b176064611b41601154856124b090919063ffffffff16565b6000610b176064611b416130426015546013546123c590919063ffffffff16565b85906124b0565b6000613053612359565b9050600061306183836124b0565b3060009081526003602052604090205490915061307e90826123c5565b3060009081526003602090815260408083209390935560079052205460ff16156130cd57306000908152600460205260409020546130bc90846123c5565b306000908152600460205260409020555b505050565b600c546130df908361246e565b600c55600d546130ef90826123c5565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fd2b650a8961e53b6002380b6daf23936d18eb29c0619394ce9402aee183ccde64736f6c634300060c0033

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

000000000000000000000000b8f7e93e4755f729cff333904fa26dbf4ef2eb7f

-----Decoded View---------------
Arg [0] : marketingWallet (address): 0xB8F7E93E4755f729cFf333904fA26DBF4ef2eb7F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b8f7e93e4755f729cff333904fa26dbf4ef2eb7f


Deployed Bytecode Sourcemap

25613:21550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34627:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34627:98:0;;:::i;:::-;;28629:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29541:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29541:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30662:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26827:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26827:51:0;;;;;;;;;;;;;;28906:95;;;;;;;;;;;;;:::i;31851:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31851:368:0;-1:-1:-1;;;;;31851:368:0;;:::i;26671:32::-;;;;;;;;;;;;;:::i;29710:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29710:313:0;;;;;;;;;;;;;;;;;:::i;31586:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31586:253:0;;:::i;28815:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33235:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33235:479:0;-1:-1:-1;;;;;33235:479:0;;:::i;30031:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30031:218:0;;;;;;;;:::i;26483:26::-;;;;;;;;;;;;;:::i;30757:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30757:377:0;;:::i;34382:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34382:111:0;-1:-1:-1;;;;;34382:111:0;;:::i;31142:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31142:436:0;;;;;;;;;:::i;34867:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34867:122:0;;:::i;26885:38::-;;;;;;;;;;;;;:::i;27091:40::-;;;;;;;;;;;;;:::i;32780:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32780:447:0;-1:-1:-1;;;;;32780:447:0;;:::i;39175:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39175:123:0;-1:-1:-1;;;;;39175:123:0;;:::i;35178:202::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35178:202:0;-1:-1:-1;;;;;35178:202:0;;:::i;26570:32::-;;;;;;;;;;;;;:::i;29009:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29009:198:0;-1:-1:-1;;;;;29009:198:0;;:::i;26936:71::-;;;;;;;;;;;;;:::i;16208:148::-;;;;;;;;;;;;;:::i;27144:49::-;;;;;;;;;;;;;:::i;30534:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30534:120:0;-1:-1:-1;;;;;30534:120:0;;:::i;15565:79::-;;;;;;;;;;;;;:::i;34737:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34737:122:0;;:::i;28720:87::-;;;;;;;;;;;;;:::i;47021:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47021:127:0;;:::i;30257:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30257:269:0;;;;;;;;:::i;17218:293::-;;;;;;;;;;;;;:::i;29215:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29215:167:0;;;;;;;;:::i;32231:541::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32231:541:0;-1:-1:-1;;;;;32231:541:0;;:::i;16763:89::-;;;;;;;;;;;;;:::i;35398:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35398:171:0;;;;:::i;35008:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35008:162:0;;:::i;16928:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16928:214:0;;:::i;29390:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29390:143:0;;;;;;;;;;:::i;37207:102::-;;;;;;;;;;;;;:::i;34505:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:110:0;-1:-1:-1;;;;;34505:110:0;;:::i;16511:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16511:244:0;-1:-1:-1;;;;;16511:244:0;;:::i;34627:98::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;34701:7:::1;:16:::0;34627:98::o;28629:83::-;28699:5;28692:12;;;;;;;;-1:-1:-1;;28692:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28666:13;;28692:12;;28699:5;;28692:12;;28699:5;28692:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28629:83;:::o;29541:161::-;29616:4;29633:39;29642:12;:10;:12::i;:::-;29656:7;29665:6;29633:8;:39::i;:::-;-1:-1:-1;29690:4:0;29541:161;;;;;:::o;30662:87::-;30731:10;;30662:87;:::o;26827:51::-;;;:::o;28906:95::-;28986:7;;28906:95;:::o;31851:368::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;31950:42:::1;-1:-1:-1::0;;;;;31939:53:0;::::1;;;31931:100;;;;-1:-1:-1::0;;;31931:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32055:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32054:27;32045:71;;;::::0;;-1:-1:-1;;;32045:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32130:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32130:33:0::1;32159:4;32130:33:::0;;::::1;::::0;;;32177:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32177:30:0::1;::::0;;::::1;::::0;;31851:368::o;26671:32::-;;;;:::o;29710:313::-;29808:4;29825:36;29835:6;29843:9;29854:6;29825:9;:36::i;:::-;29872:121;29881:6;29889:12;:10;:12::i;:::-;29903:89;29941:6;29903:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29903:19:0;;;;;;:11;:19;;;;;;29923:12;:10;:12::i;:::-;-1:-1:-1;;;;;29903:33:0;;;;;;;;;;;;-1:-1:-1;29903:33:0;;;:89;:37;:89::i;:::-;29872:8;:121::i;:::-;-1:-1:-1;30011:4:0;29710:313;;;;;:::o;31586:253::-;31652:7;31691;;31680;:18;;31672:73;;;;-1:-1:-1;;;31672:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31756:19;31779:10;:8;:10::i;:::-;31756:33;-1:-1:-1;31807:24:0;:7;31756:33;31807:11;:24::i;:::-;31800:31;;;31586:253;;;;:::o;28815:83::-;28881:9;;;;28815:83;:::o;33235:479::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33317:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33309:60;;;::::0;;-1:-1:-1;;;33309:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33385:9;33380:327;33404:9;:16:::0;33400:20;::::1;33380:327;;;33462:7;-1:-1:-1::0;;;;;33446:23:0::1;:9;33456:1;33446:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33446:12:0::1;:23;33442:254;;;33505:9;33515:16:::0;;-1:-1:-1;;33515:20:0;;;33505:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33490:9:::1;:12:::0;;-1:-1:-1;;;;;33505:31:0;;::::1;::::0;33500:1;;33490:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33490:46:0::1;-1:-1:-1::0;;;;;33490:46:0;;::::1;;::::0;;33555:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33594:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33594:28:0::1;::::0;;33641:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33641:15:0;;;;;-1:-1:-1;;;;;;33641:15:0::1;::::0;;;;;33675:5:::1;;33442:254;33422:3;;33380:327;;;;33235:479:::0;:::o;30031:218::-;30119:4;30136:83;30145:12;:10;:12::i;:::-;30159:7;30168:50;30207:10;30168:11;:25;30180:12;:10;:12::i;:::-;-1:-1:-1;;;;;30168:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30168:25:0;;;:34;;;;;;;;;;;:38;:50::i;26483:26::-;;;;:::o;30757:377::-;30809:14;30826:12;:10;:12::i;:::-;-1:-1:-1;;;;;30858:19:0;;;;;;:11;:19;;;;;;30809:29;;-1:-1:-1;30858:19:0;;30857:20;30849:77;;;;-1:-1:-1;;;30849:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30938:15;30962:19;30973:7;30962:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31010:15:0;;;;;;:7;:15;;;;;;30937:44;;-1:-1:-1;31010:28:0;;:15;-1:-1:-1;30937:44:0;31010:19;:28::i;:::-;-1:-1:-1;;;;;30992:15:0;;;;;;:7;:15;;;;;:46;31059:7;;:20;;31071:7;31059:11;:20::i;:::-;31049:7;:30;31103:10;;:23;;31118:7;31103:14;:23::i;:::-;31090:10;:36;-1:-1:-1;;;30757:377:0:o;34382:111::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34451:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34451:34:0::1;34481:4;34451:34;::::0;;34382:111::o;31142:436::-;31232:7;31271;;31260;:18;;31252:62;;;;;-1:-1:-1;;;31252:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31330:17;31325:246;;31365:15;31389:19;31400:7;31389:10;:19::i;:::-;-1:-1:-1;31364:44:0;;-1:-1:-1;31423:14:0;;-1:-1:-1;;;;;31423:14:0;31325:246;31472:23;31503:19;31514:7;31503:10;:19::i;:::-;-1:-1:-1;31470:52:0;;-1:-1:-1;31537:22:0;;-1:-1:-1;;;;;31537:22:0;34867:122;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;34953:13:::1;:28:::0;34867:122::o;26885:38::-;;;:::o;27091:40::-;;;-1:-1:-1;;;27091:40:0;;;;;:::o;32780:447::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32977:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32976:21;32968:61;;;::::0;;-1:-1:-1;;;32968:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33043:16:0;::::1;33062:1;33043:16:::0;;;:7:::1;:16;::::0;;;;;:20;33040:108:::1;;-1:-1:-1::0;;;;;33119:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33099:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33080:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33040:108:::1;-1:-1:-1::0;;;;;33158:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33158:27:0::1;33181:4;33158:27:::0;;::::1;::::0;;;33196:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33196:23:0::1;::::0;;::::1;::::0;;32780:447::o;39175:123::-;-1:-1:-1;;;;;39263:27:0;39239:4;39263:27;;;:18;:27;;;;;;;;;39175:123::o;35178:202::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35271:16:::1;::::0;-1:-1:-1;;;;;35271:29:0;;::::1;:16:::0;::::1;:29;;35263:61;;;::::0;;-1:-1:-1;;;35263:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35263:61:0;;;;;;;;;;;;;::::1;;35335:16;:37:::0;;-1:-1:-1;;;;;;35335:37:0::1;-1:-1:-1::0;;;;;35335:37:0;;;::::1;::::0;;;::::1;::::0;;35178:202::o;26570:32::-;;;;:::o;29009:198::-;-1:-1:-1;;;;;29099:20:0;;29075:7;29099:20;;;:11;:20;;;;;;;;29095:49;;;-1:-1:-1;;;;;;29128:16:0;;;;;;:7;:16;;;;;;29121:23;;29095:49;-1:-1:-1;;;;;29182:16:0;;;;;;:7;:16;;;;;;29162:37;;:19;:37::i;26936:71::-;;;-1:-1:-1;;;;;26936:71:0;;:::o;16208:148::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;16315:1:::1;16299:6:::0;;16278:40:::1;::::0;-1:-1:-1;;;;;16299:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16278:40:0;16315:1;;16278:40:::1;16346:1;16329:19:::0;;-1:-1:-1;;;;;;16329:19:0::1;::::0;;16208:148::o;27144:49::-;;;;:::o;30534:120::-;-1:-1:-1;;;;;30626:20:0;30602:4;30626:20;;;:11;:20;;;;;;;;;30534:120::o;15565:79::-;15603:7;15630:6;-1:-1:-1;;;;;15630:6:0;15565:79;:::o;34737:122::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;34823:13:::1;:28:::0;34737:122::o;28720:87::-;28792:7;28785:14;;;;;;;;-1:-1:-1;;28785:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28759:13;;28785:14;;28792:7;;28785:14;;28792:7;28785:14;;;;;;;;;;;;;;;;;;;;;;;;47021:127;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;47106:14:::1;:30:::0;47021:127::o;30257:269::-;30350:4;30367:129;30376:12;:10;:12::i;:::-;30390:7;30399:96;30438:15;30399:96;;;;;;;;;;;;;;;;;:11;:25;30411:12;:10;:12::i;:::-;-1:-1:-1;;;;;30399:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30399:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17218:293::-;17270:14;;-1:-1:-1;;;;;17270:14:0;17288:10;17270:28;17262:76;;;;-1:-1:-1;;;17262:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17363:9;;17357:3;:15;17349:60;;;;;-1:-1:-1;;;17349:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17218:293::o;29215:167::-;29293:4;29310:42;29320:12;:10;:12::i;:::-;29334:9;29345:6;29310:9;:42::i;32231:541::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32323:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32314:66;;;::::0;;-1:-1:-1;;;32314:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32398:9;32393:369;32417:16;:23:::0;32413:27;::::1;32393:369;;;32494:7;-1:-1:-1::0;;;;;32471:30:0::1;:16;32488:1;32471:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32471:19:0::1;:30;32467:281;;;32549:16;32566:23:::0;;-1:-1:-1;;32566:27:0;;;32549:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32527:16:::1;:19:::0;;-1:-1:-1;;;;;32549:45:0;;::::1;::::0;32544:1;;32527:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;32527:67:0::1;-1:-1:-1::0;;;;;32527:67:0;;::::1;;::::0;;32618:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;32618:34:0::1;::::0;;32676:16:::1;:22:::0;;;::::1;;;32467:281;32442:3;;32393:369;;16763:89:::0;16835:9;;16763:89;:::o;35398:171::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35475:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;35475:32:0;::::1;-1:-1:-1::0;;;;35475:32:0;;::::1;::::0;;;::::1;::::0;;;35523:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35398:171:::0;:::o;35008:162::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;35102:60:::1;35146:5;35102:25;35114:12;35102:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;35087:12;:75:::0;-1:-1:-1;35008:162:0:o;16928:214::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;17009:6:::1;::::0;;;16992:23;;-1:-1:-1;;;;;;16992:23:0;;::::1;-1:-1:-1::0;;;;;17009:6:0;::::1;16992:23;::::0;;;17026:19:::1;::::0;;17068:3:::1;:10:::0;::::1;17056:9;:22:::0;17094:40:::1;::::0;17009:6;;-1:-1:-1;;;;;;;;;;;17094:40:0;17009:6;;17094:40:::1;16928:214:::0;:::o;29390:143::-;-1:-1:-1;;;;;29498:18:0;;;29471:7;29498:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29390:143::o;37207:102::-;37287:14;;37207:102;:::o;34505:110::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34572:27:0::1;34602:5;34572:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34572:35:0::1;::::0;;34505:110::o;16511:244::-;15787:12;:10;:12::i;:::-;15777:6;;-1:-1:-1;;;;;15777:6:0;;;:22;;;15769:67;;;;;-1:-1:-1;;;15769:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15769:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16600:22:0;::::1;16592:73;;;;-1:-1:-1::0;;;16592:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16702:6;::::0;;16681:38:::1;::::0;-1:-1:-1;;;;;16681:38:0;;::::1;::::0;16702:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16681:38:0;::::1;16730:6;:17:::0;;-1:-1:-1;;;;;;16730:17:0::1;-1:-1:-1::0;;;;;16730:17:0;;;::::1;::::0;;;::::1;::::0;;16511:244::o;7973:106::-;8061:10;7973:106;:::o;39306:337::-;-1:-1:-1;;;;;39399:19:0;;39391:68;;;;-1:-1:-1;;;39391:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39478:21:0;;39470:68;;;;-1:-1:-1;;;39470:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39551:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39603:32;;;;;;;;;;;;;;;;;39306:337;;;:::o;39651:2320::-;-1:-1:-1;;;;;39773:18:0;;39765:68;;;;-1:-1:-1;;;39765:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39852:16:0;;39844:64;;;;-1:-1:-1;;;39844:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39936:1;39927:6;:10;39919:64;;;;-1:-1:-1;;;39919:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40003:23:0;;;;;;:17;:23;;;;;;;;40002:24;39994:56;;;;;-1:-1:-1;;;39994:56:0;;;;;;;;;;;;-1:-1:-1;;;39994:56:0;;;;;;;;;;;;;;;40088:10;40070:29;;;;:17;:29;;;;;;;;40069:30;40061:62;;;;;-1:-1:-1;;;40061:62:0;;;;;;;;;;;;-1:-1:-1;;;40061:62:0;;;;;;;;;;;;;;;40161:9;40143:28;;;;:17;:28;;;;;;;;40142:29;40134:61;;;;;-1:-1:-1;;;40134:61:0;;;;;;;;;;;;-1:-1:-1;;;40134:61:0;;;;;;;;;;;;;;;40217:7;:5;:7::i;:::-;-1:-1:-1;;;;;40209:15:0;:4;-1:-1:-1;;;;;40209:15:0;;;:32;;;;;40234:7;:5;:7::i;:::-;-1:-1:-1;;;;;40228:13:0;:2;-1:-1:-1;;;;;40228:13:0;;;40209:32;40206:125;;;40274:12;;40264:6;:22;;40256:75;;;;-1:-1:-1;;;40256:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40373:7;:5;:7::i;:::-;-1:-1:-1;;;;;40365:15:0;:4;-1:-1:-1;;;;;40365:15:0;;;:32;;;;;40390:7;:5;:7::i;:::-;-1:-1:-1;;;;;40384:13:0;:2;-1:-1:-1;;;;;40384:13:0;;;40365:32;:55;;;;;40407:13;-1:-1:-1;;;;;40401:19:0;:2;-1:-1:-1;;;;;40401:19:0;;;40365:55;:80;;;;-1:-1:-1;;;;;;40424:21:0;;40438:6;40424:21;;40365:80;40362:267;;;40462:29;40494:13;40504:2;40494:9;:13::i;:::-;40462:45;;40564:14;;40554:6;40530:21;:30;:48;;40522:95;;;;-1:-1:-1;;;40522:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40362:267;;40921:28;40952:24;40970:4;40952:9;:24::i;:::-;40921:55;;41024:12;;41000:20;:36;40997:112;;-1:-1:-1;41085:12:0;;40997:112;41180:29;;41156:53;;;;;;;41238;;-1:-1:-1;41275:16:0;;-1:-1:-1;;;41275:16:0;;;;41274:17;41238:53;:91;;;;;41316:13;-1:-1:-1;;;;;41308:21:0;:4;-1:-1:-1;;;;;41308:21:0;;;41238:91;:129;;;;-1:-1:-1;41346:21:0;;-1:-1:-1;;;41346:21:0;;;;41238:129;41220:318;;;41417:29;;41394:52;;41490:36;41505:20;41490:14;:36::i;:::-;-1:-1:-1;;;;;41746:24:0;;41619:12;41746:24;;;:18;:24;;;;;;41634:4;;41746:24;;;:50;;-1:-1:-1;;;;;;41774:22:0;;;;;;:18;:22;;;;;;;;41746:50;41743:96;;;-1:-1:-1;41822:5:0;41743:96;41925:38;41940:4;41945:2;41948:6;41955:7;41925:14;:38::i;:::-;39651:2320;;;;;;:::o;4383:192::-;4469:7;4505:12;4497:6;;;;4489:29;;;;-1:-1:-1;;;4489:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4541:5:0;;;4383:192::o;37032:163::-;37073:7;37094:15;37111;37130:19;:17;:19::i;:::-;37093:56;;-1:-1:-1;37093:56:0;-1:-1:-1;37167:20:0;37093:56;;37167:11;:20::i;:::-;37160:27;;;;37032:163;:::o;5781:132::-;5839:7;5866:39;5870:1;5873;5866:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5859:46;5781:132;-1:-1:-1;;;5781:132:0:o;3480:181::-;3538:7;3570:5;;;3594:6;;;;3586:46;;;;;-1:-1:-1;;;3586:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;35830:419;35889:7;35898;35907;35916;35925;35934;35955:23;35980:12;35994:18;36016:20;36028:7;36016:11;:20::i;:::-;35954:82;;;;;;36048:15;36065:23;36090:12;36106:50;36118:7;36127:4;36133:10;36145;:8;:10::i;:::-;36106:11;:50::i;:::-;36047:109;;;;-1:-1:-1;36047:109:0;;-1:-1:-1;36207:15:0;;-1:-1:-1;36224:4:0;;-1:-1:-1;36230:10:0;;-1:-1:-1;35830:419:0;;-1:-1:-1;;;;;35830:419:0:o;3944:136::-;4002:7;4029:43;4033:1;4036;4029:43;;;;;;;;;;;;;;;;;:3;:43::i;4834:471::-;4892:7;5137:6;5133:47;;-1:-1:-1;5167:1:0;5160:8;;5133:47;5204:5;;;5208:1;5204;:5;:1;5228:5;;;;;:10;5220:56;;;;-1:-1:-1;;;5220:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41979:1315;27735:16;:23;;-1:-1:-1;;;;27735:23:0;-1:-1:-1;;;27735:23:0;;;42084:13:::1;::::0;42068::::1;::::0;:29:::1;42064:60;;42117:7;;42064:60;42134:19;42156:77;42200:32;42218:13;;42200;;:17;;:32;;;;:::i;:::-;42181:13;::::0;42156:39:::1;::::0;:20;;:24:::1;:39::i;:77::-;42134:99:::0;-1:-1:-1;42244:17:0::1;42264:37;:20:::0;42134:99;42264:24:::1;:37::i;:::-;42244:57:::0;-1:-1:-1;42365:12:0::1;42380:16;42244:57:::0;42394:1:::1;42380:13;:16::i;:::-;42365:31:::0;-1:-1:-1;42407:17:0::1;42427:19;:9:::0;42365:31;42427:13:::1;:19::i;:::-;42407:39:::0;-1:-1:-1;42749:21:0::1;42724:22;42838:21;:4:::0;42847:11;42838:8:::1;:21::i;:::-;42815:44;;42870:30;42887:12;42870:16;:30::i;:::-;42961:16;42980:41;:21;43006:14:::0;42980:25:::1;:41::i;:::-;42961:60:::0;-1:-1:-1;43032:24:0::1;43059:36;43082:12:::0;43059:18:::1;42961:60:::0;43072:4;43059:12:::1;:18::i;:36::-;43032:63;;43108:41;43121:9;43132:16;43108:12;:41::i;:::-;43167:49;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;43229:16;::::0;-1:-1:-1;;;;;43229:16:0::1;:57;43255:30;:8:::0;43268:16;43255:12:::1;:30::i;:::-;43229:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27769:1;;;;;;;;;-1:-1:-1::0;27781:16:0;:24;;-1:-1:-1;;;;27781:24:0;;;41979:1315::o;44497:834::-;44608:7;44604:40;;44630:14;:12;:14::i;:::-;-1:-1:-1;;;;;44669:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44693:22:0;;;;;;:11;:22;;;;;;;;44692:23;44669:46;44665:597;;;44732:48;44754:6;44762:9;44773:6;44732:21;:48::i;:::-;44665:597;;;-1:-1:-1;;;;;44803:19:0;;;;;;:11;:19;;;;;;;;44802:20;:46;;;;-1:-1:-1;;;;;;44826:22:0;;;;;;:11;:22;;;;;;;;44802:46;44798:464;;;44865:46;44885:6;44893:9;44904:6;44865:19;:46::i;44798:464::-;-1:-1:-1;;;;;44934:19:0;;;;;;:11;:19;;;;;;;;44933:20;:47;;;;-1:-1:-1;;;;;;44958:22:0;;;;;;:11;:22;;;;;;;;44957:23;44933:47;44929:333;;;44997:44;45015:6;45023:9;45034:6;44997:17;:44::i;44929:333::-;-1:-1:-1;;;;;45063:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45086:22:0;;;;;;:11;:22;;;;;;;;45063:45;45059:203;;;45125:48;45147:6;45155:9;45166:6;45125:21;:48::i;45059:203::-;45206:44;45224:6;45232:9;45243:6;45206:17;:44::i;:::-;45286:7;45282:41;;45308:15;:13;:15::i;:::-;44497:834;;;;:::o;37321:561::-;37418:7;;37454;;37371;;;;;37478:289;37502:9;:16;37498:20;;37478:289;;;37568:7;37544;:21;37552:9;37562:1;37552:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37552:12:0;37544:21;;;;;;;;;;;;;:31;;:66;;;37603:7;37579;:21;37587:9;37597:1;37587:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37587:12:0;37579:21;;;;;;;;;;;;;:31;37544:66;37540:97;;;37620:7;;37629;;37612:25;;;;;;;;;37540:97;37662:34;37674:7;:21;37682:9;37692:1;37682:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37682:12:0;37674:21;;;;;;;;;;;;;37662:7;;:11;:34::i;:::-;37652:44;;37721:34;37733:7;:21;37741:9;37751:1;37741:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37741:12:0;37733:21;;;;;;;;;;;;;37721:7;;:11;:34::i;:::-;37711:44;-1:-1:-1;37520:3:0;;37478:289;;;-1:-1:-1;37803:7:0;;37791;;:20;;:11;:20::i;:::-;37781:7;:30;37777:61;;;37821:7;;37830;;37813:25;;;;;;;;37777:61;37857:7;;-1:-1:-1;37866:7:0;-1:-1:-1;37321:561:0;;;:::o;6409:278::-;6495:7;6530:12;6523:5;6515:28;;;;-1:-1:-1;;;6515:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6554:9;6570:1;6566;:5;;;;;;;6409:278;-1:-1:-1;;;;;6409:278:0:o;36257:330::-;36317:7;36326;36335;36355:12;36370:24;36386:7;36370:15;:24::i;:::-;36355:39;;36405:18;36426:30;36448:7;36426:21;:30::i;:::-;36405:51;-1:-1:-1;36467:23:0;36493:33;36405:51;36493:17;:7;36505:4;36493:11;:17::i;:::-;:21;;:33::i;:::-;36467:59;36562:4;;-1:-1:-1;36568:10:0;;-1:-1:-1;36257:330:0;;-1:-1:-1;;;36257:330:0:o;36595:429::-;36710:7;;;;36766:24;:7;36778:11;36766;:24::i;:::-;36748:42;-1:-1:-1;36801:12:0;36816:21;:4;36825:11;36816:8;:21::i;:::-;36801:36;-1:-1:-1;36848:18:0;36869:27;:10;36884:11;36869:14;:27::i;:::-;36848:48;-1:-1:-1;36907:23:0;36933:33;36848:48;36933:17;:7;36945:4;36933:11;:17::i;:33::-;36985:7;;;;-1:-1:-1;37011:4:0;;-1:-1:-1;36595:429:0;;-1:-1:-1;;;;;;;36595:429:0:o;43302:589::-;43452:16;;;43466:1;43452:16;;;43428:21;43452:16;;;;;43428:21;43452:16;;;;;;;;;;-1:-1:-1;43452:16:0;43428:40;;43497:4;43479;43484:1;43479:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;43479:23:0;;;-1:-1:-1;;;;;43479:23:0;;;;;43523:15;-1:-1:-1;;;;;43523:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43523:22:0;43513:7;;:4;;43518:1;;43513:7;;;;;;;;;;;:32;-1:-1:-1;;;;;43513:32:0;;;-1:-1:-1;;;;;43513:32:0;;;;;43558:62;43575:4;43590:15;43608:11;43558:8;:62::i;:::-;43659:15;-1:-1:-1;;;;;43659:66:0;;43740:11;43766:1;43810:4;43837;43857:15;43659:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43659:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43899:517;44047:62;44064:4;44079:15;44097:11;44047:8;:62::i;:::-;44356:11;;44152:256;;;-1:-1:-1;;;44152:256:0;;44224:4;44152:256;;;;;;;;;;-1:-1:-1;44152:256:0;;;;;;;;;;-1:-1:-1;;;;;44356:11:0;;;44152:256;;;;44382:15;44152:256;;;;;;:15;:31;;;;;;44191:9;;44152:256;;;;;;;;;;;;;;44191:9;44152:31;:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38620:358;38666:7;;:12;:34;;;;-1:-1:-1;38682:13:0;;:18;38666:34;:56;;;;-1:-1:-1;38704:13:0;;:18;38666:56;38663:68;;;38724:7;;38663:68;38769:7;;;38751:15;:25;38811:13;;;38787:21;:37;38859:13;;;38835:21;:37;-1:-1:-1;38893:11:0;;;;38915:17;;;;38943;38620:358;:::o;46443:566::-;46546:15;46563:23;46588:12;46602:23;46627:12;46641:18;46663:19;46674:7;46663:10;:19::i;:::-;-1:-1:-1;;;;;46711:15:0;;;;;;:7;:15;;;;;;46545:137;;-1:-1:-1;46545:137:0;;-1:-1:-1;46545:137:0;;-1:-1:-1;46545:137:0;-1:-1:-1;46545:137:0;-1:-1:-1;46545:137:0;-1:-1:-1;46711:28:0;;46731:7;46711:19;:28::i;:::-;-1:-1:-1;;;;;46693:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46768:7;:15;;;;:28;;46788:7;46768:19;:28::i;:::-;-1:-1:-1;;;;;46750:15:0;;;;;;;:7;:15;;;;;;:46;;;;46828:18;;;;;;;:39;;46851:15;46828:22;:39::i;:::-;-1:-1:-1;;;;;46807:18:0;;;;;;:7;:18;;;;;:60;46881:26;46896:10;46881:14;:26::i;:::-;46918:23;46930:4;46936;46918:11;:23::i;:::-;46974:9;-1:-1:-1;;;;;46957:44:0;46966:6;-1:-1:-1;;;;;46957:44:0;;46985:15;46957:44;;;;;;;;;;;;;;;;;;46443:566;;;;;;;;;:::o;45849:586::-;45950:15;45967:23;45992:12;46006:23;46031:12;46045:18;46067:19;46078:7;46067:10;:19::i;:::-;-1:-1:-1;;;;;46115:15:0;;;;;;:7;:15;;;;;;45949:137;;-1:-1:-1;45949:137:0;;-1:-1:-1;45949:137:0;;-1:-1:-1;45949:137:0;-1:-1:-1;45949:137:0;-1:-1:-1;45949:137:0;-1:-1:-1;46115:28:0;;45949:137;46115:19;:28::i;:::-;-1:-1:-1;;;;;46097:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;46175:18;;;;;:7;:18;;;;;:39;;46198:15;46175:22;:39::i;:::-;-1:-1:-1;;;;;46154:18:0;;;;;;:7;:18;;;;;;;;:60;;;;46246:7;:18;;;;:39;;46269:15;46246:22;:39::i;45339:502::-;45438:15;45455:23;45480:12;45494:23;45519:12;45533:18;45555:19;45566:7;45555:10;:19::i;:::-;-1:-1:-1;;;;;45603:15:0;;;;;;:7;:15;;;;;;45437:137;;-1:-1:-1;45437:137:0;;-1:-1:-1;45437:137:0;;-1:-1:-1;45437:137:0;-1:-1:-1;45437:137:0;-1:-1:-1;45437:137:0;-1:-1:-1;45603:28:0;;45437:137;45603:19;:28::i;33724:642::-;33827:15;33844:23;33869:12;33883:23;33908:12;33922:18;33944:19;33955:7;33944:10;:19::i;:::-;-1:-1:-1;;;;;33992:15:0;;;;;;:7;:15;;;;;;33826:137;;-1:-1:-1;33826:137:0;;-1:-1:-1;33826:137:0;;-1:-1:-1;33826:137:0;-1:-1:-1;33826:137:0;-1:-1:-1;33826:137:0;-1:-1:-1;33992:28:0;;34012:7;33992:19;:28::i;:::-;-1:-1:-1;;;;;33974:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34049:7;:15;;;;:28;;34069:7;34049:19;:28::i;38990:173::-;39044:15;;39034:7;:25;39086:21;;39070:13;:37;39134:21;;39118:13;:37;38990:173::o;38261:154::-;38325:7;38352:55;38391:5;38352:20;38364:7;;38352;:11;;:20;;;;:::i;38423:185::-;38493:7;38520:80;38584:5;38520:45;38532:32;38550:13;;38532;;:17;;:32;;;;:::i;:::-;38520:7;;:11;:45::i;37894:355::-;37957:19;37980:10;:8;:10::i;:::-;37957:33;-1:-1:-1;38001:18:0;38022:27;:10;37957:33;38022:14;:27::i;:::-;38101:4;38085:22;;;;:7;:22;;;;;;38001:48;;-1:-1:-1;38085:38:0;;38001:48;38085:26;:38::i;:::-;38076:4;38060:22;;;;:7;:22;;;;;;;;:63;;;;38137:11;:26;;;;;;38134:107;;;38219:4;38203:22;;;;:7;:22;;;;;;:38;;38230:10;38203:26;:38::i;:::-;38194:4;38178:22;;;;:7;:22;;;;;:63;38134:107;37894:355;;;:::o;35675:147::-;35753:7;;:17;;35765:4;35753:11;:17::i;:::-;35743:7;:27;35794:10;;:20;;35809:4;35794:14;:20::i;:::-;35781:10;:33;-1:-1:-1;;35675:147:0:o

Swarm Source

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