ETH Price: $3,384.34 (-1.55%)
Gas: 1 Gwei

Token

SER (SER)
 

Overview

Max Total Supply

1,000,000,000,000 SER

Holders

271

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
flaem.eth
Balance
491,685,054.171769264 SER

Value
$0.00
0x846E49EcE01AC637f57C2fDF3EffE476B7001190
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:
SER

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;
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 lockownership(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 exceeded
    function unlockownership() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Unlock time not reached");
        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 SER is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

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

    string private _name = "SER";
    string private _symbol = "SER";
    uint8 private _decimals = 9;
    
    uint256 public _taxFee = 2;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 8;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address payable public _marketingWalletAddress;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 300000000 * 10**1 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 1000000000 * 10**1 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (address payable marketingWalletAddress) public {
        _marketingWalletAddress = marketingWalletAddress;
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _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 setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**4);
    }

    function setContractAutoSwapPoint(uint256 swapPoint) external onlyOwner() {
        numTokensSellToAddToLiquidity = swapPoint.mul(
            10**9);
 }

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

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

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

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

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

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

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

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function sendETHTomarketing(uint256 amount) private { 
        swapTokensForEth(amount); 
        _marketingWalletAddress.transfer(address(this).balance); 
    }
    
    function _setmarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
        _marketingWalletAddress = marketingWalletAddress;
    }

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

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

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

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

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into thirds
        uint256 halfOfLiquify = contractTokenBalance.div(4);
        uint256 otherHalfOfLiquify = contractTokenBalance.div(4);
        uint256 portionForFees = contractTokenBalance.sub(halfOfLiquify).sub(otherHalfOfLiquify);

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

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

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

        // add liquidity to uniswap
        addLiquidity(otherHalfOfLiquify, newBalance);
        sendETHTomarketing(portionForFees);
        
        emit SwapAndLiquify(halfOfLiquify, newBalance, otherHalfOfLiquify);
    }

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

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

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

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

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

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

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

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

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


    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","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"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"lockownership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapPoint","type":"uint256"}],"name":"setContractAutoSwapPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockownership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

683635c9adc5dea000006009556818ce40f6d0219fffff19600a55610100604052600360c08190526229a2a960e91b60e09081526200004291600c9190620003f1565b506040805180820190915260038082526229a2a960e91b60209092019182526200006f91600d91620003f1565b50600e805460ff191660091790556002600f819055601055600860118190556012556013805460ff60a81b1916600160a81b1790556729a2241af62c0000601455678ac7230489e80000601555348015620000c957600080fd5b506040516200312f3803806200312f83398181016040526020811015620000ef57600080fd5b50516000620000fd620003de565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b0319166001600160a01b038316179055600a546003600062000173620003de565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ea57600080fd5b505afa158015620001ff573d6000803e3d6000fd5b505050506040513d60208110156200021657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026757600080fd5b505afa1580156200027c573d6000803e3d6000fd5b505050506040513d60208110156200029357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002e657600080fd5b505af1158015620002fb573d6000803e3d6000fd5b505050506040513d60208110156200031257600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200033f620003e2565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000389620003de565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350506200048d565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200043457805160ff191683800117855562000464565b8280016001018555821562000464579182015b828111156200046457825182559160200191906001019062000447565b506200047292915062000476565b5090565b5b8082111562000472576000815560010162000477565b60805160601c60a05160601c612c5a620004d56000398061106a5280611b6c525080610b4252806123505280612408528061242f5280612515528061253c5250612c5a6000f3fe60806040526004361061024a5760003560e01c80635342acb411610139578063a457c2d7116100b6578063d12a76881161007a578063d12a768814610831578063d543dbeb14610846578063dd62ed3e14610870578063ea2f0b37146108ab578063f2fde38b146108de578063f8f094b01461091157610251565b8063a457c2d714610754578063a9059cbb1461078d578063aa59f7d3146107c6578063b6c52324146107f0578063c49b9a801461080557610251565b8063813194d3116100fd578063813194d31461069a57806388f82020146106cd5780638da5cb5b146107005780638ee88c531461071557806395d89b411461073f57610251565b80635342acb4146105f55780636bc87c3a1461062857806370a082311461063d578063715018a6146106705780637d1db4a51461068557610251565b80633685d419116101c7578063437823ec1161018b578063437823ec146105335780634549b0391461056657806349bd5a5e146105985780634a74bb02146105ad57806352390c02146105c257610251565b80633685d4191461047357806339509351146104a65780633b124fe7146104df5780633bd5d173146104f45780634144d9e41461051e57610251565b80631694505e1161020e5780631694505e1461039557806318160ddd146103c657806323b872dd146103db5780632d8381191461041e578063313ce5671461044857610251565b8063061c82d01461025657806306fdde031461028257806307c917571461030c578063095ea7b31461032157806313114a9d1461036e57610251565b3661025157005b600080fd5b34801561026257600080fd5b506102806004803603602081101561027957600080fd5b503561093b565b005b34801561028e57600080fd5b50610297610998565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d15781810151838201526020016102b9565b50505050905090810190601f1680156102fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031857600080fd5b50610280610a2e565b34801561032d57600080fd5b5061035a6004803603604081101561034457600080fd5b506001600160a01b038135169060200135610b1c565b604080519115158252519081900360200190f35b34801561037a57600080fd5b50610383610b3a565b60408051918252519081900360200190f35b3480156103a157600080fd5b506103aa610b40565b604080516001600160a01b039092168252519081900360200190f35b3480156103d257600080fd5b50610383610b64565b3480156103e757600080fd5b5061035a600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610b6a565b34801561042a57600080fd5b506103836004803603602081101561044157600080fd5b5035610bf1565b34801561045457600080fd5b5061045d610c53565b6040805160ff9092168252519081900360200190f35b34801561047f57600080fd5b506102806004803603602081101561049657600080fd5b50356001600160a01b0316610c5c565b3480156104b257600080fd5b5061035a600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610e1d565b3480156104eb57600080fd5b50610383610e6b565b34801561050057600080fd5b506102806004803603602081101561051757600080fd5b5035610e71565b34801561052a57600080fd5b506103aa610f4b565b34801561053f57600080fd5b506102806004803603602081101561055657600080fd5b50356001600160a01b0316610f5a565b34801561057257600080fd5b506103836004803603604081101561058957600080fd5b50803590602001351515610fd6565b3480156105a457600080fd5b506103aa611068565b3480156105b957600080fd5b5061035a61108c565b3480156105ce57600080fd5b50610280600480360360208110156105e557600080fd5b50356001600160a01b031661109c565b34801561060157600080fd5b5061035a6004803603602081101561061857600080fd5b50356001600160a01b0316611222565b34801561063457600080fd5b50610383611240565b34801561064957600080fd5b506103836004803603602081101561066057600080fd5b50356001600160a01b0316611246565b34801561067c57600080fd5b506102806112a8565b34801561069157600080fd5b50610383611338565b3480156106a657600080fd5b50610280600480360360208110156106bd57600080fd5b50356001600160a01b031661133e565b3480156106d957600080fd5b5061035a600480360360208110156106f057600080fd5b50356001600160a01b03166113b8565b34801561070c57600080fd5b506103aa6113d6565b34801561072157600080fd5b506102806004803603602081101561073857600080fd5b50356113e5565b34801561074b57600080fd5b50610297611442565b34801561076057600080fd5b5061035a6004803603604081101561077757600080fd5b506001600160a01b0381351690602001356114a3565b34801561079957600080fd5b5061035a600480360360408110156107b057600080fd5b506001600160a01b03813516906020013561150b565b3480156107d257600080fd5b50610280600480360360208110156107e957600080fd5b503561151f565b3480156107fc57600080fd5b506103836115bd565b34801561081157600080fd5b506102806004803603602081101561082857600080fd5b503515156115c3565b34801561083d57600080fd5b5061038361166e565b34801561085257600080fd5b506102806004803603602081101561086957600080fd5b5035611674565b34801561087c57600080fd5b506103836004803603604081101561089357600080fd5b506001600160a01b03813581169160200135166116f3565b3480156108b757600080fd5b50610280600480360360208110156108ce57600080fd5b50356001600160a01b031661171e565b3480156108ea57600080fd5b506102806004803603602081101561090157600080fd5b50356001600160a01b0316611797565b34801561091d57600080fd5b506102806004803603602081101561093457600080fd5b503561187d565b6109436118e9565b6000546001600160a01b03908116911614610993576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6001546001600160a01b03163314610a775760405162461bcd60e51b8152600401808060200182810382526023815260200180612bdd6023913960400191505060405180910390fd5b6002544211610acd576040805162461bcd60e51b815260206004820152601760248201527f556e6c6f636b2074696d65206e6f742072656163686564000000000000000000604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612b1f83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b30610b296118e9565b84846118ed565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b6000610b778484846119d9565b610be784610b836118e9565b610be285604051806060016040528060288152602001612ad7602891396001600160a01b038a16600090815260056020526040812090610bc16118e9565b6001600160a01b031681526020810191909152604001600020549190611c28565b6118ed565b5060019392505050565b6000600a54821115610c345760405162461bcd60e51b815260040180806020018281038252602a815260200180612a1c602a913960400191505060405180910390fd5b6000610c3e611cbf565b9050610c4a8382611ce2565b9150505b919050565b600e5460ff1690565b610c646118e9565b6000546001600160a01b03908116911614610cb4576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e1957816001600160a01b031660088281548110610d4557fe5b6000918252602090912001546001600160a01b03161415610e1157600880546000198101908110610d7257fe5b600091825260209091200154600880546001600160a01b039092169183908110610d9857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610dea57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e19565b600101610d24565b5050565b6000610b30610e2a6118e9565b84610be28560056000610e3b6118e9565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d2b565b600f5481565b6000610e7b6118e9565b6001600160a01b03811660009081526007602052604090205490915060ff1615610ed65760405162461bcd60e51b815260040180806020018281038252602c815260200180612bb1602c913960400191505060405180910390fd5b6000610ee183611d85565b505050506001600160a01b038416600090815260036020526040902054919250610f0d91905082611dd4565b6001600160a01b038316600090815260036020526040902055600a54610f339082611dd4565b600a55600b54610f439084611d2b565b600b55505050565b6013546001600160a01b031681565b610f626118e9565b6000546001600160a01b03908116911614610fb2576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600060095483111561102f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161104e57600061103f84611d85565b50939550610b34945050505050565b600061105984611d85565b50929550610b34945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601354600160a81b900460ff1681565b6110a46118e9565b6000546001600160a01b039081169116146110f4576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611162576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156111bc576001600160a01b0381166000908152600360205260409020546111a290610bf1565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561128657506001600160a01b038116600090815260046020526040902054610c4e565b6001600160a01b038216600090815260036020526040902054610b3490610bf1565b6112b06118e9565b6000546001600160a01b03908116911614611300576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612b1f833981519152908390a3600080546001600160a01b0319169055565b60145481565b6113466118e9565b6000546001600160a01b03908116911614611396576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6113ed6118e9565b6000546001600160a01b0390811691161461143d576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a245780601f106109f957610100808354040283529160200191610a24565b6000610b306114b06118e9565b84610be285604051806060016040528060258152602001612c0060259139600560006114da6118e9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c28565b6000610b306115186118e9565b84846119d9565b6115276118e9565b6000546001600160a01b03908116911614611577576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612b1f833981519152908290a350565b60025490565b6115cb6118e9565b6000546001600160a01b0390811691161461161b576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b60138054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60155481565b61167c6118e9565b6000546001600160a01b039081169116146116cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6116ed6127106116e783600954611e1690919063ffffffff16565b90611ce2565b60145550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6117266118e9565b6000546001600160a01b03908116911614611776576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61179f6118e9565b6000546001600160a01b039081169116146117ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b0381166118345760405162461bcd60e51b8152600401808060200182810382526026815260200180612a466026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612b1f83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6118856118e9565b6000546001600160a01b039081169116146118d5576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6118e381633b9aca00611e16565b60155550565b3390565b6001600160a01b0383166119325760405162461bcd60e51b8152600401808060200182810382526024815260200180612b8d6024913960400191505060405180910390fd5b6001600160a01b0382166119775760405162461bcd60e51b8152600401808060200182810382526022815260200180612a6c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a1e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612b686025913960400191505060405180910390fd5b6001600160a01b038216611a635760405162461bcd60e51b81526004018080602001828103825260238152602001806129f96023913960400191505060405180910390fd5b60008111611aa25760405162461bcd60e51b8152600401808060200182810382526029815260200180612b3f6029913960400191505060405180910390fd5b611aaa6113d6565b6001600160a01b0316836001600160a01b031614158015611ae45750611ace6113d6565b6001600160a01b0316826001600160a01b031614155b15611b2a57601454811115611b2a5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a8e6028913960400191505060405180910390fd5b6000611b3530611246565b90506014548110611b4557506014545b60155481108015908190611b635750601354600160a01b900460ff16155b8015611ba157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611bb65750601354600160a81b900460ff165b15611bc9576015549150611bc982611e6f565b6001600160a01b03851660009081526006602052604090205460019060ff1680611c0b57506001600160a01b03851660009081526006602052604090205460ff165b15611c14575060005b611c2086868684611f38565b505050505050565b60008184841115611cb75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c7c578181015183820152602001611c64565b50505050905090810190601f168015611ca95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611ccc6120ac565b9092509050611cdb8282611ce2565b9250505090565b6000611d2483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061220f565b9392505050565b600082820183811015611d24576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d9c8a612274565b9250925092506000806000611dba8d8686611db5611cbf565b6122b0565b919f909e50909c50959a5093985091965092945050505050565b6000611d2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c28565b600082611e2557506000610b34565b82820282848281611e3257fe5b0414611d245760405162461bcd60e51b8152600401808060200182810382526021815260200180612ab66021913960400191505060405180910390fd5b6013805460ff60a01b1916600160a01b1790556000611e8f826004611ce2565b90506000611e9e836004611ce2565b90506000611eb682611eb08686611dd4565b90611dd4565b905047611ec284612300565b6000611ece4783611dd4565b9050611eda848261250f565b611ee38361260d565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff60a01b1916905550505050565b80611f4557611f4561264f565b6001600160a01b03841660009081526007602052604090205460ff168015611f8657506001600160a01b03831660009081526007602052604090205460ff16155b15611f9b57611f96848484612681565b612099565b6001600160a01b03841660009081526007602052604090205460ff16158015611fdc57506001600160a01b03831660009081526007602052604090205460ff165b15611fec57611f968484846127a5565b6001600160a01b03841660009081526007602052604090205460ff1615801561202e57506001600160a01b03831660009081526007602052604090205460ff16155b1561203e57611f9684848461284e565b6001600160a01b03841660009081526007602052604090205460ff16801561207e57506001600160a01b03831660009081526007602052604090205460ff165b1561208e57611f96848484612892565b61209984848461284e565b806120a6576120a6612905565b50505050565b600a546009546000918291825b6008548110156121dd578260036000600884815481106120d557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061213a575081600460006008848154811061211357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561215157600a546009549450945050505061220b565b612191600360006008848154811061216557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dd4565b92506121d360046000600884815481106121a757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dd4565b91506001016120b9565b50600954600a546121ed91611ce2565b82101561220557600a5460095493509350505061220b565b90925090505b9091565b6000818361225e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c7c578181015183820152602001611c64565b50600083858161226a57fe5b0495945050505050565b60008060008061228385612913565b905060006122908661292f565b905060006122a282611eb08986611dd4565b979296509094509092505050565b60008080806122bf8886611e16565b905060006122cd8887611e16565b905060006122db8888611e16565b905060006122ed82611eb08686611dd4565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a757600080fd5b505afa1580156123bb573d6000803e3d6000fd5b505050506040513d60208110156123d157600080fd5b50518151829060019081106123e257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061242d307f0000000000000000000000000000000000000000000000000000000000000000846118ed565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156124d25781810151838201526020016124ba565b505050509050019650505050505050600060405180830381600087803b1580156124fb57600080fd5b505af1158015611c20573d6000803e3d6000fd5b61253a307f0000000000000000000000000000000000000000000000000000000000000000846118ed565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125776113d6565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125e257600080fd5b505af11580156125f6573d6000803e3d6000fd5b50505050506040513d60608110156120a657600080fd5b61261681612300565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e19573d6000803e3d6000fd5b600f5415801561265f5750601154155b156126695761267f565b600f805460105560118054601255600091829055555b565b60008060008060008061269387611d85565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126c59088611dd4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126f49087611dd4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546127239086611d2b565b6001600160a01b0389166000908152600360205260409020556127458161294b565b61274f84836129d4565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806127b787611d85565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127e99087611dd4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461281f9084611d2b565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546127239086611d2b565b60008060008060008061286087611d85565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126f49087611dd4565b6000806000806000806128a487611d85565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128d69088611dd4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127e99087611dd4565b601054600f55601254601155565b6000610b3460646116e7600f5485611e1690919063ffffffff16565b6000610b3460646116e760115485611e1690919063ffffffff16565b6000612955611cbf565b905060006129638383611e16565b306000908152600360205260409020549091506129809082611d2b565b3060009081526003602090815260408083209390935560079052205460ff16156129cf57306000908152600460205260409020546129be9084611d2b565b306000908152600460205260409020555b505050565b600a546129e19083611dd4565b600a55600b546129f19082611d2b565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206d8a3340b72dfbad1a2c219fdcd17b3d713430ab8a9518017c1be2166c79036864736f6c634300060c003300000000000000000000000054766a0f6cdf76029280abb547370cfec1c61daf

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80635342acb411610139578063a457c2d7116100b6578063d12a76881161007a578063d12a768814610831578063d543dbeb14610846578063dd62ed3e14610870578063ea2f0b37146108ab578063f2fde38b146108de578063f8f094b01461091157610251565b8063a457c2d714610754578063a9059cbb1461078d578063aa59f7d3146107c6578063b6c52324146107f0578063c49b9a801461080557610251565b8063813194d3116100fd578063813194d31461069a57806388f82020146106cd5780638da5cb5b146107005780638ee88c531461071557806395d89b411461073f57610251565b80635342acb4146105f55780636bc87c3a1461062857806370a082311461063d578063715018a6146106705780637d1db4a51461068557610251565b80633685d419116101c7578063437823ec1161018b578063437823ec146105335780634549b0391461056657806349bd5a5e146105985780634a74bb02146105ad57806352390c02146105c257610251565b80633685d4191461047357806339509351146104a65780633b124fe7146104df5780633bd5d173146104f45780634144d9e41461051e57610251565b80631694505e1161020e5780631694505e1461039557806318160ddd146103c657806323b872dd146103db5780632d8381191461041e578063313ce5671461044857610251565b8063061c82d01461025657806306fdde031461028257806307c917571461030c578063095ea7b31461032157806313114a9d1461036e57610251565b3661025157005b600080fd5b34801561026257600080fd5b506102806004803603602081101561027957600080fd5b503561093b565b005b34801561028e57600080fd5b50610297610998565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d15781810151838201526020016102b9565b50505050905090810190601f1680156102fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031857600080fd5b50610280610a2e565b34801561032d57600080fd5b5061035a6004803603604081101561034457600080fd5b506001600160a01b038135169060200135610b1c565b604080519115158252519081900360200190f35b34801561037a57600080fd5b50610383610b3a565b60408051918252519081900360200190f35b3480156103a157600080fd5b506103aa610b40565b604080516001600160a01b039092168252519081900360200190f35b3480156103d257600080fd5b50610383610b64565b3480156103e757600080fd5b5061035a600480360360608110156103fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610b6a565b34801561042a57600080fd5b506103836004803603602081101561044157600080fd5b5035610bf1565b34801561045457600080fd5b5061045d610c53565b6040805160ff9092168252519081900360200190f35b34801561047f57600080fd5b506102806004803603602081101561049657600080fd5b50356001600160a01b0316610c5c565b3480156104b257600080fd5b5061035a600480360360408110156104c957600080fd5b506001600160a01b038135169060200135610e1d565b3480156104eb57600080fd5b50610383610e6b565b34801561050057600080fd5b506102806004803603602081101561051757600080fd5b5035610e71565b34801561052a57600080fd5b506103aa610f4b565b34801561053f57600080fd5b506102806004803603602081101561055657600080fd5b50356001600160a01b0316610f5a565b34801561057257600080fd5b506103836004803603604081101561058957600080fd5b50803590602001351515610fd6565b3480156105a457600080fd5b506103aa611068565b3480156105b957600080fd5b5061035a61108c565b3480156105ce57600080fd5b50610280600480360360208110156105e557600080fd5b50356001600160a01b031661109c565b34801561060157600080fd5b5061035a6004803603602081101561061857600080fd5b50356001600160a01b0316611222565b34801561063457600080fd5b50610383611240565b34801561064957600080fd5b506103836004803603602081101561066057600080fd5b50356001600160a01b0316611246565b34801561067c57600080fd5b506102806112a8565b34801561069157600080fd5b50610383611338565b3480156106a657600080fd5b50610280600480360360208110156106bd57600080fd5b50356001600160a01b031661133e565b3480156106d957600080fd5b5061035a600480360360208110156106f057600080fd5b50356001600160a01b03166113b8565b34801561070c57600080fd5b506103aa6113d6565b34801561072157600080fd5b506102806004803603602081101561073857600080fd5b50356113e5565b34801561074b57600080fd5b50610297611442565b34801561076057600080fd5b5061035a6004803603604081101561077757600080fd5b506001600160a01b0381351690602001356114a3565b34801561079957600080fd5b5061035a600480360360408110156107b057600080fd5b506001600160a01b03813516906020013561150b565b3480156107d257600080fd5b50610280600480360360208110156107e957600080fd5b503561151f565b3480156107fc57600080fd5b506103836115bd565b34801561081157600080fd5b506102806004803603602081101561082857600080fd5b503515156115c3565b34801561083d57600080fd5b5061038361166e565b34801561085257600080fd5b506102806004803603602081101561086957600080fd5b5035611674565b34801561087c57600080fd5b506103836004803603604081101561089357600080fd5b506001600160a01b03813581169160200135166116f3565b3480156108b757600080fd5b50610280600480360360208110156108ce57600080fd5b50356001600160a01b031661171e565b3480156108ea57600080fd5b506102806004803603602081101561090157600080fd5b50356001600160a01b0316611797565b34801561091d57600080fd5b506102806004803603602081101561093457600080fd5b503561187d565b6109436118e9565b6000546001600160a01b03908116911614610993576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a245780601f106109f957610100808354040283529160200191610a24565b820191906000526020600020905b815481529060010190602001808311610a0757829003601f168201915b5050505050905090565b6001546001600160a01b03163314610a775760405162461bcd60e51b8152600401808060200182810382526023815260200180612bdd6023913960400191505060405180910390fd5b6002544211610acd576040805162461bcd60e51b815260206004820152601760248201527f556e6c6f636b2074696d65206e6f742072656163686564000000000000000000604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612b1f83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b30610b296118e9565b84846118ed565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b6000610b778484846119d9565b610be784610b836118e9565b610be285604051806060016040528060288152602001612ad7602891396001600160a01b038a16600090815260056020526040812090610bc16118e9565b6001600160a01b031681526020810191909152604001600020549190611c28565b6118ed565b5060019392505050565b6000600a54821115610c345760405162461bcd60e51b815260040180806020018281038252602a815260200180612a1c602a913960400191505060405180910390fd5b6000610c3e611cbf565b9050610c4a8382611ce2565b9150505b919050565b600e5460ff1690565b610c646118e9565b6000546001600160a01b03908116911614610cb4576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610d21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610e1957816001600160a01b031660088281548110610d4557fe5b6000918252602090912001546001600160a01b03161415610e1157600880546000198101908110610d7257fe5b600091825260209091200154600880546001600160a01b039092169183908110610d9857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610dea57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e19565b600101610d24565b5050565b6000610b30610e2a6118e9565b84610be28560056000610e3b6118e9565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d2b565b600f5481565b6000610e7b6118e9565b6001600160a01b03811660009081526007602052604090205490915060ff1615610ed65760405162461bcd60e51b815260040180806020018281038252602c815260200180612bb1602c913960400191505060405180910390fd5b6000610ee183611d85565b505050506001600160a01b038416600090815260036020526040902054919250610f0d91905082611dd4565b6001600160a01b038316600090815260036020526040902055600a54610f339082611dd4565b600a55600b54610f439084611d2b565b600b55505050565b6013546001600160a01b031681565b610f626118e9565b6000546001600160a01b03908116911614610fb2576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b600060095483111561102f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161104e57600061103f84611d85565b50939550610b34945050505050565b600061105984611d85565b50929550610b34945050505050565b7f0000000000000000000000004ed7ef00e3f23be1335ef6839226159f2b3e876681565b601354600160a81b900460ff1681565b6110a46118e9565b6000546001600160a01b039081169116146110f4576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615611162576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156111bc576001600160a01b0381166000908152600360205260409020546111a290610bf1565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff161561128657506001600160a01b038116600090815260046020526040902054610c4e565b6001600160a01b038216600090815260036020526040902054610b3490610bf1565b6112b06118e9565b6000546001600160a01b03908116911614611300576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612b1f833981519152908390a3600080546001600160a01b0319169055565b60145481565b6113466118e9565b6000546001600160a01b03908116911614611396576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6113ed6118e9565b6000546001600160a01b0390811691161461143d576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a245780601f106109f957610100808354040283529160200191610a24565b6000610b306114b06118e9565b84610be285604051806060016040528060258152602001612c0060259139600560006114da6118e9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c28565b6000610b306115186118e9565b84846119d9565b6115276118e9565b6000546001600160a01b03908116911614611577576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612b1f833981519152908290a350565b60025490565b6115cb6118e9565b6000546001600160a01b0390811691161461161b576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b60138054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60155481565b61167c6118e9565b6000546001600160a01b039081169116146116cc576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6116ed6127106116e783600954611e1690919063ffffffff16565b90611ce2565b60145550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6117266118e9565b6000546001600160a01b03908116911614611776576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b61179f6118e9565b6000546001600160a01b039081169116146117ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6001600160a01b0381166118345760405162461bcd60e51b8152600401808060200182810382526026815260200180612a466026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612b1f83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6118856118e9565b6000546001600160a01b039081169116146118d5576040805162461bcd60e51b81526020600482018190526024820152600080516020612aff833981519152604482015290519081900360640190fd5b6118e381633b9aca00611e16565b60155550565b3390565b6001600160a01b0383166119325760405162461bcd60e51b8152600401808060200182810382526024815260200180612b8d6024913960400191505060405180910390fd5b6001600160a01b0382166119775760405162461bcd60e51b8152600401808060200182810382526022815260200180612a6c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a1e5760405162461bcd60e51b8152600401808060200182810382526025815260200180612b686025913960400191505060405180910390fd5b6001600160a01b038216611a635760405162461bcd60e51b81526004018080602001828103825260238152602001806129f96023913960400191505060405180910390fd5b60008111611aa25760405162461bcd60e51b8152600401808060200182810382526029815260200180612b3f6029913960400191505060405180910390fd5b611aaa6113d6565b6001600160a01b0316836001600160a01b031614158015611ae45750611ace6113d6565b6001600160a01b0316826001600160a01b031614155b15611b2a57601454811115611b2a5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a8e6028913960400191505060405180910390fd5b6000611b3530611246565b90506014548110611b4557506014545b60155481108015908190611b635750601354600160a01b900460ff16155b8015611ba157507f0000000000000000000000004ed7ef00e3f23be1335ef6839226159f2b3e87666001600160a01b0316856001600160a01b031614155b8015611bb65750601354600160a81b900460ff165b15611bc9576015549150611bc982611e6f565b6001600160a01b03851660009081526006602052604090205460019060ff1680611c0b57506001600160a01b03851660009081526006602052604090205460ff165b15611c14575060005b611c2086868684611f38565b505050505050565b60008184841115611cb75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c7c578181015183820152602001611c64565b50505050905090810190601f168015611ca95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611ccc6120ac565b9092509050611cdb8282611ce2565b9250505090565b6000611d2483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061220f565b9392505050565b600082820183811015611d24576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d9c8a612274565b9250925092506000806000611dba8d8686611db5611cbf565b6122b0565b919f909e50909c50959a5093985091965092945050505050565b6000611d2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c28565b600082611e2557506000610b34565b82820282848281611e3257fe5b0414611d245760405162461bcd60e51b8152600401808060200182810382526021815260200180612ab66021913960400191505060405180910390fd5b6013805460ff60a01b1916600160a01b1790556000611e8f826004611ce2565b90506000611e9e836004611ce2565b90506000611eb682611eb08686611dd4565b90611dd4565b905047611ec284612300565b6000611ece4783611dd4565b9050611eda848261250f565b611ee38361260d565b604080518681526020810183905280820186905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff60a01b1916905550505050565b80611f4557611f4561264f565b6001600160a01b03841660009081526007602052604090205460ff168015611f8657506001600160a01b03831660009081526007602052604090205460ff16155b15611f9b57611f96848484612681565b612099565b6001600160a01b03841660009081526007602052604090205460ff16158015611fdc57506001600160a01b03831660009081526007602052604090205460ff165b15611fec57611f968484846127a5565b6001600160a01b03841660009081526007602052604090205460ff1615801561202e57506001600160a01b03831660009081526007602052604090205460ff16155b1561203e57611f9684848461284e565b6001600160a01b03841660009081526007602052604090205460ff16801561207e57506001600160a01b03831660009081526007602052604090205460ff165b1561208e57611f96848484612892565b61209984848461284e565b806120a6576120a6612905565b50505050565b600a546009546000918291825b6008548110156121dd578260036000600884815481106120d557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061213a575081600460006008848154811061211357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561215157600a546009549450945050505061220b565b612191600360006008848154811061216557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dd4565b92506121d360046000600884815481106121a757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dd4565b91506001016120b9565b50600954600a546121ed91611ce2565b82101561220557600a5460095493509350505061220b565b90925090505b9091565b6000818361225e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c7c578181015183820152602001611c64565b50600083858161226a57fe5b0495945050505050565b60008060008061228385612913565b905060006122908661292f565b905060006122a282611eb08986611dd4565b979296509094509092505050565b60008080806122bf8886611e16565b905060006122cd8887611e16565b905060006122db8888611e16565b905060006122ed82611eb08686611dd4565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a757600080fd5b505afa1580156123bb573d6000803e3d6000fd5b505050506040513d60208110156123d157600080fd5b50518151829060019081106123e257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061242d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118ed565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156124d25781810151838201526020016124ba565b505050509050019650505050505050600060405180830381600087803b1580156124fb57600080fd5b505af1158015611c20573d6000803e3d6000fd5b61253a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118ed565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125776113d6565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125e257600080fd5b505af11580156125f6573d6000803e3d6000fd5b50505050506040513d60608110156120a657600080fd5b61261681612300565b6013546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e19573d6000803e3d6000fd5b600f5415801561265f5750601154155b156126695761267f565b600f805460105560118054601255600091829055555b565b60008060008060008061269387611d85565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126c59088611dd4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126f49087611dd4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546127239086611d2b565b6001600160a01b0389166000908152600360205260409020556127458161294b565b61274f84836129d4565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806127b787611d85565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127e99087611dd4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461281f9084611d2b565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546127239086611d2b565b60008060008060008061286087611d85565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126f49087611dd4565b6000806000806000806128a487611d85565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128d69088611dd4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127e99087611dd4565b601054600f55601254601155565b6000610b3460646116e7600f5485611e1690919063ffffffff16565b6000610b3460646116e760115485611e1690919063ffffffff16565b6000612955611cbf565b905060006129638383611e16565b306000908152600360205260409020549091506129809082611d2b565b3060009081526003602090815260408083209390935560079052205460ff16156129cf57306000908152600460205260409020546129be9084611d2b565b306000908152600460205260409020555b505050565b600a546129e19083611dd4565b600a55600b546129f19082611d2b565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206d8a3340b72dfbad1a2c219fdcd17b3d713430ab8a9518017c1be2166c79036864736f6c634300060c0033

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

00000000000000000000000054766a0f6cdf76029280abb547370cfec1c61daf

-----Decoded View---------------
Arg [0] : marketingWalletAddress (address): 0x54766A0F6cdf76029280aBb547370CfEc1c61DAf

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000054766a0f6cdf76029280abb547370cfec1c61daf


Deployed Bytecode Sourcemap

25626:19202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33228:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33228:98:0;;:::i;:::-;;28163:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17230:294;;;;;;;;;;;;;:::i;29075:161::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29075:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30196:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26574:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26574:51:0;;;;;;;;;;;;;;28440:95;;;;;;;;;;;;;:::i;29244:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29244:313:0;;;;;;;;;;;;;;;;;:::i;31120:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31120:253:0;;:::i;28349:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31836:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31836:479:0;-1:-1:-1;;;;;31836:479:0;;:::i;29565:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29565:218:0;;;;;;;;:::i;26386:26::-;;;;;;;;;;;;;:::i;30291:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30291:377:0;;:::i;26677:46::-;;;;;;;;;;;;;:::i;32983:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32983:111:0;-1:-1:-1;;;;;32983:111:0;;:::i;30676:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30676:436:0;;;;;;;;;:::i;26632:38::-;;;;;;;;;;;;;:::i;26764:40::-;;;;;;;;;;;;;:::i;31381:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31381:447:0;-1:-1:-1;;;;;31381:447:0;;:::i;37280:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37280:123:0;-1:-1:-1;;;;;37280:123:0;;:::i;26473:32::-;;;;;;;;;;;;;:::i;28543:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28543:198:0;-1:-1:-1;;;;;28543:198:0;;:::i;16210:148::-;;;;;;;;;;;;;:::i;26817:55::-;;;;;;;;;;;;;:::i;37591:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37591:157:0;-1:-1:-1;;;;;37591:157:0;;:::i;30068:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30068:120:0;-1:-1:-1;;;;;30068:120:0;;:::i;15567:79::-;;;;;;;;;;;;;:::i;33338:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33338:122:0;;:::i;28254:87::-;;;;;;;;;;;;;:::i;29791:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29791:269:0;;;;;;;;:::i;28749:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28749:167:0;;;;;;;;:::i;16930:223::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16930:223:0;;:::i;16765:89::-;;;;;;;;;;;;;:::i;33795:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33795:171:0;;;;:::i;26879:73::-;;;;;;;;;;;;;:::i;33471:152::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33471:152:0;;:::i;28924:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28924:143:0;;;;;;;;;;:::i;33106:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33106:110:0;-1:-1:-1;;;;;33106:110:0;;:::i;16513:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16513:244:0;-1:-1:-1;;;;;16513:244:0;;:::i;33631:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33631:156:0;;:::i;33228:98::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;33302:7:::1;:16:::0;33228:98::o;28163:83::-;28233:5;28226:12;;;;;;;;-1:-1:-1;;28226:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200:13;;28226:12;;28233:5;;28226:12;;28233:5;28226:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28163:83;:::o;17230:294::-;17291:14;;-1:-1:-1;;;;;17291:14:0;17309:10;17291:28;17283:76;;;;-1:-1:-1;;;17283:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17384:9;;17378:3;:15;17370:52;;;;;-1:-1:-1;;;17370:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17467:14;;;17459:6;;17438:44;;-1:-1:-1;;;;;17467:14:0;;;;17459:6;;;;-1:-1:-1;;;;;;;;;;;17438:44:0;;17502:14;;;17493:23;;-1:-1:-1;;;;;;17493:23:0;-1:-1:-1;;;;;17502:14:0;;;17493:23;;;;;;17230:294::o;29075:161::-;29150:4;29167:39;29176:12;:10;:12::i;:::-;29190:7;29199:6;29167:8;:39::i;:::-;-1:-1:-1;29224:4:0;29075:161;;;;;:::o;30196:87::-;30265:10;;30196:87;:::o;26574:51::-;;;:::o;28440:95::-;28520:7;;28440:95;:::o;29244:313::-;29342:4;29359:36;29369:6;29377:9;29388:6;29359:9;:36::i;:::-;29406:121;29415:6;29423:12;:10;:12::i;:::-;29437:89;29475:6;29437:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29437:19:0;;;;;;:11;:19;;;;;;29457:12;:10;:12::i;:::-;-1:-1:-1;;;;;29437:33:0;;;;;;;;;;;;-1:-1:-1;29437:33:0;;;:89;:37;:89::i;:::-;29406:8;:121::i;:::-;-1:-1:-1;29545:4:0;29244:313;;;;;:::o;31120:253::-;31186:7;31225;;31214;:18;;31206:73;;;;-1:-1:-1;;;31206:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31290:19;31313:10;:8;:10::i;:::-;31290:33;-1:-1:-1;31341:24:0;:7;31290:33;31341:11;:24::i;:::-;31334:31;;;31120:253;;;;:::o;28349:83::-;28415:9;;;;28349:83;:::o;31836:479::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31918:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31910:60;;;::::0;;-1:-1:-1;;;31910:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31986:9;31981:327;32005:9;:16:::0;32001:20;::::1;31981:327;;;32063:7;-1:-1:-1::0;;;;;32047:23:0::1;:9;32057:1;32047:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32047:12:0::1;:23;32043:254;;;32106:9;32116:16:::0;;-1:-1:-1;;32116:20:0;;;32106:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32091:9:::1;:12:::0;;-1:-1:-1;;;;;32106:31:0;;::::1;::::0;32101:1;;32091:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32091:46:0::1;-1:-1:-1::0;;;;;32091:46:0;;::::1;;::::0;;32156:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32195:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32195:28:0::1;::::0;;32242:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32242:15:0;;;;;-1:-1:-1;;;;;;32242:15:0::1;::::0;;;;;32276:5:::1;;32043:254;32023:3;;31981:327;;;;31836:479:::0;:::o;29565:218::-;29653:4;29670:83;29679:12;:10;:12::i;:::-;29693:7;29702:50;29741:10;29702:11;:25;29714:12;:10;:12::i;:::-;-1:-1:-1;;;;;29702:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29702:25:0;;;:34;;;;;;;;;;;:38;:50::i;26386:26::-;;;;:::o;30291:377::-;30343:14;30360:12;:10;:12::i;:::-;-1:-1:-1;;;;;30392:19:0;;;;;;:11;:19;;;;;;30343:29;;-1:-1:-1;30392:19:0;;30391:20;30383:77;;;;-1:-1:-1;;;30383:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30472:15;30496:19;30507:7;30496:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30544:15:0;;;;;;:7;:15;;;;;;30471:44;;-1:-1:-1;30544:28:0;;:15;-1:-1:-1;30471:44:0;30544:19;:28::i;:::-;-1:-1:-1;;;;;30526:15:0;;;;;;:7;:15;;;;;:46;30593:7;;:20;;30605:7;30593:11;:20::i;:::-;30583:7;:30;30637:10;;:23;;30652:7;30637:14;:23::i;:::-;30624:10;:36;-1:-1:-1;;;30291:377:0:o;26677:46::-;;;-1:-1:-1;;;;;26677:46:0;;:::o;32983:111::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33052:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33052:34:0::1;33082:4;33052:34;::::0;;32983:111::o;30676:436::-;30766:7;30805;;30794;:18;;30786:62;;;;;-1:-1:-1;;;30786:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30864:17;30859:246;;30899:15;30923:19;30934:7;30923:10;:19::i;:::-;-1:-1:-1;30898:44:0;;-1:-1:-1;30957:14:0;;-1:-1:-1;;;;;30957:14:0;30859:246;31006:23;31037:19;31048:7;31037:10;:19::i;:::-;-1:-1:-1;31004:52:0;;-1:-1:-1;31071:22:0;;-1:-1:-1;;;;;31071:22:0;26632:38;;;:::o;26764:40::-;;;-1:-1:-1;;;26764:40:0;;;;;:::o;31381:447::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31578:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31577:21;31569:61;;;::::0;;-1:-1:-1;;;31569:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31644:16:0;::::1;31663:1;31644:16:::0;;;:7:::1;:16;::::0;;;;;:20;31641:108:::1;;-1:-1:-1::0;;;;;31720:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31700:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31681:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31641:108:::1;-1:-1:-1::0;;;;;31759:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31759:27:0::1;31782:4;31759:27:::0;;::::1;::::0;;;31797:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31797:23:0::1;::::0;;::::1;::::0;;31381:447::o;37280:123::-;-1:-1:-1;;;;;37368:27:0;37344:4;37368:27;;;:18;:27;;;;;;;;;37280:123::o;26473:32::-;;;;:::o;28543:198::-;-1:-1:-1;;;;;28633:20:0;;28609:7;28633:20;;;:11;:20;;;;;;;;28629:49;;;-1:-1:-1;;;;;;28662:16:0;;;;;;:7;:16;;;;;;28655:23;;28629:49;-1:-1:-1;;;;;28716:16:0;;;;;;:7;:16;;;;;;28696:37;;:19;:37::i;16210:148::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;16317:1:::1;16301:6:::0;;16280:40:::1;::::0;-1:-1:-1;;;;;16301:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16280:40:0;16317:1;;16280:40:::1;16348:1;16331:19:::0;;-1:-1:-1;;;;;;16331:19:0::1;::::0;;16210:148::o;26817:55::-;;;;:::o;37591:157::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;37692:23:::1;:48:::0;;-1:-1:-1;;;;;;37692:48:0::1;-1:-1:-1::0;;;;;37692:48:0;;;::::1;::::0;;;::::1;::::0;;37591:157::o;30068:120::-;-1:-1:-1;;;;;30160:20:0;30136:4;30160:20;;;:11;:20;;;;;;;;;30068:120::o;15567:79::-;15605:7;15632:6;-1:-1:-1;;;;;15632:6:0;15567:79;:::o;33338:122::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;33424:13:::1;:28:::0;33338:122::o;28254:87::-;28326:7;28319:14;;;;;;;;-1:-1:-1;;28319:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28293:13;;28319:14;;28326:7;;28319:14;;28326:7;28319:14;;;;;;;;;;;;;;;;;;;;;;;;29791:269;29884:4;29901:129;29910:12;:10;:12::i;:::-;29924:7;29933:96;29972:15;29933:96;;;;;;;;;;;;;;;;;:11;:25;29945:12;:10;:12::i;:::-;-1:-1:-1;;;;;29933:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29933:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28749:167::-;28827:4;28844:42;28854:12;:10;:12::i;:::-;28868:9;28879:6;28844:9;:42::i;16930:223::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;17020:6:::1;::::0;;;17003:23;;-1:-1:-1;;;;;;17003:23:0;;::::1;-1:-1:-1::0;;;;;17020:6:0;::::1;17003:23;::::0;;;17037:19:::1;::::0;;17079:3:::1;:10:::0;::::1;17067:9;:22:::0;17105:40:::1;::::0;17020:6;;-1:-1:-1;;;;;;;;;;;17105:40:0;17020:6;;17105:40:::1;16930:223:::0;:::o;16765:89::-;16837:9;;16765:89;:::o;33795:171::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;33872:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;33872:32:0;::::1;-1:-1:-1::0;;;;33872:32:0;;::::1;::::0;;;::::1;::::0;;;33920:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33795:171:::0;:::o;26879:73::-;;;;:::o;33471:152::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;33565:50:::1;33609:5;33565:25;33577:12;33565:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:50::i;:::-;33550:12;:65:::0;-1:-1:-1;33471:152:0:o;28924:143::-;-1:-1:-1;;;;;29032:18:0;;;29005:7;29032:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28924:143::o;33106:110::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33173:27:0::1;33203:5;33173:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33173:35:0::1;::::0;;33106:110::o;16513:244::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16602:22:0;::::1;16594:73;;;;-1:-1:-1::0;;;16594:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16704:6;::::0;;16683:38:::1;::::0;-1:-1:-1;;;;;16683:38:0;;::::1;::::0;16704:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16683:38:0;::::1;16732:6;:17:::0;;-1:-1:-1;;;;;;16732:17:0::1;-1:-1:-1::0;;;;;16732:17:0;;;::::1;::::0;;;::::1;::::0;;16513:244::o;33631:156::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;33748:34:::1;:9:::0;33776:5:::1;33748:13;:34::i;:::-;33716:29;:66:::0;-1:-1:-1;33631:156:0:o;7975:106::-;8063:10;7975:106;:::o;37756:337::-;-1:-1:-1;;;;;37849:19:0;;37841:68;;;;-1:-1:-1;;;37841:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37928:21:0;;37920:68;;;;-1:-1:-1;;;37920:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38001:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38053:32;;;;;;;;;;;;;;;;;37756:337;;;:::o;38101:1813::-;-1:-1:-1;;;;;38223:18:0;;38215:68;;;;-1:-1:-1;;;38215:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38302:16:0;;38294:64;;;;-1:-1:-1;;;38294:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38386:1;38377:6;:10;38369:64;;;;-1:-1:-1;;;38369:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38455:7;:5;:7::i;:::-;-1:-1:-1;;;;;38447:15:0;:4;-1:-1:-1;;;;;38447:15:0;;;:32;;;;;38472:7;:5;:7::i;:::-;-1:-1:-1;;;;;38466:13:0;:2;-1:-1:-1;;;;;38466:13:0;;;38447:32;38444:125;;;38512:12;;38502:6;:22;;38494:75;;;;-1:-1:-1;;;38494:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38864:28;38895:24;38913:4;38895:9;:24::i;:::-;38864:55;;38967:12;;38943:20;:36;38940:112;;-1:-1:-1;39028:12:0;;38940:112;39123:29;;39099:53;;;;;;;39181;;-1:-1:-1;39218:16:0;;-1:-1:-1;;;39218:16:0;;;;39217:17;39181:53;:91;;;;;39259:13;-1:-1:-1;;;;;39251:21:0;:4;-1:-1:-1;;;;;39251:21:0;;;39181:91;:129;;;;-1:-1:-1;39289:21:0;;-1:-1:-1;;;39289:21:0;;;;39181:129;39163:318;;;39360:29;;39337:52;;39433:36;39448:20;39433:14;:36::i;:::-;-1:-1:-1;;;;;39689:24:0;;39562:12;39689:24;;;:18;:24;;;;;;39577:4;;39689:24;;;:50;;-1:-1:-1;;;;;;39717:22:0;;;;;;:18;:22;;;;;;;;39689:50;39686:96;;;-1:-1:-1;39765:5:0;39686:96;39868:38;39883:4;39888:2;39891:6;39898:7;39868:14;:38::i;:::-;38101:1813;;;;;;:::o;4385:192::-;4471:7;4507:12;4499:6;;;;4491:29;;;;-1:-1:-1;;;4491:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4543:5:0;;;4385:192::o;35430:163::-;35471:7;35492:15;35509;35528:19;:17;:19::i;:::-;35491:56;;-1:-1:-1;35491:56:0;-1:-1:-1;35565:20:0;35491:56;;35565:11;:20::i;:::-;35558:27;;;;35430:163;:::o;5783:132::-;5841:7;5868:39;5872:1;5875;5868:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5861:46;5783:132;-1:-1:-1;;;5783:132:0:o;3482:181::-;3540:7;3572:5;;;3596:6;;;;3588:46;;;;;-1:-1:-1;;;3588:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34228:419;34287:7;34296;34305;34314;34323;34332;34353:23;34378:12;34392:18;34414:20;34426:7;34414:11;:20::i;:::-;34352:82;;;;;;34446:15;34463:23;34488:12;34504:50;34516:7;34525:4;34531:10;34543;:8;:10::i;:::-;34504:11;:50::i;:::-;34445:109;;;;-1:-1:-1;34445:109:0;;-1:-1:-1;34605:15:0;;-1:-1:-1;34622:4:0;;-1:-1:-1;34628:10:0;;-1:-1:-1;34228:419:0;;-1:-1:-1;;;;;34228:419:0:o;3946:136::-;4004:7;4031:43;4035:1;4038;4031:43;;;;;;;;;;;;;;;;;:3;:43::i;4836:471::-;4894:7;5139:6;5135:47;;-1:-1:-1;5169:1:0;5162:8;;5135:47;5206:5;;;5210:1;5206;:5;:1;5230:5;;;;;:10;5222:56;;;;-1:-1:-1;;;5222:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39922:1180;27259:16;:23;;-1:-1:-1;;;;27259:23:0;-1:-1:-1;;;27259:23:0;;;;40082:27:::1;:20:::0;40107:1:::1;40082:24;:27::i;:::-;40058:51:::0;-1:-1:-1;40120:26:0::1;40149:27;:20:::0;40174:1:::1;40149:24;:27::i;:::-;40120:56:::0;-1:-1:-1;40187:22:0::1;40212:63;40120:56:::0;40212:39:::1;:20:::0;40237:13;40212:24:::1;:39::i;:::-;:43:::0;::::1;:63::i;:::-;40187:88:::0;-1:-1:-1;40578:21:0::1;40644:31;40661:13:::0;40644:16:::1;:31::i;:::-;40806:18;40827:41;:21;40853:14:::0;40827:25:::1;:41::i;:::-;40806:62;;40918:44;40931:18;40951:10;40918:12;:44::i;:::-;40973:34;40992:14;40973:18;:34::i;:::-;41033:61;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27305:16:0;:24;;-1:-1:-1;;;;27305:24:0;;;-1:-1:-1;;;;39922:1180:0:o;42301:834::-;42412:7;42408:40;;42434:14;:12;:14::i;:::-;-1:-1:-1;;;;;42473:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42497:22:0;;;;;;:11;:22;;;;;;;;42496:23;42473:46;42469:597;;;42536:48;42558:6;42566:9;42577:6;42536:21;:48::i;:::-;42469:597;;;-1:-1:-1;;;;;42607:19:0;;;;;;:11;:19;;;;;;;;42606:20;:46;;;;-1:-1:-1;;;;;;42630:22:0;;;;;;:11;:22;;;;;;;;42606:46;42602:464;;;42669:46;42689:6;42697:9;42708:6;42669:19;:46::i;42602:464::-;-1:-1:-1;;;;;42738:19:0;;;;;;:11;:19;;;;;;;;42737:20;:47;;;;-1:-1:-1;;;;;;42762:22:0;;;;;;:11;:22;;;;;;;;42761:23;42737:47;42733:333;;;42801:44;42819:6;42827:9;42838:6;42801:17;:44::i;42733:333::-;-1:-1:-1;;;;;42867:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42890:22:0;;;;;;:11;:22;;;;;;;;42867:45;42863:203;;;42929:48;42951:6;42959:9;42970:6;42929:21;:48::i;42863:203::-;43010:44;43028:6;43036:9;43047:6;43010:17;:44::i;:::-;43090:7;43086:41;;43112:15;:13;:15::i;:::-;42301:834;;;;:::o;35601:561::-;35698:7;;35734;;35651;;;;;35758:289;35782:9;:16;35778:20;;35758:289;;;35848:7;35824;:21;35832:9;35842:1;35832:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35832:12:0;35824:21;;;;;;;;;;;;;:31;;:66;;;35883:7;35859;:21;35867:9;35877:1;35867:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35867:12:0;35859:21;;;;;;;;;;;;;:31;35824:66;35820:97;;;35900:7;;35909;;35892:25;;;;;;;;;35820:97;35942:34;35954:7;:21;35962:9;35972:1;35962:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35962:12:0;35954:21;;;;;;;;;;;;;35942:7;;:11;:34::i;:::-;35932:44;;36001:34;36013:7;:21;36021:9;36031:1;36021:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36021:12:0;36013:21;;;;;;;;;;;;;36001:7;;:11;:34::i;:::-;35991:44;-1:-1:-1;35800:3:0;;35758:289;;;-1:-1:-1;36083:7:0;;36071;;:20;;:11;:20::i;:::-;36061:7;:30;36057:61;;;36101:7;;36110;;36093:25;;;;;;;;36057:61;36137:7;;-1:-1:-1;36146:7:0;-1:-1:-1;35601:561:0;;;:::o;6411:278::-;6497:7;6532:12;6525:5;6517:28;;;;-1:-1:-1;;;6517:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6556:9;6572:1;6568;:5;;;;;;;6411:278;-1:-1:-1;;;;;6411:278:0:o;34655:330::-;34715:7;34724;34733;34753:12;34768:24;34784:7;34768:15;:24::i;:::-;34753:39;;34803:18;34824:30;34846:7;34824:21;:30::i;:::-;34803:51;-1:-1:-1;34865:23:0;34891:33;34803:51;34891:17;:7;34903:4;34891:11;:17::i;:33::-;34865:59;34960:4;;-1:-1:-1;34966:10:0;;-1:-1:-1;34655:330:0;;-1:-1:-1;;;34655:330:0:o;34993:429::-;35108:7;;;;35164:24;:7;35176:11;35164;:24::i;:::-;35146:42;-1:-1:-1;35199:12:0;35214:21;:4;35223:11;35214:8;:21::i;:::-;35199:36;-1:-1:-1;35246:18:0;35267:27;:10;35282:11;35267:14;:27::i;:::-;35246:48;-1:-1:-1;35305:23:0;35331:33;35246:48;35331:17;:7;35343:4;35331:11;:17::i;:33::-;35383:7;;;;-1:-1:-1;35409:4:0;;-1:-1:-1;34993:429:0;;-1:-1:-1;;;;;;;34993:429:0:o;41110:589::-;41260:16;;;41274:1;41260:16;;;41236:21;41260:16;;;;;41236:21;41260:16;;;;;;;;;;-1:-1:-1;41260:16:0;41236:40;;41305:4;41287;41292:1;41287:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41287:23:0;;;-1:-1:-1;;;;;41287:23:0;;;;;41331:15;-1:-1:-1;;;;;41331:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41331:22:0;41321:7;;:4;;41326:1;;41321:7;;;;;;;;;;;:32;-1:-1:-1;;;;;41321:32:0;;;-1:-1:-1;;;;;41321:32:0;;;;;41366:62;41383:4;41398:15;41416:11;41366:8;:62::i;:::-;41467:15;-1:-1:-1;;;;;41467:66:0;;41548:11;41574:1;41618:4;41645;41665:15;41467:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41467:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41707:513;41855:62;41872:4;41887:15;41905:11;41855:8;:62::i;:::-;41960:15;-1:-1:-1;;;;;41960:31:0;;41999:9;42032:4;42052:11;42078:1;42121;42164:7;:5;:7::i;:::-;42186:15;41960:252;;;;;;;;;;;;;-1:-1:-1;;;;;41960:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41960:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37415:164;37479:24;37496:6;37479:16;:24::i;:::-;37515:23;;:55;;-1:-1:-1;;;;;37515:23:0;;;;37548:21;37515:55;;;;;:23;:55;:23;:55;37548:21;37515:23;:55;;;;;;;;;;;;;;;;;;;36881:250;36927:7;;:12;:34;;;;-1:-1:-1;36943:13:0;;:18;36927:34;36924:46;;;36963:7;;36924:46;37008:7;;;36990:15;:25;37050:13;;;37026:21;:37;-1:-1:-1;37084:11:0;;;;37106:17;36881:250;:::o;44247:566::-;44350:15;44367:23;44392:12;44406:23;44431:12;44445:18;44467:19;44478:7;44467:10;:19::i;:::-;-1:-1:-1;;;;;44515:15:0;;;;;;:7;:15;;;;;;44349:137;;-1:-1:-1;44349:137:0;;-1:-1:-1;44349:137:0;;-1:-1:-1;44349:137:0;-1:-1:-1;44349:137:0;-1:-1:-1;44349:137:0;-1:-1:-1;44515:28:0;;44535:7;44515:19;:28::i;:::-;-1:-1:-1;;;;;44497:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44572:7;:15;;;;:28;;44592:7;44572:19;:28::i;:::-;-1:-1:-1;;;;;44554:15:0;;;;;;;:7;:15;;;;;;:46;;;;44632:18;;;;;;;:39;;44655:15;44632:22;:39::i;:::-;-1:-1:-1;;;;;44611:18:0;;;;;;:7;:18;;;;;:60;44685:26;44700:10;44685:14;:26::i;:::-;44722:23;44734:4;44740;44722:11;:23::i;:::-;44778:9;-1:-1:-1;;;;;44761:44:0;44770:6;-1:-1:-1;;;;;44761:44:0;;44789:15;44761:44;;;;;;;;;;;;;;;;;;44247:566;;;;;;;;;:::o;43653:586::-;43754:15;43771:23;43796:12;43810:23;43835:12;43849:18;43871:19;43882:7;43871:10;:19::i;:::-;-1:-1:-1;;;;;43919:15:0;;;;;;:7;:15;;;;;;43753:137;;-1:-1:-1;43753:137:0;;-1:-1:-1;43753:137:0;;-1:-1:-1;43753:137:0;-1:-1:-1;43753:137:0;-1:-1:-1;43753:137:0;-1:-1:-1;43919:28:0;;43753:137;43919:19;:28::i;:::-;-1:-1:-1;;;;;43901:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43979:18;;;;;:7;:18;;;;;:39;;44002:15;43979:22;:39::i;:::-;-1:-1:-1;;;;;43958:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44050:7;:18;;;;:39;;44073:15;44050:22;:39::i;43143:502::-;43242:15;43259:23;43284:12;43298:23;43323:12;43337:18;43359:19;43370:7;43359:10;:19::i;:::-;-1:-1:-1;;;;;43407:15:0;;;;;;:7;:15;;;;;;43241:137;;-1:-1:-1;43241:137:0;;-1:-1:-1;43241:137:0;;-1:-1:-1;43241:137:0;-1:-1:-1;43241:137:0;-1:-1:-1;43241:137:0;-1:-1:-1;43407:28:0;;43241:137;43407:19;:28::i;32325:642::-;32428:15;32445:23;32470:12;32484:23;32509:12;32523:18;32545:19;32556:7;32545:10;:19::i;:::-;-1:-1:-1;;;;;32593:15:0;;;;;;:7;:15;;;;;;32427:137;;-1:-1:-1;32427:137:0;;-1:-1:-1;32427:137:0;;-1:-1:-1;32427:137:0;-1:-1:-1;32427:137:0;-1:-1:-1;32427:137:0;-1:-1:-1;32593:28:0;;32613:7;32593:19;:28::i;:::-;-1:-1:-1;;;;;32575:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32650:7;:15;;;;:28;;32670:7;32650:19;:28::i;37143:125::-;37197:15;;37187:7;:25;37239:21;;37223:13;:37;37143:125::o;36541:154::-;36605:7;36632:55;36671:5;36632:20;36644:7;;36632;:11;;:20;;;;:::i;36703:166::-;36773:7;36800:61;36845:5;36800:26;36812:13;;36800:7;:11;;:26;;;;:::i;36174:355::-;36237:19;36260:10;:8;:10::i;:::-;36237:33;-1:-1:-1;36281:18:0;36302:27;:10;36237:33;36302:14;:27::i;:::-;36381:4;36365:22;;;;:7;:22;;;;;;36281:48;;-1:-1:-1;36365:38:0;;36281:48;36365:26;:38::i;:::-;36356:4;36340:22;;;;:7;:22;;;;;;;;:63;;;;36417:11;:26;;;;;;36414:107;;;36499:4;36483:22;;;;:7;:22;;;;;;:38;;36510:10;36483:26;:38::i;:::-;36474:4;36458:22;;;;:7;:22;;;;;:63;36414:107;36174:355;;;:::o;34073:147::-;34151:7;;:17;;34163:4;34151:11;:17::i;:::-;34141:7;:27;34192:10;;:20;;34207:4;34192:14;:20::i;:::-;34179:10;:33;-1:-1:-1;;34073:147:0:o

Swarm Source

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